Skip to content

Commit

Permalink
fix #396, fix #397
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Oct 16, 2024
1 parent 16835d1 commit b24926c
Show file tree
Hide file tree
Showing 47 changed files with 450 additions and 44 deletions.
41 changes: 41 additions & 0 deletions inc/blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function unitone_register_blocks() {
register_block_type( get_template_directory() . '/dist/blocks/cover' );
register_block_type( get_template_directory() . '/dist/blocks/cover-content' );
register_block_type( get_template_directory() . '/dist/blocks/decorator' );
register_block_type( get_template_directory() . '/dist/blocks/div' );
register_block_type( get_template_directory() . '/dist/blocks/flex' );
register_block_type( get_template_directory() . '/dist/blocks/flex-divided' );
register_block_type( get_template_directory() . '/dist/blocks/flex-divided-content' );
Expand Down Expand Up @@ -638,6 +639,46 @@ function ( $block_content, $block ) {
}
}

// Additional style.
if ( $is_supported( 'style' ) ) {
$instance_id = $get_attribute( 'instanceId' );
$custom_css = $get_attribute( 'style' );

if ( $custom_css ) {
$custom_css = wp_strip_all_tags( $custom_css );
$custom_css = preg_replace( '/\r?\n\s*/', ' ', $custom_css );
$custom_css = preg_replace( '/\s*{\s*/', ' { ', $custom_css );
$custom_css = preg_replace( '/\s*;\s*/', '; ', $custom_css );
$custom_css = preg_replace( '/\s*}\s*/', ' }', $custom_css );
$custom_css = preg_replace( '/}\s*/', "}\n", $custom_css );
$custom_css = trim( $custom_css );

$custom_css_array = explode( "\n", $custom_css );
$custom_css = implode(
"\n",
array_filter(
$custom_css_array,
function ( $line ) {
return 0 === strpos( $line, '&' );
}
)
);

$custom_css = preg_replace( '|(&)(?=[^{]*\{)|', '[data-unitone-instance-id="' . $instance_id . '"]', $custom_css );
}

if ( $instance_id && $custom_css ) {
$add_data_attribute( 'data-unitone-instance-id', $instance_id );

add_action(
'wp_enqueue_scripts',
function () use ( $custom_css ) {
wp_add_inline_style( 'global-styles', $custom_css );
}
);
}
}

