Index: branches/version-2_12-multilang/html/install/index.php
===================================================================
--- branches/version-2_12-multilang/html/install/index.php	(revision 22489)
+++ branches/version-2_12-multilang/html/install/index.php	(revision 22500)
@@ -63,5 +63,5 @@
 
 if (!is_writable($temp_dir)) {
-    SC_Utils_Ex::sfErrorHeader(t('LC_Page_Install_001', array('T_ARG1' => $temp_dir)), true);
+    SC_Utils_Ex::sfErrorHeader(t('c_Please grant user write access (777, 707, etc.) for T_ARG1_01', array('T_ARG1' => $temp_dir)), true);
     exit;
 }
@@ -137,7 +137,7 @@
         $objPage->arrErr = lfExecuteSQL('./sql/create_table_' . $arrDsn['phptype'] . '.sql', $arrDsn);
         if (count($objPage->arrErr) == 0) {
-            $objPage->tpl_message .= t('LC_Page_Install_002');
+            $objPage->tpl_message .= t('c_○: The table was successfully created.<br />_01');
         } else {
-            $objPage->tpl_message .= t('LC_Page_Install_003');
+            $objPage->tpl_message .= t('c_×: The table was not created.<br />_01');
         }
 
@@ -146,7 +146,7 @@
             $objPage->arrErr = lfExecuteSQL('./sql/insert_data.sql', $arrDsn);
             if (count($objPage->arrErr) == 0) {
-                $objPage->tpl_message .= t('LC_Page_Install_004');
+                $objPage->tpl_message .= t('c_○: Initial data was successfully created.<br />_01');
             } else {
-                $objPage->tpl_message .= t('LC_Page_Install_005');
+                $objPage->tpl_message .= t('c_×: Initial data was not created.<br />_01');
             }
         }
@@ -156,7 +156,7 @@
             $objPage->arrErr = lfCreateSequence(getSequences(), $arrDsn);
             if (count($objPage->arrErr) == 0) {
-                $objPage->tpl_message .= t('LC_Page_Install_006');
+                $objPage->tpl_message .= t('c_○: The sequence was successfully created.<br />_01');
             } else {
-                $objPage->tpl_message .= t('LC_Page_Install_007');
+                $objPage->tpl_message .= t('c_×: The sequence was not created.<br />_01');
             }
         }
@@ -181,7 +181,7 @@
             $objPage->arrErr = lfExecuteSQL('./sql/drop_table.sql', $arrDsn, false);
             if (count($objPage->arrErr) == 0) {
-                $objPage->tpl_message .= t('LC_Page_Install_008');
+                $objPage->tpl_message .= t('c_○: The table was successfully deleted.<br />_01');
             } else {
-                $objPage->tpl_message .= t('LC_Page_Install_009');
+                $objPage->tpl_message .= t('c_×: The table was not deleted.<br />_01');
             }
         }
@@ -191,7 +191,7 @@
             $objPage->arrErr = lfDropSequence(getSequences(), $arrDsn);
             if (count($objPage->arrErr) == 0) {
-                $objPage->tpl_message .= t('LC_Page_Install_010');
+                $objPage->tpl_message .= t('c_○: The sequence was successfully deleted.<br />_01');
             } else {
-                $objPage->tpl_message .= t('LC_Page_Install_011');
+                $objPage->tpl_message .= t('c_×: The sequence was not deleted.<br />_01');
             }
         }
@@ -689,14 +689,14 @@
     $objWebParam->addParam(t('LC_Page_Install_021'), 'login_pass', ID_MAX_LEN, '', array('EXIST_CHECK', 'SPTAB_CHECK', 'ALNUM_CHECK'));
     $objWebParam->addParam(t('LC_Page_Install_022'), 'admin_dir', ID_MAX_LEN, 'a', array('EXIST_CHECK', 'SPTAB_CHECK', 'ALNUM_CHECK'), $oldAdminDir);
-    $objWebParam->addParam(t('LC_Page_Install_023'), 'admin_force_ssl', 1, 'n', array('SPTAB_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'), $admin_force_ssl);
-    $objWebParam->addParam(t('LC_Page_Install_024'), 'admin_allow_hosts', LTEXT_LEN, 'an', array('IP_CHECK', 'MAX_LENGTH_CHECK'), $admin_allow_hosts);
-    $objWebParam->addParam(t('LC_Page_Install_025'), 'normal_url', MTEXT_LEN, '', array('EXIST_CHECK', 'URL_CHECK', 'MAX_LENGTH_CHECK'), $normal_url);
-    $objWebParam->addParam(t('LC_Page_Install_026'), 'secure_url', MTEXT_LEN, '', array('EXIST_CHECK', 'URL_CHECK', 'MAX_LENGTH_CHECK'), $secure_url);
-    $objWebParam->addParam(t('LC_Page_Install_027'), 'domain', MTEXT_LEN, '', array('MAX_LENGTH_CHECK'));
-    $objWebParam->addParam(t('LC_Page_Install_028'), 'mail_backend', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK', 'EXIST_CHECK'), $mail_backend);
-    $objWebParam->addParam(t('LC_Page_Install_029'), 'smtp_host', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'), $smtp_host);
-    $objWebParam->addParam(t('LC_Page_Install_030'), 'smtp_port', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'), $smtp_port);
-    $objWebParam->addParam(t('LC_Page_Install_031'), 'smtp_user', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'), $smtp_user);
-    $objWebParam->addParam(t('LC_Page_Install_032'), 'smtp_password', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'), $smtp_password);
+    $objWebParam->addParam(t('c_Management area: SSL restriction_01'), 'admin_force_ssl', 1, 'n', array('SPTAB_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'), $admin_force_ssl);
+    $objWebParam->addParam(t('c_Management area: IP restriction_01'), 'admin_allow_hosts', LTEXT_LEN, 'an', array('IP_CHECK', 'MAX_LENGTH_CHECK'), $admin_allow_hosts);
+    $objWebParam->addParam(t('c_URL (normal)_01'), 'normal_url', MTEXT_LEN, '', array('EXIST_CHECK', 'URL_CHECK', 'MAX_LENGTH_CHECK'), $normal_url);
+    $objWebParam->addParam(t('c_URL (secure)_01'), 'secure_url', MTEXT_LEN, '', array('EXIST_CHECK', 'URL_CHECK', 'MAX_LENGTH_CHECK'), $secure_url);
+    $objWebParam->addParam(t('c_Domain_01'), 'domain', MTEXT_LEN, '', array('MAX_LENGTH_CHECK'));
+    $objWebParam->addParam(t('c_Mailer backend_01'), 'mail_backend', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK', 'EXIST_CHECK'), $mail_backend);
+    $objWebParam->addParam(t('c_SMTP host_01'), 'smtp_host', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'), $smtp_host);
+    $objWebParam->addParam(t('c_SMTP port_01'), 'smtp_port', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'), $smtp_port);
+    $objWebParam->addParam(t('c_SMTP user_01'), 'smtp_user', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'), $smtp_user);
+    $objWebParam->addParam(t('c_SMTP password_01'), 'smtp_password', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK'), $smtp_password);
 
     return $objWebParam;
@@ -736,5 +736,5 @@
     }
 
-    $objDBParam->addParam(t('LC_Page_Install_033'), 'db_type', INT_LEN, '', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'), $db_type);
+    $objDBParam->addParam(t('c_DB type_01'), 'db_type', INT_LEN, '', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'), $db_type);
     $objDBParam->addParam(t('c_DB server_01'), 'db_server', MTEXT_LEN, '', array('MAX_LENGTH_CHECK'), $db_server);
     $objDBParam->addParam(t('LC_Page_Install_035'), 'db_port', INT_LEN, '', array('MAX_LENGTH_CHECK'), $db_port);
Index: branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php	(revision 22500)
@@ -50,5 +50,5 @@
         $this->tpl_subno    = 'module';
         $this->tpl_maintitle = t('c_Owners Store_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_OwnersStore_Module_001');
+        $this->tpl_subtitle = t('c_Module management_01');
     }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php	(revision 22500)
@@ -48,5 +48,5 @@
         $this->tpl_mainno   = 'ownersstore';
         $this->tpl_maintitle = t('c_Owners Store_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_OwnersStore_001');
+        $this->tpl_subtitle = t('c_Plug-in management_01');
     }
 
@@ -377,5 +377,5 @@
         if ($this->isInstalledPlugin($arrPluginInfo['PLUGIN_CODE']) === true) {
             $this->rollBack(DOWNLOADS_TEMP_PLUGIN_INSTALL_DIR);
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_002', array('T_ARG1' => $arrPluginInfo['PLUGIN_NAME']));
+            $arrErr['plugin_file'] = t('c_* T_ARG1 is already installed.<br/>_01', array('T_ARG1' => $arrPluginInfo['PLUGIN_NAME']));
             return $arrErr;
         }
@@ -384,5 +384,5 @@
         if ($this->registerData($arrPluginInfo) === false) {
             $this->rollBack(DOWNLOADS_TEMP_PLUGIN_INSTALL_DIR);
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_003');
+            $arrErr['plugin_file'] = t('c_* DB registration failed.<br/>_01');
             return $arrErr;
         }
@@ -489,9 +489,9 @@
 
         if (!isset($arrPluginInfo['PLUGIN_CODE'])) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_004');
+            $arrErr['plugin_file'] = t('c_* PLUGIN_CODE is not defined.<br/>_01');
             return $arrErr;
         }
         if (!isset($arrPluginInfo['PLUGIN_NAME'])) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_005');
+            $arrErr['plugin_file'] = t('c_* PLUGIN_NAME is not defined.<br/>_01');
             return $arrErr;
         }
@@ -502,21 +502,21 @@
         $plugin_class_file_path = $dir_path . $arrPluginInfo['CLASS_NAME'] . '.php';
         if (file_exists($plugin_class_file_path) === false) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_007');
+            $arrErr['plugin_file'] = t('c_* CLASS_NAME is not properly defined.<br/>_01');
             return $arrErr;
         }
         if (!isset($arrPluginInfo['PLUGIN_VERSION'])) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_008');
+            $arrErr['plugin_file'] = t('c_* PLUGIN_VERSION is not defined.<br/>_01');
             return $arrErr;
         }
         if (!isset($arrPluginInfo['COMPLIANT_VERSION'])) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_009');
+            $arrErr['plugin_file'] = t('c_* COMPLIANT_VERSION is not defined.<br/>_01');
             return $arrErr;
         }
         if (!isset($arrPluginInfo['AUTHOR'])) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_010');
+            $arrErr['plugin_file'] = t('c_* AUTHOR is not defined.<br/>_01');
             return $arrErr;
         }
         if (!isset($arrPluginInfo['DESCRIPTION'])) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_011');
+            $arrErr['plugin_file'] = t('c_* DESCRIPTION is not defined.<br/>_01');
             return $arrErr;
         }
@@ -573,5 +573,5 @@
         $arrPluginInfo = $this->getPluginInfo($objReflection);
         if ($arrPluginInfo['PLUGIN_CODE'] != $target_plugin['plugin_code']) {
-            $arrErr[$target_plugin['plugin_code']] = t('LC_Page_Admin_OwnersStore_012');
+            $arrErr[$target_plugin['plugin_code']] = t('c_* The plug-in code does not match<br/>_01');
             return $arrErr;
         }
@@ -619,5 +619,5 @@
         $unpack_file_path = $unpack_dir_path . $unpack_file_name;
         if (!$this->unpackPluginArchive($unpack_file_path)) {
-            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_013');
+            $arrErr['plugin_file'] = t('c_* Decompression failed.<br/>_01');
             return $arrErr;
         }
@@ -811,5 +811,5 @@
             require_once $file_path; 
         } else {
-            $arrErr[$key] = t('LC_Page_Admin_OwnersStore_014', array('T_ARG1' => $file_path));
+            $arrErr[$key] = t('c_* T_ARG1 reading failed.<br/>_01', array('T_ARG1' => $file_path));
         }
         return $arrErr;
@@ -833,5 +833,5 @@
             }
         } else {
-            $arrErr['plugin_error'] = t('LC_Page_Admin_OwnersStore_015', array('T_ARG1' => $class_name, 'T_ARG2' => $exec_func));
+            $arrErr['plugin_error'] = t('c_* T_ARG2 was not found in T_ARG1.php.<br/>_01', array('T_ARG1' => $class_name, 'T_ARG2' => $exec_func));
         }
         return $arrErr;
