Ignore:
Timestamp:
2013/01/25 18:16:49 (11 years ago)
Author:
kim
Message:

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

Location:
branches/version-2_12-multilang
Files:
10 edited

Legend:

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

    r22389 r22390  
    8787        $this->createParam($value); 
    8888        if (!is_array($this->arrParam[$value[1]]) && strlen($this->arrParam[$value[1]]) == 0) { 
    89             $this->arrErr[$value[1]] = t('t_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
     89            $this->arrErr[$value[1]] = t('c_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
    9090        } else if (is_array($this->arrParam[$value[1]]) && count($this->arrParam[$value[1]]) == 0) { 
    91             $this->arrErr[$value[1]] = t('t_* T_FIELD is not selected. <br />_01', array('T_FIELD' => $value[0])); 
     91            $this->arrErr[$value[1]] = t('c_* T_FIELD is not selected. <br />_01', array('T_FIELD' => $value[0])); 
    9292        } 
    9393    } 
     
    106106        $this->createParam($value); 
    107107        if (strlen($this->arrParam[$value[0]]) == 0) { 
    108             $this->arrErr[$value[0]] = t('t_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[1])); 
     108            $this->arrErr[$value[0]] = t('c_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[1])); 
    109109        } 
    110110    } 
     
    123123        $this->createParam($value); 
    124124        if (strlen($this->arrParam[$value[1]]) != 0 && preg_match("/^[  \t\r\n]+$/", $this->arrParam[$value[1]])) { 
    125             $this->arrErr[$value[1]] = t('t_* Spaces, tabs and line breaks are not possible in T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     125            $this->arrErr[$value[1]] = t('c_* Spaces, tabs and line breaks are not possible in T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    126126        } 
    127127    } 
     
    140140        $this->createParam($value); 
    141141        if (strlen($this->arrParam[$value[1]]) != 0 && preg_match("/[  \t\r\n]+/u", $this->arrParam[$value[1]])) { 
    142             $this->arrErr[$value[1]] = t('t_* Do not include spaces, tabs or line breaks in T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     142            $this->arrErr[$value[1]] = t('c_* Do not include spaces, tabs or line breaks in T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    143143        } 
    144144    } 
     
    151151        $this->createParam($value); 
    152152        if (strlen($this->arrParam[$value[1]]) != 0 && preg_match("/^[0]+[0-9]+$/", $this->arrParam[$value[1]])) { 
    153             $this->arrErr[$value[1]] = t('t_* A numerical value that starts with 0 has been entered for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     153            $this->arrErr[$value[1]] = t('c_* A numerical value that starts with 0 has been entered for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    154154        } 
    155155    } 
     
    168168        $this->createParam($value); 
    169169        if (strlen($this->arrParam[$value[1]]) == 0) { 
    170             $this->arrErr[$value[1]] = t('t_* T_FIELD is not selected. <br />_01', array('T_FIELD' => $value[0])); 
     170            $this->arrErr[$value[1]] = t('c_* T_FIELD is not selected. <br />_01', array('T_FIELD' => $value[0])); 
    171171        } 
    172172    } 
     
    186186        // 文字数の取得 
    187187        if ($this->arrParam[$value[2]] !== $this->arrParam[$value[3]]) { 
    188             $this->arrErr[$value[2]] = t('t_* T_FIELD_1ST and T_FIELD_2ND do not match. <br />_01', array('T_FIELD_1ST' => $value[0], 'T_FIELD_2ND' => $value[1])); 
     188            $this->arrErr[$value[2]] = t('c_* T_FIELD_1ST and T_FIELD_2ND do not match. <br />_01', array('T_FIELD_1ST' => $value[0], 'T_FIELD_2ND' => $value[1])); 
    189189        } 
    190190    } 
     
    204204        // 文字数の取得 
    205205        if ($this->arrParam[$value[2]] == $this->arrParam[$value[3]]) { 
    206             $this->arrErr[$value[2]] = t('t_* The same value cannot be used for T_FIELD_1ST and T_FIELD_2ND. <br />_01', array('T_FIELD_1ST' => $value[0], 'T_FIELD_2ND' => $value[1])); 
     206            $this->arrErr[$value[2]] = t('c_* The same value cannot be used for T_FIELD_1ST and T_FIELD_2ND. <br />_01', array('T_FIELD_1ST' => $value[0], 'T_FIELD_2ND' => $value[1])); 
    207207        } 
    208208    } 
     
    222222        // 文字数の取得 
    223223        if ($this->arrParam[$value[2]] != '' && $this->arrParam[$value[3]] != '' && ($this->arrParam[$value[2]] > $this->arrParam[$value[3]])) { 
    224             $this->arrErr[$value[2]] = t('t_* It is not possible to enter a larger value for T_FIELD_1ST than for T_FIELD_2ND. <br />_01', array('T_FIELD_1ST' => $value[0], 'T_FIELD_2ND' => $value[1])); 
     224            $this->arrErr[$value[2]] = t('c_* It is not possible to enter a larger value for T_FIELD_1ST than for T_FIELD_2ND. <br />_01', array('T_FIELD_1ST' => $value[0], 'T_FIELD_2ND' => $value[1])); 
    225225        } 
    226226    } 
     
    240240        // 文字数の取得 
    241241        if (mb_strlen($this->arrParam[$value[1]]) > $value[2]) { 
    242             $this->arrErr[$value[1]] = t('t_* For T_FIELD, enter T_LENGTH  characters or less. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $value[2])); 
     242            $this->arrErr[$value[1]] = t('c_* For T_FIELD, enter T_LENGTH  characters or less. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $value[2])); 
    243243        } 
    244244    } 
     
    258258        // 文字数の取得 
    259259        if (mb_strlen($this->arrParam[$value[1]]) < $value[2]) { 
    260             $this->arrErr[$value[1]] = t_plural($value[2], 'SC_CheckError_013', 't_* For T_FIELD, input T_COUNT characters or more. <br />_01', array('T_FIELD' => $value[0])); 
     260            $this->arrErr[$value[1]] = t_plural($value[2], 'c_* For T_FIELD, enter T_COUNT characters or more. <br />_01', 'c_* For T_FIELD, input T_COUNT characters or more. <br />_01', array('T_FIELD' => $value[0])); 
    261261        } 
    262262    } 
     
    276276        // 文字数の取得 
    277277        if ($this->arrParam[$value[1]] > $value[2]) { 
    278             $this->arrErr[$value[1]] = t('t_* For T_FIELD, enter T_LENGTH or smaller. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $value[2])); 
     278            $this->arrErr[$value[1]] = t('c_* For T_FIELD, enter T_LENGTH or smaller. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $value[2])); 
    279279        } 
    280280    } 
     
    293293        $this->createParam($value); 
    294294        if ($this->arrParam[$value[1]] < $value[2]) { 
    295             $this->arrErr[$value[1]] = t_plural($value[2], 't_* Enter T_COUNT or higher for T_FIELD. <br />_01', 't_* Input T_COUNT or higher for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     295            $this->arrErr[$value[1]] = t_plural($value[2], 'c_* Enter T_COUNT or higher for T_FIELD. <br />_01', 'c_* Input T_COUNT or higher for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    296296        } 
    297297    } 
     
    310310        $this->createParam($value); 
    311311        if ($this->numelicCheck($this->arrParam[$value[1]])) { 
    312             $this->arrErr[$value[1]] = t('t_* Enter only numbers for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     312            $this->arrErr[$value[1]] = t('c_* Enter only numbers for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    313313        } 
    314314    } 
     
    327327        $this->createParam($value); 
    328328        if (strlen($this->arrParam[$value[1]]) > 0 && !is_numeric($this->arrParam[$value[1]])) { 
    329             $this->arrErr[$value[1]] = t('t_* Enter only numbers for T_FIELD. <br />_02', array('T_FIELD' => $value[0])); 
     329            $this->arrErr[$value[1]] = t('c_* Enter only numbers for T_FIELD. <br />_02', array('T_FIELD' => $value[0])); 
    330330        } 
    331331    } 
     
    337337        $this->createParam($value); 
    338338        if (strlen($this->arrParam[$value[1]]) > 0 && !ctype_alpha($this->arrParam[$value[1]])) { 
    339             $this->arrErr[$value[1]] = t('t_* Enter alphabetical characters for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     339            $this->arrErr[$value[1]] = t('c_* Enter alphabetical characters for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    340340        } 
    341341    } 
     
    372372        // すべての項目が満たされていない場合を判定(一部だけ入力されている状態) 
    373373        if ($cnt > 0 && $cnt < 3) { 
    374             $this->arrErr[$value[1]] .= t('t_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     374            $this->arrErr[$value[1]] .= t('c_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    375375        } 
    376376 
     
    378378        for ($i = 1; $i <= 3; $i++) { 
    379379            if (strlen($this->arrParam[$value[$i]]) > 0 && strlen($this->arrParam[$value[$i]]) > $telItemLen) { 
    380                 $this->arrErr[$value[$i]] .= t('t_* T_FIELD must be T_LENGTH characters or less. <br />_01', array('T_FIELD' => $value[0] . $i, 'T_LENGTH' => $telItemLen)); 
     380                $this->arrErr[$value[$i]] .= t('c_* T_FIELD must be T_LENGTH characters or less. <br />_01', array('T_FIELD' => $value[0] . $i, 'T_LENGTH' => $telItemLen)); 
    381381            } else if ($this->numelicCheck($this->arrParam[$value[1]])) { 
    382                 $this->arrErr[$value[$i]] .= t('t_* Enter numbers for T_FIELD. <br />_01', array('T_FIELD' => $value[0] . $i)); 
     382                $this->arrErr[$value[$i]] .= t('c_* Enter numbers for T_FIELD. <br />_01', array('T_FIELD' => $value[0] . $i)); 
    383383            } 
    384384            $total_count += strlen($this->arrParam[$value[$i]]); 
     
    387387        // 合計値チェック 
    388388        if ($total_count > $telLen) { 
    389             $this->arrErr[$value[3]] .= t('t_* For T_FIELD, enter within a text length of T_LENGTH. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $telLen)); 
     389            $this->arrErr[$value[3]] .= t('c_* For T_FIELD, enter within a text length of T_LENGTH. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $telLen)); 
    390390        } 
    391391    } 
     
    415415 
    416416        if ($blank) { 
    417             $this->arrErr[$value[1]] = t('t_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
     417            $this->arrErr[$value[1]] = t('c_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
    418418        } 
    419419    } 
     
    446446 
    447447        if ($blank && $input) { 
    448             $this->arrErr[$value[1]] = t('t_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     448            $this->arrErr[$value[1]] = t('c_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    449449        } 
    450450    } 
     
    474474 
    475475        if (!$input) { 
    476             $this->arrErr[$value[1]] = t('t_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
     476            $this->arrErr[$value[1]] = t('c_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
    477477        } 
    478478    } 
     
    508508 
    509509        if ($error) { 
    510             $this->arrErr[$value[1]] = t('t_* Enter items in order, starting at the beginning. <br />_01', array('T_FIELD' => $value[0])); 
     510            $this->arrErr[$value[1]] = t('c_* Enter items in order, starting at the beginning. <br />_01', array('T_FIELD' => $value[0])); 
    511511        } 
    512512    } 
     
    521521        $this->createParam($value); 
    522522        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[ァ-ヶヲ-゚ー]+$/u", $this->arrParam[$value[1]])) { 
    523             $this->arrErr[$value[1]] = t('t_* For T_FIELD, enter katakana characters. <br />_01', array('T_FIELD' => $value[0])); 
     523            $this->arrErr[$value[1]] = t('c_* For T_FIELD, enter katakana characters. <br />_01', array('T_FIELD' => $value[0])); 
    524524        } 
    525525    } 
     
    534534        $this->createParam($value); 
    535535        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^([  \t\r\n]|[ァ-ヶ]|[ー])+$/u", $this->arrParam[$value[1]])) { 
    536             $this->arrErr[$value[1]] = t('t_* For T_FIELD, enter katakana characters. <br />_02', array('T_FIELD' => $value[0])); 
     536            $this->arrErr[$value[1]] = t('c_* For T_FIELD, enter katakana characters. <br />_02', array('T_FIELD' => $value[0])); 
    537537        } 
    538538    } 
     
    547547        $this->createParam($value); 
    548548        if (strlen($this->arrParam[$value[1]]) > 0 && !ctype_alnum($this->arrParam[$value[1]])) { 
    549             $this->arrErr[$value[1]] = t('t_* Enter alphanumeric characters for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     549            $this->arrErr[$value[1]] = t('c_* Enter alphanumeric characters for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    550550        } 
    551551    } 
     
    560560        $this->createParam($value); 
    561561        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[[:graph:][:space:]]+$/i", $this->arrParam[$value[1]])) { 
    562             $this->arrErr[$value[1]] = t('t_* Enter alphanumeric symbols for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     562            $this->arrErr[$value[1]] = t('c_* Enter alphanumeric symbols for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    563563        } 
    564564    } 
     
    824824            // 年月日のどれかが入力されていない。 
    825825            if (!(strlen($this->arrParam[$value[1]]) > 0 && strlen($this->arrParam[$value[2]]) > 0 && strlen($this->arrParam[$value[3]]) > 0)) { 
    826                 $this->arrErr[$value[1]] = t('t_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     826                $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]])) { 
    828828                $this->arrErr[$value[1]] = t('SC_CheckError_044', array('T_FIELD' => $value[0])); 
     
    847847            // 年月日時のどれかが入力されていない。 
    848848            if (!(strlen($this->arrParam[$value[1]]) > 0 && strlen($this->arrParam[$value[2]]) > 0 && strlen($this->arrParam[$value[3]]) > 0 && strlen($this->arrParam[$value[4]]) > 0 && strlen($this->arrParam[$value[5]]) > 0)) { 
    849                 $this->arrErr[$value[1]] = t('t_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     849                $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]])) { 
    851851                $this->arrErr[$value[1]] = t('SC_CheckError_044', array('T_FIELD' => $value[0])); 
     
    867867            // 年月日時のどれかが入力されていない。 
    868868            if (!(strlen($this->arrParam[$value[1]]) > 0 && strlen($this->arrParam[$value[2]]) > 0)) { 
    869                 $this->arrErr[$value[1]] = t('t_* Enter all items for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
     869                $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]])) { 
    871871                $this->arrErr[$value[1]] = t('SC_CheckError_044', array('T_FIELD' => $value[0])); 
  • branches/version-2_12-multilang/data/locales/ja.po

    r22389 r22390  
    1515msgstr "※ T_FIELDに許可されていないタグ T_TAG が含まれています。<br />" 
    1616 
    17 msgid "t_* T_FIELD is blank. <br />_01" 
     17msgid "c_* T_FIELD is blank. <br />_01" 
    1818msgstr "※ T_FIELDが入力されていません。<br />" 
    1919 
    20 msgid "t_* T_FIELD is not selected. <br />_01" 
     20msgid "c_* T_FIELD is not selected. <br />_01" 
    2121msgstr "※ T_FIELDが選択されていません。<br />" 
    2222 
    23 msgid "t_* Spaces, tabs and line breaks are not possible in T_FIELD. <br />_01" 
     23msgid "c_* Spaces, tabs and line breaks are not possible in T_FIELD. <br />_01" 
    2424msgstr "※ T_FIELDにスペース、タブ、改行のみの入力はできません。<br />" 
    2525 
    26 msgid "t_* Do not include spaces, tabs or line breaks in T_FIELD. <br />_01" 
     26msgid "c_* Do not include spaces, tabs or line breaks in T_FIELD. <br />_01" 
    2727msgstr "※ T_FIELDにスペース、タブ、改行は含めないで下さい。<br />" 
    2828 
    29 msgid "t_* A numerical value that starts with 0 has been entered for T_FIELD. <br />_01" 
     29msgid "c_* A numerical value that starts with 0 has been entered for T_FIELD. <br />_01" 
    3030msgstr "※ T_FIELDに0で始まる数値が入力されています。<br />" 
    3131 
    32 msgid "t_* T_FIELD_1ST and T_FIELD_2ND do not match. <br />_01" 
     32msgid "c_* T_FIELD_1ST and T_FIELD_2ND do not match. <br />_01" 
    3333msgstr "※ T_FIELD_1STとT_FIELD_2NDが一致しません。<br />" 
    3434 
    35 msgid "t_* The same value cannot be used for T_FIELD_1ST and T_FIELD_2ND. <br />_01" 
     35msgid "c_* The same value cannot be used for T_FIELD_1ST and T_FIELD_2ND. <br />_01" 
    3636msgstr "※ T_FIELD_1STとT_FIELD_2NDは、同じ値を使用できません。<br />" 
    3737 
    38 msgid "t_* It is not possible to enter a larger value for T_FIELD_1ST than for T_FIELD_2ND. <br />_01" 
     38msgid "c_* It is not possible to enter a larger value for T_FIELD_1ST than for T_FIELD_2ND. <br />_01" 
    3939msgstr "※ T_FIELD_1STはT_FIELD_2NDより大きい値を入力できません。<br />" 
    4040 
    41 msgid "t_* For T_FIELD, enter T_LENGTH  characters or less. <br />_01" 
     41msgid "c_* For T_FIELD, enter T_LENGTH  characters or less. <br />_01" 
    4242msgstr "※ T_FIELDはT_LENGTH字以下で入力してください。<br />" 
    4343 
    44 msgid "t_* For T_FIELD, enter T_COUNT characters or more. <br />_01" 
    45 msgid_plural "t_* For T_FIELD, input T_COUNT characters or more. <br />_01" 
     44msgid "c_* For T_FIELD, enter T_COUNT characters or more. <br />_01" 
     45msgid_plural "c_* For T_FIELD, input T_COUNT characters or more. <br />_01" 
    4646msgstr[0] "※ T_FIELDはT_COUNT字以上で入力してください。<br />" 
    4747msgstr[1] "※ T_FIELDはT_COUNT字以上で入力してください。<br />" 
    4848 
    49 msgid "t_* For T_FIELD, enter T_LENGTH or smaller. <br />_01" 
     49msgid "c_* For T_FIELD, enter T_LENGTH or smaller. <br />_01" 
    5050msgstr "※ T_FIELDはT_LENGTH以下で入力してください。<br />" 
    5151 
    52 msgid "t_* Enter T_COUNT or higher for T_FIELD. <br />_01" 
    53 msgid_plural "t_* Input T_COUNT or higher for T_FIELD. <br />_01" 
     52msgid "c_* Enter T_COUNT or higher for T_FIELD. <br />_01" 
     53msgid_plural "c_* Input T_COUNT or higher for T_FIELD. <br />_01" 
    5454msgstr[0] "※ T_FIELDはT_COUNT以上で入力してください。<br />" 
    5555msgstr[1] "※ T_FIELDはT_COUNT以上で入力してください。<br />" 
    5656 
    57 msgid "t_* Enter only numbers for T_FIELD. <br />_01" 
     57msgid "c_* Enter only numbers for T_FIELD. <br />_01" 
    5858msgstr "※ T_FIELDは数字で入力してください。<br />" 
    5959 
    60 msgid "t_* Enter only numbers for T_FIELD. <br />_02" 
     60msgid "c_* Enter only numbers for T_FIELD. <br />_02" 
    6161msgstr "※ T_FIELDは数字で入力してください。<br />" 
    6262 
    63 msgid "t_* Enter alphabetical characters for T_FIELD. <br />_01" 
     63msgid "c_* Enter alphabetical characters for T_FIELD. <br />_01" 
    6464msgstr "※ T_FIELDは半角英字で入力してください。<br />" 
    6565 
    66 msgid "t_* Enter all items for T_FIELD. <br />_01" 
     66msgid "c_* Enter all items for T_FIELD. <br />_01" 
    6767msgstr "※ T_FIELDはすべての項目を入力してください。<br />" 
    6868 
    69 msgid "t_* T_FIELD must be T_LENGTH characters or less. <br />_01" 
     69msgid "c_* T_FIELD must be T_LENGTH characters or less. <br />_01" 
    7070msgstr "※ T_FIELDはT_LENGTH字以内で入力してください。<br />" 
    7171 
    72 msgid "t_* Enter numbers for T_FIELD. <br />_01" 
     72msgid "c_* Enter numbers for T_FIELD. <br />_01" 
    7373msgstr "※ T_FIELDは数字で入力してください。<br />" 
    7474 
    75 msgid "t_* For T_FIELD, enter within a text length of T_LENGTH. <br />_01" 
     75msgid "c_* For T_FIELD, enter within a text length of T_LENGTH. <br />_01" 
    7676msgstr "※ T_FIELDはT_LENGTH文字以内で入力してください。<br />" 
    7777 
    78 msgid "t_* Enter items in order, starting at the beginning. <br />_01" 
     78msgid "c_* Enter items in order, starting at the beginning. <br />_01" 
    7979msgstr "※ T_FIELDは先頭の項目から順番に入力して下さい。<br />" 
    8080 
    81 msgid "t_* For T_FIELD, enter katakana characters. <br />_01" 
     81msgid "c_* For T_FIELD, enter katakana characters. <br />_01" 
    8282msgstr "※ T_FIELDはカタカナで入力してください。<br />" 
    8383 
    84 msgid "t_* For T_FIELD, enter katakana characters. <br />_02" 
     84msgid "c_* For T_FIELD, enter katakana characters. <br />_02" 
    8585msgstr "※ T_FIELDはカタカナで入力してください。<br />" 
    8686 
    87 msgid "t_* Enter alphanumeric characters for T_FIELD. <br />_01" 
     87msgid "c_* Enter alphanumeric characters for T_FIELD. <br />_01" 
    8888msgstr "※ T_FIELDは英数字で入力してください。<br />" 
    8989 
    90 msgid "t_* Enter alphanumeric symbols for T_FIELD. <br />_01" 
     90msgid "c_* Enter alphanumeric symbols for T_FIELD. <br />_01" 
    9191msgstr "※ T_FIELDは英数記号で入力してください。<br />" 
    9292 
     
    58915891"ことをここに確認し、同意するものとする。<br/>" 
    58925892 
    5893 msgid "t_Agree_01" 
     5893msgid "tpl_Agree_01" 
    58945894msgstr "同意する" 
    58955895 
    5896 msgid "t_Do not agree_01" 
     5896msgid "tpl_Do not agree_01" 
    58975897msgstr "同意しない" 
    58985898 
    5899 msgid "t_Next_01" 
     5899msgid "tpl_Next_01" 
    59005900msgstr "次へ進む" 
    59015901 
  • branches/version-2_12-multilang/html/install/templates/agreement.tpl

    r22385 r22390  
    6464<tr><td height="10"></td></tr> 
    6565<!--{assign var=key value="agreement"}--> 
    66 <tr><td align="left" class="fs12"><input type="radio" id="agreement_yes" name="<!--{$key}-->" value=true onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if $arrHidden[$key]}-->checked<!--{/if}-->><label for="agreement_yes"><!--{t string="t_Agree_01"}--></label> <input type="radio" id="agreement_no" name="<!--{$key}-->" value=false onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if !$arrHidden[$key]|h}-->checked<!--{/if}-->><label for="agreement_no"><!--{t string="t_Do not agree_01"}--></label></td></tr> 
     66<tr><td align="left" class="fs12"><input type="radio" id="agreement_yes" name="<!--{$key}-->" value=true onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if $arrHidden[$key]}-->checked<!--{/if}-->><label for="agreement_yes"><!--{t string="tpl_Agree_01"}--></label> <input type="radio" id="agreement_no" name="<!--{$key}-->" value=false onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if !$arrHidden[$key]|h}-->checked<!--{/if}-->><label for="agreement_no"><!--{t string="tpl_Do not agree_01"}--></label></td></tr> 
    6767</table> 
    6868 
     
    7272        <td align="center"> 
    7373        <a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_welcome';document.form1.submit();" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="<!--{t string="tpl_610"}-->" border="0" name="back"></a> 
    74         <a href="#" onclick="document.form1.submit();"><input type='image' onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="<!--{t string="t_Next_01"}-->" border="0" name="next" id="next"></a> 
     74        <a href="#" onclick="document.form1.submit();"><input type='image' onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="<!--{t string="tpl_Next_01"}-->" border="0" name="next" id="next"></a> 
    7575        </td> 
    7676    </tr> 
  • branches/version-2_12-multilang/html/install/templates/step0.tpl

    r22382 r22390  
    4747    <ul> 
    4848        <li><a class="btn-action" href="javascript:;" onclick="document.form1['mode'].value='return_welcome';document.form1.submit(); return false;"><span class="btn-prev"><!--{t string="tpl_610"}--></span></a></li> 
    49         <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     49        <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    5050    </ul> 
    5151</div> 
  • branches/version-2_12-multilang/html/install/templates/step0_1.tpl

    r22382 r22390  
    4949        <ul> 
    5050            <li><a href="#" class="btn-action" onclick="document.form1['mode'].value='return_step0';document.form1.submit();return false;"><span class="btn-prev"><!--{t string="tpl_610"}--></span></a></li> 
    51             <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     51            <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    5252        </ul> 
    5353    </div> 
  • branches/version-2_12-multilang/html/install/templates/step1.tpl

    r22386 r22390  
    220220        <ul> 
    221221            <li><a class="btn-action" href="javascript:;" onclick="document.form1['mode'].value='return_step0';document.form1.submit();return false;"><span class="btn-prev"><!--{t string="tpl_610"}--></span></a></li> 
    222             <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     222            <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    223223        </ul> 
    224224    </div> 
  • branches/version-2_12-multilang/html/install/templates/step2.tpl

    r22386 r22390  
    107107            <ul> 
    108108                <li><a class="btn-action" href="javascript:;" onclick="document.form1['mode'].value='return_step1';document.form1.submit();return false;"><span class="btn-prev"><!--{t string="tpl_610"}--></span></a></li> 
    109                 <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     109                <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    110110            </ul> 
    111111        </div> 
  • branches/version-2_12-multilang/html/install/templates/step3.tpl

    r22386 r22390  
    7878        <ul> 
    7979            <li><a class="btn-action" href="javascript:;" onclick="document.form1['mode'].value='return_step2';document.form1.submit();return false;"><span class="btn-prev"><!--{t string="tpl_610"}--></span></a></li> 
    80             <li><a class="btn-action" href="javascript:;" onclick="document.body.style.cursor='wait'; document.form1.submit(); return false;"><span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     80            <li><a class="btn-action" href="javascript:;" onclick="document.body.style.cursor='wait'; document.form1.submit(); return false;"><span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    8181        </ul> 
    8282    </div> 
  • branches/version-2_12-multilang/html/install/templates/step4.tpl

    r22386 r22390  
    6060                <span class="btn-prev"><!--{t string="tpl_610"}--></span></a></li> 
    6161            <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"> 
    62                 <span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     62                <span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    6363        </ul> 
    6464    <div class="btn-area-bottom"></div> 
  • branches/version-2_12-multilang/html/install/templates/welcome.tpl

    r22382 r22390  
    3333<div class="btn-area"> 
    3434    <ul> 
    35         <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="t_Next_01"}--></span></a></li> 
     35        <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next"><!--{t string="tpl_Next_01"}--></span></a></li> 
    3636    </ul> 
    3737</div> 
Note: See TracChangeset for help on using the changeset viewer.