itmar-block-packages 1.6.2 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/README.md +18 -0
  2. package/build/index.asset.php +1 -1
  3. package/build/index.js +3 -3
  4. package/package.json +1 -1
  5. package/src/AnimationBlock.js +8 -8
  6. package/src/BlockPlace.js +62 -70
  7. package/src/DateElm.js +7 -7
  8. package/src/DraggableBox.js +4 -4
  9. package/src/GridControls.js +196 -137
  10. package/src/IconSelectControl.js +15 -15
  11. package/src/ShadowStyle.js +23 -23
  12. package/src/TypographyControls.js +5 -5
  13. package/src/ZipAddress.js +3 -3
  14. package/src/customFooks.js +1 -1
  15. package/src/index.js +3 -0
  16. package/src/validationCheck.js +10 -0
  17. package/src/wordpressApi.js +8 -8
  18. package/languages/itmar-block-packages-ja-2e59d6ebc088ea4b3d475a06e1e94824.json +0 -1
  19. package/languages/itmar-block-packages-ja-314423d5ad20380dc5fb85a96050381e.json +0 -1
  20. package/languages/itmar-block-packages-ja-3e946be5d900b4a727047c8a51bb058e.json +0 -1
  21. package/languages/itmar-block-packages-ja-5f1760422a0125b48fdcca644f4db89f.json +0 -1
  22. package/languages/itmar-block-packages-ja-800102e626a7ce0305d324a5bb0ee61e.json +0 -1
  23. package/languages/itmar-block-packages-ja-865f209aff5ee1f8efb51f6a62e8d8e1.json +0 -1
  24. package/languages/itmar-block-packages-ja-88eb778e4da0e010ceace8232ab1a901.json +0 -1
  25. package/languages/itmar-block-packages-ja-a418e2f5e97a053f5e0785a30f28b854.json +0 -1
  26. package/languages/itmar-block-packages-ja-ce2d14d174f0af0f13cd9a1302cebdd7.json +0 -1
  27. package/languages/itmar-block-packages-ja-f55909920e3bd84845271a62dbfb8dfe.json +0 -1
  28. package/languages/itmar-block-packages-ja-f6bd3c69ad85ee9ae9f1315af8f44e4a.json +0 -1
  29. package/languages/itmar-block-packages-ja.mo +0 -0
  30. package/languages/itmar-block-packages-ja.po +0 -1485
  31. package/languages/itmar-block-packages.pot +0 -530