@@ -856,5 +856,5 @@
         // 指定されたフォルダ内に解凍する
         $result = $tar->extractModify($dir. '/', $unpacking_name);
-        GC_Utils_Ex::gfPrintLog(t('LC_Page_Admin_OwnersStore_016') . $dir.'/'.$file_name.'->'.$dir.'/'.$unpacking_name);
+        GC_Utils_Ex::gfPrintLog(t('c_Decompression:_01') . $dir.'/'.$file_name.'->'.$dir.'/'.$unpacking_name);
         // 解凍元のファイルを削除する.
         unlink($path);
@@ -986,5 +986,5 @@
         // メッセージをセットします.
         foreach ($arrConflictPluginName as $conflictPluginName) {
-            $conflict_alert_message .= t('LC_Page_Admin_OwnersStore_017', array('T_ARG1' => $conflictPluginName));
+            $conflict_alert_message .= t('c_*There is the possibility of competition with T_ARG1.<br/>_01', array('T_ARG1' => $conflictPluginName));
         }
         return $conflict_alert_message;
Index: branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php	(revision 22500)
@@ -58,5 +58,5 @@
         $this->tpl_subno    = 'settings';
         $this->tpl_maintitle = t('c_Owners Store_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_OwnersStore_Settings_001');
+        $this->tpl_subtitle = t('c_Authentication key settings_01');
         $this->httpCacheControl('nocache');
     }
Index: branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php	(revision 22500)
@@ -49,5 +49,5 @@
         $this->tpl_subno    = 'log';
         $this->tpl_maintitle = t('c_Owners Store_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_OwnersStore_Log_001');
+        $this->tpl_subtitle = t('c_Log management_01');
     }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php	(revision 22500)
@@ -82,5 +82,5 @@
         $this->tpl_subnavi = '';
         $this->tpl_subno = '';
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_Disp_001');
+        $this->tpl_subtitle = t('c_Order receipt information display_01');
 
         $masterData = new SC_DB_MasterData_Ex();
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order.php	(revision 22500)
@@ -49,5 +49,5 @@
         $this->tpl_pager = 'pager.tpl';
         $this->tpl_maintitle = t('c_Orders_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_001');
+        $this->tpl_subtitle = t('c_Order master_01');
 
         $masterData = new SC_DB_MasterData_Ex();
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php	(revision 22500)
@@ -48,5 +48,5 @@
         $this->tpl_subno = 'index';
         $this->tpl_maintitle = t('c_Orders_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_Mail_001');
+        $this->tpl_subtitle = t('c_Order receipt management_01');
 
         $masterData = new SC_DB_MasterData_Ex();
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php	(revision 22500)
@@ -81,5 +81,5 @@
         $this->tpl_mainno = 'order';
         $this->tpl_maintitle = t('c_Orders_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_Edit_001');
+        $this->tpl_subtitle = t('c_Order receipt registration_01');
 
         $masterData = new SC_DB_MasterData_Ex();
@@ -167,5 +167,5 @@
                 $this->arrErr = $this->lfCheckError($objFormParam);
                 if (SC_Utils_Ex::isBlank($this->arrErr)) {
-                    $message = t('LC_Page_Admin_Order_Edit_003');
+                    $message = t('c_Order receipt has been edited._01');
                     $order_id = $this->doRegister($order_id, $objPurchase, $objFormParam, $message, $arrValuesBefore);
                     if ($order_id >= 0) {
@@ -182,5 +182,5 @@
                     $this->arrErr = $this->lfCheckError($objFormParam);
                     if (SC_Utils_Ex::isBlank($this->arrErr)) {
-                        $message = t('LC_Page_Admin_Order_Edit_002');
+                        $message = t('c_Order receipt has been registered._01');
                         $order_id = $this->doRegister(null, $objPurchase, $objFormParam, $message, $arrValuesBefore);
                         if ($order_id >= 0) {
@@ -596,8 +596,8 @@
                 && $arrProduct['stock'] < $arrValues['quantity'][$i] - $arrOrderDetail['quantity'][$i]) {
                 $class_name1 = $arrValues['classcategory_name1'][$i];
-                $class_name1 = SC_Utils_Ex::isBlank($class_name1) ? t('LC_Page_Admin_Order_Edit_004') : $class_name1;
+                $class_name1 = SC_Utils_Ex::isBlank($class_name1) ? t('c_None_01') : $class_name1;
                 $class_name2 = $arrValues['classcategory_name2'][$i];
-                $class_name2 = SC_Utils_Ex::isBlank($class_name2) ? t('LC_Page_Admin_Order_Edit_004') : $class_name2;                
-                $arrErr['quantity'][$i] .= t('LC_Page_Admin_Order_Edit_005', array('T_ARG1' => $arrValues['product_name'][$i], 'T_ARG2' => $class_name1,'T_ARG3' => $class_name2, 'T_ARG4' => ($arrOrderDetail['quantity'][$i] + $arrProduct['stock'])));
+                $class_name2 = SC_Utils_Ex::isBlank($class_name2) ? t('c_None_01') : $class_name2;                
+                $arrErr['quantity'][$i] .= t('c_There is an inventory shortage for T_ARG1/(T_ARG2)/(T_ARG3). Up to T_ARG4 can be set for the quantity.<br />_1', array('T_ARG1' => $arrValues['product_name'][$i], 'T_ARG2' => $class_name1,'T_ARG3' => $class_name2, 'T_ARG4' => ($arrOrderDetail['quantity'][$i] + $arrProduct['stock'])));
             }
         }
@@ -619,13 +619,13 @@
 
         if ($arrValues['total'] < 0) {
-            $arrErr['total'] = t('LC_Page_Admin_Order_Edit_006');
+            $arrErr['total'] = t('c_Adjust so that the total amount is not a negative number.<br />_01');
         }
 
         if ($arrValues['payment_total'] < 0) {
-            $arrErr['payment_total'] = t('LC_Page_Admin_Order_Edit_007');
+            $arrErr['payment_total'] = t('c_Adjust so that a negative number is not displayed for the payment total.<br />_01');
         }
 
         if ($arrValues['total_point'] < 0) {
-            $arrErr['use_point'] = t('LC_Page_Admin_Order_Edit_008');
+            $arrErr['use_point'] = t('c_Adjust the final number of points registered so that it does not become a negative number.<br />_01');
         }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php	(revision 22500)
@@ -48,5 +48,5 @@
         $this->tpl_subno = 'pdf';
         $this->tpl_maintitle = t('c_Orders_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_Pdf_001');
+        $this->tpl_subtitle = t('c_Ledger output_01');
 
         $this->SHORTTEXT_MAX = STEXT_LEN;
@@ -54,8 +54,8 @@
         $this->LONGTEXT_MAX = LTEXT_LEN;
 
-        $this->arrType[0]  = t('LC_Page_Admin_Order_Pdf_002');
-
-        $this->arrDownload[0] = t('LC_Page_Admin_Order_Pdf_003');
-        $this->arrDownload[1] = t('LC_Page_Admin_Order_Pdf_004');
+        $this->arrType[0]  = t('c_Delivery slip_01');
+
+        $this->arrDownload[0] = t('c_Open in browser_01');
+        $this->arrDownload[1] = t('c_Save to file_01');
     }
 
@@ -120,5 +120,5 @@
         $arrForm = array();
         // タイトルをセット
-        $arrForm['title'] = t('LC_Page_Admin_Order_Pdf_005');
+        $arrForm['title'] = t('c_Detailed purchase statement (delivery slip)_01');
 
         // 今日の日付をセット
@@ -214,21 +214,22 @@
         $year = $objFormParam->getValue('year');
         if (!is_numeric($year)) {
-            $arrErr['year'] = t('LC_Page_Admin_Order_Pdf_009');
+            $arrErr['year'] = t('c_Enter a number for the issuance year._01');
         }
 
         $month = $objFormParam->getValue('month');
         if (!is_numeric($month)) {
-            $arrErr['month'] = t('LC_Page_Admin_Order_Pdf_010');
+            $arrErr['month'] = t('c_Enter a number for the issuance month._01');
         } else if (0 >= $month && 12 < $month) {
 
-            $arrErr['month'] = t('LC_Page_Admin_Order_Pdf_011');
+            $arrErr['month'] = t('c_Enter between 1 - 12 for the issuance month_01');
         }
 
         $day = $objFormParam->getValue('day');
         if (!is_numeric($day)) {
-            $arrErr['day'] = t('LC_Page_Admin_Order_Pdf_012');
+            $arrErr['day'] = t('c_Enter a number for the issuance date._01');
         } else if (0 >= $day && 31 < $day) {
 
-            $arrErr['day'] = t('LC_Page_Admin_Order_Pdf_013');
+            $arrErr['day'] = t('c_Enter a number between 1
+- 31 for the issuance date._01');
         }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php	(revision 22500)
@@ -49,5 +49,5 @@
         $this->tpl_subno = '';
         $this->tpl_maintitle = t('c_Orders_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_Multiple_001');
+        $this->tpl_subtitle = t('c_Multiple shipping settings_01');
     }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php	(revision 22100)
+++ branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php	(revision 22500)
@@ -45,5 +45,5 @@
         parent::init();
         $this->tpl_mainpage = 'order/mail_view.tpl';
-        $this->tpl_subtitle = t('LC_Page_Admin_Order_MailView_001');
+        $this->tpl_subtitle = t('c_Order receipt management mail confirmation_01');
         $this->httpCacheControl('nocache');
     }
