Skip to content

Commit

Permalink
fix #73
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Nov 28, 2024
1 parent c533105 commit 6f287fc
Show file tree
Hide file tree
Showing 43 changed files with 337 additions and 210 deletions.
119 changes: 23 additions & 96 deletions inc/block-supports.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,32 +91,6 @@ function unitone_add_half_leading_support( $metadata ) {
}
add_filter( 'block_type_metadata', 'unitone_add_half_leading_support' );

/**
* Add support "cellMinWidth" to core/table.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_cell_min_width_support( $metadata ) {
if ( 'core/table' !== $metadata['name'] ) {
return $metadata;
}

$metadata['supports'] = array_merge(
$metadata['supports'],
array(
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'cellMinWidth' => true,
)
),
)
);
return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_cell_min_width_support' );

/**
* Add support "gap" to core/post-content and core/post-template.
*
Expand Down Expand Up @@ -144,13 +118,13 @@ function unitone_add_gap_support( $metadata ) {
add_filter( 'block_type_metadata', 'unitone_add_gap_support' );

/**
* Add support "gutters" to core/post-content.
* Add supports to core/table.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_gutters_support( $metadata ) {
if ( ! in_array( $metadata['name'], array( 'core/post-content' ), true ) ) {
function unitone_add_supports_to_core_table( $metadata ) {
if ( 'core/table' !== $metadata['name'] ) {
return $metadata;
}

Expand All @@ -160,23 +134,23 @@ function unitone_add_gutters_support( $metadata ) {
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'gutters' => true,
'cellMinWidth' => true,
)
),
)
);
return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_gutters_support' );
add_filter( 'block_type_metadata', 'unitone_add_supports_to_core_table' );

/**
* Add support "padding" to core/button.
* Add supports to core/post-content.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_padding_support( $metadata ) {
if ( 'core/button' !== $metadata['name'] ) {
function unitone_add_supports_to_core_post_content( $metadata ) {
if ( ! in_array( $metadata['name'], array( 'core/post-content' ), true ) ) {
return $metadata;
}

Expand All @@ -186,23 +160,23 @@ function unitone_add_padding_support( $metadata ) {
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'padding' => true,
'gutters' => true,
)
),
)
);
return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_padding_support' );
add_filter( 'block_type_metadata', 'unitone_add_supports_to_core_post_content' );

/**
* Add support "overlay" to core/image.
* Add supports to core/button.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_overlay_support( $metadata ) {
if ( 'core/image' !== $metadata['name'] ) {
function unitone_add_supports_to_core_button( $metadata ) {
if ( 'core/button' !== $metadata['name'] ) {
return $metadata;
}

Expand All @@ -212,22 +186,23 @@ function unitone_add_overlay_support( $metadata ) {
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'overlay' => true,
'padding' => true,
'minWidth' => true,
)
),
)
);
return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_overlay_support' );
add_filter( 'block_type_metadata', 'unitone_add_supports_to_core_button' );

/**
* Add support "filter:drop-shadow" to core/image.
* Add supports to core/image.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_drop_shadow_support( $metadata ) {
function unitone_add_supports_to_core_image( $metadata ) {
if ( 'core/image' !== $metadata['name'] ) {
return $metadata;
}
Expand All @@ -246,63 +221,15 @@ function unitone_add_drop_shadow_support( $metadata ) {
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'dropShadow' => true,
)
),
)
);
return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_drop_shadow_support' );

/**
* Add support "Parallax" to core/image.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_parallax_support( $metadata ) {
if ( 'core/image' !== $metadata['name'] ) {
return $metadata;
}

$metadata['supports'] = array_merge(
$metadata['supports'],
array(
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'parallax' => true,
)
),
)
);
return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_parallax_support' );

/**
* Add support "Scroll animation" to core/image.
*
* @param array $metadata Metadata for registering a block type.
* @return array
*/
function unitone_add_scroll_animation_support( $metadata ) {
if ( 'core/image' !== $metadata['name'] ) {
return $metadata;
}

$metadata['supports'] = array_merge(
$metadata['supports'],
array(
'unitone' => array_merge(
$metadata['supports']['unitone'] ?? array(),
array(
'overlay' => true,
'dropShadow' => true,
'parallax' => true,
'scrollAnimation' => true,
)
),
)
);

return $metadata;
}
add_filter( 'block_type_metadata', 'unitone_add_scroll_animation_support' );
add_filter( 'block_type_metadata', 'unitone_add_supports_to_core_image' );
5 changes: 5 additions & 0 deletions inc/blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,11 @@ function ( $block_content, $block ) {
$add_style( '--unitone--max-width', $get_attribute( 'maxWidth' ) );
}

// --unitone--min-width
if ( $is_supported( 'minWidth' ) ) {
$add_style( '--unitone--min-width', $get_attribute( 'minWidth' ) );
}

// --unitone--max-height
if ( $is_supported( 'maxHeight' ) || $has_supported_attribute( 'minHeight' ) ) {
$add_style( '--unitone--max-height', $get_attribute( 'maxHeight' ) );
Expand Down
2 changes: 1 addition & 1 deletion languages/ja.l10n.php

Large diffs are not rendered by default.

Binary file modified languages/ja.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion languages/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: unitone 0.0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/unitone\n"
"POT-Creation-Date: 2024-11-26T08:03:08+00:00\n"
"PO-Revision-Date: 2024-11-26 17:03+0900\n"
"PO-Revision-Date: 2024-11-28 19:56+0900\n"
"Last-Translator: inc2734 <inc@2inc.org>\n"
"Language-Team: \n"
"Language: ja\n"
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-11-26 17: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"]}}}
{"translation-revision-date":"2024-11-28 19:56+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-11-26 17: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"]}}}
{"translation-revision-date":"2024-11-28 19:56+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-11-26 17: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"]}}}
{"translation-revision-date":"2024-11-28 19:56+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-11-26 17: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"]}}}
{"translation-revision-date":"2024-11-28 19:56+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-11-26 17: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"]}}}
{"translation-revision-date":"2024-11-28 19:56+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-11-26 17: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"]}}}
{"translation-revision-date":"2024-11-28 19:56+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"]}}}
Loading

0 comments on commit 6f287fc

Please sign in to comment.