@@ -277,24 +277,24 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
277
277
  return (
278
278
  <>
279
279
  <PanelBody
280
- title={__("Shadow Type", "itmar-block-packages")}
280
+ title={__("Shadow Type", "block-collections")}
281
281
  initialOpen={true}
282
282
  >
283
283
  <div className="itmar_shadow_type">
284
284
  <RadioControl
285
285
  selected={shadowType}
286
286
  options={[
287
- { label: __("Nomal", "itmar-block-packages"), value: "nomal" },
287
+ { label: __("Nomal", "block-collections"), value: "nomal" },
288
288
  {
289
- label: __("Neumorphism", "itmar-block-packages"),
289
+ label: __("Neumorphism", "block-collections"),
290
290
  value: "newmor",
291
291
  },
292
292
  {
293
- label: __("Claymorphism", "itmar-block-packages"),
293
+ label: __("Claymorphism", "block-collections"),
294
294
  value: "claymor",
295
295
  },
296
296
  {
297
- label: __("Grassmophism", "itmar-block-packages"),
297
+ label: __("Grassmophism", "block-collections"),
298
298
  value: "glassmor",
299
299
  },
300
300
  ]}
@@ -306,7 +306,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
306
306
  {shadowType !== "claymor" && (
307
307
  <div className="embos">
308
308
  <RadioControl
309
- label={__("unevenness", "itmar-block-packages")}
309
+ label={__("unevenness", "block-collections")}
310
310
  selected={embos}
311
311
  options={[{ value: "swell" }, { value: "dent" }]}
312
312
  onChange={(changeOption) =>
@@ -319,12 +319,12 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
319
319
 
320
320
  {shadowType === "nomal" && (
321
321
  <PanelBody
322
- title={__("Nomal settings", "itmar-block-packages")}
322
+ title={__("Nomal settings", "block-collections")}
323
323
  initialOpen={false}
324
324
  >
325
325
  <RangeControl
326
326
  value={spread}
327
- label={__("Spread", "itmar-block-packages")}
327
+ label={__("Spread", "block-collections")}
328
328
  max={50}
329
329
  min={0}
330
330
  onChange={(val) => setShadowState({ ...shadowState, spread: val })}
@@ -332,7 +332,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
332
332
  />
333
333
  <RangeControl
334
334
  value={lateral}
335
- label={__("Lateral direction", "itmar-block-packages")}
335
+ label={__("Lateral direction", "block-collections")}
336
336
  max={50}
337
337
  min={0}
338
338
  onChange={(val) => setShadowState({ ...shadowState, lateral: val })}
@@ -340,7 +340,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
340
340
  />
341
341
  <RangeControl
342
342
  value={longitude}
343
- label={__("Longitudinal direction", "itmar-block-packages")}
343
+ label={__("Longitudinal direction", "block-collections")}
344
344
  max={50}
345
345
  min={0}
346
346
  onChange={(val) =>
@@ -350,7 +350,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
350
350
  />
351
351
  <RangeControl
352
352
  value={nomalBlur}
353
- label={__("Blur", "itmar-block-packages")}
353
+ label={__("Blur", "block-collections")}
354
354
  max={20}
355
355
  min={0}
356
356
  onChange={(val) =>
@@ -359,11 +359,11 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
359
359
  withInputField={false}
360
360
  />
361
361
  <PanelColorGradientSettings
362
- title={__("Shadow Color Setting", "itmar-block-packages")}
362
+ title={__("Shadow Color Setting", "block-collections")}
363
363
  settings={[
364
364
  {
365
365
  colorValue: shadowColor,
366
- label: __("Choose Shadow color", "itmar-block-packages"),
366
+ label: __("Choose Shadow color", "block-collections"),
367
367
  onColorChange: (newValue) =>
368
368
  setShadowState({ ...shadowState, shadowColor: newValue }),
369
369
  },
@@ -374,12 +374,12 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
374
374
 
375
375
  {shadowType === "newmor" && (
376
376
  <PanelBody
377
- title={__("Neumorphism settings", "itmar-block-packages")}
377
+ title={__("Neumorphism settings", "block-collections")}
378
378
  initialOpen={false}
379
379
  >
380
380
  <RangeControl
381
381
  value={distance}
382
- label={__("Distance", "itmar-block-packages")}
382
+ label={__("Distance", "block-collections")}
383
383
  max={50}
384
384
  min={0}
385
385
  onChange={(val) =>
@@ -389,7 +389,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
389
389
  />
390
390
  <RangeControl
391
391
  value={intensity}
392
- label={__("Intensity", "itmar-block-packages")}
392
+ label={__("Intensity", "block-collections")}
393
393
  max={100}
394
394
  min={0}
395
395
  onChange={(val) =>
@@ -399,7 +399,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
399
399
  />
400
400
  <RangeControl
401
401
  value={blur}
402
- label={__("Blur", "itmar-block-packages")}
402
+ label={__("Blur", "block-collections")}
403
403
  max={20}
404
404
  min={0}
405
405
  onChange={(val) => setShadowState({ ...shadowState, blur: val })}
@@ -425,12 +425,12 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
425
425
  )}
426
426
  {shadowType === "claymor" && (
427
427
  <PanelBody
428
- title={__("Claymorphism settings", "itmar-block-packages")}
428
+ title={__("Claymorphism settings", "block-collections")}
429
429
  initialOpen={false}
430
430
  >
431
431
  <RangeControl
432
432
  value={opacity}
433
- label={__("Opacity", "itmar-block-packages")}
433
+ label={__("Opacity", "block-collections")}
434
434
  max={1}
435
435
  min={0}
436
436
  step={0.1}
@@ -479,12 +479,12 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
479
479
 
480
480
  {shadowType === "glassmor" && (
481
481
  <PanelBody
482
- title={__("Grassmophism settings", "itmar-block-packages")}
482
+ title={__("Grassmophism settings", "block-collections")}
483
483
  initialOpen={false}
484
484
  >
485
485
  <RangeControl
486
486
  value={glassblur}
487
- label={__("Glass blur", "itmar-block-packages")}
487
+ label={__("Glass blur", "block-collections")}
488
488
  max={20}
489
489
  min={0}
490
490
  onChange={(val) =>
@@ -494,7 +494,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
494
494
  />
495
495
  <RangeControl
496
496
  value={glassopa}
497
- label={__("Glass Opacity", "itmar-block-packages")}
497
+ label={__("Glass Opacity", "block-collections")}
498
498
  max={1}
499
499
  min={0}
500
500
  step={0.1}
@@ -505,7 +505,7 @@ const ShadowStyle = ({ shadowStyle, onChange }) => {
505
505
  />
506
506
  <fieldset>
507
507
  <ToggleControl
508
- label={__("Show outline", "itmar-block-packages")}
508
+ label={__("Show outline", "block-collections")}
509
509
  checked={hasOutline}
510
510
  onChange={() =>
511
511
  setShadowState({ ...shadowState, hasOutline: !hasOutline })
@@ -92,15 +92,15 @@ const TypographyControls = ({
92
92
  }}
93
93
  label={
94
94
  !isMobile
95
- ? __("Size(desk top)", "itmar-block-packages")
96
- : __("Size(mobile)", "itmar-block-packages")
95
+ ? __("Size(desk top)", "block-collections")
96
+ : __("Size(mobile)", "block-collections")
97
97
  }
98
98
  value={!isMobile ? default_fontSize : mobile_fontSize}
99
99
  units={units}
100
100
  />
101
101
 
102
102
  <FontSelect
103
- label={__("font family", "itmar-block-packages")}
103
+ label={__("font family", "block-collections")}
104
104
  value={fontFamily}
105
105
  onChange={(newValue) => {
106
106
  const newStyle = { ...fontStyle, fontFamily: newValue };
@@ -109,7 +109,7 @@ const TypographyControls = ({
109
109
  />
110
110
 
111
111
  <label className="components-base-control__label">
112
- {__("font weight", "itmar-block-packages")}
112
+ {__("font weight", "block-collections")}
113
113
  </label>
114
114
  <PanelRow className="itmar_weight_row">
115
115
  <RadioControl
@@ -130,7 +130,7 @@ const TypographyControls = ({
130
130
  </PanelRow>
131
131
 
132
132
  <label className="components-base-control__label">
133
- {__("Italic display", "itmar-block-packages")}
133
+ {__("Italic display", "block-collections")}
134
134
  </label>
135
135
  <ToggleControl
136
136
  checked={isItalic}
package/src/ZipAddress.js CHANGED
@@ -6,7 +6,7 @@ export const fetchZipToAddress = async (zipNum) => {
6
6
  alert(
7
7
  __(
8
8
  "Please enter your postal code as 7 digits without hyphens.",
9
- "itmar-block-packages"
9
+ "block-collections"
10
10
  )
11
11
  );
12
12
  return null;
@@ -25,11 +25,11 @@ export const fetchZipToAddress = async (zipNum) => {
25
25
  const result = data.results[0];
26
26
  return result;
27
27
  } else {
28
- alert(__("No matching address found", "itmar-block-packages"));
28
+ alert(__("No matching address found", "block-collections"));
29
29
  return null;
30
30
  }
31
31
  } catch (error) {
32
- alert(__("Communication failed", "itmar-block-packages"));
32
+ alert(__("Communication failed", "block-collections"));
33
33
  return null;
34
34
  }
35
35
  };
@@ -319,7 +319,7 @@ export function useDuplicateBlockRemove(clientId, blockNames) {
319
319
  "error", // 通知のタイプ(エラー)
320
320
  __(
321
321
  "A new block cannot be inserted because a block has already been placed.",
322
- "itmar-block-packages"
322
+ "block-collections"
323
323
  ), // メッセージ
324
324
  {
325
325
  type: "snackbar", // 通知のスタイル
package/src/index.js CHANGED
@@ -91,6 +91,9 @@ export {
91
91
  //インナーブロック関連の関数
92
92
  export { flattenBlocks, useTargetBlocks } from "./blockStore";
93
93
 
94
+ //バリデーションチェック関連の関数
95
+ export { isValidUrlWithUrlApi } from "./validationCheck";
96
+
94
97
  //特定の投稿タイプの投稿に含まれる本ブロックの属性を書き換える
95
98
  export { default as UpdateAllPostsBlockAttributes } from "./UpdateAllPostsBlockAttributes";
96
99
 
@@ -0,0 +1,10 @@
1
+ //URLのバリデーションチェック
2
+ export const isValidUrlWithUrlApi = (string) => {
3
+ try {
4
+ const cleanString = string.replace(/<[^>]+>/g, "");
5
+ new URL(cleanString);
6
+ return true;
7
+ } catch (err) {
8
+ return false;
9
+ }
10
+ };
@@ -165,7 +165,7 @@ const ChoiceControl = (props) => {
165
165
  <div className="tax_label">
166
166
  {choice.name}
167
167
  <ToggleControl
168
- label={__("Display", "itmar-block-packages")}
168
+ label={__("Display", "block-collections")}
169
169
  checked={dispTaxonomies.some((tax) => tax === choice.slug)}
170
170
  onChange={(checked) => {
171
171
  const newChoiceFields = handleChoiceChange(
@@ -226,7 +226,7 @@ const ChoiceControl = (props) => {
226
226
  {choice.title && (
227
227
  <ToggleControl
228
228
  className="field_choice"
229
- label={__("Title", "itmar-block-packages")}
229
+ label={__("Title", "block-collections")}
230
230
  checked={choiceItems.some(
231
231
  (choiceField) => choiceField === "title"
232
232
  )}
@@ -243,7 +243,7 @@ const ChoiceControl = (props) => {
243
243
  {choice.date && (
244
244
  <ToggleControl
245
245
  className="field_choice"
246
- label={__("Date", "itmar-block-packages")}
246
+ label={__("Date", "block-collections")}
247
247
  checked={choiceItems.some(
248
248
  (choiceField) => choiceField === "date"
249
249
  )}
@@ -260,7 +260,7 @@ const ChoiceControl = (props) => {
260
260
  {choice.excerpt && (
261
261
  <ToggleControl
262
262
  className="field_choice"
263
- label={__("Excerpt", "itmar-block-packages")}
263
+ label={__("Excerpt", "block-collections")}
264
264
  checked={choiceItems.some(
265
265
  (choiceField) => choiceField === "excerpt"
266
266
  )}
@@ -277,7 +277,7 @@ const ChoiceControl = (props) => {
277
277
  {(choice.featured_media || choice.featured_media === 0) && (
278
278
  <ToggleControl
279
279
  className="field_choice"
280
- label={__("Featured Image", "itmar-block-packages")}
280
+ label={__("Featured Image", "block-collections")}
281
281
  checked={choiceItems.some(
282
282
  (choiceField) => choiceField === "featured_media"
283
283
  )}
@@ -295,7 +295,7 @@ const ChoiceControl = (props) => {
295
295
  <div className="itmar_custom_field_set">
296
296
  <ToggleControl
297
297
  className="field_choice"
298
- label={__("Single Page Link", "itmar-block-packages")}
298
+ label={__("Single Page Link", "block-collections")}
299
299
  checked={choiceItems.some(
300
300
  (choiceField) => choiceField === "link"
301
301
  )}
@@ -331,7 +331,7 @@ const ChoiceControl = (props) => {
331
331
  <p>
332
332
  {__(
333
333
  "If no block is specified, a link will be set to the parent block, Design Group.",
334
- "itmar-block-packages"
334
+ "block-collections"
335
335
  )}
336
336
  </p>
337
337
  </div>
@@ -339,7 +339,7 @@ const ChoiceControl = (props) => {
339
339
  {(metaFlg || acfFlg) && (
340
340
  <>
341
341
  <div className="custom_field_label">
342
- {__("Custom Field", "itmar-block-packages")}
342
+ {__("Custom Field", "block-collections")}
343
343
  </div>
344
344
  <div className="custom_field_area">
345
345
  {dispCustumFields({
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/ShadowStyle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Shadow Type":["\u30b7\u30e3\u30c9\u30fc\u30bf\u30a4\u30d7"],"Nomal":["\u30ce\u30fc\u30de\u30eb"],"Neumorphism":["\u30cb\u30e5\u30fc\u30e2\u30d5\u30a3\u30ba\u30e0"],"Claymorphism":["\u30af\u30ec\u30a4\u30e2\u30d5\u30a3\u30ba\u30e0"],"Grassmophism":["\u30b0\u30e9\u30b9\u30e2\u30d5\u30a3\u30ba\u30e0"],"unevenness":["\u51f9\u51f8"],"Nomal settings":["\u30ce\u30fc\u30de\u30eb\u306e\u8a2d\u5b9a"],"Spread":["\u5e83\u304c\u308a"],"Lateral direction":["\u6a2a\u65b9\u5411"],"Longitudinal direction":["\u7e26\u65b9\u5411"],"Blur":["\u307c\u304b\u3057"],"Shadow Color Setting":["\u8272\u8a2d\u5b9a"],"Choose Shadow color":["\u5f71\u306e\u8272\u3092\u9078\u629e"],"Neumorphism settings":["\u30cb\u30e5\u30fc\u30e2\u30d5\u30a3\u30ba\u30e0\u8a2d\u5b9a"],"Distance":["\u8ddd\u96e2"],"Intensity":["\u5f37\u5ea6"],"Claymorphism settings":["\u30af\u30ec\u30a4\u30e2\u30d5\u30a3\u30ba\u30e0\u8a2d\u5b9a"],"Opacity":["\u900f\u660e\u5ea6"],"Grassmophism settings":["\u30b0\u30e9\u30b9\u30e2\u30d5\u30a3\u30ba\u30e0\u8a2d\u5b9a"],"Glass blur":["\u307c\u304b\u3057"],"Glass Opacity":["\u900f\u660e\u5ea6"],"Show outline":["\u30a2\u30a6\u30c8\u30e9\u30a4\u30f3"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/wordpressApi.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Display":["\u8868\u793a"],"Title":["\u30bf\u30a4\u30c8\u30eb"],"Date":["\u65e5\u4ed8"],"Excerpt":["\u629c\u7c8b"],"Featured Image":["\u30a2\u30a4\u30ad\u30e3\u30c3\u30c1\u753b\u50cf"],"Single Page Link":["\u30b7\u30f3\u30b0\u30eb\u30da\u30fc\u30b8\u3078\u306e\u30ea\u30f3\u30af"],"If no block is specified, a link will be set to the parent block, Design Group.":["\u30d6\u30ed\u30c3\u30af\u306e\u8a2d\u5b9a\u304c\u306a\u3051\u308c\u3070\u89aa\u30d6\u30ed\u30c3\u30af\u306eDesign Group\u306b\u30ea\u30f3\u30af\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u3002"],"Custom Field":["\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/customFooks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"A new block cannot be inserted because a block has already been placed.":["\u30d6\u30ed\u30c3\u30af\u304c\u3059\u3067\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u65b0\u3057\u3044\u30d6\u30ed\u30c3\u30af\u3092\u633f\u5165\u3067\u304d\u307e\u305b\u3093\u3002"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/DraggableBox.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Vertical":["\u7e26\u65b9\u5411"],"Position Setting":["\u4f4d\u7f6e\u8a2d\u5b9a"],"Horizen":["\u6a2a\u65b9\u5411"],"Reset":["\u30ea\u30bb\u30c3\u30c8"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/BlockPlace.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"upper alignment":["\u4e0a"],"left alignment":["\u5de6"],"lower alignment":["\u4e0b"],"right alignment":["\u53f3"],"Block Max Width(Mobile)":["\u30d6\u30ed\u30c3\u30af\u306e\u6700\u5927\u5e45(\u30e2\u30d0\u30a4\u30eb)"],"Block Width(Mobile)":["\u30d6\u30ed\u30c3\u30af\u306e\u5e45(\u30e2\u30d0\u30a4\u30eb)"],"Block Max Width(DeskTop)":["\u30d6\u30ed\u30c3\u30af\u306e\u6700\u5927\u5e45(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"Block Width(DeskTop)":["\u30d6\u30ed\u30c3\u30af\u306e\u5e45(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"Block placement":["\u30d6\u30ed\u30c3\u30af\u306e\u914d\u7f6e"],"InnerBlock direction(Mobile)":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u306e\u65b9\u5411(\u30e2\u30d0\u30a4\u30eb)"],"InnerBlock direction(DeskTop)":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u306e\u65b9\u5411(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"block":["\u30d6\u30ed\u30c3\u30af"],"virtical":["\u7e26\u65b9\u5411"],"horizen":["\u6a2a\u65b9\u5411"],"grid":["\u30b0\u30ea\u30c3\u30c9"],"reverse":["\u53cd\u8ee2"],"wrap":["\u6539\u884c"],"InnerBlock Main Axis(Mobile)":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u306e\u4e3b\u8ef8(\u30e2\u30d0\u30a4\u30eb)"],"InnerBlock Main Axis(DeskTop)":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u306e\u4e3b\u8ef8(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"center alignment":["\u4e2d\u592e"],"beteen stretch":["\u5747\u7b49(\u4f59\u767d\u306a\u3057)"],"around stretch":["\u5747\u7b49(\u4f59\u767d\u3042\u308a)"],"InnerBlock Cross Axis(Mobile)":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u306e\u4ea4\u5dee\u8ef8(\u30e2\u30d0\u30a4\u30eb)"],"InnerBlock Cross Axis(DeskTop)":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u306e\u4ea4\u5dee\u8ef8(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"Alignment in container(Mobile)":["\u30b3\u30f3\u30c6\u30ca\u306e\u914d\u7f6e(\u30e2\u30d0\u30a4\u30eb)"],"Alignment in container(DeskTop)":["\u30b3\u30f3\u30c6\u30ca\u306e\u914d\u7f6e(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"Grid Info settings(Mobile)":["\u30b0\u30ea\u30c3\u30c9\u8a2d\u5b9a(\u30e2\u30d0\u30a4\u30eb)"],"Grid Info settings(DeskTop)":["\u30b0\u30ea\u30c3\u30c9\u8a2d\u5b9a(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"Open Setting Modal":["\u8a2d\u5b9a\u753b\u9762\u3092\u958b\u304f"],"Position Type":["\u30dd\u30b8\u30b7\u30e7\u30f3\u30bf\u30a4\u30d7"],"Static":["\u9759\u7684"],"Relative":["\u76f8\u5bfe\u4f4d\u7f6e"],"Absolute":["\u7d76\u5bfe\u4f4d\u7f6e"],"Fix":["\u56fa\u5b9a"],"Sticky":["\u7c98\u7740"],"Center Vertically and Horizontally":["\u5782\u76f4\u65b9\u5411\u3068\u6c34\u5e73\u65b9\u5411\u306b\u4e2d\u592e\u63c3\u3048"],"Block Position(Mobile)":["\u30d6\u30ed\u30c3\u30af\u306e\u4f4d\u7f6e(\u30e2\u30d0\u30a4\u30eb)"],"Block Position(DeskTop)":["\u30d6\u30ed\u30c3\u30af\u306e\u4f4d\u7f6e(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"],"Vertical":["\u7e26\u65b9\u5411"],"Is Center":["\u4e2d\u592e\u63c3\u3048"],"Horizon":["\u6a2a\u65b9\u5411"],"Wide Size":["\u5e45\u5e83"],"Content Size":["\u30b3\u30f3\u30c6\u30f3\u30c8\u5e45"],"Block Height(Mobile)":["\u30d6\u30ed\u30c3\u30af\u306e\u9ad8\u3055(\u30e2\u30d0\u30a4\u30eb)"],"Block Height(DeskTop)":["\u30d6\u30ed\u30c3\u30af\u306e\u9ad8\u3055(\u30c7\u30b9\u30af\u30c8\u30c3\u30d7)"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/GridControls.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Lateral Alignment":["\u6a2a\u914d\u7f6e"],"Vertical Alignment":["\u7e26\u914d\u7f6e"],"Number of Row ":["\u884c\u756a\u53f7"],"Number of Colum":["\u5217\u756a\u53f7"],"Row Gap":["\u884c\u9593"],"Colum Gap":["\u5217\u9593"],"Element placement":["\u8981\u7d20\u306e\u914d\u7f6e"],"Clear":["\u30af\u30ea\u30a2"],"InnerBlock Name":["\u30a4\u30f3\u30ca\u30fc\u30d6\u30ed\u30c3\u30af\u540d"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/DateElm.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Period Setting":["\u671f\u9593\u8a2d\u5b9a"],"Start of period":["\u671f\u9593\u306e\u59cb\u671f"],"Year":["\u5e74"],"Month":["\u6708"],"End of period":["\u671f\u9593\u306e\u7d42\u671f"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/IconSelectControl.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Select the icon from and enter Unicode (the upper right four digits of the selection dialog). ":["\u304b\u3089\u30a2\u30a4\u30b3\u30f3\u3092\u9078\u629e\u3057\u3001Unicode\uff08\u9078\u629e\u30c0\u30a4\u30a2\u30ed\u30b0\u306e\u53f3\u4e0a4\u6841\uff09\u3092\u5165\u529b\u3057\u307e\u3059\u3002"],"Enter the URL for the image.":["\u753b\u50cf\u306eURL\u3092\u5165\u529b\u3057\u307e\u3059\u3002"],"Please select the first class name shown in the HTML code field of the selection dialog. ":["\u9078\u629e\u30c0\u30a4\u30a2\u30ed\u30b0\u306eHTML\u30b3\u30fc\u30c9\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u8868\u793a\u3055\u308c\u308b\u6700\u521d\u306e\u30af\u30e9\u30b9\u540d\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Icon Types":["\u30a2\u30a4\u30b3\u30f3\u30bf\u30a4\u30d7"],"Awesome":["\u30d5\u30a9\u30f3\u30c8\u30aa\u30fc\u30b5\u30e0"],"Image":["\u753b\u50cf"],"Avatar":["\u30a2\u30d0\u30bf\u30fc"],"icon name":["\u30a2\u30a4\u30b3\u30f3\u540d"],"Icon Family":["\u30a2\u30a4\u30b3\u30f3\u30d5\u30a1\u30df\u30ea\u30fc"],"icon url":["\u30a2\u30a4\u30b3\u30f3URL"],"Size":["\u30b5\u30a4\u30ba"],"spacing to end":["\u7d42\u7aef\u307e\u3067\u306e\u7a7a\u767d"],"Arrangement":["\u914d\u7f6e"],"left":["\u5de6"],"right":["\u53f3"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/ZipAddress.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Please enter your postal code as 7 digits without hyphens.":["\u90f5\u4fbf\u756a\u53f7\u306f\u30cf\u30a4\u30d5\u30f3\u629c\u304d\u306e7\u6841\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"No matching address found":["\u4e00\u81f4\u3059\u308b\u4f4f\u6240\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"],"Communication failed":["\u901a\u4fe1\u306b\u5931\u6557\u3057\u307e\u3057\u305f"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/AnimationBlock.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Animation Setting":["\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a"],"Is Animation":["\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3055\u305b\u308b"],"Animation Pattern":["\u30d1\u30bf\u30fc\u30f3"],"Animation duration time":["\u7d99\u7d9a\u6642\u9593"],"Animation delay time":["\u9045\u5ef6\u6642\u9593"],"Animation Trigger":["\u958b\u59cb\u30c8\u30ea\u30ac\u30fc"],"Page Opend":["\u30da\u30fc\u30b8\u304c\u958b\u3044\u305f\u6642"],"Enter Visible":["\u53ef\u8996\u9818\u57df\u8868\u793a\u6642"]}}}
@@ -1 +0,0 @@
1
- {"translation-revision-date":"2025-06-08 13:07+0900","generator":"WP-CLI\/2.11.0","source":"src\/TypographyControls.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=2; plural=(n != 1);"},"Size(desk top)":["\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\uff08\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\uff09"],"Size(mobile)":["\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\uff08\u30e2\u30d0\u30a4\u30eb\uff09"],"font family":["\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc"],"font weight":["\u30d5\u30a9\u30f3\u30c8\u30a6\u30a7\u30a4\u30c8"],"Italic display":["\u659c\u4f53\u8868\u793a"]}}}