Index: branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php	(revision 22500)
@@ -53,11 +53,11 @@
         $this->tpl_mainno = 'basis';
         $this->tpl_maintitle = t('c_Basic information_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Basis_Seo_002');
+        $this->tpl_subtitle = t('c_SEO management_01');
         $masterData = new SC_DB_MasterData_Ex();
         $this->arrPref = $masterData->getMasterData('mtb_pref');
         $this->arrTAXRULE = $masterData->getMasterData('mtb_taxrule');
-        $this->arrDeviceTypeName[DEVICE_TYPE_PC] = t('LC_Page_Admin_Basis_Seo_003');
-        $this->arrDeviceTypeName[DEVICE_TYPE_MOBILE] = t('LC_Page_Admin_Basis_Seo_004');
-        $this->arrDeviceTypeName[DEVICE_TYPE_SMARTPHONE] = t('LC_Page_Admin_Basis_Seo_005');
+        $this->arrDeviceTypeName[DEVICE_TYPE_PC] = t('c_PC site_01');
+        $this->arrDeviceTypeName[DEVICE_TYPE_MOBILE] = t('c_Mobile site_01');
+        $this->arrDeviceTypeName[DEVICE_TYPE_SMARTPHONE] = t('c_Smartphone_01');
     }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php	(revision 22500)
@@ -47,5 +47,5 @@
         $this->tpl_subno = 'holiday';
         $this->tpl_maintitle = t('c_Basic information_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Basis_Holiday_002');
+        $this->tpl_subtitle = t('c_Holiday management_01');
         $this->tpl_mainno = 'basis';
     }
@@ -254,5 +254,5 @@
             // 編集中のレコード以外に同じ日付が存在する場合
             if ($arrRet[0]['count'] > 0) {
-                $arrErr['date'] = t('LC_Page_Admin_Basis_Holiday_003');
+                $arrErr['date'] = t('c_* That day has already been registered. <br>_01');
             }
         }
Index: branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php	(revision 22500)
@@ -71,5 +71,5 @@
         $this->tpl_subno = 'zip_install';
         $this->tpl_maintitle = t('c_Basic information_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Basis_ZipInstall_002');
+        $this->tpl_subtitle = t('c_Postal code registration_01');
         $this->tpl_mainno = 'basis';
 
@@ -295,5 +295,5 @@
         $fp = fopen(ZIP_CSV_UTF8_REALFILE, 'r');
         if (!$fp) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_006', array('T_ARG1', ZIP_CSV_UTF8_REALFILE)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 reading failed._01', array('T_ARG1', ZIP_CSV_UTF8_REALFILE)), E_USER_ERROR);
         }
         return $fp;
@@ -305,10 +305,10 @@
         $fpr = fopen(ZIP_CSV_REALFILE, 'r');
         if (!$fpr) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_006', array('T_ARG1', ZIP_CSV_REALFILE)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 reading failed._01', array('T_ARG1', ZIP_CSV_REALFILE)), E_USER_ERROR);
         }
 
         $fpw = fopen(ZIP_CSV_UTF8_REALFILE, 'w');
         if (!$fpw) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_007', array('T_ARG1' => ZIP_CSV_UTF8_REALFILE)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 cannot be opened._01', array('T_ARG1' => ZIP_CSV_UTF8_REALFILE)), E_USER_ERROR);
         }
 
@@ -361,5 +361,5 @@
         $res = $req->sendRequest();
         if (!$res || strlen($res) > 1) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_008', array('T_ARG1', ZIP_DOWNLOAD_URL)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 retrieval failed._01', array('T_ARG1', ZIP_DOWNLOAD_URL)), E_USER_ERROR);
         }
 
@@ -367,9 +367,9 @@
         $fp = fopen($this->zip_csv_temp_realfile, 'w');
         if (!$fp) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_007', array('T_ARG1' => $this->zip_csv_temp_realfile)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 cannot be opened._01', array('T_ARG1' => $this->zip_csv_temp_realfile)), E_USER_ERROR);
         }
         $res = fwrite($fp, $req->getResponseBody());
         if (!$res) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_009', array('T_ARG1' => $this->zip_csv_temp_realfile)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 writing failed._01', array('T_ARG1' => $this->zip_csv_temp_realfile)), E_USER_ERROR);
         }
     }
@@ -383,5 +383,5 @@
         $zip = zip_open($this->zip_csv_temp_realfile);
         if (!is_resource($zip)) {
-            trigger_error(t(t('LC_Page_Admin_Basis_ZipInstall_010', array('T_ARG1' => $this->zip_csv_temp_realfile))), E_USER_ERROR);
+            trigger_error(t(t('c_cannot be opened._01', array('T_ARG1' => $this->zip_csv_temp_realfile))), E_USER_ERROR);
         }
 
@@ -405,10 +405,10 @@
         if (!$fp) {
             
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_007', array('T_ARG1' => $tmp_csv_realfile)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 cannot be opened._01', array('T_ARG1' => $tmp_csv_realfile)), E_USER_ERROR);
         }
 
         $res = fwrite($fp, zip_entry_read($entry, zip_entry_filesize($entry)));
         if ($res === FALSE) {
-            trigger_error(t('LC_Page_Admin_Basis_ZipInstall_009', array('T_ARG1' => $tmp_csv_realfile)), E_USER_ERROR);
+            trigger_error(t('c_T_ARG1 writing failed._01', array('T_ARG1' => $tmp_csv_realfile)), E_USER_ERROR);
         }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 22500)
@@ -51,14 +51,14 @@
         $this->arrTAXRULE = $masterData->getMasterData('mtb_taxrule');
         $this->tpl_maintitle = t('c_Basic information_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Basis_002');;
+        $this->tpl_subtitle = t('c_SHOP master_01');;
 
         //定休日用配列
-        $this->arrRegularHoliday[0] = t('LC_Page_Admin_Basis_003');
-        $this->arrRegularHoliday[1] = t('LC_Page_Admin_Basis_004');
-        $this->arrRegularHoliday[2] = t('LC_Page_Admin_Basis_005');
-        $this->arrRegularHoliday[3] = t('LC_Page_Admin_Basis_006');
-        $this->arrRegularHoliday[4] = t('LC_Page_Admin_Basis_007');
-        $this->arrRegularHoliday[5] = t('LC_Page_Admin_Basis_008');
-        $this->arrRegularHoliday[6] = t('LC_Page_Admin_Basis_009');
+        $this->arrRegularHoliday[0] = t('c_Sunday_01');
+        $this->arrRegularHoliday[1] = t('c_Monday_01');
+        $this->arrRegularHoliday[2] = t('c_Tuesday_01');
+        $this->arrRegularHoliday[3] = t('c_Wednesday_01');
+        $this->arrRegularHoliday[4] = t('c_Thursday_01');
+        $this->arrRegularHoliday[5] = t('c_Friday_01');
+        $this->arrRegularHoliday[6] = t('c_Saturday_01');
     }
 
@@ -113,5 +113,5 @@
                         break;
                 }
-                $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "'); window.alert(\"" . t('LC_Page_Admin_Basis_011') . "\");";
+                $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "'); window.alert(\"" . t('c_SHOP master registration is complete._01') . "\");";
             }
             if (empty($this->arrForm['regular_holiday_ids'])) {
@@ -196,5 +196,5 @@
         $ret = $objQuery->update('dtb_baseinfo', $sqlval);
 
-        GC_Utils_Ex::gfPrintLog(t('LC_Page_Admin_Basis_012'));
+        GC_Utils_Ex::gfPrintLog(t('c_UPDATE was executed for dtb_baseinfo._01'));
     }
 
@@ -210,5 +210,5 @@
         $ret = $objQuery->insert('dtb_baseinfo', $sqlval);
 
-        GC_Utils_Ex::gfPrintLog(t('LC_Page_Admin_Basis_013'));
+        GC_Utils_Ex::gfPrintLog(t('c_INSERT was executed for dtb_baseinfo._01'));
     }
 
Index: branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php	(revision 22500)
@@ -47,5 +47,5 @@
         parent::init();
         $this->tpl_maintitle = t('c_Products_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Products_Category_001');
+        $this->tpl_subtitle = t('c_Category registration_01');
         $this->tpl_mainpage = 'products/category.tpl';
         $this->tpl_mainno = 'products';
@@ -209,5 +209,5 @@
         $exists = $objQuery->exists('dtb_category', $where, array($category_id));
         if ($exists) {
-            $this->arrErr['category_name'] = t('LC_Page_Admin_Products_Category_002');
+            $this->arrErr['category_name'] = t('c_* Cannot be deleted since a subcategory exists.<br/>_01');
             return;
         }
