Plugin Directory

Changeset 3023845

Timestamp:
01/19/2024 05:56:44 AM (7 months ago)
Author:
inc2734
Message:

Version up. v6.2.0

Location:
snow-monkey-forms/trunk
Files:
48 edited

Legend:

Unmodified
Added
Removed
  • snow-monkey-forms/trunk/App/Control/File.php

    r2938545 r3023845  
    101101
    102102        return sprintf(
    103             '<div class="smf-file-control" tabindex="0">
    104                 <label>
    105                     <input type="file" %1$s>
    106                     <span class="smf-file-control__label">%2$s</span>
    107                     <span class="smf-file-control__filename">%3$s</span>
     103            '<div class="smf-file-control %1$s">
     104                <label tabindex="0">
     105                    <input type="file" %2$s>
     106                    <span class="smf-file-control__label">%3$s</span>
     107                    <span class="smf-file-control__filename smf-file-control__filename--no-file">%4$s</span>
     108                    <span class="smf-file-control__filename smf-file-control__filename--has-file"></span>
    108109                </label>
    109                 %4$s
     110               
    110111            </div>
    111             %5$s',
     112            %6$s
     113            %7$s',
     114            $value ? 'smf-file-control--uploaded' : '',
    112115            $this->_generate_attributes_string( $attributes ),
    113116            __( 'Choose file', 'snow-monkey-forms' ),
    114117            __( 'No file chosen', 'snow-monkey-forms' ),
     118
    115119            $value,
    116120            $description
  • snow-monkey-forms/trunk/App/Model/Meta.php

    r2938545 r3023845  
    3434     */
    3535    protected static $method;
     36
     37
     38
     39
     40
    3641
    3742    /**
     
    134139
    135140    /**
    136      * Return set form ID.
     141     * Return form ID.
    137142     *
    138143     * @return int
     
    168173
    169174    /**
    170      * Return set method.
     175     * Return method.
    171176     *
    172177     * @return string
     
    195200        static::_the_meta( 'method', $value );
    196201    }
     202
     203
     204
     205
     206
     207
     208
     209
     210
    197211}
  • snow-monkey-forms/trunk/App/Model/Responser.php

    r2938545 r3023845  
    77
    88namespace Snow_Monkey\Plugin\Forms\App\Model;
     9
     10
    911
    1012class Responser {
     
    9092        $this->data[ $name ] = $value;
    9193    }
     94
     95
     96
     97
     98
     99
     100
     101
     102
    92103}
  • snow-monkey-forms/trunk/App/Rest/Route/View.php

    r2938545 r3023845  
    4545        // Set form meta data and remove from post data.
    4646        if ( isset( $data[ Meta::get_key() ] ) ) {
    47             Meta::init( $data[ Meta::get_key() ] );
    48             unset( $data[ Meta::get_key() ] );
     47            $data[ Meta::get_key() ] = Meta::init( $data[ Meta::get_key() ] );
    4948        }
    5049
  • snow-monkey-forms/trunk/dist/blocks/file/style.css

    r2949852 r3023845  
    1 .smf-form .smf-item .smf-file-control{position:relative}.smf-form .smf-item .smf-file-control__filename,.smf-form .smf-item .smf-file-control__label{display:none}.smf-form .smf-item .smf-file-control>label{position:relative}@supports ((-webkit-appearance:none) or (appearance:none)) or (-moz-appearance:none){.smf-form .smf-item .smf-file-control:before{bottom:-3px;content:"";display:block;left:-3px;position:absolute;right:-3px;top:-3px}.smf-form .smf-item .smf-file-control:active:before,.smf-form .smf-item .smf-file-control:focus-within:before,.smf-form .smf-item .smf-file-control:focus:before{border:1px solid var(--_form-control-border-color-focus);border-radius:var(--_global--border-radius)}.smf-form .smf-item .smf-file-control>label{align-items:center;display:inline-flex;flex-wrap:nowrap}.smf-form .smf-item .smf-file-control>label>*{flex:0 0 auto}.smf-form .smf-item .smf-file-control__control{display:none}.smf-form .smf-item .smf-file-control__label{--_border-radius:var(--_global--border-radius);--_transition-duration:var(--_global--transition-duration);--_transition-function-timing:var(--_global--transition-function-timing);--_transition-delay:var(--_global--transition-delay);background-color:var(--_lighter-color-gray);background-image:linear-gradient(180deg,#fff,var(--_lighter-color-gray));border:1px solid var(--_form-control-border-color);border-radius:var(--_border-radius);border-radius:var(--_global--border-radius);color:var(--_color-text);cursor:pointer;display:inline-block;outline:0;padding:var(--_padding-2) var(--_padding-1);text-decoration:none;transition:border var(--_transition-duration) var(--_transition-function-timing) var(--_transition-delay)}.smf-form .smf-item .smf-file-control__label:hover{border-color:var(--_form-control-border-color-hover)}.smf-form .smf-item .smf-file-control__label:active,.smf-form .smf-item .smf-file-control__label:focus,.smf-form .smf-item .smf-file-control__label:focus-within,.smf-form .smf-item .smf-file-control__label[aria-selected=true]{border-color:var(--_form-control-border-color-focus)}.smf-form .smf-item .smf-file-control__label>input,.smf-form .smf-item .smf-file-control__label>textarea{border:none;outline:none}.smf-form .smf-item .smf-file-control__filename{display:inline-block;margin-left:1em}.smf-form .smf-item .smf-file-control__value{margin-top:.25em}}
     1.smf-form .smf-item .smf-file-control{}}
  • snow-monkey-forms/trunk/dist/css/app.css

    r3022129 r3023845  
    1 .smf-form .smf-item [data-invalid="1"]{border-color:#d98585}.smf-action .smf-button-control__control{--_border-radius:var(--_global--border-radius);--_transition-duration:var(--_global--transition-duration);--_transition-function-timing:var(--_global--transition-function-timing);--_transition-delay:var(--_global--transition-delay);background-color:var(--_lighter-color-gray);background-image:linear-gradient(180deg,#fff,var(--_lighter-color-gray));border:1px solid var(--_form-control-border-color);border-radius:var(--_border-radius);border-radius:var(--_global--border-radius);color:var(--_color-text);cursor:pointer;display:inline-block;outline:0;padding:var(--_padding-2) var(--_padding-1);text-decoration:none;transition:border var(--_transition-duration) var(--_transition-function-timing) var(--_transition-delay)}.smf-action .smf-button-control__control:hover{border-color:var(--_form-control-border-color-hover)}.smf-action .smf-button-control__control:active,.smf-action .smf-button-control__control:focus,.smf-action .smf-button-control__control:focus-within,.smf-action .smf-button-control__control[aria-selected=true]{border-color:var(--_form-control-border-color-focus)}.smf-action .smf-button-control__control>input,.smf-action .smf-button-control__control>textarea{border:none;outline:none}.smf-system-error-content-ready{display:none!important}.smf-form--business+.smf-action{margin:var(--_margin1) 0;text-align:center}.smf-form--business .smf-item{border:1px solid #ddd;margin-bottom:0;margin-top:0}.smf-form--business .smf-item:not(:first-child){border-top:none}.smf-form--business .smf-item--divider{border-left:none;border-right:none}.smf-form--business .smf-item--divider .smf-item__col{flex:1 1 auto;max-width:none;padding-left:0;padding-right:0}.smf-form--business .smf-item__col{padding:var(--_padding1)}.smf-form--business .smf-item__col--label{background-color:#f7f7f7;border-bottom:1px solid #ddd}@media (min-width:640px){.smf-form--business .smf-item{display:flex}.smf-form--business .smf-item__col{flex:1 1 auto}.smf-form--business .smf-item__col--label{border-bottom:none;border-right:1px solid #ddd;flex:0 0 14em;max-width:14em}.smf-form--business .smf-item__col--controls{flex:1 1 calc(100% - 14em);max-width:calc(100% - 14em)}}.smf-form--letter+.smf-action{margin:var(--_margin1) 0;text-align:center}.smf-form--letter .smf-item{margin-bottom:0;margin-top:0;padding:1rem 0}.smf-form--letter .smf-item__col--label{padding-bottom:var(--_padding-1)}.smf-form--letter .smf-text-control__control{max-width:100%;width:100%}.smf-form--simple-table+.smf-action{margin:var(--_margin1) 0;text-align:center}.smf-form--simple-table .smf-item{margin-bottom:0;margin-top:0;padding:1rem 0}.smf-form--simple-table .smf-item--divider .smf-item__col{flex:1 1 auto;max-width:none}.smf-form--simple-table .smf-item__col--label{padding-bottom:var(--_padding-1)}@media (min-width:640px){.smf-form--simple-table .smf-item{display:flex}.smf-form--simple-table .smf-item__col{flex:1 1 auto}.smf-form--simple-table .smf-item__col--label{flex:0 0 14em;max-width:14em;padding-bottom:0;padding-right:var(--_padding1)}.smf-form--simple-table .smf-item__col--controls{flex:1 1 calc(100% - 14em);max-width:calc(100% - 14em)}}.smf-action .smf-button-control__control{padding-left:var(--_padding1);padding-right:var(--_padding1)}.smf-action .smf-button-control+.smf-button-control{margin-left:var(--_margin-1)}.smf-action .smf-button-control__control{position:relative}.smf-action .smf-button-control__control .smf-sending{position:absolute;right:5px;top:50%;transform:translateY(-50%)}.smf-control-fieldset{display:contents}.smf-control-description,.smf-control-fieldset>*+*{margin-top:var(--_margin-2)}.smf-control-description{--_font-size-level:-1;color:var(--_dark-color-gray);font-size:var(--_font-size);line-height:var(--_line-height)}.smf-error-messages{color:#cc3033;margin-top:var(--_margin-2)}.smf-progress-tracker{display:flex;flex-wrap:nowrap;list-style:none;margin-bottom:var(--_margin1);margin-left:0;padding-left:0}.smf-progress-tracker__item{align-items:center;display:flex;flex:1 1 auto;flex-direction:column;margin:0;position:relative;width:33.33333%}.smf-progress-tracker__item:after,.smf-progress-tracker__item:before{background-color:var(--_light-color-gray);content:"";display:block;height:1px;position:absolute;top:12px}.smf-progress-tracker__item:before{left:0;right:50%}.smf-progress-tracker__item:after{left:50%;right:0}.smf-progress-tracker__item--complete:after,.smf-progress-tracker__item--input:before{display:none}.smf-progress-tracker__item__number{align-items:center;background-color:var(--_light-color-gray);border-radius:100%;color:#fff;display:flex;height:24px;justify-content:center;letter-spacing:0;overflow:hidden;position:relative;width:24px;z-index:1}.smf-progress-tracker__item__text{color:var(--_light-color-gray);margin-top:.5em}[data-screen=back] .smf-progress-tracker__item--input .smf-progress-tracker__item__number,[data-screen=complete] .smf-progress-tracker__item--complete .smf-progress-tracker__item__number,[data-screen=confirm] .smf-progress-tracker__item--confirm .smf-progress-tracker__item__number,[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__number,[data-screen=invalid] .smf-progress-tracker__item--input .smf-progress-tracker__item__number{background-color:var(--_color-text);font-weight:700}[data-screen=back] .smf-progress-tracker__item--input .smf-progress-tracker__item__text,[data-screen=complete] .smf-progress-tracker__item--complete .smf-progress-tracker__item__text,[data-screen=confirm] .smf-progress-tracker__item--confirm .smf-progress-tracker__item__text,[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__text,[data-screen=invalid] .smf-progress-tracker__item--input .smf-progress-tracker__item__text{color:var(--_color-text);font-weight:700}@keyframes smf-sending{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.smf-sending[aria-hidden=true]{visibility:hidden}.smf-sending:before{animation:smf-sending 2s ease-out 0s infinite;border:1px solid #00000080;border-radius:100%;border-top-color:#0000;content:"";display:block;height:10px;width:10px}.smf-focus-point{position:relative;top:-100px;visibility:hidden}.smf-system-error-status-text{--_font-size-level:-1;color:var(--_color-gray);font-size:var(--_font-size);line-height:var(--_line-height)}html :where(.editor-styles-wrapper){display:block}
     1.smf-form .smf-item [data-invalid="1"]{border-color:#d98585}.smf-action .smf-button-control__control{--_border-radius:var(--_global--border-radius);--_transition-duration:var(--_global--transition-duration);--_transition-function-timing:var(--_global--transition-function-timing);--_transition-delay:var(--_global--transition-delay);background-color:var(--_lighter-color-gray);background-image:linear-gradient(180deg,#fff,var(--_lighter-color-gray));border:1px solid var(--_form-control-border-color);border-radius:var(--_border-radius);border-radius:var(--_global--border-radius);color:var(--_color-text);cursor:pointer;display:inline-block;outline:0;padding:var(--_padding-2) var(--_padding-1);text-decoration:none;transition:border var(--_transition-duration) var(--_transition-function-timing) var(--_transition-delay)}.smf-action .smf-button-control__control:hover{border-color:var(--_form-control-border-color-hover)}.smf-action .smf-button-control__control:active,.smf-action .smf-button-control__control:focus,.smf-action .smf-button-control__control:focus-within,.smf-action .smf-button-control__control[aria-selected=true]{border-color:var(--_form-control-border-color-focus)}.smf-action .smf-button-control__control>input,.smf-action .smf-button-control__control>textarea{border:none;outline:none}.smf-system-error-content-ready{display:none!important}.smf-form--business+.smf-action{margin:var(--_margin1) 0;text-align:center}.smf-form--business .smf-item{border:1px solid #ddd;margin-bottom:0;margin-top:0}.smf-form--business .smf-item:not(:first-child){border-top:none}.smf-form--business .smf-item--divider{border-left:none;border-right:none}.smf-form--business .smf-item--divider .smf-item__col{flex:1 1 auto;max-width:none;padding-left:0;padding-right:0}.smf-form--business .smf-item__col{padding:var(--_padding1)}.smf-form--business .smf-item__col--label{background-color:#f7f7f7;border-bottom:1px solid #ddd}@media (min-width:640px){.smf-form--business .smf-item{display:flex}.smf-form--business .smf-item__col{flex:1 1 auto}.smf-form--business .smf-item__col--label{border-bottom:none;border-right:1px solid #ddd;flex:0 0 14em;max-width:14em}.smf-form--business .smf-item__col--controls{flex:1 1 calc(100% - 14em);max-width:calc(100% - 14em)}}.smf-form--letter+.smf-action{margin:var(--_margin1) 0;text-align:center}.smf-form--letter .smf-item{margin-bottom:0;margin-top:0;padding:1rem 0}.smf-form--letter .smf-item__col--label{padding-bottom:var(--_padding-1)}.smf-form--letter .smf-text-control__control{max-width:100%;width:100%}.smf-form--simple-table+.smf-action{margin:var(--_margin1) 0;text-align:center}.smf-form--simple-table .smf-item{margin-bottom:0;margin-top:0;padding:1rem 0}.smf-form--simple-table .smf-item--divider .smf-item__col{flex:1 1 auto;max-width:none}.smf-form--simple-table .smf-item__col--label{padding-bottom:var(--_padding-1)}@media (min-width:640px){.smf-form--simple-table .smf-item{display:flex}.smf-form--simple-table .smf-item__col{flex:1 1 auto}.smf-form--simple-table .smf-item__col--label{flex:0 0 14em;max-width:14em;padding-bottom:0;padding-right:var(--_padding1)}.smf-form--simple-table .smf-item__col--controls{flex:1 1 calc(100% - 14em);max-width:calc(100% - 14em)}}.smf-action .smf-button-control__control{padding-left:var(--_padding1);padding-right:var(--_padding1)}.smf-action .smf-button-control+.smf-button-control{margin-left:var(--_margin-1)}.smf-action .smf-button-control__control{position:relative}.smf-action .smf-button-control__control .smf-sending{position:absolute;right:5px;top:50%;transform:translateY(-50%)}.smf-control-fieldset{display:contents}.smf-control-)}.smf-error-messages{color:#cc3033;margin-top:var(--_margin-2)}.smf-progress-tracker{display:flex;flex-wrap:nowrap;list-style:none;margin-bottom:var(--_margin1);margin-left:0;padding-left:0}.smf-progress-tracker__item{align-items:center;display:flex;flex:1 1 auto;flex-direction:column;margin:0;position:relative;width:33.33333%}.smf-progress-tracker__item:after,.smf-progress-tracker__item:before{background-color:var(--_light-color-gray);content:"";display:block;height:1px;position:absolute;top:12px}.smf-progress-tracker__item:before{left:0;right:50%}.smf-progress-tracker__item:after{left:50%;right:0}.smf-progress-tracker__item--complete:after,.smf-progress-tracker__item--input:before{display:none}.smf-progress-tracker__item__number{align-items:center;background-color:var(--_light-color-gray);border-radius:100%;color:#fff;display:flex;height:24px;justify-content:center;letter-spacing:0;overflow:hidden;position:relative;width:24px;z-index:1}.smf-progress-tracker__item__text{color:var(--_light-color-gray);margin-top:.5em}[data-screen=back] .smf-progress-tracker__item--input .smf-progress-tracker__item__number,[data-screen=complete] .smf-progress-tracker__item--complete .smf-progress-tracker__item__number,[data-screen=confirm] .smf-progress-tracker__item--confirm .smf-progress-tracker__item__number,[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__number,[data-screen=invalid] .smf-progress-tracker__item--input .smf-progress-tracker__item__number{background-color:var(--_color-text);font-weight:700}[data-screen=back] .smf-progress-tracker__item--input .smf-progress-tracker__item__text,[data-screen=complete] .smf-progress-tracker__item--complete .smf-progress-tracker__item__text,[data-screen=confirm] .smf-progress-tracker__item--confirm .smf-progress-tracker__item__text,[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__text,[data-screen=invalid] .smf-progress-tracker__item--input .smf-progress-tracker__item__text{color:var(--_color-text);font-weight:700}@keyframes smf-sending{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.smf-sending[aria-hidden=true]{visibility:hidden}.smf-sending:before{animation:smf-sending 2s ease-out 0s infinite;border:1px solid #00000080;border-radius:100%;border-top-color:#0000;content:"";display:block;height:10px;width:10px}.smf-focus-point{position:relative;top:-100px;visibility:hidden}.smf-system-error-status-text{--_font-size-level:-1;color:var(--_color-gray);font-size:var(--_font-size);line-height:var(--_line-height)}html :where(.editor-styles-wrapper){display:block}
  • snow-monkey-forms/trunk/dist/js/app.asset.php

    r2928041 r3023845  
    1 <?php return array('dependencies' => array(), 'version' => '9d36e8058cc705e2d2eb');
     1<?php return array('dependencies' => array(), 'version' => '');
  • snow-monkey-forms/trunk/dist/js/app.js

    r2928041 r3023845  
    1 (()=>{"use strict";const e=function(e,t){var r,s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];try{r=new CustomEvent(t,{bubbles:n,cancelable:a,detail:s})}catch(e){(r=document.createEvent("CustomEvent")).initCustomEvent(t,n,a,s)}e.dispatchEvent(r)};function t(t){t.preventDefault();const r=t.target,s=r.querySelector(".smf-focus-point"),n=r.querySelector(".smf-form"),a=r.querySelector(".smf-action"),o=new FormData(r),c=a.querySelector('[data-clicked="true"]'),i=t.submitter||c,l=i?i.querySelector(".smf-sending"):void 0;l&&l.setAttribute("aria-hidden","false"),c&&c.removeAttribute("data-clicked");const m={status:"init",inputs:[].slice.call(r.querySelectorAll("input[name]:not([disabled]), textarea[name]:not([disabled]), select[name]:not([disabled])")).map((e=>{let t;return"checkbox"===e.type||"radio"===e.type?e.checked&&(t=e.value):t=e.value,void 0!==t&&{name:e.getAttribute("name"),value:t}})).filter((e=>e)),formData:o},d=e=>{n.innerHTML=e},u=e=>{a.innerHTML=e},f=()=>{s&&window.scrollTo(0,window.pageYOffset+s.getBoundingClientRect().top)},b=(s=null)=>{r.setAttribute("data-screen","systemerror");const n=document.createElement("div");n.classList.add("smf-system-error-content");const a=r.querySelector(".smf-system-error-content-ready");if(n.textContent=a.textContent,s){const e=document.createElement("br"),t=document.createElement("span");t.classList.add("smf-system-error-status-text"),t.textContent=`(status: ${s})`,n.appendChild(e),n.appendChild(t)}d(n.outerHTML),u(""),f(),m.status="systemerror",e(t.target,"smf.systemerror",m)};e(t.target,"smf.beforesubmit",m);const v=new XMLHttpRequest;v.onreadystatechange=()=>{4===v.readyState&&(200===v.status&&v.status?(s=>{if(l&&l.setAttribute("aria-hidden","true"),void 0===(s=JSON.parse(s)).method)return void b();const n=s.method;if(r.setAttribute("data-screen",n),u(s.action),[].slice.call(r.querySelectorAll(".smf-placeholder")).forEach((e=>{e.innerHTML=""})),(e=>""===e||"back"===e||"invalid"===e||"confirm"===e)(n)){(e=>{for(const t in e){const s=e[t];r.querySelector(`.smf-placeholder[data-name="${t}"]`).innerHTML=s}})(s.controls);const e=[].slice.call(r.querySelectorAll(".smf-error-messages"));0<e.length?(e=>{if(0<e.length){const t=((e,t)=>{for(let t=e;t;t=t.parentElement)if(t.classList.contains("smf-placeholder"))return t})(e[0]),r=!!t&&t.querySelector("input, select, textarea, button, .smf-file-control");r&&r.focus()}})(e):f()}else(e=>"complete"===e||"systemerror"===e)(n)?(d(s.message),f(),u(s.action)):(d(""),u(""));switch(m.status=n,m.status){case"back":e(t.target,"smf.back",m);break;case"confirm":e(t.target,"smf.confirm",m);break;case"complete":e(t.target,"smf.complete",m);break;case"invalid":e(t.target,"smf.invalid",m);break;case"systemerror":e(t.target,"smf.systemerror",m)}e(t.target,"smf.submit",m)})(JSON.parse(v.response)):b(v?.statusText))},v.open("POST",snowmonkeyforms.view_json_url,!0),v.send(o)}document.addEventListener("change",(e=>{const t=e.target;if(t.classList.contains("smf-file-control__control")){const e=t.parentNode.querySelector(".smf-file-control__filename"),r=t.files;if(0<r.length&&e){const t=r[0];void 0!==t.name&&(e.textContent=t.name)}}}),!1);const r=(e,t)=>{for(let r=e;r;r=r.parentElement)if(r.classList.contains(t))return r};document.addEventListener("click",(e=>{const t=e.target;if(t.getAttribute("data-action")&&t.setAttribute("data-clicked","true"),"back"===t.getAttribute("data-action")){const e=r(t,"smf-action");if(e){const t=e.querySelector('[type="hidden"][name="snow-monkey-forms-meta[method]"]');t&&t.setAttribute("value","back")}}}),!1),[].slice.call(document.querySelectorAll(".snow-monkey-form")).forEach((e=>{e.addEventListener("submit",t,!1)})),["change","keyup"].forEach((e=>{document.addEventListener(e,(e=>{const t=e.target;if("1"===t.getAttribute("data-invalid")){t.removeAttribute("data-invalid"),[].slice.call(t.querySelectorAll('[data-invalid="1"]')).forEach((e=>e.removeAttribute("data-invalid")));const e=r(t,"smf-placeholder");if(e){const t=e.querySelector(".smf-error-messages");t&&t.parentNode.removeChild(t)}}}),!1)}))})();
     1(()=>{"use strict";const e=function(e,t){var (t,"smf-placeholder");if(e){const t=e.querySelector(".smf-error-messages");t&&t.parentNode.removeChild(t)}}}),!1)}))})();
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-1a6c5a2ecc6e87e8543bba2fe2117f3f.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/components.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Optional. Initial value. Enter in the following format: value%1$s":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: value%1$s"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/components.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Optional. Initial value. Enter in the following format: value%1$s":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: value%1$s"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-283ec53b22fab391ac2aa3155e32e4a9.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/snow-monkey-form\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Select a form":["\u30d5\u30a9\u30fc\u30e0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/snow-monkey-form\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Select a form":["\u30d5\u30a9\u30fc\u30e0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-30083252e7424ed1d0aa4824dcdf74d4.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/select\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/select\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-3c66fefb325dda0ae29f43e18b92dfb6.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/item\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Label":["\u30e9\u30d9\u30eb"],"Display label column":["\u30e9\u30d9\u30eb\u30ab\u30e9\u30e0\u3092\u8868\u793a\u3059\u308b"],"label for":["label for"],"Add a label element and link it with a form field of your choice. Enter the id of the form field you want to link to.":["label \u8981\u7d20\u3092\u8ffd\u52a0\u3057\u3001\u4efb\u610f\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306b\u7d10\u4ed8\u3051\u307e\u3059\u3002\u7d10\u4ed8\u3051\u5148\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306e id \u3092\u5165\u529b\u3057\u307e\u3059\u3002"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/item\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Label":["\u30e9\u30d9\u30eb"],"Display label column":["\u30e9\u30d9\u30eb\u30ab\u30e9\u30e0\u3092\u8868\u793a\u3059\u308b"],"label for":["label for"],"Add a label element and link it with a form field of your choice. Enter the id of the form field you want to link to.":["label \u8981\u7d20\u3092\u8ffd\u52a0\u3057\u3001\u4efb\u610f\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306b\u7d10\u4ed8\u3051\u307e\u3059\u3002\u7d10\u4ed8\u3051\u5148\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306e id \u3092\u5165\u529b\u3057\u307e\u3059\u3002"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-3cf39d907448cd5f3fd0daa878c6d765.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/form\/complete\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Complete":["\u5b8c\u4e86\u753b\u9762"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/form\/complete\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Complete":["\u5b8c\u4e86\u753b\u9762"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-43e87854c31ef829d64dcd840a7259a0.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/auto-reply-email-settings-panel.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"To (Email address)":["To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Subject":["\u4ef6\u540d"],"Body":["Body"],"Reply-To (Email address)":["Reply-To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Optional":["\u4efb\u610f"],"From (Email address)":["From\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Sender":["\u9001\u4fe1\u8005"],"Auto reply email":["\u81ea\u52d5\u8fd4\u4fe1\u30e1\u30fc\u30eb"],"Enter the name attribute value of the installed email form field in the following format: {name}":["\u8a2d\u7f6e\u3057\u305fE\u30e1\u30fc\u30eb\u7528\u30d5\u30a9\u30fc\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u306e name \u5c5e\u6027\u5024\u3092\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044: {name}"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/auto-reply-email-settings-panel.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"To (Email address)":["To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Subject":["\u4ef6\u540d"],"Body":["Body"],"Reply-To (Email address)":["Reply-To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Optional":["\u4efb\u610f"],"From (Email address)":["From\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Sender":["\u9001\u4fe1\u8005"],"Auto reply email":["\u81ea\u52d5\u8fd4\u4fe1\u30e1\u30fc\u30eb"],"Enter the name attribute value of the installed email form field in the following format: {name}":["\u8a2d\u7f6e\u3057\u305fE\u30e1\u30fc\u30eb\u7528\u30d5\u30a9\u30fc\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u306e name \u5c5e\u6027\u5024\u3092\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044: {name}"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-45a77bc71baee044c24ec5f6b1a82587.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/select\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/select\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-4c38f63f0fd1813af788142ff6d97f8d.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/radio-buttons\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/radio-buttons\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-4d053dd7de5c3dcdaeb5284cc475ccbb.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Input":["\u5165\u529b\u753b\u9762"],"Open the form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a\u3092\u958b\u304f"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Input":["\u5165\u529b\u753b\u9762"],"Open the form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a\u3092\u958b\u304f"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-533827bcc7532ef4c987cc8ede35f03f.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/text\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/text\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-5c891cc291333e15ebf0d4c0e9bd4d4b.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/radio-buttons\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/radio-buttons\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-64cb9737971ff6dd65940d5479420fcc.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/textarea\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"rows":["rows"],"Number of lines":["\u884c\u6570"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/textarea\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"rows":["rows"],"Number of lines":["\u884c\u6570"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-6a2d9c78ebf584313a2847de25f0d2d5.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/url\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/url\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-6f8cd580e43e62943d135582ea3b2be6.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/form-settings-panel.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a"],"Use confirm page":["\u78ba\u8a8d\u753b\u9762\u3092\u4f7f\u7528\u3059\u308b"],"Use progress tracker":["\u30d7\u30ed\u30b0\u30ec\u30b9\u30c8\u30e9\u30c3\u30ab\u30fc\u3092\u4f7f\u7528\u3059\u308b"],"Form style":["\u30d5\u30a9\u30fc\u30e0\u30b9\u30bf\u30a4\u30eb"],"Simple table":["Simple table"],"Letter":["Letter"],"Business":["Business"],"Confirm button label":["\u78ba\u8a8d\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Back button label":["\u623b\u308b\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Send button label":["\u9001\u4fe1\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/form-settings-panel.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a"],"Use confirm page":["\u78ba\u8a8d\u753b\u9762\u3092\u4f7f\u7528\u3059\u308b"],"Use progress tracker":["\u30d7\u30ed\u30b0\u30ec\u30b9\u30c8\u30e9\u30c3\u30ab\u30fc\u3092\u4f7f\u7528\u3059\u308b"],"Form style":["\u30d5\u30a9\u30fc\u30e0\u30b9\u30bf\u30a4\u30eb"],"Simple table":["Simple table"],"Letter":["Letter"],"Business":["Business"],"Confirm button label":["\u78ba\u8a8d\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Back button label":["\u623b\u308b\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Send button label":["\u9001\u4fe1\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-712a6c36d5c81b1a35819b76ba136ecf.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/email\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/email\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-8d0878512ecd5fc4c7a4d4fd3996e516.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/textarea\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"],"rows":["rows"],"Number of lines":["\u884c\u6570"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/textarea\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"],"rows":["rows"],"Number of lines":["\u884c\u6570"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-91a1e5c84b114431cd86673e2e0efe4f.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/item\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Label":["\u30e9\u30d9\u30eb"],"Display label column":["\u30e9\u30d9\u30eb\u30ab\u30e9\u30e0\u3092\u8868\u793a\u3059\u308b"],"label for":["label for"],"Add a label element and link it with a form field of your choice. Enter the id of the form field you want to link to.":["label \u8981\u7d20\u3092\u8ffd\u52a0\u3057\u3001\u4efb\u610f\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306b\u7d10\u4ed8\u3051\u307e\u3059\u3002\u7d10\u4ed8\u3051\u5148\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306e id \u3092\u5165\u529b\u3057\u307e\u3059\u3002"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/item\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Label":["\u30e9\u30d9\u30eb"],"Display label column":["\u30e9\u30d9\u30eb\u30ab\u30e9\u30e0\u3092\u8868\u793a\u3059\u308b"],"label for":["label for"],"Add a label element and link it with a form field of your choice. Enter the id of the form field you want to link to.":["label \u8981\u7d20\u3092\u8ffd\u52a0\u3057\u3001\u4efb\u610f\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306b\u7d10\u4ed8\u3051\u307e\u3059\u3002\u7d10\u4ed8\u3051\u5148\u306e\u30d5\u30a9\u30fc\u30e0\u9805\u76ee\u306e id \u3092\u5165\u529b\u3057\u307e\u3059\u3002"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-9e462667899caac1e1db98ab7d932085.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/url\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/url\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-9e9fedf32d8a2239420da764512283b4.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"hoc\/with-validations.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"hoc\/with-validations.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-a60e1e1d2b06fa16ef045969e1060b80.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/form\/input\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a"],"Use confirm page":["\u78ba\u8a8d\u753b\u9762\u3092\u4f7f\u7528\u3059\u308b"],"Use progress tracker":["\u30d7\u30ed\u30b0\u30ec\u30b9\u30c8\u30e9\u30c3\u30ab\u30fc\u3092\u4f7f\u7528\u3059\u308b"],"Form style":["\u30d5\u30a9\u30fc\u30e0\u30b9\u30bf\u30a4\u30eb"],"Simple table":["Simple table"],"Letter":["Letter"],"Business":["Business"],"Confirm button label":["\u78ba\u8a8d\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Back button label":["\u623b\u308b\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Send button label":["\u9001\u4fe1\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Help":["\u30d8\u30eb\u30d7"],"You can embed a submitted value in the following formats: ":["\u9001\u4fe1\u3055\u308c\u305f\u5024\u306f\u6b21\u306e\u5f62\u5f0f\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "],"You can embed all submitted values \u200b\u200bin the following format: ":["\u9001\u4fe1\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u5024\u3092\u6b21\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "],"Administrator email":["\u7ba1\u7406\u8005\u5b9b\u30e1\u30fc\u30eb"],"To (Email address)":["To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Subject":["\u4ef6\u540d"],"Body":["Body"],"Reply-To (Email address)":["Reply-To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Optional":["\u4efb\u610f"],"From (Email address)":["From\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Sender":["\u9001\u4fe1\u8005"],"Auto reply email":["\u81ea\u52d5\u8fd4\u4fe1\u30e1\u30fc\u30eb"],"Enter the name attribute value of the installed email form field in the following format: {name}":["\u8a2d\u7f6e\u3057\u305fE\u30e1\u30fc\u30eb\u7528\u30d5\u30a9\u30fc\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u306e name \u5c5e\u6027\u5024\u3092\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044: {name}"],"Input":["\u5165\u529b\u753b\u9762"],"Open the form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a\u3092\u958b\u304f"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/form\/input\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a"],"Use confirm page":["\u78ba\u8a8d\u753b\u9762\u3092\u4f7f\u7528\u3059\u308b"],"Use progress tracker":["\u30d7\u30ed\u30b0\u30ec\u30b9\u30c8\u30e9\u30c3\u30ab\u30fc\u3092\u4f7f\u7528\u3059\u308b"],"Form style":["\u30d5\u30a9\u30fc\u30e0\u30b9\u30bf\u30a4\u30eb"],"Simple table":["Simple table"],"Letter":["Letter"],"Business":["Business"],"Confirm button label":["\u78ba\u8a8d\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Back button label":["\u623b\u308b\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Send button label":["\u9001\u4fe1\u30dc\u30bf\u30f3\u306e\u30e9\u30d9\u30eb"],"Help":["\u30d8\u30eb\u30d7"],"You can embed a submitted value in the following formats: ":["\u9001\u4fe1\u3055\u308c\u305f\u5024\u306f\u6b21\u306e\u5f62\u5f0f\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "],"You can embed all submitted values \u200b\u200bin the following format: ":["\u9001\u4fe1\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u5024\u3092\u6b21\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "],"Administrator email":["\u7ba1\u7406\u8005\u5b9b\u30e1\u30fc\u30eb"],"To (Email address)":["To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Subject":["\u4ef6\u540d"],"Body":["Body"],"Reply-To (Email address)":["Reply-To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Optional":["\u4efb\u610f"],"From (Email address)":["From\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Sender":["\u9001\u4fe1\u8005"],"Auto reply email":["\u81ea\u52d5\u8fd4\u4fe1\u30e1\u30fc\u30eb"],"Enter the name attribute value of the installed email form field in the following format: {name}":["\u8a2d\u7f6e\u3057\u305fE\u30e1\u30fc\u30eb\u7528\u30d5\u30a9\u30fc\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u306e name \u5c5e\u6027\u5024\u3092\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044: {name}"],"Input":["\u5165\u529b\u753b\u9762"],"Open the form settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a\u3092\u958b\u304f"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-aa3fd70b2bcd30a276688b03ca105077.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/administrator-email-settings-panel.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Administrator email":["\u7ba1\u7406\u8005\u5b9b\u30e1\u30fc\u30eb"],"To (Email address)":["To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Subject":["\u4ef6\u540d"],"Body":["Body"],"Reply-To (Email address)":["Reply-To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Optional":["\u4efb\u610f"],"From (Email address)":["From\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Sender":["\u9001\u4fe1\u8005"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/administrator-email-settings-panel.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Administrator email":["\u7ba1\u7406\u8005\u5b9b\u30e1\u30fc\u30eb"],"To (Email address)":["To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Subject":["\u4ef6\u540d"],"Body":["Body"],"Reply-To (Email address)":["Reply-To\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Optional":["\u4efb\u610f"],"From (Email address)":["From\uff08\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff09"],"Sender":["\u9001\u4fe1\u8005"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-ab724e59e0c09969908f60beb95165a4.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/checkboxes\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Delimiter":["\u533a\u5207\u308a\u6587\u5b57"],"Optional. Character that separates each item.":["\u4efb\u610f\u3002\u5404\u9805\u76ee\u3092\u533a\u5207\u308b\u6587\u5b57\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/checkboxes\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Delimiter":["\u533a\u5207\u308a\u6587\u5b57"],"Optional. Character that separates each item.":["\u4efb\u610f\u3002\u5404\u9805\u76ee\u3092\u533a\u5207\u308b\u6587\u5b57\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-bbf0becd8a5e8de53ffc102c98f4b779.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/tel\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/tel\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"],"autocomplete":["autocomplete"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-d08c29dd08db2b78ac50357912fd7d27.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/tel\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/tel\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-d773ca8063364194f0d5ce6d2c291fb4.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/complete\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Complete":["\u5b8c\u4e86\u753b\u9762"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/complete\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Complete":["\u5b8c\u4e86\u753b\u9762"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-d972f38295c2590884aa8b50aed60342.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/snow-monkey-form\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Select a form":["\u30d5\u30a9\u30fc\u30e0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/snow-monkey-form\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Select a form":["\u30d5\u30a9\u30fc\u30e0\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-dba2aca5841f51ce046831916f142be5.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/file\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Choose file":["\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e"],"No file chosen":["\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093"],"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/file\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Choose file":["\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e"],"No file chosen":["\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093"],"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-df84eda5c4055e6b1692e97b26cbaa47.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/text\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/text\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-e0b6fe8279d8a958bb2d76cd47c37e38.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/file\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Choose file":["\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e"],"No file chosen":["\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/file\/edit.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Choose file":["\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e"],"No file chosen":["\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-e89a30e0420d9dc2fd0ca89d2c348aaf.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/checkboxes\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Optional. Initial value. Enter in the following format: value%1$s":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: value%1$s"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Delimiter":["\u533a\u5207\u308a\u6587\u5b57"],"Optional. Character that separates each item.":["\u4efb\u610f\u3002\u5404\u9805\u76ee\u3092\u533a\u5207\u308b\u6587\u5b57\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/checkboxes\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Optional. Initial value. Enter in the following format: value%1$s":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: value%1$s"],"options":["options"],"Required. Enter in the following format: \"value\" : \"label\"%1$s or value%1$s":["\u5fc5\u9808\u3002\u6b21\u306e\u5f62\u5f0f\u3067\u5165\u529b: \u201cvalue\u201d : \u201clabel\u201d%1$s \u3042\u308b\u3044\u306f value%1$s"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Grouping":["\u30b0\u30eb\u30fc\u30d7\u5316"],"Enable if you want to group by fieldset and label by legend.":["fieldset \u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057 legend \u3067\u30e9\u30d9\u30eb\u3092\u4ed8\u3051\u305f\u3044\u5834\u5408\u306f\u6709\u52b9\u5316\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"Make legend invisible":["legend \u3092\u4e0d\u53ef\u8996\u5316"],"When activated, the legend will not appear on the screen, but will be read by screen readers.":["\u6709\u52b9\u306b\u3059\u308b\u3068\u3001legend \u306f\u753b\u9762\u306b\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u304c\u30b9\u30af\u30ea\u30fc\u30f3\u30ea\u30fc\u30c0\u30fc\u306b\u306f\u8aad\u307e\u308c\u307e\u3059\u3002"],"Delimiter":["\u533a\u5207\u308a\u6587\u5b57"],"Optional. Character that separates each item.":["\u4efb\u610f\u3002\u5404\u9805\u76ee\u3092\u533a\u5207\u308b\u6587\u5b57\u3002"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Direction":["\u65b9\u5411"],"Default":["\u30c7\u30d5\u30a9\u30eb\u30c8"],"Horizontal":["\u6a2a"],"Vertical":["\u7e26"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Label":["\u30e9\u30d9\u30eb"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-ec6be2ae26679ddf888c37ed06b90199.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/help-button.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Help":["\u30d8\u30eb\u30d7"],"You can embed a submitted value in the following formats: ":["\u9001\u4fe1\u3055\u308c\u305f\u5024\u306f\u6b21\u306e\u5f62\u5f0f\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "],"You can embed all submitted values \u200b\u200bin the following format: ":["\u9001\u4fe1\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u5024\u3092\u6b21\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"src\/blocks\/form\/input\/help-button.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"Help":["\u30d8\u30eb\u30d7"],"You can embed a submitted value in the following formats: ":["\u9001\u4fe1\u3055\u308c\u305f\u5024\u306f\u6b21\u306e\u5f62\u5f0f\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "],"You can embed all submitted values \u200b\u200bin the following format: ":["\u9001\u4fe1\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u5024\u3092\u6b21\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059: "]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja-f63001518215a39d4f459fe8fb1b8d4c.json

    r3022129 r3023845  
    1 {"translation-revision-date":"2024-01-16 14:44+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/email\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"]}}}
     1{"translation-revision-date":"2024-01-1+0900","generator":"WP-CLI\/2.8.1","source":"dist\/blocks\/email\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja_JP","plural-forms":"nplurals=1; plural=0;"},"name":["name"],"Required. Input a unique machine-readable name.":["\u5fc5\u9808\u3002\u4e00\u610f\u306e\u6a5f\u68b0\u8aad\u307f\u53d6\u308a\u53ef\u80fd\u306a\u540d\u524d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"],"value":["value"],"Validation":["\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3"],"Required":["\u5fc5\u9808"],"Attributes":["\u5c5e\u6027"],"Block settings":["\u30d6\u30ed\u30c3\u30af\u8a2d\u5b9a"],"Description":["\u8aac\u660e"],"Description is also displayed on the confirmation screen":["\u8aac\u660e\u3092\u78ba\u8a8d\u753b\u9762\u306b\u3082\u8868\u793a\u3059\u308b"],"Optional. Initial value.":["\u4efb\u610f\u3002\u521d\u671f\u5024\u3002"],"placeholder":["placeholder"],"maxlength":["maxlength"],"Optional. Maximum number of characters. If 0, not restricted.":["\u4efb\u610f\u3002\u6700\u5927\u6587\u5b57\u6570\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"size":["size"],"Optional. The width of this item. If 0, not restricted.":["\u4efb\u610f\u3002\u3053\u306e\u9805\u76ee\u306e\u5e45\u30020\u306e\u5834\u5408\u3001\u5236\u9650\u3055\u308c\u307e\u305b\u3093\u3002"],"id":["id"],"class":["class"],"Separate multiple classes with spaces.":["\u8907\u6570\u30af\u30e9\u30b9\u3092\u534a\u89d2\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u308a\u307e\u3059\u3002"]}}}
  • snow-monkey-forms/trunk/languages/snow-monkey-forms-ja.po

    r3022129 r3023845  
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/snow-monkey-"
    55"forms\n"
    6 "POT-Creation-Date: 2024-01-16T05:41:02+00:00\n"
    7 "PO-Revision-Date: 2024-01-16 14:44+0900\n"
     6"POT-Creation-Date: 2024-01-1+00:00\n"
     7"PO-Revision-Date: 2024-01-1+0900\n"
    88"Last-Translator: inc2734 <inc@2inc.org>\n"
    99"Language-Team: inc2734 <inc@2inc.org>\n"
     
    2828
    2929#. Plugin Name of the plugin
    30 #: snow-monkey-forms.php:218 snow-monkey-forms.php:545
     30#: snow-monkey-forms.php:2
    3131msgid "Snow Monkey Forms"
    3232msgstr "Snow Monkey Forms"
     
    4949msgstr "アップロード済みのファイル"
    5050
    51 #: App/Control/File.php:113 dist/blocks/file/index.js:1
     51#: App/Control/File.php:11 dist/blocks/file/index.js:1
    5252#: src/blocks/file/edit.js:88
    5353msgid "Choose file"
    5454msgstr "ファイルを選択"
    5555
    56 #: App/Control/File.php:114 dist/blocks/file/index.js:1
     56#: App/Control/File.php:11 dist/blocks/file/index.js:1
    5757#: src/blocks/file/edit.js:91
    5858msgid "No file chosen"
    5959msgstr "選択されていません"
    6060
     61
     62
     63
     64
    6165#: App/Model/Setting.php:173
    6266msgid "Confirm"
     
    7175msgstr "送信する"
    7276
    73 #: App/Rest/Route/View.php:64
     77#: App/Rest/Route/View.php:6
    7478msgid "Invalid access."
    7579msgstr "無効なアクセスです。"
    7680
    77 #: App/Rest/Route/View.php:69
     81#: App/Rest/Route/View.php:6
    7882msgid "There is a possibility of spamming."
    7983msgstr "スパム送信の可能性があります。"
    8084
    81 #: App/Rest/Route/View.php:86
     85#: App/Rest/Route/View.php:8
    8286msgid "An error occurred during file upload."
    8387msgstr "ファイルのアップロード中にエラーが発生しました。"
    8488
    85 #: App/Rest/Route/View.php:106
     89#: App/Rest/Route/View.php:10
    8690msgid "Attachment of file failed."
    8791msgstr "ファイルの添付に失敗しました。"
    8892
    89 #: App/Rest/Route/View.php:124
     93#: App/Rest/Route/View.php:12
    9094msgid "Failed to send administrator email."
    9195msgstr "管理者メールの送信に失敗しました。"
    9296
    93 #: App/Rest/Route/View.php:125 App/Rest/Route/View.php:171
    94 #: App/Rest/Route/View.php:185 dist/blocks/snow-monkey-form/render.php:87
     97#: App/Rest/Route/View.php:12
     98#: App/Rest/Route/View.php:18 dist/blocks/snow-monkey-form/render.php:87
    9599#: src/blocks/snow-monkey-form/render.php:87
    96100msgid "Please try again later or contact your administrator by other means."
    97101msgstr "後でもう一度やり直すか、他の方法で管理者に連絡してください。"
    98102
    99 #: App/Rest/Route/View.php:136
     103#: App/Rest/Route/View.php:13
    100104msgid "Failed to send auto reply email."
    101105msgstr "自動返信メールの送信に失敗しました。"
    102106
    103 #: App/Rest/Route/View.php:170 App/Rest/Route/View.php:184
     107#: App/Rest/Route/View.php:1
    104108#: dist/blocks/snow-monkey-form/render.php:86
    105109#: src/blocks/snow-monkey-form/render.php:86
     
    188192msgstr "完了"
    189193
    190 #: snow-monkey-forms.php:236
     194#: snow-monkey-forms.php:2
    191195msgctxt "form-field-label"
    192196msgid "Name"
    193197msgstr "お名前"
    194198
    195 #: snow-monkey-forms.php:256
     199#: snow-monkey-forms.php:2
    196200msgctxt "form-field-label"
    197201msgid "Email"
    198202msgstr "Eメール"
    199203
    200 #: snow-monkey-forms.php:276
     204#: snow-monkey-forms.php:2
    201205msgctxt "form-field-label"
    202206msgid "Message"
    203207msgstr "メッセージ"
    204208
    205 #: snow-monkey-forms.php:306
     209#: snow-monkey-forms.php:3
    206210msgid "Complete !"
    207211msgstr "完了しました。"
    208212
    209 #: snow-monkey-forms.php:369
     213#: snow-monkey-forms.php:3
    210214msgid "Admin notification"
    211215msgstr "管理者通知"
    212216
    213 #: snow-monkey-forms.php:444
     217#: snow-monkey-forms.php:4
    214218msgid "Automatic reply notification"
    215219msgstr "自動返信通知"
  • snow-monkey-forms/trunk/languages/snow-monkey-forms.pot

    r3022129 r3023845  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Snow Monkey Forms 6.0.5\n"
     5"Project-Id-Version: Snow Monkey Forms 6.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/snow-monkey-forms\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-01-16T05:41:02+00:00\n"
     12"POT-Creation-Date: 2024-01-1+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
     
    1616
    1717#. Plugin Name of the plugin
    18 #: snow-monkey-forms.php:218
    19 #: snow-monkey-forms.php:545
     18#: snow-monkey-forms.php:2
     19#: snow-monkey-forms.php:5
    2020msgid "Snow Monkey Forms"
    2121msgstr ""
     
    3737msgstr ""
    3838
    39 #: App/Control/File.php:113
     39#: App/Control/File.php:11
    4040#: dist/blocks/file/index.js:1
    4141#: src/blocks/file/edit.js:88
     
    4343msgstr ""
    4444
    45 #: App/Control/File.php:114
     45#: App/Control/File.php:11
    4646#: dist/blocks/file/index.js:1
    4747#: src/blocks/file/edit.js:91
     
    4949msgstr ""
    5050
     51
     52
     53
     54
    5155#: App/Model/Setting.php:173
    5256msgid "Confirm"
     
    6165msgstr ""
    6266
    63 #: App/Rest/Route/View.php:64
     67#: App/Rest/Route/View.php:6
    6468msgid "Invalid access."
    6569msgstr ""
    6670
    67 #: App/Rest/Route/View.php:69
     71#: App/Rest/Route/View.php:6
    6872msgid "There is a possibility of spamming."
    6973msgstr ""
    7074
    71 #: App/Rest/Route/View.php:86
     75#: App/Rest/Route/View.php:8
    7276msgid "An error occurred during file upload."
    7377msgstr ""
    7478
    75 #: App/Rest/Route/View.php:106
     79#: App/Rest/Route/View.php:10
    7680msgid "Attachment of file failed."
    7781msgstr ""
    7882
     83
     84
     85
     86
    7987#: App/Rest/Route/View.php:124
    80 msgid "Failed to send administrator email."
    81 msgstr ""
    82 
    83 #: App/Rest/Route/View.php:125
    84 #: App/Rest/Route/View.php:171
    85 #: App/Rest/Route/View.php:185
     88#: App/Rest/Route/View.php:170
     89#: App/Rest/Route/View.php:184
    8690#: dist/blocks/snow-monkey-form/render.php:87
    8791#: src/blocks/snow-monkey-form/render.php:87
     
    8993msgstr ""
    9094
    91 #: App/Rest/Route/View.php:136
     95#: App/Rest/Route/View.php:13
    9296msgid "Failed to send auto reply email."
    9397msgstr ""
    9498
    95 #: App/Rest/Route/View.php:170
    96 #: App/Rest/Route/View.php:184
     99#: App/Rest/Route/View.php:1
     100#: App/Rest/Route/View.php:18
    97101#: dist/blocks/snow-monkey-form/render.php:86
    98102#: src/blocks/snow-monkey-form/render.php:86
     
    181185msgstr ""
    182186
    183 #: snow-monkey-forms.php:236
     187#: snow-monkey-forms.php:2
    184188msgctxt "form-field-label"
    185189msgid "Name"
    186190msgstr ""
    187191
    188 #: snow-monkey-forms.php:256
     192#: snow-monkey-forms.php:2
    189193msgctxt "form-field-label"
    190194msgid "Email"
    191195msgstr ""
    192196
    193 #: snow-monkey-forms.php:276
     197#: snow-monkey-forms.php:2
    194198msgctxt "form-field-label"
    195199msgid "Message"
    196200msgstr ""
    197201
    198 #: snow-monkey-forms.php:306
     202#: snow-monkey-forms.php:3
    199203msgid "Complete !"
    200204msgstr ""
    201205
    202 #: snow-monkey-forms.php:369
     206#: snow-monkey-forms.php:3
    203207msgid "Admin notification"
    204208msgstr ""
    205209
    206 #: snow-monkey-forms.php:444
     210#: snow-monkey-forms.php:4
    207211msgid "Automatic reply notification"
    208212msgstr ""
  • snow-monkey-forms/trunk/readme.txt

    r3022129 r3023845  
    33Donate link: https://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
    44Tags: gutenberg, block, blocks, editor, gutenberg blocks, page builder, form, forms, mail, email, contact
    5 Stable tag: 6.1.0
     5Stable tag: 6..0
    66Requires at least: 6.3
    77Tested up to: 6.4
     
    5252== Changelog ==
    5353
     54
     55
     56
     57
    5458= 6.1.0 =
    5559* Added legend setting to checkboxes and radio buttons.
  • snow-monkey-forms/trunk/snow-monkey-forms.php

    r3022129 r3023845  
    22/**
    33 * Plugin name: Snow Monkey Forms
    4  * Version: 6.1.0
     4 * Version: 6..0
    55 * Description: The Snow Monkey Forms is a mail form plugin for the block editor.
    66 * Author: inc2734
     
    1919use Snow_Monkey\Plugin\Forms\App\Model\Csrf;
    2020use Snow_Monkey\Plugin\Forms\App\Model\Directory;
     21
    2122use Snow_Monkey\Plugin\Forms\App\Rest;
    2223use Snow_Monkey\Plugin\Forms\App\Service\Admin\Admin;
     
    165166     */
    166167    public function _endpoint() {
     168
     169
    167170        register_rest_route(
    168171            'snow-monkey-form/v1',
     
    170173            array(
    171174                'methods'             => 'POST',
    172                 'callback'            => function() {
     175                'callback'            => function() {
    173176                    $referer = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : false;
    174177                    $homeurl = untrailingslashit( home_url( '/' ) );
     
    179182                    $data = filter_input_array( INPUT_POST );
    180183                    $data = $data ? $data : array();
     184
     185
     186
     187
    181188
    182189                    $route = new Rest\Route\View( $data );
  • snow-monkey-forms/trunk/src/blocks/file/style.scss

    r2949852 r3023845  
    55    .smf-file-control {
    66        position: relative;
     7
     8
     9
     10
    711
    812        &__label,
     
    1620
    1721        @supports (appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none) {
    18             &::before {
    19                 content: '';
    20                 display: block;
    21                 position: absolute;
    22                 top: -3px;
    23                 right: -3px;
    24                 bottom: -3px;
    25                 left: -3px;
    26             }
     22            > label {
     23                outline: none;
    2724
    28             &:active,
    29             &:focus,
    30             &:focus-within {
    3125                &::before {
    32                     border: 1px solid _var-form-control-border-color-focus();
    33                     border-radius: _var-border-radius();
     26                    content: '';
     27                    display: block;
     28                    position: absolute;
     29                    top: -3px;
     30                    right: -3px;
     31                    bottom: -3px;
     32                    left: -3px;
    3433                }
    35             }
    3634
    37             > label {
    38                 display: inline-flex;
     35                &:active,
     36                &:focus,
     37                &:focus-within {
     38                    &::before {
     39                        border: 1px solid _var-form-control-border-color-focus();
     40                        border-radius: _var-border-radius();
     41                    }
     42                }
     43
     44                display: flex;
    3945                flex-wrap: nowrap;
    4046                align-items: center;
     
    5561            &__filename {
    5662                margin-left: 1em;
    57                 display: inline-block;
     63
     64                &--no-file {
     65                    display: inline-block;
     66                }
     67
     68                &--has-file {
     69                    display: none;
     70                }
     71            }
     72
     73            &__clear {
     74                margin-left: .5em;
     75                display: none;
     76                text-decoration: underline;
     77                cursor: pointer;
    5878            }
    5979
     
    6181                margin-top: .25em;
    6282            }
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
     100
     101
     102
    63103        }
    64104    }
  • snow-monkey-forms/trunk/src/css/component/_control-fieldset.scss

    r3022129 r3023845  
    55        margin-top: var(--_margin-2);
    66    }
     7
     8
     9
     10
    711}
  • snow-monkey-forms/trunk/src/js/app.js

    r2406442 r3023845  
    77        const control = event.target;
    88        if ( control.classList.contains( 'smf-file-control__control' ) ) {
    9             const filename = control.parentNode.querySelector(
    10                 '.smf-file-control__filename'
     9            const controlWrapper = control.closest( '.smf-file-control' );
     10            const filename = controlWrapper.querySelector(
     11                '.smf-file-control__filename--has-file'
    1112            );
    1213            const files = control.files;
     
    1516                if ( 'undefined' !== typeof file.name ) {
    1617                    filename.textContent = file.name;
     18
    1719                }
     20
     21
     22
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
     44
     45
    1846            }
    1947        }
Note: See TracChangeset for help on using the changeset viewer.