Ignore:
Timestamp:
2013/02/05 21:02:12 (11 years ago)
Author:
m_uehara
Message:

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

File:
1 edited

Legend:

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

    r22503 r22504  
    349349                if (is_dir($path)) { 
    350350                    if (!is_writable($path)) { 
    351                         $mess .= t('LC_Page_Install_012', array('T_ARG1' => $real_path, 'T_ARG2' => $filemode)); 
     351                        $mess .= t('c_>> ×:T_ARG1(T_ARG2)\nPlease grant user write access (777, 707, etc.)_01', 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('T_ARG1' => $real_path, 'T_ARG2' => $filemode)); 
     358                        $mess .= t('c_>> ×:T_ARG1(T_ARG2)\nPlease grant user write access (666, 606, etc.)_01', array('T_ARG1' => $real_path, 'T_ARG2' => $filemode)); 
    359359                        $hasErr = true; 
    360360                    } else { 
     
    363363                } 
    364364            } else { 
    365                 $mess .= t('LC_Page_Install_014', array('T_ARG1' => $path)); 
     365                $mess .= t('c_>> ×:T_ARG1 cannot be found._01', array('T_ARG1' => $path)); 
    366366                $hasErr = true; 
    367367            } 
     
    370370 
    371371    if (ini_get('safe_mode')) { 
    372         $mess .= t('LC_Page_Install_015'); 
     372        $mess .= t('c_>> ×:PHP safe mode is active._01'); 
    373373        $hasErr = true; 
    374374    } 
    375375 
    376376    if (get_magic_quotes_gpc()) { 
    377         $mess .= t('LC_Page_Install_016'); 
     377        $mess .= t("c_>> ×:PHP settings directive 'magic_quotes_gpc' is active._01"); 
    378378        $hasErr = true; 
    379379    } 
     
    439439            mkdir($path); 
    440440        } 
    441         $mess .= t('LC_Page_Install_017'); 
     441        $mess .= t('c_>> ○:Access authority is normal._01'); 
    442442    } 
    443443 
Note: See TracChangeset for help on using the changeset viewer.