Changeset 22420 for branches/version-2_12-multilang/data/class
- Timestamp:
- 2013/01/27 17:24:49 (13 years ago)
- Location:
- branches/version-2_12-multilang/data/class
- Files:
-
- 5 edited
-
helper/SC_Helper_Address.php (modified) (3 diffs)
-
helper/SC_Helper_Transform.php (modified) (3 diffs)
-
pages/admin/LC_Page_Admin_Home.php (modified) (2 diffs)
-
pages/admin/LC_Page_Admin_Index.php (modified) (1 diff)
-
pages/mypage/LC_Page_Mypage_DeliveryAddr.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/helper/SC_Helper_Address.php
r22102 r22420 44 44 // 顧客IDのチェック 45 45 if (is_null($customer_id) || !is_numeric($customer_id) || !preg_match("/^\d+$/", $customer_id)) { 46 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t(" SC_Helper_Address_001"));46 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("c_Correctly designate the customer ID_01")); 47 47 48 48 } … … 53 53 // 別のお届け先最大登録数に達している場合、エラー 54 54 if ($deliv_count >= DELIV_ADDR_MAX) { 55 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t(" SC_Helper_Address_002"));55 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("c_The maximum number of separate shipping destinations registered has been met._01")); 56 56 } 57 57 … … 64 64 $deliv_count = $objQuery->count('dtb_other_deliv','other_deliv_id = ?' ,array($other_deliv_id)); 65 65 if ($deliv_count != 1) { 66 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t(" SC_Helper_Address_003"));66 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("c_There is no separate delivery destination that matches._01")); 67 67 } 68 68 -
branches/version-2_12-multilang/data/class/helper/SC_Helper_Transform.php
r22102 r22420 65 65 if (!in_array($encoding, array('ASCII', 'UTF-8'))) { 66 66 if ($encoding === false) { 67 $encoding = t(" SC_Helper_Transform_001");67 $encoding = t("c_Not detectable_01"); 68 68 } 69 69 $msg = t('SC_Helper_Transform_002', array('T_FIELD' => $encoding)); … … 327 327 } 328 328 // エラー画面表示 329 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, t(' SC_Helper_Transform_004', array('T_FIELD' => $err_msg)));329 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, t('c_Template operation failed. T_FIELD_01', array('T_FIELD' => $err_msg))); 330 330 } elseif ($this->snip_count) { 331 331 $html = $this->objDOM->saveHTML(); … … 620 620 } 621 621 catch (Exception $e) { 622 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, t(" SC_Helper_Transform_005"));622 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, t("c_Template operation failed._01")); 623 623 } 624 624 -
branches/version-2_12-multilang/data/class/pages/admin/LC_Page_Admin_Home.php
r22100 r22420 46 46 parent::init(); 47 47 $this->tpl_mainpage = 'home.tpl'; 48 $this->tpl_subtitle = t(' LC_Page_Admin_Home_001');48 $this->tpl_subtitle = t('c_Home_01'); 49 49 } 50 50 … … 325 325 326 326 if (empty($arrTmpData)) { 327 SC_Utils_Ex::sfErrorHeader(t(' LC_Page_Admin_Home_002'));327 SC_Utils_Ex::sfErrorHeader(t('c_>> Update information was not obtained._01')); 328 328 return array(); 329 329 } -
branches/version-2_12-multilang/data/class/pages/admin/LC_Page_Admin_Index.php
r22100 r22420 130 130 // ログインチェック 131 131 if (!$this->lfIsLoginMember($arrForm['login_id'], $arrForm['password'])) { 132 $arrErr['password'] = t(' LC_Page_Admin_Index_001');132 $arrErr['password'] = t('c_You cannot log in._01'); 133 133 $this->lfSetIncorrectData($arrForm['login_id']); 134 134 } -
branches/version-2_12-multilang/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php
r22100 r22420 183 183 } 184 184 if (count($_SESSION['shipping']) >= DELIV_ADDR_MAX) { 185 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t(' LC_Page_Mypage_DeliveryAddr_004'));185 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t('c_The maximum number of separate shipping destinations registered has been met._01')); 186 186 } else { 187 187 $_SESSION['shipping'][] = $arrRegist;
Note: See TracChangeset
for help on using the changeset viewer.