$block_content = $p->get_updated_html();
return $block_content;
},
Expand Down
2 changes: 1 addition & 1 deletion languages/unitone-ja-0810b028aff722fd4f627fd97ff45d54.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/accordion\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"Mark":["\u30de\u30fc\u30af"],"Chevron down":["\u4e0b\u77e2\u5370"],"cross":["\u30d0\u30c4"],"Question":["\u8cea\u554f"],"Using label of the question":["\u8cea\u554f\u306e\u30e9\u30d9\u30eb\u3092\u4f7f\u7528\u3059\u308b"],"Width":["\u5e45"],"Answer":["\u56de\u7b54"],"Using labe of the answer":["\u56de\u7b54\u306e\u30e9\u30d9\u30eb\u3092\u4f7f\u7528\u3059\u308b"],"Q":["Q"],"Enter summary here":["\u3053\u3053\u306b\u6982\u8981\u3092\u5165\u529b"],"A":["A"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/accordion\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"Mark":["\u30de\u30fc\u30af"],"Chevron down":["\u4e0b\u77e2\u5370"],"cross":["\u30d0\u30c4"],"Question":["\u8cea\u554f"],"Using label of the question":["\u8cea\u554f\u306e\u30e9\u30d9\u30eb\u3092\u4f7f\u7528\u3059\u308b"],"Width":["\u5e45"],"Answer":["\u56de\u7b54"],"Using labe of the answer":["\u56de\u7b54\u306e\u30e9\u30d9\u30eb\u3092\u4f7f\u7528\u3059\u308b"],"Q":["Q"],"Enter summary here":["\u3053\u3053\u306b\u6982\u8981\u3092\u5165\u529b"],"A":["A"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-1858d6886cdb566bde5b67f7a647296b.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/decorator\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Learn more":["\u3055\u3089\u306b\u8a73\u3057\u304f"],"Settings":["\u8a2d\u5b9a"],"HTML element":["HTML \u8981\u7d20"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/decorator\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Learn more":["\u3055\u3089\u306b\u8a73\u3057\u304f"],"Settings":["\u8a2d\u5b9a"],"HTML element":["HTML \u8981\u7d20"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-1a571489f1a22779976a8c15484823bc.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/layers\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Settings":["\u8a2d\u5b9a"],"Columns count":["\u30ab\u30e9\u30e0\u6570"],"Rows count":["\u884c\u6570"],"Background image":["\u80cc\u666f\u753b\u50cf"],"Background framed image":["\u80cc\u666f\u30d5\u30ec\u30fc\u30e0\u753b\u50cf"],"Hero (%1$s)":["\u30d2\u30fc\u30ed\u30fc\uff08%1$s\uff09"],"Top \/ Left":["\u4e0a \/ \u5de6"],"Top \/ Right":["\u4e0a \/ \u53f3"],"Bottom \/ Left":["\u4e0b \/ \u5de6"],"Bottom \/ Right":["\u4e0b \/ \u53f3"],"Section (%1$s)":["\u30bb\u30af\u30b7\u30e7\u30f3\uff08%1$s\uff09"],"Background image \/ Centered title":["\u80cc\u666f\u753b\u50cf \/ \u4e2d\u592e\u63c3\u3048\u306e\u30bf\u30a4\u30c8\u30eb"],"block keywords\u0004section":["section"],"Background image \/ Centered title \/ Subtitle":["\u80cc\u666f\u753b\u50cf \/ \u4e2d\u592e\u63c3\u3048\u306e\u30bf\u30a4\u30c8\u30eb \/ \u30b5\u30d6\u30bf\u30a4\u30c8\u30eb"],"Background image \/ Left title":["\u80cc\u666f\u753b\u50cf \/ \u5de6\u5bc4\u305b\u306e\u30bf\u30a4\u30c8\u30eb"],"Background image \/ Left title \/ Subtitle":["\u80cc\u666f\u753b\u50cf \/ \u5de6\u5bc4\u305b\u306e\u30bf\u30a4\u30c8\u30eb \/ \u30b5\u30d6\u30bf\u30a4\u30c8\u30eb"],"Use background image\/video (Cover)":["\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u4f7f\u7528\uff08Cover\uff09"],"Treat the first child block as a background image\/video.":["\u6700\u521d\u306e\u5b50\u30d6\u30ed\u30c3\u30af\u3092\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3068\u3057\u3066\u6271\u3044\u307e\u3059\u3002"],"The background image\/video is enlarged according or reduces to the amount of content.":["\u30b3\u30f3\u30c6\u30f3\u30c4\u91cf\u306b\u5fdc\u3058\u3066\u3001\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u62e1\u5927\u30fb\u7e2e\u5c0f\u8868\u793a\u3057\u307e\u3059\u3002"],"Use background image\/video (Fill)":["\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u4f7f\u7528\uff08Fill\uff09"],"The background image\/video is enlarged according to the amount of content.":["\u30b3\u30f3\u30c6\u30f3\u30c4\u91cf\u306b\u5fdc\u3058\u3066\u3001\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u62e1\u5927\u8868\u793a\u3057\u307e\u3059\u3002"],"Blur the background image\/video":["\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u307c\u304b\u3059"],"Enable portrait mode":["\u30dd\u30fc\u30c8\u30ec\u30fc\u30c8\u30e2\u30fc\u30c9\u3092\u6709\u52b9\u306b\u3059\u308b"],"If enabled, the number of vertical and horizontal grid lines is switched when the viewport is portrait.":["\u6709\u52b9\u306a\u5834\u5408\u3001\u30d3\u30e5\u30fc\u30dd\u30fc\u30c8\u304c\u30dd\u30fc\u30c8\u30ec\u30fc\u30c8\u306e\u3068\u304d\u306b\u30b0\u30ea\u30c3\u30c9\u7dda\u306e\u7e26\u6a2a\u306e\u672c\u6570\u304c\u5207\u308a\u66ff\u308f\u308a\u307e\u3059\u3002"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/layers\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Settings":["\u8a2d\u5b9a"],"Columns count":["\u30ab\u30e9\u30e0\u6570"],"Rows count":["\u884c\u6570"],"Background image":["\u80cc\u666f\u753b\u50cf"],"Background framed image":["\u80cc\u666f\u30d5\u30ec\u30fc\u30e0\u753b\u50cf"],"Hero (%1$s)":["\u30d2\u30fc\u30ed\u30fc\uff08%1$s\uff09"],"Top \/ Left":["\u4e0a \/ \u5de6"],"Top \/ Right":["\u4e0a \/ \u53f3"],"Bottom \/ Left":["\u4e0b \/ \u5de6"],"Bottom \/ Right":["\u4e0b \/ \u53f3"],"Section (%1$s)":["\u30bb\u30af\u30b7\u30e7\u30f3\uff08%1$s\uff09"],"Background image \/ Centered title":["\u80cc\u666f\u753b\u50cf \/ \u4e2d\u592e\u63c3\u3048\u306e\u30bf\u30a4\u30c8\u30eb"],"block keywords\u0004section":["section"],"Background image \/ Centered title \/ Subtitle":["\u80cc\u666f\u753b\u50cf \/ \u4e2d\u592e\u63c3\u3048\u306e\u30bf\u30a4\u30c8\u30eb \/ \u30b5\u30d6\u30bf\u30a4\u30c8\u30eb"],"Background image \/ Left title":["\u80cc\u666f\u753b\u50cf \/ \u5de6\u5bc4\u305b\u306e\u30bf\u30a4\u30c8\u30eb"],"Background image \/ Left title \/ Subtitle":["\u80cc\u666f\u753b\u50cf \/ \u5de6\u5bc4\u305b\u306e\u30bf\u30a4\u30c8\u30eb \/ \u30b5\u30d6\u30bf\u30a4\u30c8\u30eb"],"Use background image\/video (Cover)":["\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u4f7f\u7528\uff08Cover\uff09"],"Treat the first child block as a background image\/video.":["\u6700\u521d\u306e\u5b50\u30d6\u30ed\u30c3\u30af\u3092\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3068\u3057\u3066\u6271\u3044\u307e\u3059\u3002"],"The background image\/video is enlarged according or reduces to the amount of content.":["\u30b3\u30f3\u30c6\u30f3\u30c4\u91cf\u306b\u5fdc\u3058\u3066\u3001\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u62e1\u5927\u30fb\u7e2e\u5c0f\u8868\u793a\u3057\u307e\u3059\u3002"],"Use background image\/video (Fill)":["\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u4f7f\u7528\uff08Fill\uff09"],"The background image\/video is enlarged according to the amount of content.":["\u30b3\u30f3\u30c6\u30f3\u30c4\u91cf\u306b\u5fdc\u3058\u3066\u3001\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u62e1\u5927\u8868\u793a\u3057\u307e\u3059\u3002"],"Blur the background image\/video":["\u80cc\u666f\u753b\u50cf\/\u52d5\u753b\u3092\u307c\u304b\u3059"],"Enable portrait mode":["\u30dd\u30fc\u30c8\u30ec\u30fc\u30c8\u30e2\u30fc\u30c9\u3092\u6709\u52b9\u306b\u3059\u308b"],"If enabled, the number of vertical and horizontal grid lines is switched when the viewport is portrait.":["\u6709\u52b9\u306a\u5834\u5408\u3001\u30d3\u30e5\u30fc\u30dd\u30fc\u30c8\u304c\u30dd\u30fc\u30c8\u30ec\u30fc\u30c8\u306e\u3068\u304d\u306b\u30b0\u30ea\u30c3\u30c9\u7dda\u306e\u7e26\u6a2a\u306e\u672c\u6570\u304c\u5207\u308a\u66ff\u308f\u308a\u307e\u3059\u3002"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-1b653ac6fd00a80cca9f81dcd388eadf.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/flex-divided\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"HTML element":["HTML \u8981\u7d20"],"Flex (Divider: stripe)":["\u30d5\u30ec\u30c3\u30af\u30b9\uff08\u533a\u5207\u308a\uff1a\u30b9\u30c8\u30e9\u30a4\u30d7\uff09"],"Flex (Divider: slash)":["\u30d5\u30ec\u30c3\u30af\u30b9\uff08\u533a\u5207\u308a\uff1a\u30b9\u30e9\u30c3\u30b7\u30e5\uff09"],"Flex (Divider: bordered)":["\u30d5\u30ec\u30c3\u30af\u30b9\uff08\u533a\u5207\u308a\uff1a\u30dc\u30fc\u30c0\u30fc\uff09"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/flex-divided\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"HTML element":["HTML \u8981\u7d20"],"Flex (Divider: stripe)":["\u30d5\u30ec\u30c3\u30af\u30b9\uff08\u533a\u5207\u308a\uff1a\u30b9\u30c8\u30e9\u30a4\u30d7\uff09"],"Flex (Divider: slash)":["\u30d5\u30ec\u30c3\u30af\u30b9\uff08\u533a\u5207\u308a\uff1a\u30b9\u30e9\u30c3\u30b7\u30e5\uff09"],"Flex (Divider: bordered)":["\u30d5\u30ec\u30c3\u30af\u30b9\uff08\u533a\u5207\u308a\uff1a\u30dc\u30fc\u30c0\u30fc\uff09"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-1f5fe62d2fb76f7d869c6bf389e5040a.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/cover-content\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"Cover content (Top)":["\u30ab\u30d0\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4\uff08\u4e0a\u90e8\uff09"],"Cover content (Center)":["\u30ab\u30d0\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4\uff08\u4e2d\u592e\uff09"],"Cover content (Bottom)":["\u30ab\u30d0\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4\uff08\u4e0b\u90e8\uff09"],"Fill a space":["\u30b9\u30da\u30fc\u30b9\u3092\u57cb\u3081\u308b"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/cover-content\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"Cover content (Top)":["\u30ab\u30d0\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4\uff08\u4e0a\u90e8\uff09"],"Cover content (Center)":["\u30ab\u30d0\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4\uff08\u4e2d\u592e\uff09"],"Cover content (Bottom)":["\u30ab\u30d0\u30fc\u30b3\u30f3\u30c6\u30f3\u30c4\uff08\u4e0b\u90e8\uff09"],"Fill a space":["\u30b9\u30da\u30fc\u30b9\u3092\u57cb\u3081\u308b"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-210a5e16fe8550cc77e9985d9841a7d5.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/responsive-grid\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"Column min width":["\u30ab\u30e9\u30e0\u306e\u6700\u5c0f\u5e45"],"Inside the %1$sgrid-template-columns%2$s formula":["%1$sgrid-template-columns%2$s\u306e\u8a08\u7b97\u5f0f\u306e\u4e2d"],"When the column width is less than this value, it is aligned in a single column.":["\u30ab\u30e9\u30e0\u304c\u3053\u306e\u5e45\u3088\u308a\u5c0f\u3055\u304f\u306a\u3063\u305f\u3068\u304d\u3001\u30ab\u30e9\u30e0\u306f1\u5217\u306b\u4e26\u3073\u307e\u3059\u3002"],"If \"auto-repeat\" is \"auto-fill\" the column will maintain this size.\" auto-fit\", the column will stretch to fill the available space.":["\u300cauto-repeat\u300d\u304c \u300cauto-fill\u300d\u306e\u5834\u5408\u3001\u30ab\u30e9\u30e0\u306f\u3053\u306e\u30b5\u30a4\u30ba\u3092\u7dad\u6301\u3057\u307e\u3059\u3002\u300cauto-fit\u300d\u306e\u5834\u5408\u3001\u7a7a\u304d\u30b9\u30da\u30fc\u30b9\u3092\u57cb\u3081\u308b\u3088\u3046\u306b\u30ab\u30e9\u30e0\u304c\u4f38\u9577\u3057\u307e\u3059\u3002"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/responsive-grid\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Settings":["\u8a2d\u5b9a"],"Column min width":["\u30ab\u30e9\u30e0\u306e\u6700\u5c0f\u5e45"],"Inside the %1$sgrid-template-columns%2$s formula":["%1$sgrid-template-columns%2$s\u306e\u8a08\u7b97\u5f0f\u306e\u4e2d"],"When the column width is less than this value, it is aligned in a single column.":["\u30ab\u30e9\u30e0\u304c\u3053\u306e\u5e45\u3088\u308a\u5c0f\u3055\u304f\u306a\u3063\u305f\u3068\u304d\u3001\u30ab\u30e9\u30e0\u306f1\u5217\u306b\u4e26\u3073\u307e\u3059\u3002"],"If \"auto-repeat\" is \"auto-fill\" the column will maintain this size.\" auto-fit\", the column will stretch to fill the available space.":["\u300cauto-repeat\u300d\u304c \u300cauto-fill\u300d\u306e\u5834\u5408\u3001\u30ab\u30e9\u30e0\u306f\u3053\u306e\u30b5\u30a4\u30ba\u3092\u7dad\u6301\u3057\u307e\u3059\u3002\u300cauto-fit\u300d\u306e\u5834\u5408\u3001\u7a7a\u304d\u30b9\u30da\u30fc\u30b9\u3092\u57cb\u3081\u308b\u3088\u3046\u306b\u30ab\u30e9\u30e0\u304c\u4f38\u9577\u3057\u307e\u3059\u3002"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-269457008b2ed24a51ad82136c820b12.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/cover\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Cover (Top)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8\uff09"],"Cover (Center)":["\u30ab\u30d0\u30fc\uff08\u4e2d\u592e\uff09"],"Cover (Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e0b\u90e8\uff09"],"Cover (Top \/ Center)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8 \/ \u4e2d\u592e\uff09"],"Cover (Top \/ Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8 \/ \u4e0b\u90e8\uff09"],"Cover (Center \/ Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e2d\u592e \/ \u4e0b\u90e8\uff09"],"Cover (Top \/ Center \/ Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8 \/ \u4e2d\u592e \/ \u4e0b\u90e8\uff09"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/cover\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Cover (Top)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8\uff09"],"Cover (Center)":["\u30ab\u30d0\u30fc\uff08\u4e2d\u592e\uff09"],"Cover (Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e0b\u90e8\uff09"],"Cover (Top \/ Center)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8 \/ \u4e2d\u592e\uff09"],"Cover (Top \/ Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8 \/ \u4e0b\u90e8\uff09"],"Cover (Center \/ Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e2d\u592e \/ \u4e0b\u90e8\uff09"],"Cover (Top \/ Center \/ Bottom)":["\u30ab\u30d0\u30fc\uff08\u4e0a\u90e8 \/ \u4e2d\u592e \/ \u4e0b\u90e8\uff09"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-26eec36a407b72e90b1516c7b73fc242.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/pattern-inserter\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Insert Pattern (Beta)":["\u30d1\u30bf\u30fc\u30f3\u3092\u633f\u5165\uff08\u30d9\u30fc\u30bf\u7248\uff09"],"Click on the button below to see all available patterns. Click on any pattern you wish to insert, and that pattern will be inserted into the article.":["\u4e0b\u8a18\u306e\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u5229\u7528\u53ef\u80fd\u306a\u3059\u3079\u3066\u306e\u30d1\u30bf\u30fc\u30f3\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\u633f\u5165\u3057\u305f\u3044\u30d1\u30bf\u30fc\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u305d\u306e\u30d1\u30bf\u30fc\u30f3\u304c\u8a18\u4e8b\u306b\u633f\u5165\u3055\u308c\u307e\u3059\u3002"],"Remove this placeholder":["\u3053\u306e\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0\u30fc\u3092\u524a\u9664"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/pattern-inserter\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Insert Pattern (Beta)":["\u30d1\u30bf\u30fc\u30f3\u3092\u633f\u5165\uff08\u30d9\u30fc\u30bf\u7248\uff09"],"Click on the button below to see all available patterns. Click on any pattern you wish to insert, and that pattern will be inserted into the article.":["\u4e0b\u8a18\u306e\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u5229\u7528\u53ef\u80fd\u306a\u3059\u3079\u3066\u306e\u30d1\u30bf\u30fc\u30f3\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\u633f\u5165\u3057\u305f\u3044\u30d1\u30bf\u30fc\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u305d\u306e\u30d1\u30bf\u30fc\u30f3\u304c\u8a18\u4e8b\u306b\u633f\u5165\u3055\u308c\u307e\u3059\u3002"],"Remove this placeholder":["\u3053\u306e\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0\u30fc\u3092\u524a\u9664"]}}}
2 changes: 1 addition & 1 deletion languages/unitone-ja-31935bef2b32ae0d17f171fc5a57ecc6.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2024-10-08 10:17+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/with-sidebar-content\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Main":["\u30e1\u30a4\u30f3"],"Sidebar":["\u30b5\u30a4\u30c9\u30d0\u30fc"]}}}
{"translation-revision-date":"2024-10-16 19:03+0900","generator":"WP-CLI\/2.9.0","source":"dist\/blocks\/with-sidebar-content\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Main":["\u30e1\u30a4\u30f3"],"Sidebar":["\u30b5\u30a4\u30c9\u30d0\u30fc"]}}}
Loading

0 comments on commit b24926c

Please sign in to comment.