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

#2060 メッセージIDの振り直し SC_CheckError, SC_FormParam

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

Legend:

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

    r22397 r22399  
    570570        $this->createParam($value); 
    571571        if ($this->arrParam[$value[1]] == '0') { 
    572             $this->arrErr[$value[1]] = t('c_* Enter at least 1 for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     572            $this->arrErr[$value[1]] = t('SC_CheckError_031', 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], '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])); 
     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])); 
    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], '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])); 
     601            $this->arrErr[$value[1]] =  t_plural($value[2], 'SC_CheckError_033_SINGLE', 'SC_CheckError_033_PLURAL', array('T_FIELD' => $value[0])); 
    602602        } 
    603603    } 
     
    647647 
    648648        if (!preg_match($regexp, $this->arrParam[$value[1]])) { 
    649             $this->arrErr[$value[1]] = t('c_* The T_FIELD format is incorrect. <br />_01', array('T_FIELD' => $value[0])); 
     649            $this->arrErr[$value[1]] = t('SC_CheckError_034', 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('c_* Enter the characters to be used in T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
     668            $this->arrErr[$value[1]] = t('SC_CheckError_035', 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('c_* Enter T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
     680            $this->arrErr[$value[1]] = t('SC_CheckError_036', 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('c_* Enter an IP address in the proper format in T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     700                    $this->arrErr[$value[1]] = t('SC_CheckError_037', array('T_FIELD' => $value[0])); 
    701701                } 
    702702            } 
     
    726726        if ($match === false) { 
    727727            $str_ext = implode('・', $value[2]); 
    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)); 
     728            $this->arrErr[$value[1]] = t('SC_CheckError_038', 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('c_* T_PATH cannot be found. <br />_01', array('T_PATH' => $path)); 
     751            $this->arrErr[$value[1]] = t('SC_CheckError_039', 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('c_* Upload T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     764            $this->arrErr[$value[1]] = t('SC_CheckError_040', array('T_FIELD' => $value[0])); 
    765765        } 
    766766    } 
     
    780780                $byte = 'MB'; 
    781781            } 
    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)); 
     782            $this->arrErr[$value[1]] = t('SC_CheckError_041', 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('c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     795            $this->arrErr[$value[1]] = t('SC_CheckError_042', 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('c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     808            $this->arrErr[$value[1]] = t('SC_CheckError_042', 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('c_* T_FIELD is not correct. <br />_01', array('T_FIELD' => $value[0])); 
     828                $this->arrErr[$value[1]] = t('SC_CheckError_044', 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('c_* T_FIELD is not correct. <br />_01', array('T_FIELD' => $value[0])); 
     851                $this->arrErr[$value[1]] = t('SC_CheckError_044', 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('c_* T_FIELD is not correct. <br />_01', array('T_FIELD' => $value[0])); 
     871                $this->arrErr[$value[1]] = t('SC_CheckError_044', 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('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
     934            $this->arrErr[$value[2]] = t('SC_CheckError_045', 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('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[1])); 
     937            $this->arrErr[$value[5]] = t('SC_CheckError_045', 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('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
     945                $this->arrErr[$value[2]] = t('SC_CheckError_046', 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('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
     984            $this->arrErr[$value[2]] = t('SC_CheckError_045', 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('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[1])); 
     987            $this->arrErr[$value[8]] = t('SC_CheckError_045', 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('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
     995                $this->arrErr[$value[2]] = t('SC_CheckError_046', array('T_START' => $value[0], 'T_END' => $value[1])); 
    996996            } 
    997997            if ($date1 == $date2) { 
    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])); 
     998                $this->arrErr[$value[2]] = t('SC_CheckError_046', 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('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[0])); 
     1027            $this->arrErr[$value[2]] = t('SC_CheckError_045', 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('c_* Specify T_FIELD correctly. <br />_01', array('T_FIELD' => $value[1])); 
     1030            $this->arrErr[$value[4]] = t('SC_CheckError_045', 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('c_* The period specification for T_START and T_END is not correct. <br />_01', array('T_START' => $value[0], 'T_END' => $value[1])); 
     1038                $this->arrErr[$value[2]] = t('SC_CheckError_046', 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('c_* The designated T_FIELD does not exist. <br />_01', array('T_FIELD' => $value[0])); 
     1050            $this->arrErr[$value[1]] = t('SC_CheckError_047', 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('c_* The T_FIELD format is incorrect. <br />_01', array('T_FIELD' => $value[0])); 
     1060            $this->arrErr[$value[1]] = t('SC_CheckError_048', 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('c_* T_FIELD is not for mobile phones. <br />_01', array('T_FIELD' => $value[0])); 
     1074            $this->arrErr[$value[1]] = t('SC_CheckError_049', array('T_FIELD' => $value[0])); 
    10751075        } 
    10761076    } 
     
    10931093        switch ($register_user_flg) { 
    10941094            case 1: 
    1095                 $this->arrErr[$value[1]] .= t('c_* T_FIELD already used in member registration. <br />_01', array('T_FIELD' => $value[0])); 
     1095                $this->arrErr[$value[1]] .= t('SC_CheckError_050', array('T_FIELD' => $value[0])); 
    10961096                break; 
    10971097            case 2: 
    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])); 
     1098                $this->arrErr[$value[1]] .= t('SC_CheckError_051', 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('c_* T_FIELD cannot be entered. <br />_01', array('T_FIELD' => $value[0])); 
     1122            $this->arrErr[$value[1]] = t('SC_CheckError_052', array('T_FIELD' => $value[0])); 
    11231123        } 
    11241124    } 
     
    11371137        $this->createParam($value); 
    11381138        if ($this->evalCheck($value[1]) === false) { 
    1139             $this->arrErr[$value[0]] = t('c_* The T_FIELD format is incorrect. <br />_01', array('T_FIELD' => $value[0])); 
     1139            $this->arrErr[$value[0]] = t('SC_CheckError_053', array('T_FIELD' => $value[0])); 
    11401140        } 
    11411141    } 
  • branches/version-2_12-multilang/data/class/SC_FormParam.php

    r22398 r22399  
    131131 
    132132            if ($find) { 
    133                 $this->html_disp_name[$index] = t('c_T_NAME<span class=\"red\">(* Required)</span>_01', array('T_NAME' => $this->disp_name[$index])); 
     133                $this->html_disp_name[$index] = t('SC_FormParam_003', array('T_NAME' => $this->disp_name[$index])); 
    134134            } else { 
    135135                $this->html_disp_name[$index] = $this->disp_name[$index]; 
    136136            } 
    137137            if ($this->arrDefault[$key] != '') { 
    138                 $this->html_disp_name[$index] .= t('c_[Default value: T_DEFAULT]_01', array('T_DEFAULT' => $this->arrDefault[$key])); 
     138                $this->html_disp_name[$index] .= t('SC_FormParam_004', array('T_DEFAULT' => $this->arrDefault[$key])); 
    139139            } 
    140140            if ($this->input_db[$index] == false) { 
    141                 $this->html_disp_name[$index] .= t('c_ [Registration/update not possible] _01'); 
     141                $this->html_disp_name[$index] .= t('SC_FormParam_005'); 
    142142            } 
    143143        } 
     
    228228                    case 'FILE_EXISTS': 
    229229                        if ($value != '' && !file_exists($this->check_dir . $value)) { 
    230                             $arrErr[$key] = t('c_* The file T_NAME does not exist. <br />_01', array('T_NAME' => $this->disp_name[$index])); 
     230                            $arrErr[$key] = t('SC_FormParam_001', array('T_NAME' => $this->disp_name[$index])); 
    231231                        } 
    232232                        break; 
     
    234234                    case 'DOWN_FILE_EXISTS': 
    235235                        if ($value != '' && !file_exists(DOWN_SAVE_REALDIR . $value)) { 
    236                             $arrErr[$key] = t('c_* The file T_NAME does not exist. <br />_01', array('T_NAME' => $this->disp_name[$index])); 
     236                            $arrErr[$key] = t('SC_FormParam_001', array('T_NAME' => $this->disp_name[$index])); 
    237237                        } 
    238238                        break; 
    239239                    default: 
    240                         $arrErr[$key] = t('c_* Does not support the error check format (T_FUNCTION) **<br />_01', array('T_FUNCTION' => $func)); 
     240                        $arrErr[$key] = t('SC_FormParam_002', array('T_FUNCTION' => $func)); 
    241241                        break; 
    242242                } 
  • branches/version-2_12-multilang/data/locales/en-US.po

    r22398 r22399  
    9595msgstr "* Enter alphanumeric symbols for T_FIELD. <br />" 
    9696 
    97 msgid "c_* Enter at least 1 for T_FIELD. <br />_01" 
     97msgid "SC_CheckError_031" 
    9898msgstr "* Enter at least 1 for T_FIELD. <br />" 
    9999 
    100 msgid "c_*  T_FIELD must be  between T_COUNT - T_DIGIT_MAX digits. <br />_01" 
    101 msgid_plural "c_* For T_FIELD, input between T_COUNT to T_DIGIT_MAX digits. <br />_01" 
     100msgid "SC_CheckError_032_SINGLE" 
     101msgid_plural "SC_CheckError_032_PLURAL" 
    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 "c_* For T_FIELD, enter T_COUNT digit(s). <br />_01" 
    106 msgid_plural "c_* For T_FIELD, input T_COUNT digit(s). <br />_01" 
     105msgid "SC_CheckError_033_SINGLE" 
     106msgid_plural "SC_CheckError_033_PLURAL" 
    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 "c_* The T_FIELD format is incorrect. <br />_01" 
     110msgid "SC_CheckError_034" 
    111111msgstr "* The T_FIELD format is incorrect. <br />" 
    112112 
    113 msgid "c_* Enter the characters to be used in T_FIELD correctly. <br />_01" 
     113msgid "SC_CheckError_035" 
    114114msgstr "* Enter the characters to be used in T_FIELD correctly. <br />" 
    115115 
    116 msgid "c_* Enter T_FIELD correctly. <br />_01" 
     116msgid "SC_CheckError_036" 
    117117msgstr "* Enter T_FIELD correctly. <br />" 
    118118 
    119 msgid "c_* Enter an IP address in the proper format in T_FIELD. <br />_01" 
     119msgid "SC_CheckError_037" 
    120120msgstr "* Enter an IP address in the proper format in T_FIELD. <br />" 
    121121 
    122 msgid "c_* The format permitted for T_FIELD is T_EXT. <br />_01" 
     122msgid "SC_CheckError_038" 
    123123msgstr "* The format permitted for T_FIELD is T_EXT. <br />" 
    124124 
    125 msgid "c_* T_PATH cannot be found. <br />_01" 
     125msgid "SC_CheckError_039" 
    126126msgstr "* T_PATH cannot be found. <br />" 
    127127 
    128 msgid "c_* Upload T_FIELD. <br />_01" 
     128msgid "SC_CheckError_040" 
    129129msgstr "* Upload T_FIELD. <br />" 
    130130 
    131 msgid "c_* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />_01" 
     131msgid "SC_CheckError_041" 
    132132msgstr "" 
    133133"* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />" 
    134134 
    135 msgid "c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01" 
     135msgid "SC_CheckError_042" 
    136136msgstr "* Do not use Japanese or spaces in the file name for T_FIELD. <br />" 
    137137 
    138 msgid "c_* T_FIELD is not correct. <br />_01" 
     138msgid "SC_CheckError_044" 
    139139msgstr "* T_FIELD is not correct. <br />" 
    140140 
    141 msgid "c_* Specify T_FIELD correctly. <br />_01" 
     141msgid "SC_CheckError_045" 
    142142msgstr "* Specify T_FIELD correctly. <br />" 
    143143 
    144 msgid "c_* The period specification for T_START and T_END is not correct. <br />_01" 
     144msgid "SC_CheckError_046" 
    145145msgstr "" 
    146146"* The period specification for T_START and T_END is not correct. <br />" 
    147147 
    148 msgid "c_* The designated T_FIELD does not exist. <br />_01" 
     148msgid "SC_CheckError_047" 
    149149msgstr "* The designated T_FIELD does not exist. <br />" 
    150150 
    151 msgid "c_* T_FIELD is not for mobile phones. <br />_01" 
     151msgid "SC_CheckError_048" 
     152msgstr "* The T_FIELD format is incorrect. <br />" 
     153 
     154msgid "SC_CheckError_049" 
    152155msgstr "* T_FIELD is not for mobile phones. <br />" 
    153156 
    154 msgid "c_* T_FIELD already used in member registration. <br />_01" 
     157msgid "SC_CheckError_050" 
    155158msgstr "* T_FIELD already used in member registration. <br />" 
    156159 
    157 msgid "c_* For a certain period of time after membership withdrawal, it is not possible to use the same T_FIELD. <br />_01" 
     160msgid "SC_CheckError_051" 
    158161msgstr "" 
    159162"* For a certain period of time after membership withdrawal, it is not " 
    160163"possible to use the same T_FIELD. <br />" 
    161164 
    162 msgid "c_* T_FIELD cannot be entered. <br />_01" 
     165msgid "SC_CheckError_052" 
    163166msgstr "* T_FIELD cannot be entered. <br />" 
    164167 
    165 msgid "c_* The file T_NAME does not exist. <br />_01" 
     168msgid "SC_CheckError_053" 
     169msgstr "* The T_FIELD format is incorrect. <br />" 
     170 
     171msgid "SC_FormParam_001" 
    166172msgstr "* The file T_NAME does not exist. <br />" 
    167173 
    168 msgid "c_* Does not support the error check format (T_FUNCTION) **<br />_01" 
     174msgid "SC_FormParam_002" 
    169175msgstr "* Does not support the error check format (T_FUNCTION) **<br />" 
    170176 
    171 msgid "c_T_NAME<span class=\"red\">(* Required)</span>_01" 
     177msgid "SC_FormParam_003" 
    172178msgstr "T_NAME<span class=\"red\">(* Required)</span>" 
    173179 
    174 msgid "c_[Default value: T_DEFAULT]_01" 
     180msgid "SC_FormParam_004" 
    175181msgstr " [Default value: T_DEFAULT]" 
    176182 
    177 msgid "c_ [Registration/update not possible] _01" 
     183msgid "SC_FormParam_005" 
    178184msgstr " [Registration/update not possible] " 
    179185 
  • branches/version-2_12-multilang/data/locales/ja.po

    r22398 r22399  
    9191msgstr "※ T_FIELDは英数記号で入力してください。<br />" 
    9292 
    93 msgid "c_* Enter at least 1 for T_FIELD. <br />_01" 
     93msgid "SC_CheckError_031" 
    9494msgstr "※ T_FIELDは1以上を入力してください。<br />" 
    9595 
    96 msgid "c_*  T_FIELD must be  between T_COUNT - T_DIGIT_MAX digits. <br />_01" 
    97 msgid_plural "c_* For T_FIELD, input between T_COUNT to T_DIGIT_MAX digits. <br />_01" 
     96msgid "SC_CheckError_032_SINGLE" 
     97msgid_plural "SC_CheckError_032_PLURAL" 
    9898msgstr[0] "※ T_FIELDはT_COUNT桁~T_DIGIT_MAX桁で入力して下さい。<br />" 
    9999msgstr[1] "※ T_FIELDはT_COUNT桁~T_DIGIT_MAX桁で入力して下さい。<br />" 
    100100 
    101 msgid "c_* For T_FIELD, enter T_COUNT digit(s). <br />_01" 
    102 msgid_plural "c_* For T_FIELD, input T_COUNT digit(s). <br />_01" 
     101msgid "SC_CheckError_033_SINGLE" 
     102msgid_plural "SC_CheckError_033_PLURAL" 
    103103msgstr[0] "※ T_FIELDはT_COUNT桁で入力して下さい。<br />" 
    104104msgstr[1] "※ T_FIELDはT_COUNT桁で入力して下さい。<br />" 
    105105 
    106 msgid "c_* The T_FIELD format is incorrect. <br />_01" 
     106msgid "SC_CheckError_034" 
    107107msgstr "※ T_FIELDの形式が不正です。<br />" 
    108108 
    109 msgid "c_* Enter the characters to be used in T_FIELD correctly. <br />_01" 
     109msgid "SC_CheckError_035" 
    110110msgstr "※ T_FIELDに使用する文字を正しく入力してください。<br />" 
    111111 
    112 msgid "c_* Enter T_FIELD correctly. <br />_01" 
     112msgid "SC_CheckError_036" 
    113113msgstr "※ T_FIELDを正しく入力してください。<br />" 
    114114 
    115 msgid "c_* Enter an IP address in the proper format in T_FIELD. <br />_01" 
     115msgid "SC_CheckError_037" 
    116116msgstr "※ T_FIELDに正しい形式のIPアドレスを入力してください。<br />" 
    117117 
    118 msgid "c_* The format permitted for T_FIELD is T_EXT. <br />_01" 
     118msgid "SC_CheckError_038" 
    119119msgstr "※ T_FIELDで許可されている形式は、T_EXTです。<br />" 
    120120 
    121 msgid "c_* T_PATH cannot be found. <br />_01" 
     121msgid "SC_CheckError_039" 
    122122msgstr "※ T_PATHが見つかりません。<br />" 
    123123 
    124 msgid "c_* Upload T_FIELD. <br />_01" 
     124msgid "SC_CheckError_040" 
    125125msgstr "※ T_FIELDをアップロードして下さい。<br />" 
    126126 
    127 msgid "c_* For the T_FIELD file size, use a size that is T_SIZET_UNIT or less. <br />_01" 
     127msgid "SC_CheckError_041" 
    128128msgstr "" 
    129129"※ T_FIELDのファイルサイズはT_SIZET_UNIT以下のものを使用してください。<br />" 
    130130 
    131 msgid "c_* Do not use Japanese or spaces in the file name for T_FIELD. <br />_01" 
     131msgid "SC_CheckError_042" 
    132132msgstr "※ T_FIELDのファイル名に日本語やスペースは使用しないで下さい。<br />" 
    133133 
    134 msgid "c_* T_FIELD is not correct. <br />_01" 
     134msgid "SC_CheckError_044" 
    135135msgstr "※ T_FIELDが正しくありません。<br />" 
    136136 
    137 msgid "c_* Specify T_FIELD correctly. <br />_01" 
     137msgid "SC_CheckError_045" 
    138138msgstr "※ T_FIELDを正しく指定してください。<br />" 
    139139 
    140 msgid "c_* The period specification for T_START and T_END is not correct. <br />_01" 
     140msgid "SC_CheckError_046" 
    141141msgstr "※ T_STARTとT_ENDの期間指定が不正です。<br />" 
    142142 
    143 msgid "c_* The designated T_FIELD does not exist. <br />_01" 
     143msgid "SC_CheckError_047" 
    144144msgstr "※ 指定したT_FIELDは存在しません。<br />" 
    145145 
    146 msgid "c_* T_FIELD is not for mobile phones. <br />_01" 
     146msgid "SC_CheckError_048" 
     147msgstr "※ T_FIELDの形式が不正です。<br />" 
     148 
     149msgid "SC_CheckError_049" 
    147150msgstr "※ T_FIELDは携帯電話のものではありません。<br />" 
    148151 
    149 msgid "c_* T_FIELD already used in member registration. <br />_01" 
     152msgid "SC_CheckError_050" 
    150153msgstr "※ すでに会員登録で使用されているT_FIELDです。<br />" 
    151154 
    152 msgid "c_* For a certain period of time after membership withdrawal, it is not possible to use the same T_FIELD. <br />_01" 
     155msgid "SC_CheckError_051" 
    153156msgstr "" 
    154157"※ 退会から一定期間の間は、同じT_FIELDを使用することはできません。<br />" 
    155158 
    156 msgid "c_* T_FIELD cannot be entered. <br />_01" 
     159msgid "SC_CheckError_052" 
    157160msgstr "※ T_FIELDは入力できません。<br />" 
    158161 
    159 msgid "c_* The file T_NAME does not exist. <br />_01" 
     162msgid "SC_CheckError_053" 
     163msgstr "※ T_FIELDの形式が不正です。<br />" 
     164 
     165msgid "SC_FormParam_001" 
    160166msgstr "※ T_NAMEのファイルが存在しません。<br />" 
    161167 
    162 msgid "c_* Does not support the error check format (T_FUNCTION) **<br />_01" 
     168msgid "SC_FormParam_002" 
    163169msgstr "※※ エラーチェック形式(T_FUNCTION)には対応していません ※※ <br />" 
    164170 
    165 msgid "c_T_NAME<span class=\"red\">(* Required)</span>_01" 
     171msgid "SC_FormParam_003" 
    166172msgstr "T_NAME<span class=\"red\">(※ 必須)</span>" 
    167173 
    168 msgid "c_[Default value: T_DEFAULT]_01" 
     174msgid "SC_FormParam_004" 
    169175msgstr " [省略時初期値: T_DEFAULT]" 
    170176 
    171 msgid "c_ [Registration/update not possible] _01" 
     177msgid "SC_FormParam_005" 
    172178msgstr " [登録・更新不可] " 
    173179 
Note: See TracChangeset for help on using the changeset viewer.