@@ -217,5 +217,5 @@
         $exists = $objQuery->exists($table, $where, array($category_id));
         if ($exists) {
-            $this->arrErr['category_name'] = t('LC_Page_Admin_Products_Category_003');
+            $this->arrErr['category_name'] = t('c_* The category cannot be deleted since there are products in the category.<br/>_01');
             return;
         }
@@ -312,5 +312,5 @@
             $count = $objQuery->count('dtb_category', $where);
             if ($count >= CATEGORY_MAX) {
-                $arrErr['category_name'] = t('LC_Page_Admin_Products_Category_004');
+                $arrErr['category_name'] = t('c_* The maximum number of categories that can be registered has been exceeded.<br/>_01');
                 return $arrErr;
             }
@@ -318,5 +318,5 @@
             // 階層上限チェック
             if ($this->isOverLevel($parent_category_id)) {
-                $arrErr['category_name'] = t('LC_Page_Admin_Products_Category_005', array('T_ARG1' => LEVEL_MAX));
+                $arrErr['category_name'] = t('c_* Registration of the T_ARG1 hierarchy or higher is not possible.<br/>_01', array('T_ARG1' => LEVEL_MAX));
                 return $arrErr;
             }
@@ -335,5 +335,5 @@
         $exists = $objQuery->exists('dtb_category', $where, $arrWhereVal);
         if ($exists) {
-            $arrErr['category_name'] = t('LC_Page_Admin_Products_Category_006');
+            $arrErr['category_name'] = t('c_* Registration of the same contents already exists.<br/>_01');
             return $arrErr;
         }
Index: branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products.php	(revision 22500)
@@ -49,5 +49,5 @@
         $this->tpl_pager = 'pager.tpl';
         $this->tpl_maintitle = t('c_Products_01');
-        $this->tpl_subtitle = t('LC_Page_Admin_Products_001');
+        $this->tpl_subtitle = t('c_Product master_01');
 
         $masterData = new SC_DB_MasterData_Ex();
Index: branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error_SystemError.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error_SystemError.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error_SystemError.php	(revision 22500)
@@ -78,9 +78,9 @@
         if (DEBUG_MODE) {
             echo '<div class="debug">';
-            echo '<div>' . t('LC_Page_Error_SystemError_003') .'</div>';
+            echo '<div>' . t('c_▼▼▼ Start of debug information ▼▼▼_01') .'</div>';
             echo '<pre>';
             echo htmlspecialchars($this->sfGetErrMsg(), ENT_QUOTES, CHAR_CODE);
             echo '</pre>';
-            echo '<div>' . t('LC_Page_Error_SystemError_004') . '</div>';
+            echo '<div>' . t('c_▲▲▲ End of debug information▲▲▲_01') . '</div>';
             echo '</div>';
         }
Index: branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error.php	(revision 22496)
+++ branches/version-2_12-multilang/data/class/pages/error/LC_Page_Error.php	(revision 22500)
@@ -96,5 +96,5 @@
                 break;
             case PAGE_ERROR:
-                $this->tpl_error=t('LC_Page_Error_003');
+                $this->tpl_error=t('c_Illegal page migration._01');
                 break;
             case CART_EMPTY:
@@ -105,5 +105,5 @@
                 break;
             case CANCEL_PURCHASE:
-                $this->tpl_error=t('LC_Page_Error_006');
+                $this->tpl_error=t('c_This procedure has been voided. The following factors may be attributable. <br />- The expiration date of the session information has passed <br /> - A new purchasing procedure was executed during an existing purchasing procedure <br />- The purchasing procedure has already been completed_01');
                 break;
             case CATEGORY_NOT_FOUND:
@@ -112,8 +112,8 @@
                 break;
             case SITE_LOGIN_ERROR:
-                $this->tpl_error=t('LC_Page_Error_008');
+                $this->tpl_error=t('c_The e-mail address or password is not correct._01');
                 break;
             case TEMP_LOGIN_ERROR:
-                $this->tpl_error=t('LC_Page_Error_009');
+                $this->tpl_error=t('c_The e-mail address or password is not correct.<br />If you have not completed registration, complete registration from the URL given in the temporary registration e-mail._01');
                 break;
             case CUSTOMER_ERROR:
@@ -121,11 +121,11 @@
                 break;
             case SOLD_OUT:
-                $this->tpl_error=t('LC_Page_Error_011');
+                $this->tpl_error=t('c_There is a product that sold out immediately before your purchase. This procedure has been voided. We apologize for the inconvenience._01');
                 break;
             case CART_NOT_FOUND:
-                $this->tpl_error=t('LC_Page_Error_012');
+                $this->tpl_error=t('c_Retrieval of information regarding products in your cart failed. This procedure has been voided. We apologize for the inconvenience._01');
                 break;
             case LACK_POINT:
-                $this->tpl_error=t('LC_Page_Error_013');
+                $this->tpl_error=t('c_You do not have enough points. This procedure has been voided. We apologize for the inconvenience._01');
                 break;
             case FAVORITE_ERROR:
@@ -133,5 +133,5 @@
                 break;
             case EXTRACT_ERROR:
-                $this->tpl_error=t('LC_Page_Error_015');
+                $this->tpl_error=t('c_File decompression failed.\nWrite access may not have been granted to the designated directory._01');
                 break;
             case FTP_DOWNLOAD_ERROR:
@@ -139,23 +139,23 @@
                 break;
             case FTP_LOGIN_ERROR:
-                $this->tpl_error=t('LC_Page_Error_017');
+                $this->tpl_error=t('c_FTP login failed._01');
                 break;
             case FTP_CONNECT_ERROR:
-                $this->tpl_error=t('LC_Page_Error_018');
+                $this->tpl_error=t('c_FTP login failed._02');
                 break;
             case CREATE_DB_ERROR:
-                $this->tpl_error=t('LC_Page_Error_019');
+                $this->tpl_error=t('c_DB creation failed. \nThe user designated by may not have been granted DB creation access._01');
                 break;
             case DB_IMPORT_ERROR:
-                $this->tpl_error=t('LC_Page_Error_020');
+                $this->tpl_error=t('c_Import of the database structure failed. \nThe sql file may be damaged._01');
                 break;
             case FILE_NOT_FOUND:
-                $this->tpl_error=t('LC_Page_Error_021');
+                $this->tpl_error=t('c_The settings file does not exist in the designated path._01');
                 break;
             case WRITE_FILE_ERROR:
-                $this->tpl_error=t('LC_Page_Error_022');
+                $this->tpl_error=t('c_It is not possible to write to the file settings.\nGrant write access to file settings._01');
                 break;
             case DOWNFILE_NOT_FOUND:
-                $this->tpl_error=t('LC_Page_Error_023');
+                $this->tpl_error=t('c_The download file does not exist. <br /> Please inquire at the store._01');
                 break;
             case FREE_ERROR_MSG:
Index: branches/version-2_12-multilang/data/class/pages/forgot/LC_Page_Forgot.php
===================================================================
--- branches/version-2_12-multilang/data/class/pages/forgot/LC_Page_Forgot.php	(revision 22489)
+++ branches/version-2_12-multilang/data/class/pages/forgot/LC_Page_Forgot.php	(revision 22500)
@@ -58,5 +58,5 @@
     function init() {
         parent::init();
-        $this->tpl_title = t('LC_Page_Forgot_001');
+        $this->tpl_title = t('c_If you have forgotten your password_01');
         $this->tpl_mainpage = 'forgot/index.tpl';
         $this->tpl_mainno = '';
@@ -160,8 +160,8 @@
             } else if ($result[0]['status'] == '1') {
                 // 仮会員
-                $errmsg = t('LC_Page_Forgot_002');
+                $errmsg = t('c_The e-mail address you registered is currently temporarily active.<br/>Please access the URL that was sent at the time of registration to complete member registration._01');
             }
         } else {
-            $errmsg = t('LC_Page_Forgot_003');
+            $errmsg = t('c_There is an error with your name or the e-mail address is not correct._01');
         }
         return $errmsg;
Index: branches/version-2_12-multilang/data/class/helper/SC_Helper_Mail.php
===================================================================
--- branches/version-2_12-multilang/data/class/helper/SC_Helper_Mail.php	(revision 22492)
+++ branches/version-2_12-multilang/data/class/helper/SC_Helper_Mail.php	(revision 22500)
@@ -500,5 +500,5 @@
 
         // 送信完了　報告メール
-        $compSubject = date(t('FORMAT_DATE_LONG')) . ' '. t('c_The e-mail below has been sent._01');
+        $compSubject = date(t('f_DATE_LONG_01')) . ' '. t('c_The e-mail below has been sent._01');
         // 管理者宛に変更
         $objMail->setTo($objSite['email03']);
Index: branches/version-2_12-multilang/data/locales/en-US.po
===================================================================
--- branches/version-2_12-multilang/data/locales/en-US.po	(revision 22498)
+++ branches/version-2_12-multilang/data/locales/en-US.po	(revision 22500)
@@ -1816,5 +1816,5 @@
 msgstr "Sales (history)"
 
-msgid "FORMAT_DATE_LONG"
+msgid "f_DATE_LONG_01"
 msgstr "Y-m-d H:i"
 
@@ -1893,5 +1893,5 @@
 msgstr "The page you specified does not exist."
 
-msgid "LC_Page_Error_003"
+msgid "c_Illegal page migration._01"
 msgstr "Illegal page migration."
 
@@ -1903,5 +1903,5 @@
 "It is not possible to add products to your cart during purchase processing."
 
-msgid "LC_Page_Error_006"
+msgid "c_This procedure has been voided. The following factors may be attributable. <br />- The expiration date of the session information has passed <br /> - A new purchasing procedure was executed during an existing purchasing procedure <br />- The purchasing procedure has already been completed_01"
 msgstr ""
 "This procedure has been voided. The following factors may be attributable. "
@@ -1913,8 +1913,8 @@
 msgstr "The category you specified does not exist."
 
-msgid "LC_Page_Error_008"
+msgid "c_The e-mail address or password is not correct._01"
 msgstr "The e-mail address or password is not correct."
 
-msgid "LC_Page_Error_009"
+msgid "c_The e-mail address or password is not correct.<br />If you have not completed registration, complete registration from the URL given in the temporary registration e-mail._01"
 msgstr ""
 "The e-mail address or password is not correct.<br />If you have not "
