Skip to content

Commit

Permalink
fix #217
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Jan 15, 2024
1 parent 992befc commit 3951759
Show file tree
Hide file tree
Showing 57 changed files with 130 additions and 303 deletions.
99 changes: 41 additions & 58 deletions inc/templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,68 +47,20 @@ function unitone_display_deprecated_parts() {
$stylesheet = get_stylesheet();

if (
'footer-breadcrumbs' === $attributes['slug']
|| 0 === strpos( $attributes['slug'], 'contents-' )
|| 0 === strpos( $attributes['slug'], 'page-header-' )
|| 0 === strpos( $attributes['slug'], 'template-' )
isset( $attributes['slug'] ) &&
isset( $attributes['theme'] ) &&
$stylesheet === $attributes['theme']
) {
if (
isset( $attributes['slug'] ) &&
isset( $attributes['theme'] ) &&
$stylesheet === $attributes['theme']
'footer-breadcrumbs' === $attributes['slug']
|| 0 === strpos( $attributes['slug'], 'contents-' )
|| 0 === strpos( $attributes['slug'], 'page-header-' )
|| 0 === strpos( $attributes['slug'], 'template-' )
) {
$template_part_id = $attributes['theme'] . '//' . $attributes['slug'];
$template_part_query = new WP_Query(
array(
'post_type' => 'wp_template_part',
'post_status' => 'publish',
'post_name__in' => array( $attributes['slug'] ),
'tax_query' => array(
array(
'taxonomy' => 'wp_theme',
'field' => 'name',
'terms' => $attributes['theme'],
),
),
'posts_per_page' => 1,
'no_found_rows' => true,
'lazy_load_term_meta' => false, // Do not lazy load term meta, as template parts only have one term.
)
);
$template_part_post = $template_part_query->have_posts() ? $template_part_query->next_post() : null;
if ( $template_part_post ) {
// A published post might already exist if this template part was customized elsewhere
// or if it's part of a customized template.
$content = $template_part_post->post_content;
$content = shortcode_unautop( $content );
$content = do_shortcode( $content );
$content = do_blocks( $content );
$content = wptexturize( $content );
$content = convert_smilies( $content );
$content = wp_filter_content_tags( $content, "template_part_{$area}" );

// Handle embeds for block template parts.
global $wp_embed;
$content = $wp_embed->autoembed( $content );

if ( empty( $attributes['tagName'] ) ) {
$area_tag = 'div';
if ( $area_definition && isset( $area_definition['area_tag'] ) ) {
$area_tag = $area_definition['area_tag'];
}
$html_tag = $area_tag;
} else {
$html_tag = esc_attr( $attributes['tagName'] );
}
$wrapper_attributes = get_block_wrapper_attributes();

return "<$html_tag $wrapper_attributes>" . str_replace( ']]>', ']]&gt;', $content ) . "</$html_tag>";
}
// Rewrite the slug (= path).
// Now the HTML of the file will be output for now, but customization will be skipped.
$attributes['slug'] = 'deprecated/' . $attributes['slug'];
}

// Rewrite the slug (= path).
// Now the HTML of the file will be output for now, but customization will be skipped.
$attributes['slug'] = 'deprecated/' . $attributes['slug'];
}

return render_block_core_template_part( $attributes );
Expand Down Expand Up @@ -199,3 +151,34 @@ function unitone_fallback_deprecated_custom_page_templates( $query_result ) {
return $query_result;
}
add_filter( 'pre_get_block_templates', 'unitone_fallback_deprecated_custom_page_templates' );

/**
* Fallback for changes in display due to discontinuation of template parts for templates.
* If a template part for a template has been customized, it will be displayed.
* However, it is not reflected on the editor.
*
* @see https://github.com/inc2734/unitone/issues/217
*/
function unitone_display_deprecated_parts_for_template( $template ) {
global $_wp_current_template_id, $_wp_current_template_content;

$template_object = get_block_template( $_wp_current_template_id, 'wp_template' );
$template_part_object = get_block_template( $_wp_current_template_id, 'wp_template_part' );

// When the template is customized
if ( $template_object && $template_object->is_custom || $template_object->modified ) {
return $template;
}

// When the template part are not customized
if ( ! $template_part_object || ! $template_part_object->is_custom ) {
return $template;
}

// Output the template part.
$template_part_slug = str_replace( get_stylesheet() . '//', '', $_wp_current_template_id );
$_wp_current_template_content = '<!-- wp:template-part {"slug":"' . $template_part_slug . '"} /-->';

return $template;
}
add_filter( 'template_include', 'unitone_display_deprecated_parts_for_template' );
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":"2023-12-07 23:32+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-01-15 14:29+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":"2023-12-07 23:32+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"],"With shadow":["\u5f71\u4ed8\u304d"]}}}
{"translation-revision-date":"2024-01-15 14:29+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"],"With shadow":["\u5f71\u4ed8\u304d"]}}}
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":"2023-12-07 23:32+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;"},"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"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"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-01-15 14:29+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;"},"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"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"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-1f5fe62d2fb76f7d869c6bf389e5040a.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"translation-revision-date":"2023-12-07 23:32+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-01-15 14:29+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":"2023-12-07 23:32+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-01-15 14:29+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":"2023-12-07 23:32+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-01-15 14:29+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"]}}}
Loading

0 comments on commit 3951759

Please sign in to comment.