Ignore:
Timestamp:
2013/01/25 22:35:21 (11 years ago)
Author:
kim
Message:

#2060 メッセージID振り直し
SC_CheckError_031-53(34と48、53は統合)

Location:
branches/version-2_12-multilang/data
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/SC_CheckError.php

    r22390 r22397  
    570570        $this->createParam($value); 
    571571        if ($this->arrParam[$value[1]] == '0') { 
    572             $this->arrErr[$value[1]] = t('SC_CheckError_031', array('T_FIELD' => $value[0])); 
     572            $this->arrErr[$value[1]] = t('c_* Enter at least 1 for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    573573        } 
    574574    } 
     
    585585        $count = strlen($this->arrParam[$value[1]]); 
    586586        if (($count > 0) && $value[2] > $count || $value[3] < $count) { 
    587             $this->arrErr[$value[1]] =  t_plural($value[2], 'SC_CheckError_032_SINGLE', 'SC_CheckError_032_PLURAL', array('T_FIELD' => $value[0], 'T_DIGIT_MAX' => $value[3])); 
     587            $this->arrErr[$value[1]] =  t_plural($value[2], 'c_*  T_FIELD must be  between T_COUNT - T_DIGIT_MAX digits. <br />_01', 'c_* For T_FIELD, input between T_COUNT to T_DIGIT_MAX digits. <br />_01', array('T_FIELD' => $value[0], 'T_DIGIT_MAX' => $value[3])); 
    588588        } 
    589589    } 
     
    599599        $count = strlen($this->arrParam[$value[1]]); 
    600600        if (($count > 0) && $count != $value[2]) { 
    601             $this->arrErr[$value[1]] =  t_plural($value[2], 'SC_CheckError_033_SINGLE', 'SC_CheckError_033_PLURAL', array('T_FIELD' => $value[0])); 
     601            $this->arrErr[$value[1]] =  t_plural($value[2], 'c_* For T_FIELD, enter T_COUNT digit(s). <br />_01', 'c_* For T_FIELD, input T_COUNT digit(s). <br />_01', array('T_FIELD' => $value[0])); 
    602602        } 
    603603    } 
     
    647647 
    648648        if (!preg_match($regexp, $this->arrParam[$value[1]])) { 
    649             $this->arrErr[$value[1]] = t('SC_CheckError_034', array('T_FIELD' => $value[0])); 
     649            $this->arrErr[$value[1]] = t('c_* The T_FIELD format is incorrect. <br />_01', array('T_FIELD' => $value[0])); 
    650650            return; 
    651651        } 
     
    666666        $this->createParam($value); 
    667667        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[a-zA-Z0-9_\.@\+\?-]+$/i",$this->arrParam[$value[1]])) { 
    668             $this->arrErr[$value[1]] = t('SC_CheckError_035', array('T_FIELD' => $value[0])); 
     668            $this->arrErr[$value[1]] = t('c_* Enter the characters to be used in T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
    669669        } 
    670670    } 
     
    678678        } 
    679679        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("@^https?://+($|[a-zA-Z0-9_~=:&\?\.\/-])+$@i", $this->arrParam[$value[1]])) { 
    680             $this->arrErr[$value[1]] = t('SC_CheckError_036', array('T_FIELD' => $value[0])); 
     680            $this->arrErr[$value[1]] = t('c_* Enter T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
    681681        } 
    682682    } 
     
    698698                $param = trim($param); 
    699699                if (long2ip(ip2long($param)) != trim($param) && !empty($param)) { 
    700                     $this->arrErr[$value[1]] = t('SC_CheckError_037', array('T_FIELD' => $value[0])); 
     700                    $this->arrErr[$value[1]] = t('c_* Enter an IP address in the proper format in T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    701701                } 
    702702            } 
     
    726726        if ($match === false) { 
    727727            $str_ext = implode('・', $value[2]); 
    728             $this->arrErr[$value[1]] = t('SC_CheckError_038', array('T_FIELD' => $value[0], 'T_EXT' => $str_ext)); 
     728            $this->arrErr[$value[1]] = t('c_* The format permitted for T_FIELD is T_EXT. <br />_01', array('T_FIELD' => $value[0], 'T_EXT' => $str_ext)); 
    729729        } 
    730730    } 
     
    749749 
    750750        if ($this->arrParam[$value[1]] != '' && !file_exists($path)) { 
    751             $this->arrErr[$value[1]] = t('SC_CheckError_039', array('T_PATH' => $path)); 
     751            $this->arrErr[$value[1]] = t('c_* T_PATH cannot be found. <br />_01', array('T_PATH' => $path)); 
    752752        } 
    753753    } 
     
    762762        $this->createParam($value); 
    763763        if (!($_FILES[$value[1]]['size'] != '' && $_FILES[$value[1]]['size'] > 0)) { 
    764             $this->arrErr[$value[1]] = t('SC_CheckError_040', array('T_FIELD' => $value[0])); 
     764            $this->arrErr[$value[1]] = t('c_* Upload T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    765765        } 
    766766    } 
     
    780780                $byte = 'MB'; 
    781781            } 
    782             $this->arrErr[$value[1]] = t('SC_CheckError_041', array('T_FIELD' => $value[0], 'T_SIZE' => $value[2], 'T_UNIT' => $byte)); 
     782            $this->arrErr[$value[1]] = t('c_* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />_01', array('T_FIELD' => $value[0], 'T_SIZE' => $value[2], 'T_UNIT' => $byte)); 
    783783        } 
    784784    } 
     
    793793        $this->createParam($value); 
    794794        if (strlen($_FILES[$value[1]]['name']) > 0 && !preg_match("/^[[:alnum:]_\.-]+$/i", $_FILES[$value[1]]['name'])) { 
    795             $this->arrErr[$value[1]] = t('SC_CheckError_042', array('T_FIELD' => $value[0])); 
     795            $this->arrErr[$value[1]] = t('c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    796796        } 
    797797    } 
     
    806806        $this->createParam($value); 
    807807        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[[:alnum:]_\.-]+$/i", $this->arrParam[$value[1]]) || preg_match('/[\\]/' ,$this->arrParam[$value[1]])) { 
    808             $this->arrErr[$value[1]] = t('SC_CheckError_042', array('T_FIELD' => $value[0])); 
     808            $this->arrErr[$value[1]] = t('c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    809809        } 
    810810    } 
     
    826826                $this->arrErr[$value[1]] = t('c_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    827827            } else if (! checkdate($this->arrParam[$value[2]], $this->arrParam[$value[3]], $this->arrParam[$value[1]])) { 
    828                 $this->arrErr[$value[1]] = t('SC_CheckError_044', array('T_FIELD' => $value[0])); 
     828                $this->arrErr[$value[1]] = t('c_* T_FIELD is not correct. <br />_01', array('T_FIELD' => $value[0])); 
    829829            } 
    830830        } 
     
    849849                $this->arrErr[$value[1]] = t('c_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    850850            } else if (! checkdate($this->arrParam[$value[2]], $this->arrParam[$value[3]], $this->arrParam[$value[1]])) { 
    851                 $this->arrErr[$value[1]] = t('SC_CheckError_044', array('T_FIELD' => $value[0])); 
     851                $this->arrErr[$value[1]] = t('c_* T_FIELD is not correct. <br />_01', array('T_FIELD' => $value[0])); 
    852852            } 
    853853        } 
     
    869869                $this->arrErr[$value[1]] = t('c_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    870870            } else if (! checkdate($this->arrParam[$value[2]], 1, $this->arrParam[$value[1]])) { 
    871                 $this->arrErr[$value[1]] = t('SC_CheckError_044', array('T_FIELD' => $value[0])); 
     871                $this->arrErr[$value[1]] = t('c_* T_FIELD is not correct. <br />_01', array('T_FIELD' => $value[0])); 
    872872            } 
    873873        } 
     
    932932        $this->createParam($value); 
    933933        if ((strlen($this->arrParam[$value[2]]) > 0 || strlen($this->arrParam[$value[3]]) > 0 || strlen($this->arrParam[$value[4]]) > 0) && ! checkdate($this->arrParam[$value[3]], $this->arrParam[$value[4]], $this->arrParam[$value[2]])) { 
    934             $this->arrErr[$value[2]] = t('SC_CheckError_045', array('T_FIELD' => $value[0])); 
     934            $this->arrErr[$value[2]] = t('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
    935935        } 
    936936        if ((strlen($this->arrParam[$value[5]]) > 0 || strlen($this->arrParam[$value[6]]) > 0 || strlen($this->arrParam[$value[7]]) > 0) && ! checkdate($this->arrParam[$value[6]], $this->arrParam[$value[7]], $this->arrParam[$value[5]])) { 
    937             $this->arrErr[$value[5]] = t('SC_CheckError_045', array('T_FIELD' => $value[1])); 
     937            $this->arrErr[$value[5]] = t('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[1])); 
    938938        } 
    939939        if ((strlen($this->arrParam[$value[2]]) > 0 && strlen($this->arrParam[$value[3]]) > 0 && strlen($this->arrParam[$value[4]]) > 0) &&  (strlen($this->arrParam[$value[5]]) > 0 || strlen($this->arrParam[$value[6]]) > 0 || strlen($this->arrParam[$value[7]]) > 0)) { 
     
    943943 
    944944            if (($this->arrErr[$value[2]] == '' && $this->arrErr[$value[5]] == '') && $date1 > $date2) { 
    945                 $this->arrErr[$value[2]] = t('SC_CheckError_046', array('T_START' => $value[0], 'T_END' => $value[1])); 
     945                $this->arrErr[$value[2]] = t('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
    946946            } 
    947947        } 
     
    982982        $this->createParam($value); 
    983983        if ((strlen($this->arrParam[$value[2]]) > 0 || strlen($this->arrParam[$value[3]]) > 0 || strlen($this->arrParam[$value[4]]) > 0 || strlen($this->arrParam[$value[5]]) > 0) && ! checkdate($this->arrParam[$value[3]], $this->arrParam[$value[4]], $this->arrParam[$value[2]])) { 
    984             $this->arrErr[$value[2]] = t('SC_CheckError_045', array('T_FIELD' => $value[0])); 
     984            $this->arrErr[$value[2]] = t('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
    985985        } 
    986986        if ((strlen($this->arrParam[$value[8]]) > 0 || strlen($this->arrParam[$value[9]]) > 0 || strlen($this->arrParam[$value[10]]) > 0 || strlen($this->arrParam[$value[11]]) > 0) && ! checkdate($this->arrParam[$value[9]], $this->arrParam[$value[10]], $this->arrParam[$value[8]])) { 
    987             $this->arrErr[$value[8]] = t('SC_CheckError_045', array('T_FIELD' => $value[1])); 
     987            $this->arrErr[$value[8]] = t('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[1])); 
    988988        } 
    989989        if ((strlen($this->arrParam[$value[2]]) > 0 && strlen($this->arrParam[$value[3]]) > 0 && strlen($this->arrParam[$value[4]]) > 0 && strlen($this->arrParam[$value[5]]) > 0) &&  (strlen($this->arrParam[$value[8]]) > 0 || strlen($this->arrParam[$value[9]]) > 0 || strlen($this->arrParam[$value[10]]) > 0 || strlen($this->arrParam[$value[11]]) > 0)) { 
     
    993993 
    994994            if (($this->arrErr[$value[2]] == '' && $this->arrErr[$value[8]] == '') && $date1 > $date2) { 
    995                 $this->arrErr[$value[2]] = t('SC_CheckError_046', array('T_START' => $value[0], 'T_END' => $value[1])); 
     995                $this->arrErr[$value[2]] = t('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
    996996            } 
    997997            if ($date1 == $date2) { 
    998                 $this->arrErr[$value[2]] = t('SC_CheckError_046', array('T_START' => $value[0], 'T_END' => $value[1])); 
     998                $this->arrErr[$value[2]] = t('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
    999999            } 
    10001000 
     
    10251025        $this->createParam($value); 
    10261026        if ((strlen($this->arrParam[$value[2]]) > 0 || strlen($this->arrParam[$value[3]]) > 0) && ! checkdate($this->arrParam[$value[3]], 1, $this->arrParam[$value[2]])) { 
    1027             $this->arrErr[$value[2]] = t('SC_CheckError_045', array('T_FIELD' => $value[0])); 
     1027            $this->arrErr[$value[2]] = t('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
    10281028        } 
    10291029        if ((strlen($this->arrParam[$value[4]]) > 0 || strlen($this->arrParam[$value[5]]) > 0) && ! checkdate($this->arrParam[$value[5]], 1, $this->arrParam[$value[4]])) { 
    1030             $this->arrErr[$value[4]] = t('SC_CheckError_045', array('T_FIELD' => $value[1])); 
     1030            $this->arrErr[$value[4]] = t('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[1])); 
    10311031        } 
    10321032        if ((strlen($this->arrParam[$value[2]]) > 0 && strlen($this->arrParam[$value[3]]) > 0 && (strlen($this->arrParam[$value[4]]) > 0 || strlen($this->arrParam[$value[5]]) > 0))) { 
     
    10361036 
    10371037            if (($this->arrErr[$value[2]] == '' && $this->arrErr[$value[5]] == '') && $date1 > $date2) { 
    1038                 $this->arrErr[$value[2]] = t('SC_CheckError_046', array('T_START' => $value[0], 'T_END' => $value[1])); 
     1038                $this->arrErr[$value[2]] = t('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
    10391039            } 
    10401040        } 
     
    10481048        $this->createParam($value); 
    10491049        if (!is_dir($this->arrParam[$value[1]])) { 
    1050             $this->arrErr[$value[1]] = t('SC_CheckError_047', array('T_FIELD' => $value[0])); 
     1050            $this->arrErr[$value[1]] = t('c_* The designated T_FIELD does not exist. <br />_01', array('T_FIELD' => $value[0])); 
    10511051        } 
    10521052    } 
     
    10581058        } 
    10591059        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^\.[^.]+\..+/i", $this->arrParam[$value[1]])) { 
    1060             $this->arrErr[$value[1]] = t('SC_CheckError_048', array('T_FIELD' => $value[0])); 
     1060            $this->arrErr[$value[1]] = t('c_* The T_FIELD format is incorrect. <br />_01', array('T_FIELD' => $value[0])); 
    10611061        } 
    10621062    } 
     
    10721072        $objMobile = new SC_Helper_Mobile_Ex(); 
    10731073        if (strlen($this->arrParam[$value[1]]) > 0 && !$objMobile->gfIsMobileMailAddress($this->arrParam[$value[1]])) { 
    1074             $this->arrErr[$value[1]] = t('SC_CheckError_049', array('T_FIELD' => $value[0])); 
     1074            $this->arrErr[$value[1]] = t('c_* T_FIELD is not for mobile phones. <br />_01', array('T_FIELD' => $value[0])); 
    10751075        } 
    10761076    } 
     
    10931093        switch ($register_user_flg) { 
    10941094            case 1: 
    1095                 $this->arrErr[$value[1]] .= t('SC_CheckError_050', array('T_FIELD' => $value[0])); 
     1095                $this->arrErr[$value[1]] .= t('c_* T_FIELD already used in member registration. <br />_01', array('T_FIELD' => $value[0])); 
    10961096                break; 
    10971097            case 2: 
    1098                 $this->arrErr[$value[1]] .= t('SC_CheckError_051', array('T_FIELD' => $value[0])); 
     1098                $this->arrErr[$value[1]] .= t('c_* For a certain period of time after membership withdrawal, it is not possible to use the same T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    10991099                break; 
    11001100            default: 
     
    11201120        $pattern = '/' . join('|', $prohibitedStr) . '/i'; 
    11211121        if (preg_match_all($pattern, $targetStr, $matches = array())) { 
    1122             $this->arrErr[$value[1]] = t('SC_CheckError_052', array('T_FIELD' => $value[0])); 
     1122            $this->arrErr[$value[1]] = t('c_* T_FIELD cannot be entered. <br />_01', array('T_FIELD' => $value[0])); 
    11231123        } 
    11241124    } 
     
    11371137        $this->createParam($value); 
    11381138        if ($this->evalCheck($value[1]) === false) { 
    1139             $this->arrErr[$value[0]] = t('SC_CheckError_053', array('T_FIELD' => $value[0])); 
     1139            $this->arrErr[$value[0]] = t('c_* The T_FIELD format is incorrect. <br />_01', array('T_FIELD' => $value[0])); 
    11401140        } 
    11411141    } 
  • branches/version-2_12-multilang/data/locales/en-US.po

    r22394 r22397  
    9595msgstr "* Enter alphanumeric symbols for T_FIELD. <br />" 
    9696 
    97 msgid "SC_CheckError_031" 
     97msgid "c_* Enter at least 1 for T_FIELD. <br />_01" 
    9898msgstr "* Enter at least 1 for T_FIELD. <br />" 
    9999 
    100 msgid "SC_CheckError_032_SINGLE" 
    101 msgid_plural "SC_CheckError_032_PLURAL" 
     100msgid "c_*  T_FIELD must be  between T_COUNT - T_DIGIT_MAX digits. <br />_01" 
     101msgid_plural "c_* For T_FIELD, input between T_COUNT to T_DIGIT_MAX digits. <br />_01" 
    102102msgstr[0] "*  T_FIELD must be  between T_COUNT - T_DIGIT_MAX digits. <br />" 
    103103msgstr[1] "* For T_FIELD, input between T_COUNT to T_DIGIT_MAX digits. <br />" 
    104104 
    105 msgid "SC_CheckError_033_SINGLE" 
    106 msgid_plural "SC_CheckError_033_PLURAL" 
     105msgid "c_* For T_FIELD, enter T_COUNT digit(s). <br />_01" 
     106msgid_plural "c_* For T_FIELD, input T_COUNT digit(s). <br />_01" 
    107107msgstr[0] "* For T_FIELD, enter T_COUNT digit(s). <br />" 
    108108msgstr[1] "* For T_FIELD, input T_COUNT digit(s). <br />" 
    109109 
    110 msgid "SC_CheckError_034" 
     110msgid "c_* The T_FIELD format is incorrect. <br />_01" 
    111111msgstr "* The T_FIELD format is incorrect. <br />" 
    112112 
    113 msgid "SC_CheckError_035" 
     113msgid "c_* Enter the characters to be used in T_FIELD correctly. <br />_01" 
    114114msgstr "* Enter the characters to be used in T_FIELD correctly. <br />" 
    115115 
    116 msgid "SC_CheckError_036" 
     116msgid "c_* Enter T_FIELD correctly. <br />_01" 
    117117msgstr "* Enter T_FIELD correctly. <br />" 
    118118 
    119 msgid "SC_CheckError_037" 
     119msgid "c_* Enter an IP address in the proper format in T_FIELD. <br />_01" 
    120120msgstr "* Enter an IP address in the proper format in T_FIELD. <br />" 
    121121 
    122 msgid "SC_CheckError_038" 
     122msgid "c_* The format permitted for T_FIELD is T_EXT. <br />_01" 
    123123msgstr "* The format permitted for T_FIELD is T_EXT. <br />" 
    124124 
    125 msgid "SC_CheckError_039" 
     125msgid "c_* T_PATH cannot be found. <br />_01" 
    126126msgstr "* T_PATH cannot be found. <br />" 
    127127 
    128 msgid "SC_CheckError_040" 
     128msgid "c_* Upload T_FIELD. <br />_01" 
    129129msgstr "* Upload T_FIELD. <br />" 
    130130 
    131 msgid "SC_CheckError_041" 
     131msgid "c_* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />_01" 
    132132msgstr "" 
    133133"* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />" 
    134134 
    135 msgid "SC_CheckError_042" 
     135msgid "c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01" 
    136136msgstr "* Do not use Japanese or spaces in the file name for T_FIELD. <br />" 
    137137 
    138 msgid "SC_CheckError_044" 
     138msgid "c_* T_FIELD is not correct. <br />_01" 
    139139msgstr "* T_FIELD is not correct. <br />" 
    140140 
    141 msgid "SC_CheckError_045" 
     141msgid "c_* Specify T_FIELD correctly. <br />_01" 
    142142msgstr "* Specify T_FIELD correctly. <br />" 
    143143 
    144 msgid "SC_CheckError_046" 
     144msgid "c_* The period specification for T_START and T_END is not correct. <br />_01" 
    145145msgstr "" 
    146146"* The period specification for T_START and T_END is not correct. <br />" 
    147147 
    148 msgid "SC_CheckError_047" 
     148msgid "c_* The designated T_FIELD does not exist. <br />_01" 
    149149msgstr "* The designated T_FIELD does not exist. <br />" 
    150150 
    151 msgid "SC_CheckError_048" 
    152 msgstr "* The T_FIELD format is incorrect. <br />" 
    153  
    154 msgid "SC_CheckError_049" 
     151msgid "c_* T_FIELD is not for mobile phones. <br />_01" 
    155152msgstr "* T_FIELD is not for mobile phones. <br />" 
    156153 
    157 msgid "SC_CheckError_050" 
     154msgid "c_* T_FIELD already used in member registration. <br />_01" 
    158155msgstr "* T_FIELD already used in member registration. <br />" 
    159156 
    160 msgid "SC_CheckError_051" 
     157msgid "c_* For a certain period of time after membership withdrawal, it is not possible to use the same T_FIELD. <br />_01" 
    161158msgstr "" 
    162159"* For a certain period of time after membership withdrawal, it is not " 
    163160"possible to use the same T_FIELD. <br />" 
    164161 
    165 msgid "SC_CheckError_052" 
     162msgid "c_* T_FIELD cannot be entered. <br />_01" 
    166163msgstr "* T_FIELD cannot be entered. <br />" 
    167  
    168 msgid "SC_CheckError_053" 
    169 msgstr "* The T_FIELD format is incorrect. <br />" 
    170164 
    171165msgid "SC_FormParam_001" 
  • branches/version-2_12-multilang/data/locales/ja.po

    r22394 r22397  
    9191msgstr "※ T_FIELDは英数記号で入力してください。<br />" 
    9292 
    93 msgid "SC_CheckError_031" 
     93msgid "c_* Enter at least 1 for T_FIELD. <br />_01" 
    9494msgstr "※ T_FIELDは1以上を入力してください。<br />" 
    9595 
    96 msgid "SC_CheckError_032_SINGLE" 
    97 msgid_plural "SC_CheckError_032_PLURAL" 
     96msgid "c_*  T_FIELD must be  between T_COUNT - T_DIGIT_MAX digits. <br />_01" 
     97msgid_plural "c_* For T_FIELD, input between T_COUNT to T_DIGIT_MAX digits. <br />_01" 
    9898msgstr[0] "※ T_FIELDはT_COUNT桁~T_DIGIT_MAX桁で入力して下さい。<br />" 
    9999msgstr[1] "※ T_FIELDはT_COUNT桁~T_DIGIT_MAX桁で入力して下さい。<br />" 
    100100 
    101 msgid "SC_CheckError_033_SINGLE" 
    102 msgid_plural "SC_CheckError_033_PLURAL" 
     101msgid "c_* For T_FIELD, enter T_COUNT digit(s). <br />_01" 
     102msgid_plural "c_* For T_FIELD, input T_COUNT digit(s). <br />_01" 
    103103msgstr[0] "※ T_FIELDはT_COUNT桁で入力して下さい。<br />" 
    104104msgstr[1] "※ T_FIELDはT_COUNT桁で入力して下さい。<br />" 
    105105 
    106 msgid "SC_CheckError_034" 
     106msgid "c_* The T_FIELD format is incorrect. <br />_01" 
    107107msgstr "※ T_FIELDの形式が不正です。<br />" 
    108108 
    109 msgid "SC_CheckError_035" 
     109msgid "c_* Enter the characters to be used in T_FIELD correctly. <br />_01" 
    110110msgstr "※ T_FIELDに使用する文字を正しく入力してください。<br />" 
    111111 
    112 msgid "SC_CheckError_036" 
     112msgid "c_* Enter T_FIELD correctly. <br />_01" 
    113113msgstr "※ T_FIELDを正しく入力してください。<br />" 
    114114 
    115 msgid "SC_CheckError_037" 
     115msgid "c_* Enter an IP address in the proper format in T_FIELD. <br />_01" 
    116116msgstr "※ T_FIELDに正しい形式のIPアドレスを入力してください。<br />" 
    117117 
    118 msgid "SC_CheckError_038" 
     118msgid "c_* The format permitted for T_FIELD is T_EXT. <br />_01" 
    119119msgstr "※ T_FIELDで許可されている形式は、T_EXTです。<br />" 
    120120 
    121 msgid "SC_CheckError_039" 
     121msgid "c_* T_PATH cannot be found. <br />_01" 
    122122msgstr "※ T_PATHが見つかりません。<br />" 
    123123 
    124 msgid "SC_CheckError_040" 
     124msgid "c_* Upload T_FIELD. <br />_01" 
    125125msgstr "※ T_FIELDをアップロードして下さい。<br />" 
    126126 
    127 msgid "SC_CheckError_041" 
     127msgid "c_* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />_01" 
    128128msgstr "" 
    129129"※ T_FIELDのファイルサイズはT_SIZET_UNIT以下のものを使用してください。<br />" 
    130130 
    131 msgid "SC_CheckError_042" 
     131msgid "c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01" 
    132132msgstr "※ T_FIELDのファイル名に日本語やスペースは使用しないで下さい。<br />" 
    133133 
    134 msgid "SC_CheckError_044" 
     134msgid "c_* T_FIELD is not correct. <br />_01" 
    135135msgstr "※ T_FIELDが正しくありません。<br />" 
    136136 
    137 msgid "SC_CheckError_045" 
     137msgid "c_* Specify T_FIELD correctly. <br />_01" 
    138138msgstr "※ T_FIELDを正しく指定してください。<br />" 
    139139 
    140 msgid "SC_CheckError_046" 
     140msgid "c_* The period specification for T_START and T_END is not correct. <br />_01" 
    141141msgstr "※ T_STARTとT_ENDの期間指定が不正です。<br />" 
    142142 
    143 msgid "SC_CheckError_047" 
     143msgid "c_* The designated T_FIELD does not exist. <br />_01" 
    144144msgstr "※ 指定したT_FIELDは存在しません。<br />" 
    145145 
    146 msgid "SC_CheckError_048" 
    147 msgstr "※ T_FIELDの形式が不正です。<br />" 
    148  
    149 msgid "SC_CheckError_049" 
     146msgid "c_* T_FIELD is not for mobile phones. <br />_01" 
    150147msgstr "※ T_FIELDは携帯電話のものではありません。<br />" 
    151148 
    152 msgid "SC_CheckError_050" 
     149msgid "c_* T_FIELD already used in member registration. <br />_01" 
    153150msgstr "※ すでに会員登録で使用されているT_FIELDです。<br />" 
    154151 
    155 msgid "SC_CheckError_051" 
     152msgid "c_* For a certain period of time after membership withdrawal, it is not possible to use the same T_FIELD. <br />_01" 
    156153msgstr "" 
    157154"※ 退会から一定期間の間は、同じT_FIELDを使用することはできません。<br />" 
    158155 
    159 msgid "SC_CheckError_052" 
     156msgid "c_* T_FIELD cannot be entered. <br />_01" 
    160157msgstr "※ T_FIELDは入力できません。<br />" 
    161  
    162 msgid "SC_CheckError_053" 
    163 msgstr "※ T_FIELDの形式が不正です。<br />" 
    164158 
    165159msgid "SC_FormParam_001" 
Note: See TracChangeset for help on using the changeset viewer.