[Svn-src-all:3618] [version-2_12_3en-p1 22530] #2084 メッセージIDの振り直し漏れ、切り出しミス、テンプレートにのみ存在するメッセージIDを修正。

kim admin @ mail.ec-cube.net
2013年 2月 13日 (水) 12:39:04 JST


Subversion committed to /home/svn/open 22530
http://svn.ec-cube.net/open_trac/changeset/22530
┌────────────────────────────┐
│更新者 :  kim                                          │
│更新日時:  2013-02-13 12:39:04 +0900 (水, 13  2月 2013)│
└────────────────────────────┘

Log:
--------------------------------------------------------
#2084 メッセージIDの振り直し漏れ、切り出しミス、テンプレートにのみ存在するメッセージIDを修正。
LC_Page_Admin_Basis_DeliveryInput.php に「;;」となっている2箇所も修正

Changed:                      [U:修正,A:追加,D:削除]
--------------------------------------------------------
U   branches/version-2_12_3en-p1/data/class/helper/SC_Helper_Transform.php
U   branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
U   branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php
U   branches/version-2_12_3en-p1/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php
U   branches/version-2_12_3en-p1/data/class/pages/shopping/LC_Page_Shopping_Multiple.php
U   branches/version-2_12_3en-p1/data/locales/en-US.mo
U   branches/version-2_12_3en-p1/data/locales/en-US.po
U   branches/version-2_12_3en-p1/data/locales/ja.mo
U   branches/version-2_12_3en-p1/data/locales/ja.po
U   branches/version-2_12_3en-p1/html/install/index.php

変更: branches/version-2_12_3en-p1/data/class/helper/SC_Helper_Transform.php
===================================================================
--- branches/version-2_12_3en-p1/data/class/helper/SC_Helper_Transform.php	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/class/helper/SC_Helper_Transform.php	2013-02-13 03:39:04 UTC (rev 22530)
@@ -66,7 +66,7 @@
             if ($encoding === false) {
                 $encoding = t("c_Not detectable_01");
             }
-            $msg = t('SC_Helper_Transform_002', array('T_ARG1' => $encoding));
+            $msg = t('c_The templates character code is T_ARG1. UTF 8 can only be used._01', array('T_ARG1' => $encoding));
             SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, $msg);
         }
 

変更: branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
===================================================================
--- branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	2013-02-13 03:39:04 UTC (rev 22530)
@@ -235,14 +235,14 @@
         $objFormParam->addParam(t('c_E-mail address for receiving sending errors_01'), 'email04', null, 'a', array('EXIST_CHECK', 'EMAIL_CHECK', 'EMAIL_CHAR_CHECK'));
 
         // 電話番号
