Ignore:
Timestamp:
2013/01/27 22:44:41 (11 years ago)
Author:
kim
Message:

#2060 メッセージIDの振り直し T_FILEDを%sに置き換え

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php

    r22100 r22437  
    103103                        // コンパイルファイルのクリア処理 
    104104                        SC_Utils_Ex::clearCompliedTemplate(); 
    105                         $this->tpl_onload = "alert('" . t('ALERT_017', array('T_FIELD' => $plugin['plugin_name'])) . "');"; 
     105                        $this->tpl_onload = "alert('" . t('ALERT_017', array('%s1' => $plugin['plugin_name'])) . "');"; 
    106106                    } 
    107107                } 
     
    121121                        // コンパイルファイルのクリア処理 
    122122                        SC_Utils_Ex::clearCompliedTemplate(); 
    123                         $this->tpl_onload = "alert('" . t('ALERT_018', array('T_FIELD' => $plugin['plugin_name'])) . "');"; 
     123                        $this->tpl_onload = "alert('" . t('ALERT_018', array('%s1' => $plugin['plugin_name'])) . "');"; 
    124124                    } 
    125125                } 
     
    140140                        SC_Utils_Ex::clearCompliedTemplate(); 
    141141                        var_dump($plugin['plugin_name']); 
    142                         $this->tpl_onload = "alert('" . t('ALERT_019', array('T_FIELD' => $plugin['plugin_name'])) . "');"; 
     142                        $this->tpl_onload = "alert('" . t('ALERT_019', array('%s1' => $plugin['plugin_name'])) . "');"; 
    143143                    } 
    144144                } 
     
    377377        if ($this->isInstalledPlugin($arrPluginInfo['PLUGIN_CODE']) === true) { 
    378378            $this->rollBack(DOWNLOADS_TEMP_PLUGIN_INSTALL_DIR); 
    379             $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_002', array('T_FIELD' => $arrPluginInfo['PLUGIN_NAME'])); 
     379            $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_002', array('%s1' => $arrPluginInfo['PLUGIN_NAME'])); 
    380380            return $arrErr; 
    381381        } 
     
    811811            require_once $file_path;  
    812812        } else { 
    813             $arrErr[$key] = t('LC_Page_Admin_OwnersStore_014', array('T_FIELD' => $file_path)); 
     813            $arrErr[$key] = t('LC_Page_Admin_OwnersStore_014', array('%s1' => $file_path)); 
    814814        } 
    815815        return $arrErr; 
     
    833833            } 
    834834        } else { 
    835             $arrErr['plugin_error'] = t('LC_Page_Admin_OwnersStore_015', array('T_FIELD1' => $class_name, 'T_FIELD2' => $exec_func)); 
     835            $arrErr['plugin_error'] = t('LC_Page_Admin_OwnersStore_015', array('%s1' => $class_name, '%s2' => $exec_func)); 
    836836        } 
    837837        return $arrErr; 
     
    986986        // メッセージをセットします. 
    987987        foreach ($arrConflictPluginName as $conflictPluginName) { 
    988             $conflict_alert_message .= t('LC_Page_Admin_OwnersStore_017', array('T_FIELD' => $conflictPluginName)); 
     988            $conflict_alert_message .= t('LC_Page_Admin_OwnersStore_017', array('%s1' => $conflictPluginName)); 
    989989        } 
    990990        return $conflict_alert_message; 
Note: See TracChangeset for help on using the changeset viewer.