Ignore:
Timestamp:
2013/01/28 18:12:19 (11 years ago)
Author:
m_uehara
Message:

#2060 メッセージIDの振り直し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/html/install/index.php

    r22437 r22453  
    6363 
    6464if (!is_writable($temp_dir)) { 
    65     SC_Utils_Ex::sfErrorHeader(t('LC_Page_Install_001', array('%s1' => $temp_dir)), true); 
     65    SC_Utils_Ex::sfErrorHeader(t('LC_Page_Install_001', array('T_ARG1' => $temp_dir)), true); 
    6666    exit; 
    6767} 
     
    349349                if (is_dir($path)) { 
    350350                    if (!is_writable($path)) { 
    351                         $mess .= t('LC_Page_Install_012', array('%s1' => $real_path, '%s2' => $filemode)); 
     351                        $mess .= t('LC_Page_Install_012', array('T_ARG1' => $real_path, 'T_ARG2' => $filemode)); 
    352352                        $hasErr = true; 
    353353                    } else { 
     
    356356                } else { 
    357357                    if (!is_writable($path)) { 
    358                         $mess .= t('LC_Page_Install_013', array('%s1' => $real_path, '%s2' => $filemode)); 
     358                        $mess .= t('LC_Page_Install_013', array('T_ARG1' => $real_path, 'T_ARG2' => $filemode)); 
    359359                        $hasErr = true; 
    360360                    } else { 
     
    363363                } 
    364364            } else { 
    365                 $mess .= t('LC_Page_Install_014', array('%s1' => $path)); 
     365                $mess .= t('LC_Page_Install_014', array('T_ARG1' => $path)); 
    366366                $hasErr = true; 
    367367            } 
     
    11161116    } 
    11171117    if (!rename(HTML_REALDIR . $oldAdminDir, HTML_REALDIR . $adminDir)) { 
    1118         return  t('LC_Page_Install_048', array('%s1' => HTML_REALDIR . $adminDir)); 
     1118        return  t('LC_Page_Install_048', array('T_ARG1' => HTML_REALDIR . $adminDir)); 
    11191119    } 
    11201120    return true; 
Note: See TracChangeset for help on using the changeset viewer.