@@ -1925,15 +1925,15 @@
 msgstr "Unauthorized access."
 
-msgid "LC_Page_Error_011"
+msgid "c_There is a product that sold out immediately before your purchase. This procedure has been voided. We apologize for the inconvenience._01"
 msgstr ""
 "There is a product that sold out immediately before your purchase. This "
 "procedure has been voided. We apologize for the inconvenience."
 
-msgid "LC_Page_Error_012"
+msgid "c_Retrieval of information regarding products in your cart failed. This procedure has been voided. We apologize for the inconvenience._01"
 msgstr ""
 "Retrieval of information regarding products in your cart failed. This "
 "procedure has been voided. We apologize for the inconvenience."
 
-msgid "LC_Page_Error_013"
+msgid "c_You do not have enough points. This procedure has been voided. We apologize for the inconvenience._01"
 msgstr ""
 "You do not have enough points. This procedure has been voided. We apologize "
@@ -1943,5 +1943,5 @@
 msgstr "This product is already added to your favorites"
 
-msgid "LC_Page_Error_015"
+msgid "c_File decompression failed.\nWrite access may not have been granted to the designated directory._01"
 msgstr ""
 "File decompression failed.\n"
@@ -1951,29 +1951,29 @@
 msgstr "FTP download of file failed."
 
-msgid "LC_Page_Error_017"
+msgid "c_FTP login failed._01"
 msgstr "FTP login failed."
 
-msgid "LC_Page_Error_018"
+msgid "c_FTP login failed._02"
 msgstr "FTP login failed."
 
-msgid "LC_Page_Error_019"
+msgid "c_DB creation failed. \nThe user designated by may not have been granted DB creation access._01"
 msgstr ""
 "DB creation failed. \n"
 "The user designated by may not have been granted DB creation access."
 
-msgid "LC_Page_Error_020"
+msgid "c_Import of the database structure failed. \nThe sql file may be damaged._01"
 msgstr ""
 "Import of the database structure failed. \n"
 "The sql file may be damaged."
 
-msgid "LC_Page_Error_021"
+msgid "c_The settings file does not exist in the designated path._01"
 msgstr "The settings file does not exist in the designated path."
 
-msgid "LC_Page_Error_022"
+msgid "c_It is not possible to write to the file settings.\nGrant write access to file settings._01"
 msgstr ""
 "It is not possible to write to the file settings.\n"
 "Grant write access to file settings."
 
-msgid "LC_Page_Error_023"
+msgid "c_The download file does not exist. <br /> Please inquire at the store._01"
 msgstr "The download file does not exist. <br /> Please inquire at the store."
 
@@ -2008,14 +2008,14 @@
 "A system error has occurred. <br /> Please contact the site administrator."
 
-msgid "LC_Page_Error_SystemError_003"
+msgid "c_▼▼▼ Start of debug information ▼▼▼_01"
 msgstr "▼▼▼ Start of debug information ▼▼▼"
 
-msgid "LC_Page_Error_SystemError_004"
+msgid "c_▲▲▲ End of debug information▲▲▲_01"
 msgstr "▲▲▲ End of debug information▲▲▲"
 
-msgid "LC_Page_Forgot_001"
+msgid "c_If you have forgotten your password_01"
 msgstr "If you have forgotten your password"
 
-msgid "LC_Page_Forgot_002"
+msgid "c_The e-mail address you registered is currently temporarily active.<br/>Please access the URL that was sent at the time of registration to complete member registration._01"
 msgstr ""
 "The e-mail address you registered is currently temporarily active.<br/"
@@ -2023,5 +2023,5 @@
 "member registration."
 
-msgid "LC_Page_Forgot_003"
+msgid "c_There is an error with your name or the e-mail address is not correct._01"
 msgstr "There is an error with your name or the e-mail address is not correct."
 
@@ -2235,35 +2235,35 @@
 msgstr "Installation/update was successful."
 
-msgid "LC_Page_Install_001"
+msgid "c_Please grant user write access (777, 707, etc.) for T_ARG1_01"
 msgstr "Please grant user write access (777, 707, etc.) for T_ARG1"
 
-msgid "LC_Page_Install_002"
+msgid "c_○: The table was successfully created.<br />_01"
 msgstr "○: The table was successfully created.<br />"
 
-msgid "LC_Page_Install_003"
+msgid "c_×: The table was not created.<br />_01"
 msgstr "×: The table was not created.<br />"
 
-msgid "LC_Page_Install_004"
+msgid "c_○: Initial data was successfully created.<br />_01"
 msgstr "○: Initial data was successfully created.<br />"
 
-msgid "LC_Page_Install_005"
+msgid "c_×: Initial data was not created.<br />_01"
 msgstr "×: Initial data was not created.<br />"
 
-msgid "LC_Page_Install_006"
+msgid "c_○: The sequence was successfully created.<br />_01"
 msgstr "○: The sequence was successfully created.<br />"
 
-msgid "LC_Page_Install_007"
+msgid "c_×: The sequence was not created.<br />_01"
 msgstr "×: The sequence was not created.<br />"
 
-msgid "LC_Page_Install_008"
+msgid "c_○: The table was successfully deleted.<br />_01"
 msgstr "○: The table was successfully deleted.<br />"
 
-msgid "LC_Page_Install_009"
+msgid "c_×: The table was not deleted.<br />_01"
 msgstr "×: The table was not deleted.<br />"
 
-msgid "LC_Page_Install_010"
+msgid "c_○: The sequence was successfully deleted.<br />_01"
 msgstr "○: The sequence was successfully deleted.<br />"
 
-msgid "LC_Page_Install_011"
+msgid "c_×: The sequence was not deleted.<br />_01"
 msgstr "×: The sequence was not deleted.<br />"
 
@@ -2302,35 +2302,35 @@
 msgstr "Management area: Directory"
 
-msgid "LC_Page_Install_023"
+msgid "c_Management area: SSL restriction_01"
 msgstr "Management area: SSL restriction"
 
-msgid "LC_Page_Install_024"
+msgid "c_Management area: IP restriction_01"
 msgstr "Management area: IP restriction"
 
-msgid "LC_Page_Install_025"
+msgid "c_URL (normal)_01"
 msgstr "URL (normal)"
 
-msgid "LC_Page_Install_026"
+msgid "c_URL (secure)_01"
 msgstr "URL (secure)"
 
-msgid "LC_Page_Install_027"
+msgid "c_Domain_01"
 msgstr "Domain"
 
-msgid "LC_Page_Install_028"
+msgid "c_Mailer backend_01"
 msgstr "Mailer backend"
 
-msgid "LC_Page_Install_029"
+msgid "c_SMTP host_01"
 msgstr "SMTP host"
 
-msgid "LC_Page_Install_030"
+msgid "c_SMTP port_01"
 msgstr "SMTP port"
 
-msgid "LC_Page_Install_031"
+msgid "c_SMTP user_01"
 msgstr "SMTP user"
 
-msgid "LC_Page_Install_032"
+msgid "c_SMTP password_01"
 msgstr "SMTP password"
 
-msgid "LC_Page_Install_033"
+msgid "c_DB type_01"
 msgstr "DB type"
 
@@ -2387,35 +2387,35 @@
 msgstr "Basic information"
 
-msgid "LC_Page_Admin_Basis_002"
+msgid "c_SHOP master_01"
 msgstr "SHOP master"
 
-msgid "LC_Page_Admin_Basis_003"
+msgid "c_Sunday_01"
 msgstr "Sunday"
 
-msgid "LC_Page_Admin_Basis_004"
+msgid "c_Monday_01"
 msgstr "Monday"
 
-msgid "LC_Page_Admin_Basis_005"
+msgid "c_Tuesday_01"
 msgstr "Tuesday"
 
-msgid "LC_Page_Admin_Basis_006"
+msgid "c_Wednesday_01"
 msgstr "Wednesday"
 
-msgid "LC_Page_Admin_Basis_007"
+msgid "c_Thursday_01"
 msgstr "Thursday"
 
-msgid "LC_Page_Admin_Basis_008"
+msgid "c_Friday_01"
 msgstr "Friday"
 
-msgid "LC_Page_Admin_Basis_009"
+msgid "c_Saturday_01"
 msgstr "Saturday"
 
-msgid "LC_Page_Admin_Basis_011"
+msgid "c_SHOP master registration is complete._01"
 msgstr "SHOP master registration is complete."
 
-msgid "LC_Page_Admin_Basis_012"
+msgid "c_UPDATE was executed for dtb_baseinfo._01"
 msgstr "UPDATE was executed for dtb_baseinfo."
 
-msgid "LC_Page_Admin_Basis_013"
+msgid "c_INSERT was executed for dtb_baseinfo._01"
 msgstr "INSERT was executed for dtb_baseinfo."
 
@@ -2444,8 +2444,8 @@
 msgstr "Basic information management"
 
-msgid "LC_Page_Admin_Basis_Holiday_002"
+msgid "c_Holiday management_01"
 msgstr "Holiday management"
 
-msgid "LC_Page_Admin_Basis_Holiday_003"
+msgid "c_* That day has already been registered. <br>_01"
 msgstr "* That day has already been registered. <br>"
 
@@ -2495,14 +2495,14 @@
 msgstr "Basic information management"
 
-msgid "LC_Page_Admin_Basis_Seo_002"
+msgid "c_SEO management_01"
 msgstr "SEO management"
 
-msgid "LC_Page_Admin_Basis_Seo_003"
+msgid "c_PC site_01"
 msgstr "PC site"
 
-msgid "LC_Page_Admin_Basis_Seo_004"
+msgid "c_Mobile site_01"
 msgstr "Mobile site"
 
-msgid "LC_Page_Admin_Basis_Seo_005"
+msgid "c_Smartphone_01"
 msgstr "Smartphone"
 
@@ -2516,5 +2516,5 @@
 msgstr "Basic information management"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_002"
+msgid "c_Postal code registration_01"
 msgstr "Postal code registration"
 
@@ -2528,17 +2528,17 @@
 msgstr "<p><a href='?' target='_top'>Go back</a></p>"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_006"
+msgid "c_T_ARG1 reading failed._01"
 msgstr "T_ARG1 reading failed."
 
