Ignore:
Timestamp:
2013/01/27 15:37:10 (11 years ago)
Author:
kim
Message:

#2060 メッセージIDの振り直し SC_Image,SC_Initial,SC_PageNavi,SC_Product,SC_Query,SC_SelectSql,SC_SendMail,SC_View,SC_UploadFile,SC_Api_Operation,SC_Batch_Update,SC_Helper_CSV,SC_Helper_Customer,SC_Helper_DB,SC_Helper_Mail,SC_Helper_PageLayout


SC_Sendmail_001とLC_Page_001,LC_Page_Admin_001,SC_Utils_002,GC_Utils_001を統合
SC_UploadFile_003とLC_Page_Admin_Products_ProductClass_014を統合
SC_Helper_CSV_002とLC_Page_Admin_Customer_Edit_001を統合
SC_Helper_CSV_005とPARAM_LABEL_CATEGORYを統合

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/SC_Image.php

    r22100 r22416  
    5757                'T_TO' => $to_path 
    5858            ); 
    59             GC_Utils_Ex::gfDebugLog(t('SC_Image_002', $tokens)); 
     59            GC_Utils_Ex::gfDebugLog(t('c_Copying of T_FROM->T_TO failed._01', $tokens)); 
    6060        } 
    6161    } 
     
    9999 
    100100        if (empty($FromImgPath) || empty($ToImgPath)) { 
    101             return array(0,  t('SC_Image_003')); 
     101            return array(0,  t('c_The output source image path or the output destination folder has not been designated._01')); 
    102102        } 
    103103 
    104104        if (!file_exists($FromImgPath)) { 
    105             return array(0,  t('SC_Image_004')); 
     105            return array(0,  t('c_The output source image was not found._01')); 
    106106        } 
    107107 
     
    111111        // 画像の種類が不明 or swf 
    112112        if (!$size[2] || $size[2] > 3) { 
    113             return array(0,  t('SC_Image_005')); 
     113            return array(0,  t('c_The image format is not supported._01')); 
    114114        } 
    115115 
     
    156156                    } 
    157157                    if (!@copy($FromImgPath , $ToImgPath.$ToFile)) { // エラー処理 
    158                         return array(0,  t('SC_Image_001')); 
     158                        return array(0,  t('c_File copying failed._01')); 
    159159                    } 
    160160                    ImageDestroy($ImgNew); 
     
    179179                // 画像が作成されていない場合 
    180180                if (!@file_exists($TmpPath)) { 
    181                     return array(0,  t('SC_Image_006')); 
     181                    return array(0,  t('c_Image output failed._01')); 
    182182                } 
    183183                ImageDestroy($ImgNew); 
     
    206206                // 画像が作成されていない場合 
    207207                if (!@file_exists($TmpPath)) { 
    208                     return array(0,  t('SC_Image_006')."<br>${ImgNew}<br>${TmpPath}"); 
     208                    return array(0,  t('c_Image output failed._01')."<br>${ImgNew}<br>${TmpPath}"); 
    209209                } 
    210210                $RetVal = $ToFile; 
     
    227227                // 画像が作成されていない場合 
    228228                if (!@file_exists($TmpPath)) { 
    229                     return array(0,  t('SC_Image_006')); 
     229                    return array(0,  t('c_Image output failed._01')); 
    230230                } 
    231231                $RetVal = $ToFile; 
Note: See TracChangeset for help on using the changeset viewer.