| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
|
|
7 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
8 |
* @link https://codeigniter.com
|
|
|
9 |
*/
|
|
|
10 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
11 |
|
|
|
12 |
$lang['imglib_source_image_required'] = '必須在設定中指定一個來源圖檔';
|
|
|
13 |
$lang['imglib_gd_required'] = '此功能依賴 GD 圖形函式庫';
|
|
|
14 |
$lang['imglib_gd_required_for_props'] = '您的伺服器必須支援 GD 圖形函式庫以確定圖檔的屬性';
|
|
|
15 |
$lang['imglib_unsupported_imagecreate'] = '您的伺服器不支援 GD 函數,無法建立影像檔';
|
|
|
16 |
$lang['imglib_gif_not_supported'] = 'GIF 格式由於版權問題一般不提供,建議使用 JPG 或 PNG 格式';
|
|
|
17 |
$lang['imglib_jpg_not_supported'] = '不支援 JPG 格式';
|
|
|
18 |
$lang['imglib_png_not_supported'] = '不支援 PNG 格式';
|
|
|
19 |
$lang['imglib_jpg_or_png_required'] = '設定中指定的圖檔縮放方法只能用於 JPG 或 PNG 格式';
|
|
|
20 |
$lang['imglib_copy_error'] = '取代檔案時發生錯誤。請確認檔案目錄可寫入';
|
|
|
21 |
$lang['imglib_rotate_unsupported'] = '伺服器不支援圖檔轉向';
|
|
|
22 |
$lang['imglib_libpath_invalid'] = '圖形函式庫路徑錯誤。在設定中必須指定正確的路徑';
|
|
|
23 |
$lang['imglib_image_process_failed'] = '影像處理錯誤。請確認伺服器支援指定的處理方法,且圖形函式庫徑正確';
|
|
|
24 |
$lang['imglib_rotation_angle_required'] = '必須指定旋轉角度';
|
|
|
25 |
$lang['imglib_invalid_path'] = '圖檔路徑錯誤';
|
|
|
26 |
$lang['imglib_invalid_image'] = '無效的圖檔';
|
|
|
27 |
$lang['imglib_copy_failed'] = '圖檔複製錯誤';
|
|
|
28 |
$lang['imglib_missing_font'] = '無法找到指定的字體';
|
|
|
29 |
$lang['imglib_save_failed'] = '無法存檔,請確定圖檔或目錄可寫';
|