-msgid "LC_Page_Admin_Basis_ZipInstall_007"
+msgid "c_T_ARG1 cannot be opened._01"
 msgstr "T_ARG1 cannot be opened."
 
-msgid "LC_Page_Admin_Basis_ZipInstall_008"
+msgid "c_T_ARG1 retrieval failed._01"
 msgstr "T_ARG1 retrieval failed."
 
-msgid "LC_Page_Admin_Basis_ZipInstall_009"
+msgid "c_T_ARG1 writing failed._01"
 msgstr "T_ARG1 writing failed."
 
-msgid "LC_Page_Admin_Basis_ZipInstall_010"
+msgid "c_cannot be opened._01"
 msgstr " cannot be opened."
 
@@ -2786,77 +2786,78 @@
 msgstr "Template settings"
 
-msgid "LC_Page_Admin_Order_001"
-msgstr "Order search"
-
-msgid "LC_Page_Admin_Order_Disp_001"
+msgid "c_Order master_01"
+msgstr "Order master"
+
+msgid "c_Order receipt information display_01"
 msgstr "Order receipt information display"
 
-msgid "LC_Page_Admin_Order_Edit_001"
+msgid "c_Order receipt registration_01"
 msgstr "Order receipt registration"
 
-msgid "LC_Page_Admin_Order_Edit_002"
+msgid "c_Order receipt has been registered._01"
 msgstr "Order receipt has been registered."
 
-msgid "LC_Page_Admin_Order_Edit_003"
+msgid "c_Order receipt has been edited._01"
 msgstr "Order receipt has been edited."
 
-msgid "LC_Page_Admin_Order_Edit_004"
+msgid "c_None_01"
 msgstr "None"
 
-msgid "LC_Page_Admin_Order_Edit_005"
+msgid "c_There is an inventory shortage for T_ARG1/(T_ARG2)/(T_ARG3). Up to T_ARG4 can be set for the quantity.<br />_1"
 msgstr ""
 "There is an inventory shortage for T_ARG1/(T_ARG2)/(T_ARG3). Up to "
 "T_ARG4 can be set for the quantity.<br />"
 
-msgid "LC_Page_Admin_Order_Edit_006"
+msgid "c_Adjust so that the total amount is not a negative number.<br />_01"
 msgstr "Adjust so that the total amount is not a negative number.<br />"
 
-msgid "LC_Page_Admin_Order_Edit_007"
+msgid "c_Adjust so that a negative number is not displayed for the payment total.<br />_01"
 msgstr ""
 "Adjust so that a negative number is not displayed for the payment total.<br /"
 ">"
 
-msgid "LC_Page_Admin_Order_Edit_008"
+msgid "c_Adjust the final number of points registered so that it does not become a negative number.<br />_01"
 msgstr ""
 "Adjust the final number of points registered so that it does not become a "
 "negative number.<br />"
 
-msgid "LC_Page_Admin_Order_Mail_001"
+msgid "c_Order receipt management_01"
 msgstr "Order receipt management"
 
-msgid "LC_Page_Admin_Order_MailView_001"
+msgid "c_Order receipt management mail confirmation_01"
 msgstr "Order receipt management mail confirmation"
 
-msgid "LC_Page_Admin_Order_Multiple_001"
+msgid "c_Multiple shipping settings_01"
 msgstr "Multiple shipping settings"
 
-msgid "LC_Page_Admin_Order_Pdf_001"
+msgid "c_Ledger output_01"
 msgstr "Ledger output"
 
-msgid "LC_Page_Admin_Order_Pdf_002"
+msgid "c_Delivery slip_01"
 msgstr "Delivery slip"
 
-msgid "LC_Page_Admin_Order_Pdf_003"
+msgid "c_Open in browser_01"
 msgstr "Open in browser"
 
-msgid "LC_Page_Admin_Order_Pdf_004"
+msgid "c_Save to file_01"
 msgstr "Save to file"
 
-msgid "LC_Page_Admin_Order_Pdf_005"
+msgid "c_Detailed purchase statement (delivery slip)_01"
 msgstr "Detailed purchase statement (delivery slip)"
 
-msgid "LC_Page_Admin_Order_Pdf_009"
+msgid "c_Enter a number for the issuance year._01"
 msgstr "Enter a number for the issuance year."
 
-msgid "LC_Page_Admin_Order_Pdf_010"
+msgid "c_Enter a number for the issuance month._01"
 msgstr "Enter a number for the issuance month."
 
-msgid "LC_Page_Admin_Order_Pdf_011"
+msgid "c_Enter between 1 - 12 for the issuance month_01"
 msgstr "Enter between 1 - 12 for the issuance month"
 
-msgid "LC_Page_Admin_Order_Pdf_012"
+msgid "c_Enter a number for the issuance date._01"
 msgstr "Enter a number for the issuance date."
 
-msgid "LC_Page_Admin_Order_Pdf_013"
+msgid "c_Enter a number between 1
+- 31 for the issuance date._01"
 msgstr "Enter a number between 1
 - 31 for the issuance date."
@@ -2868,17 +2869,17 @@
 msgstr "Response status"
 
-msgid "LC_Page_Admin_OwnersStore_001"
+msgid "c_Plug-in management_01"
 msgstr "Plug-in management"
 
-msgid "LC_Page_Admin_OwnersStore_002"
+msgid "c_* T_ARG1 is already installed.<br/>_01"
 msgstr "* T_ARG1 is already installed.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_003"
+msgid "c_* DB registration failed.<br/>_01"
 msgstr "* DB registration failed.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_004"
+msgid "c_* PLUGIN_CODE is not defined.<br/>_01"
 msgstr "* PLUGIN_CODE is not defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_005"
+msgid "c_* PLUGIN_NAME is not defined.<br/>_01"
 msgstr "* PLUGIN_NAME is not defined.<br/>"
 
@@ -2886,70 +2887,70 @@
 msgstr "* CLASS_NAME is not defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_007"
+msgid "c_* CLASS_NAME is not properly defined.<br/>_01"
 msgstr "* CLASS_NAME is not properly defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_008"
+msgid "c_* PLUGIN_VERSION is not defined.<br/>_01"
 msgstr "* PLUGIN_VERSION is not defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_009"
+msgid "c_* COMPLIANT_VERSION is not defined.<br/>_01"
 msgstr "* COMPLIANT_VERSION is not defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_010"
+msgid "c_* AUTHOR is not defined.<br/>_01"
 msgstr "* AUTHOR is not defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_011"
+msgid "c_* DESCRIPTION is not defined.<br/>_01"
 msgstr "* DESCRIPTION is not defined.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_012"
+msgid "c_* The plug-in code does not match<br/>_01"
 msgstr "* The plug-in code does not match<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_013"
+msgid "c_* Decompression failed.<br/>_01"
 msgstr "* Decompression failed.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_014"
+msgid "c_* T_ARG1 reading failed.<br/>_01"
 msgstr "* T_ARG1 reading failed.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_015"
+msgid "c_* T_ARG2 was not found in T_ARG1.php.<br/>_01"
 msgstr "* T_ARG2 was not found in T_ARG1.php.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_016"
+msgid "c_Decompression:_01"
 msgstr "Decompression:"
 
-msgid "LC_Page_Admin_OwnersStore_017"
+msgid "c_*There is the possibility of competition with T_ARG1.<br/>_01"
 msgstr "*There is the possibility of competition with T_ARG1.<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_Log_001"
+msgid "c_Log management_01"
 msgstr "Log management"
 
-msgid "LC_Page_Admin_OwnersStore_Module_001"
+msgid "c_Module management_01"
 msgstr "Module management"
 
-msgid "LC_Page_Admin_OwnersStore_Settings_001"
+msgid "c_Authentication key settings_01"
 msgstr "Authentication key settings"
 
-msgid "LC_Page_Admin_Products_001"
+msgid "c_Product master_01"
 msgstr "Product master"
 
-msgid "LC_Page_Admin_Products_Category_001"
+msgid "c_Category registration_01"
 msgstr "Category registration"
 
-msgid "LC_Page_Admin_Products_Category_002"
+msgid "c_* Cannot be deleted since a subcategory exists.<br/>_01"
 msgstr "* Cannot be deleted since a subcategory exists.<br/>"
 
-msgid "LC_Page_Admin_Products_Category_003"
+msgid "c_* The category cannot be deleted since there are products in the category.<br/>_01"
 msgstr ""
 "* The category cannot be deleted since there are products in the category."
 "<br/>"
 
-msgid "LC_Page_Admin_Products_Category_004"
+msgid "c_* The maximum number of categories that can be registered has been exceeded.<br/>_01"
 msgstr ""
 "* The maximum number of categories that can be registered has been exceeded."
 "<br/>"
 
-msgid "LC_Page_Admin_Products_Category_005"
+msgid "c_* Registration of the T_ARG1 hierarchy or higher is not possible.<br/>_01"
 msgstr ""
 "* Registration of the T_ARG1 hierarchy or higher is not possible.<br/>"
 
-msgid "LC_Page_Admin_Products_Category_006"
+msgid "c_* Registration of the same contents already exists.<br/>_01"
 msgstr "* Registration of the same contents already exists.<br/>"
 
Index: branches/version-2_12-multilang/data/locales/ja.po
===================================================================
--- branches/version-2_12-multilang/data/locales/ja.po	(revision 22498)
+++ branches/version-2_12-multilang/data/locales/ja.po	(revision 22500)
@@ -1802,5 +1802,5 @@
 msgstr "売上集計"
 
-msgid "FORMAT_DATE_LONG"
+msgid "f_DATE_LONG_01"
 msgstr "Y年m月d日H時i分"
 
@@ -1879,5 +1879,5 @@
 msgstr "ご指定のページはございません。"
 
-msgid "LC_Page_Error_003"
+msgid "c_Illegal page migration._01"
 msgstr "不正なページ移動です。"
 
@@ -1888,5 +1888,5 @@
 msgstr "購入処理中は、カートに商品を追加することはできません。"
 
-msgid "LC_Page_Error_006"
+msgid "c_This procedure has been voided. The following factors may be attributable. <br />- The expiration date of the session information has passed <br /> - A new purchasing procedure was executed during an existing purchasing procedure <br />- The purchasing procedure has already been completed_01"
 msgstr ""
 "この手続きは無効となりました。以下の要因が考えられます。<br />・セッション情"
