Ignore:
Timestamp:
2013/02/07 11:58:12 (13 years ago)
Author:
kim
Message:

#2084 ID振り直し 複数形を考慮している英語の翻訳がおかしい箇所などをあわせて調整しています。

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

Legend:

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

    r22492 r22510  
    258258        // 文字数の取得 
    259259        if (mb_strlen($this->arrParam[$value[1]]) < $value[2]) { 
    260             $this->arrErr[$value[1]] = t_plural($value[2], 'c_* For T_ARG1, enter T_COUNT characters or more. <br />_01', 'c_* For T_ARG1, input T_COUNT characters or more. <br />_01', array('T_ARG1' => $value[0])); 
     260            $this->arrErr[$value[1]] = t_plural($value[2], 'c_* For T_ARG1, enter T_COUNT character or more. <br />_01', 'c_* For T_ARG1, enter T_COUNT characters or more. <br />_01', array('T_ARG1' => $value[0])); 
    261261        } 
    262262    } 
     
    293293        $this->createParam($value); 
    294294        if ($this->arrParam[$value[1]] < $value[2]) { 
    295             $this->arrErr[$value[1]] = t_plural($value[2], 'c_* Enter T_COUNT or higher for T_ARG1. <br />_01', 'c_* Input T_COUNT or higher for T_ARG1. <br />_01', array('T_ARG1' => $value[0])); 
     295            $this->arrErr[$value[1]] = t_plural($value[2], 'c_* Enter T_COUNT or higher for T_ARG1. <br />_01', 'c_* Enter T_COUNT or higher for T_ARG1. <br />_02', array('T_ARG1' => $value[0])); 
    296296        } 
    297297    } 
     
    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_ARG1 must be  between T_COUNT - T_ARG2 digits. <br />_01', 'c_* For T_ARG1, input between T_COUNT to T_ARG2 digits. <br />_01', array('T_ARG1' => $value[0], 'T_ARG2' => $value[3])); 
     587            $this->arrErr[$value[1]] =  t('c_*  T_ARG1 must be  between T_ARG2 - T_ARG3 digits. <br />_01', array('T_ARG1' => $value[0], 'T_ARG2' => $value[2], 'T_ARG3' => $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_ARG1, enter T_COUNT digit(s). <br />_01', 'c_* For T_ARG1, input T_COUNT digit(s). <br />_01', array('T_ARG1' => $value[0])); 
     601            $this->arrErr[$value[1]] =  t_plural($value[2], 'c_* For T_ARG1, enter T_COUNT digit. <br />_01', 'c_* For T_ARG1, enter T_COUNT digits. <br />_01', array('T_ARG1' => $value[0])); 
    602602        } 
    603603    } 
  • branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Mail.php

    r22503 r22510  
    9898                    if ($this->arrErr) { 
    9999                        // エラーメッセージ 
    100                         $this->tpl_msg = t('c_An error has occurred_01'); 
     100                        $this->tpl_msg = t('c_An error has occurred._01'); 
    101101 
    102102                    } else { 
  • branches/version-2_12-multilang/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php

    r22503 r22510  
    4949        $this->tpl_pager = 'pager.tpl'; 
    5050        $this->tpl_maintitle = t('c_Member_02'); 
    51         $this->tpl_subtitle = t('LC_Page_Admin_Customer_Edit_002'); 
     51        $this->tpl_subtitle = t('c_Member registration_02'); 
    5252 
    5353        $masterData = new SC_DB_MasterData_Ex(); 
  • branches/version-2_12-multilang/data/class/pages/admin/system/LC_Page_Admin_System_Delete.php

    r22496 r22510  
    107107 
    108108        $objFormParam->addParam(t('c_pageno_01'), 'pageno', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK', 'EXIST_CHECK')); 
    109         $objFormParam->addParam(t('PARAM_LABEL_ID_ALP'), 'id', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     109        $objFormParam->addParam(t('c_id_01'), 'id', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    110110        $objFormParam->setParam($arrParams); 
    111111 
  • branches/version-2_12-multilang/data/class/pages/contact/LC_Page_Contact.php

    r22509 r22510  
    4646        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    4747            $this->tpl_title = t('c_Inquiry_01'); 
    48             //$this->tpl_title = 'お問い合わせ'; 
    4948        } else { 
    50             $this->tpl_title = t('c_Inquiries_01'); 
    51             //$this->tpl_title = 'お問い合わせ(入力ページ)'; 
     49            $this->tpl_title = t('c_Inquiry_02'); 
    5250        } 
    5351        $this->tpl_page_category = 'contact'; 
     
    102100                    $this->tpl_mainpage = 'contact/confirm.tpl'; 
    103101                    //$this->tpl_title = 'お問い合わせ(確認ページ)'; 
    104                     $this->tpl_title = t('c_Inquiry_02'); 
     102                    $this->tpl_title = t('c_Inquiry_03'); 
    105103                } 
    106104 
  • branches/version-2_12-multilang/data/class/pages/contact/LC_Page_Contact_Complete.php

    r22496 r22510  
    4444    function init() { 
    4545        parent::init(); 
    46         //$this->tpl_title = 'お問い合わせ(完了ページ)'; 
    47         $this->tpl_title = t('c_Inquiry_03'); 
     46        $this->tpl_title = t('c_Inquiry_04'); 
    4847        $this->tpl_mainno = 'contact'; 
    4948    } 
  • branches/version-2_12-multilang/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r22504 r22510  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_subtitle = t('LC_Page_Mypage_Change_001'); 
     46        $this->tpl_subtitle = t('c_Edit registration details_01'); 
    4747        $this->tpl_mypageno = 'change'; 
    4848 
     
    130130 
    131131                    $this->tpl_mainpage = 'mypage/change_confirm.tpl'; 
    132                     $this->tpl_title    = t('LC_Page_Mypage_Change_003'); 
    133                     $this->tpl_subtitle = t('LC_Page_Mypage_Change_004'); 
     132                    $this->tpl_title    = t('c_MY page_02'); 
     133                    $this->tpl_subtitle = t('c_Edit registration details_02'); 
    134134                } 
    135135                break; 
  • branches/version-2_12-multilang/data/class/pages/regist/LC_Page_Regist_Complete.php

    r22100 r22510  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_title = t('LC_Page_Regist_Complete_001'); 
     46        $this->tpl_title = t('c_Member registration_01'); 
    4747    } 
    4848 
Note: See TracChangeset for help on using the changeset viewer.