-        $objFormParam->addParam(t('PARAM_LABEL_TEL01'), 'tel01', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
-        $objFormParam->addParam(t('PARAM_LABEL_TEL02'), 'tel02', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
-        $objFormParam->addParam(t('PARAM_LABEL_TEL03'), 'tel03', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
+        $objFormParam->addParam(t('c_Telephone number 1_01'), 'tel01', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
+        $objFormParam->addParam(t('c_Telephone number 2_01'), 'tel02', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
+        $objFormParam->addParam(t('c_Telephone number 3_01'), 'tel03', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
 
         // FAX番号
-        $objFormParam->addParam(t('PARAM_LABEL_FAX01'), 'fax01', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
-        $objFormParam->addParam(t('PARAM_LABEL_FAX02'), 'fax02', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
-        $objFormParam->addParam(t('PARAM_LABEL_FAX03'), 'fax03', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
+        $objFormParam->addParam(t('c_Fax number 1_01'), 'fax01', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
+        $objFormParam->addParam(t('c_Fax number 2_01'), 'fax02', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
+        $objFormParam->addParam(t('c_Fax number 3_01'), 'fax03', TEL_ITEM_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
 
         // その他
         $objFormParam->addParam(t('c_Consumption sales tax rate_01'), 'tax', PERCENTAGE_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));

変更: branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php
===================================================================
--- branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php	2013-02-13 03:39:04 UTC (rev 22530)
@@ -49,8 +49,8 @@
         $this->arrPref = $masterData->getMasterData('mtb_pref');
         $this->arrProductType = $masterData->getMasterData('mtb_product_type');
         $this->arrPayments = SC_Helper_DB_Ex::sfGetIDValueList('dtb_payment', 'payment_id', 'payment_method');
-        $this->tpl_maintitle = t('c_Basic information_01');;
-        $this->tpl_subtitle = t('c_Delivery method settings_01');;
+        $this->tpl_maintitle = t('c_Basic information_01');
+        $this->tpl_subtitle = t('c_Delivery method settings_01');
         $this->mode = $this->getMode();
     }
 

変更: branches/version-2_12_3en-p1/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php
===================================================================
--- branches/version-2_12_3en-p1/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/class/pages/admin/products/LC_Page_Admin_Products_Class.php	2013-02-13 03:39:04 UTC (rev 22530)
@@ -45,7 +45,7 @@
         parent::init();
         $this->tpl_mainpage = 'products/class.tpl';
         $this->tpl_subno = 'class';
-        $this->tpl_subtitle = t('LC_Page_Admin_Products_Class_001');
+        $this->tpl_subtitle = t('c_Standard management_01');
         $this->tpl_maintitle = t('c_Products_01');
         $this->tpl_mainno = 'products';
     }

変更: branches/version-2_12_3en-p1/data/class/pages/shopping/LC_Page_Shopping_Multiple.php
===================================================================
--- branches/version-2_12_3en-p1/data/class/pages/shopping/LC_Page_Shopping_Multiple.php	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/class/pages/shopping/LC_Page_Shopping_Multiple.php	2013-02-13 03:39:04 UTC (rev 22530)
@@ -142,7 +142,7 @@
         $objFormParam->addParam(t('c_Standard category 2_01'), 'classcategory_name2');
         $objFormParam->addParam(t('c_Main image_01'), 'main_image');
         $objFormParam->addParam(t('c_Main list image_01'), 'main_list_image');
-        $objFormParam->addParam(t('PARAM_LABEL_SELLPRICE'), 'price');
+        $objFormParam->addParam(t('c_Sales price_01'), 'price');
         $objFormParam->addParam(t('c_Quantity_01'), 'quantity', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'), 1);
         $objFormParam->addParam(t('c_Delivery destination_01'), 'shipping', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
         $objFormParam->addParam(t('c_Cart number_01'), 'cart_no', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));

変更: branches/version-2_12_3en-p1/data/locales/en-US.mo
===================================================================
(バイナリファイルが異なっています)

変更: branches/version-2_12_3en-p1/data/locales/en-US.po
===================================================================
--- branches/version-2_12_3en-p1/data/locales/en-US.po	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/locales/en-US.po	2013-02-13 03:39:04 UTC (rev 22530)
@@ -2766,7 +2766,7 @@
 msgid "c_* Registration of the same contents already exists.<br/>_01"
 msgstr "* Registration of the same contents already exists.<br/>"
 
-msgid "LC_Page_Admin_Products_Class_001"
+msgid "c_Standard management_01"
 msgstr "Standard management"
 
 msgid "c_* Registration of the same contents already exists.<br>_02"
@@ -3196,6 +3196,9 @@
 msgid "c_Not detectable_01"
 msgstr "Not detectable"
 
+msgid "c_The templates character code is T_ARG1. UTF 8 can only be used._01"
+msgstr "The templates character code is T_ARG1. UTF 8 can only be used."
+
 msgid "c_<br />T_ARG1 does not exist_01"
 msgstr "<br />T_ARG1 does not exist"
 

変更: branches/version-2_12_3en-p1/data/locales/ja.mo
===================================================================
(バイナリファイルが異なっています)

変更: branches/version-2_12_3en-p1/data/locales/ja.po
===================================================================
--- branches/version-2_12_3en-p1/data/locales/ja.po	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/data/locales/ja.po	2013-02-13 03:39:04 UTC (rev 22530)
@@ -2739,7 +2739,7 @@
 msgid "c_* Registration of the same contents already exists.<br/>_01"
 msgstr "※ 既に同じ内容の登録が存在します。<br/>"
 
-msgid "LC_Page_Admin_Products_Class_001"
+msgid "c_Standard management_01"
 msgstr "規格管理"
 
 msgid "c_* Registration of the same contents already exists.<br>_02"
@@ -3158,6 +3158,9 @@
 msgid "c_Not detectable_01"
 msgstr "検出不能"
 
+msgid "c_The templates character code is T_ARG1. UTF 8 can only be used._01"
+msgstr "テンプレートの文字コードが「T_ARG1」です。「UTF-8」のみ利用できます。"
+
 msgid "c_<br />T_ARG1 does not exist_01"
 msgstr "<br />T_ARG1 が存在しません"
 

変更: branches/version-2_12_3en-p1/html/install/index.php
===================================================================
--- branches/version-2_12_3en-p1/html/install/index.php	2013-02-13 02:35:22 UTC (rev 22529)
+++ branches/version-2_12_3en-p1/html/install/index.php	2013-02-13 03:39:04 UTC (rev 22530)
@@ -758,7 +758,7 @@
 
     if ($normal_dir != $secure_dir) {
         $objErr->arrErr['normal_url'] = t('c_* It is not possible to designate a different hierarchy for the URL._01');
-        $objErr->arrErr['secure_url'] = t('LC_Page_Install_040');
+        $objErr->arrErr['secure_url'] = t('c_* It is not possible to designate a different hierarchy for the URL._01');
     }
 
     // ログインIDチェック




Svn-src-all メーリングリストの案内