@@ -1897,8 +1897,8 @@
 msgstr "ご指定のカテゴリは存在しません。"
 
-msgid "LC_Page_Error_008"
+msgid "c_The e-mail address or password is not correct._01"
 msgstr "メールアドレスもしくはパスワードが正しくありません。"
 
-msgid "LC_Page_Error_009"
+msgid "c_The e-mail address or password is not correct.<br />If you have not completed registration, complete registration from the URL given in the temporary registration e-mail._01"
 msgstr ""
 "メールアドレスもしくはパスワードが正しくありません。<br />本登録がお済みでな"
@@ -1908,15 +1908,15 @@
 msgstr "不正なアクセスです。"
 
-msgid "LC_Page_Error_011"
+msgid "c_There is a product that sold out immediately before your purchase. This procedure has been voided. We apologize for the inconvenience._01"
 msgstr ""
 "申し訳ございませんが、ご購入の直前で売り切れた商品があります。この手続きは無"
 "効となりました。"
 
-msgid "LC_Page_Error_012"
+msgid "c_Retrieval of information regarding products in your cart failed. This procedure has been voided. We apologize for the inconvenience._01"
 msgstr ""
 "申し訳ございませんが、カート内の商品情報の取得に失敗しました。この手続きは無"
 "効となりました。"
 
-msgid "LC_Page_Error_013"
+msgid "c_You do not have enough points. This procedure has been voided. We apologize for the inconvenience._01"
 msgstr ""
 "申し訳ございませんが、ポイントが不足しております。この手続きは無効となりまし"
@@ -1926,5 +1926,5 @@
 msgstr "既にお気に入りに追加されている商品です"
 
-msgid "LC_Page_Error_015"
+msgid "c_File decompression failed.\nWrite access may not have been granted to the designated directory._01"
 msgstr ""
 "ファイルの解凍に失敗しました。\n"
@@ -1934,29 +1934,29 @@
 msgstr "ファイルのFTPダウンロードに失敗しました。"
 
-msgid "LC_Page_Error_017"
+msgid "c_FTP login failed._01"
 msgstr "FTPログインに失敗しました。"
 
-msgid "LC_Page_Error_018"
+msgid "c_FTP login failed._02"
 msgstr "FTPログインに失敗しました。"
 
-msgid "LC_Page_Error_019"
+msgid "c_DB creation failed. \nThe user designated by may not have been granted DB creation access._01"
 msgstr ""
 "DBの作成に失敗しました。\n"
 "指定のユーザーには、DB作成の権限が与えられていない可能性があります。"
 
-msgid "LC_Page_Error_020"
+msgid "c_Import of the database structure failed. \nThe sql file may be damaged._01"
 msgstr ""
 "データベース構造のインポートに失敗しました。\n"
 "sqlファイルが壊れている可能性があります。"
 
-msgid "LC_Page_Error_021"
+msgid "c_The settings file does not exist in the designated path._01"
 msgstr "指定のパスに、設定ファイルが存在しません。"
 
-msgid "LC_Page_Error_022"
+msgid "c_It is not possible to write to the file settings.\nGrant write access to file settings._01"
 msgstr ""
 "設定ファイルに書き込めません。\n"
 "設定ファイルに書き込み権限を与えてください。"
 
-msgid "LC_Page_Error_023"
+msgid "c_The download file does not exist. <br /> Please inquire at the store._01"
 msgstr ""
 "ダウンロードファイルが存在しません。<br />申し訳ございませんが、店舗までお問"
@@ -1998,19 +1998,19 @@
 "ください。"
 
-msgid "LC_Page_Error_SystemError_003"
+msgid "c_▼▼▼ Start of debug information ▼▼▼_01"
 msgstr "▼▼▼ デバッグ情報ここから ▼▼▼"
 
-msgid "LC_Page_Error_SystemError_004"
+msgid "c_▲▲▲ End of debug information▲▲▲_01"
 msgstr "▲▲▲ デバッグ情報ここまで ▲▲▲"
 
-msgid "LC_Page_Forgot_001"
+msgid "c_If you have forgotten your password_01"
 msgstr "パスワードを忘れた方"
 
-msgid "LC_Page_Forgot_002"
+msgid "c_The e-mail address you registered is currently temporarily active.<br/>Please access the URL that was sent at the time of registration to complete member registration._01"
 msgstr ""
 "ご入力のemailアドレスは現在仮登録中です。<br/>登録の際にお送りしたメールのURL"
 "にアクセスし、<br/>本会員登録をお願いします。"
 
-msgid "LC_Page_Forgot_003"
+msgid "c_There is an error with your name or the e-mail address is not correct._01"
 msgstr "お名前に間違いがあるか、このメールアドレスは登録されていません。"
 
@@ -2219,35 +2219,35 @@
 msgstr "インストール/アップデートに成功しました。"
 
-msgid "LC_Page_Install_001"
+msgid "c_Please grant user write access (777, 707, etc.) for T_ARG1_01"
 msgstr "T_ARG1にユーザ書込み権限(777, 707等)を付与して下さい"
 
-msgid "LC_Page_Install_002"
+msgid "c_○: The table was successfully created.<br />_01"
 msgstr "○：テーブルの作成に成功しました。<br />"
 
-msgid "LC_Page_Install_003"
+msgid "c_×: The table was not created.<br />_01"
 msgstr "×：テーブルの作成に失敗しました。<br />"
 
-msgid "LC_Page_Install_004"
+msgid "c_○: Initial data was successfully created.<br />_01"
 msgstr "○：初期データの作成に成功しました。<br />"
 
-msgid "LC_Page_Install_005"
+msgid "c_×: Initial data was not created.<br />_01"
 msgstr "×：初期データの作成に失敗しました。<br />"
 
-msgid "LC_Page_Install_006"
+msgid "c_○: The sequence was successfully created.<br />_01"
 msgstr "○：シーケンスの作成に成功しました。<br />"
 
-msgid "LC_Page_Install_007"
+msgid "c_×: The sequence was not created.<br />_01"
 msgstr "×：シーケンスの作成に失敗しました。<br />"
 
-msgid "LC_Page_Install_008"
+msgid "c_○: The table was successfully deleted.<br />_01"
 msgstr "○：テーブルの削除に成功しました。<br />"
 
-msgid "LC_Page_Install_009"
+msgid "c_×: The table was not deleted.<br />_01"
 msgstr "×：テーブルの削除に失敗しました。<br />"
 
-msgid "LC_Page_Install_010"
+msgid "c_○: The sequence was successfully deleted.<br />_01"
 msgstr "○：シーケンスの削除に成功しました。<br />"
 
-msgid "LC_Page_Install_011"
+msgid "c_×: The sequence was not deleted.<br />_01"
 msgstr "×：シーケンスの削除に失敗しました。<br />"
 
@@ -2287,35 +2287,35 @@
 msgstr "管理機能：ディレクトリ"
 
-msgid "LC_Page_Install_023"
+msgid "c_Management area: SSL restriction_01"
 msgstr "管理機能：SSL制限"
 
-msgid "LC_Page_Install_024"
+msgid "c_Management area: IP restriction_01"
 msgstr "管理機能：IP制限"
 
-msgid "LC_Page_Install_025"
+msgid "c_URL (normal)_01"
 msgstr "URL(通常)"
 
-msgid "LC_Page_Install_026"
+msgid "c_URL (secure)_01"
 msgstr "URL(セキュア)"
 
-msgid "LC_Page_Install_027"
+msgid "c_Domain_01"
 msgstr "ドメイン"
 
-msgid "LC_Page_Install_028"
+msgid "c_Mailer backend_01"
 msgstr "メーラーバックエンド"
 
-msgid "LC_Page_Install_029"
+msgid "c_SMTP host_01"
 msgstr "SMTPホスト"
 
-msgid "LC_Page_Install_030"
+msgid "c_SMTP port_01"
 msgstr "SMTPポート"
 
-msgid "LC_Page_Install_031"
+msgid "c_SMTP user_01"
 msgstr "SMTPユーザー"
 
-msgid "LC_Page_Install_032"
+msgid "c_SMTP password_01"
 msgstr "SMTPパスワード"
 
-msgid "LC_Page_Install_033"
+msgid "c_DB type_01"
 msgstr "DBの種類"
 
@@ -2373,35 +2373,35 @@
 msgstr "基本情報管理"
 
-msgid "LC_Page_Admin_Basis_002"
+msgid "c_SHOP master_01"
 msgstr "SHOPマスター"
 
-msgid "LC_Page_Admin_Basis_003"
+msgid "c_Sunday_01"
 msgstr "日"
 
-msgid "LC_Page_Admin_Basis_004"
+msgid "c_Monday_01"
 msgstr "月"
 
-msgid "LC_Page_Admin_Basis_005"
+msgid "c_Tuesday_01"
 msgstr "火"
 
-msgid "LC_Page_Admin_Basis_006"
+msgid "c_Wednesday_01"
 msgstr "水"
 
-msgid "LC_Page_Admin_Basis_007"
+msgid "c_Thursday_01"
 msgstr "木"
 
-msgid "LC_Page_Admin_Basis_008"
+msgid "c_Friday_01"
 msgstr "金"
 
-msgid "LC_Page_Admin_Basis_009"
+msgid "c_Saturday_01"
 msgstr "土"
 
-msgid "LC_Page_Admin_Basis_011"
+msgid "c_SHOP master registration is complete._01"
 msgstr "SHOPマスターの登録が完了しました。"
 
-msgid "LC_Page_Admin_Basis_012"
+msgid "c_UPDATE was executed for dtb_baseinfo._01"
 msgstr "dtb_baseinfo に UPDATE を実行しました。"
 
-msgid "LC_Page_Admin_Basis_013"
+msgid "c_INSERT was executed for dtb_baseinfo._01"
 msgstr "dtb_baseinfo に INSERT を実行しました。"
 
@@ -2430,8 +2430,8 @@
 msgstr "基本情報管理"
 
-msgid "LC_Page_Admin_Basis_Holiday_002"
+msgid "c_Holiday management_01"
 msgstr "定休日管理"
 
-msgid "LC_Page_Admin_Basis_Holiday_003"
+msgid "c_* That day has already been registered. <br>_01"
 msgstr "※ 既に同じ日付の登録が存在します。<br>"
 
@@ -2481,14 +2481,14 @@
 msgstr "基本情報管理"
 
-msgid "LC_Page_Admin_Basis_Seo_002"
+msgid "c_SEO management_01"
 msgstr "SEO管理"
 
-msgid "LC_Page_Admin_Basis_Seo_003"
+msgid "c_PC site_01"
 msgstr "PCサイト"
 
-msgid "LC_Page_Admin_Basis_Seo_004"
+msgid "c_Mobile site_01"
 msgstr "モバイルサイト"
 
-msgid "LC_Page_Admin_Basis_Seo_005"
+msgid "c_Smartphone_01"
 msgstr "スマートフォン"
 
@@ -2502,5 +2502,5 @@
 msgstr "基本情報管理"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_002"
+msgid "c_Postal code registration_01"
 msgstr "郵便番号DB登録"
 
@@ -2514,17 +2514,17 @@
 msgstr "<p><a href='?' target='_top'>戻る</a></p>"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_006"
+msgid "c_T_ARG1 reading failed._01"
 msgstr "T_ARG1 の読み込みに失敗しました。"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_007"
+msgid "c_T_ARG1 cannot be opened._01"
 msgstr "T_ARG1 を開けません。"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_008"
+msgid "c_T_ARG1 retrieval failed._01"
 msgstr "T_ARG1 の取得に失敗しました。"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_009"
+msgid "c_T_ARG1 writing failed._01"
 msgstr "T_ARG1 への書き込みに失敗しました。"
 
-msgid "LC_Page_Admin_Basis_ZipInstall_010"
+msgid "c_cannot be opened._01"
 msgstr " をオープンできません。"
 
@@ -2771,74 +2771,75 @@
 msgstr "テンプレート設定"
 
-msgid "LC_Page_Admin_Order_001"
+msgid "c_Order master_01"
 msgstr "受注管理"
 
-msgid "LC_Page_Admin_Order_Disp_001"
+msgid "c_Order receipt information display_01"
 msgstr "受注情報表示"
 
-msgid "LC_Page_Admin_Order_Edit_001"
+msgid "c_Order receipt registration_01"
 msgstr "受注登録"
 
-msgid "LC_Page_Admin_Order_Edit_002"
+msgid "c_Order receipt has been registered._01"
 msgstr "受注を登録しました。"
 
-msgid "LC_Page_Admin_Order_Edit_003"
+msgid "c_Order receipt has been edited._01"
 msgstr "受注を編集しました。"
 
-msgid "LC_Page_Admin_Order_Edit_004"
+msgid "c_None_01"
 msgstr "なし"
 
-msgid "LC_Page_Admin_Order_Edit_005"
+msgid "c_There is an inventory shortage for T_ARG1/(T_ARG2)/(T_ARG3). Up to T_ARG4 can be set for the quantity.<br />_1"
 msgstr ""
 "T_ARG1/(T_ARG2)/(T_ARG3) の在庫が不足しています。 設定できる数量は"
 "「T_ARG4」までです。<br />"
 
-msgid "LC_Page_Admin_Order_Edit_006"
+msgid "c_Adjust so that the total amount is not a negative number.<br />_01"
 msgstr "合計額がマイナス表示にならないように調整して下さい。<br />"
 
-msgid "LC_Page_Admin_Order_Edit_007"
+msgid "c_Adjust so that a negative number is not displayed for the payment total.<br />_01"
 msgstr "お支払い合計額がマイナス表示にならないように調整して下さい。<br />"
 
-msgid "LC_Page_Admin_Order_Edit_008"
+msgid "c_Adjust the final number of points registered so that it does not become a negative number.<br />_01"
 msgstr "最終保持ポイントがマイナス表示にならないように調整して下さい。<br />"
 
-msgid "LC_Page_Admin_Order_Mail_001"
+msgid "c_Order receipt management_01"
 msgstr "受注管理"
 
-msgid "LC_Page_Admin_Order_MailView_001"
+msgid "c_Order receipt management mail confirmation_01"
 msgstr "受注管理メール確認"
 
-msgid "LC_Page_Admin_Order_Multiple_001"
+msgid "c_Multiple shipping settings_01"
 msgstr "複数配送設定"
 
-msgid "LC_Page_Admin_Order_Pdf_001"
+msgid "c_Ledger output_01"
 msgstr "帳票出力"
 
-msgid "LC_Page_Admin_Order_Pdf_002"
+msgid "c_Delivery slip_01"
 msgstr "納品書"
 
-msgid "LC_Page_Admin_Order_Pdf_003"
+msgid "c_Open in browser_01"
 msgstr "ブラウザに開く"
 
-msgid "LC_Page_Admin_Order_Pdf_004"
+msgid "c_Save to file_01"
 msgstr "ファイルに保存"
 
-msgid "LC_Page_Admin_Order_Pdf_005"
+msgid "c_Detailed purchase statement (delivery slip)_01"
 msgstr "お買上げ明細書(納品書)"
 
-msgid "LC_Page_Admin_Order_Pdf_009"
+msgid "c_Enter a number for the issuance year._01"
 msgstr "発行年は数値で入力してください。"
 
-msgid "LC_Page_Admin_Order_Pdf_010"
+msgid "c_Enter a number for the issuance month._01"
 msgstr "発行月は数値で入力してください。"
 
-msgid "LC_Page_Admin_Order_Pdf_011"
+msgid "c_Enter between 1 - 12 for the issuance month_01"
 msgstr "発行月は1
 012の間で入力してください。"
 
-msgid "LC_Page_Admin_Order_Pdf_012"
+msgid "c_Enter a number for the issuance date._01"
 msgstr "発行日は数値で入力してください。"
 
-msgid "LC_Page_Admin_Order_Pdf_013"
+msgid "c_Enter a number between 1
+- 31 for the issuance date._01"
 msgstr "発行日は1
 031の間で入力してください。"
@@ -2850,17 +2851,17 @@
 msgstr "対応状況管理"
 
-msgid "LC_Page_Admin_OwnersStore_001"
+msgid "c_Plug-in management_01"
 msgstr "プラグイン管理"
 
-msgid "LC_Page_Admin_OwnersStore_002"
+msgid "c_* T_ARG1 is already installed.<br/>_01"
 msgstr "※ T_ARG1は既にインストールされています。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_003"
+msgid "c_* DB registration failed.<br/>_01"
 msgstr "※ DB登録に失敗しました。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_004"
+msgid "c_* PLUGIN_CODE is not defined.<br/>_01"
 msgstr "※ PLUGIN_CODEが定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_005"
+msgid "c_* PLUGIN_NAME is not defined.<br/>_01"
 msgstr "※ PLUGIN_NAMEが定義されていません。<br/>"
 
@@ -2868,65 +2869,65 @@
 msgstr "※ CLASS_NAMEが定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_007"
+msgid "c_* CLASS_NAME is not properly defined.<br/>_01"
 msgstr "※ CLASS_NAMEが正しく定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_008"
+msgid "c_* PLUGIN_VERSION is not defined.<br/>_01"
 msgstr "※ PLUGIN_VERSIONが定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_009"
+msgid "c_* COMPLIANT_VERSION is not defined.<br/>_01"
 msgstr "※ COMPLIANT_VERSIONが定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_010"
+msgid "c_* AUTHOR is not defined.<br/>_01"
 msgstr "※ AUTHORが定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_011"
+msgid "c_* DESCRIPTION is not defined.<br/>_01"
 msgstr "※ DESCRIPTIONが定義されていません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_012"
+msgid "c_* The plug-in code does not match<br/>_01"
 msgstr "※ プラグインコードが一致しません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_013"
+msgid "c_* Decompression failed.<br/>_01"
 msgstr "※ 解凍に失敗しました。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_014"
+msgid "c_* T_ARG1 reading failed.<br/>_01"
 msgstr "※ T_ARG1の読み込みに失敗しました。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_015"
+msgid "c_* T_ARG2 was not found in T_ARG1.php.<br/>_01"
 msgstr "※ T_ARG1.php にT_ARG2が見つかりません。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_016"
+msgid "c_Decompression:_01"
 msgstr "解凍："
 
-msgid "LC_Page_Admin_OwnersStore_017"
+msgid "c_*There is the possibility of competition with T_ARG1.<br/>_01"
 msgstr "* T_ARG1と競合する可能性があります。<br/>"
 
-msgid "LC_Page_Admin_OwnersStore_Log_001"
+msgid "c_Log management_01"
 msgstr "ログ管理"
 
-msgid "LC_Page_Admin_OwnersStore_Module_001"
+msgid "c_Module management_01"
 msgstr "モジュール管理"
 
-msgid "LC_Page_Admin_OwnersStore_Settings_001"
+msgid "c_Authentication key settings_01"
 msgstr "認証キー設定"
 
-msgid "LC_Page_Admin_Products_001"
+msgid "c_Product master_01"
 msgstr "商品マスター"
 
-msgid "LC_Page_Admin_Products_Category_001"
+msgid "c_Category registration_01"
 msgstr "カテゴリ登録"
 
-msgid "LC_Page_Admin_Products_Category_002"
+msgid "c_* Cannot be deleted since a subcategory exists.<br/>_01"
 msgstr "※ 子カテゴリが存在するため削除できません。<br/>"
 
-msgid "LC_Page_Admin_Products_Category_003"
+msgid "c_* The category cannot be deleted since there are products in the category.<br/>_01"
 msgstr "※ カテゴリ内に商品が存在するため削除できません。<br/>"
 
-msgid "LC_Page_Admin_Products_Category_004"
+msgid "c_* The maximum number of categories that can be registered has been exceeded.<br/>_01"
 msgstr "※ カテゴリの登録最大数を超えました。<br/>"
 
-msgid "LC_Page_Admin_Products_Category_005"
+msgid "c_* Registration of the T_ARG1 hierarchy or higher is not possible.<br/>_01"
 msgstr "※ T_ARG1階層以上の登録はできません。<br/>"
 
-msgid "LC_Page_Admin_Products_Category_006"
+msgid "c_* Registration of the same contents already exists.<br/>_01"
 msgstr "※ 既に同じ内容の登録が存在します。<br/>"
 
