git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4557 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
royallin 2008-09-25 04:19:23 +00:00
parent fee1779c50
commit 0a4a9f04a7
36 changed files with 1672 additions and 0 deletions

View file

@ -0,0 +1,66 @@
<?php
/**
* @file modules/widget/lang/zh-TW.lang.php
* @author zero <zero@nzeo.com>
* @brief 控件(widget) 模組語言包
**/
$lang->cmd_generate_code = '建立代碼';
$lang->widget_name = '控件名稱';
$lang->widget_maker = '控件作者';
$lang->widget_license = '版權';
$lang->widget_history = '更新事項';
$lang->widget_info = '控件資料';
$lang->widget_code = '代碼';
$lang->widget_cache = '暫存';
$lang->widget_fix_width = '固定大小';
$lang->widget_width = '寬度';
$lang->widget_position = '位置';
$lang->widget_position_none = '換行';
$lang->widget_position_left = '靠左對齊';
$lang->widget_position_right = '靠右對齊';
$lang->widget_margin = '邊距';
$lang->widget_margin_top = '上';
$lang->widget_margin_right = '右';
$lang->widget_margin_bottom = '下';
$lang->widget_margin_left= '左';
$lang->about_widget_fix_width = '選擇此項將固定控件顯示寬度。';
$lang->about_widget_width = '請輸入寬度大小。';
$lang->about_widget_position = '想要橫向顯示多個控件時,請選擇位置。';
$lang->about_widget_margin = '想要橫向顯示多個控件時,請設置邊距。';
$lang->about_widget_cache = '指定的時間內可以利用已暫存的資料。';
$lang->generated_code = '已建立的代碼';
$lang->msg_widget_is_not_exists = '找不到%s控件';
$lang->msg_widget_object_is_null = '無法建立%s控件目標';
$lang->msg_widget_proc_is_null = '無法執行%s控件的 proc()';
$lang->about_widget_code = '輸入所選控件所需要的下列各項後,按『代碼建立』按鈕,即可在頁面下方獲得可用在佈局模版代碼片斷。';
$lang->about_widget_code_in_page = '輸入下列各項必要值後,按『建立代碼』按鈕,即可把控件插入到頁面當中。';
$lang->about_widget = "控件是在佈局或頁面模組中使用的一種小部件。\n不僅可以關聯內部模組或外部Open API而且通過設置可以用在多種用途。\n即使不使用Zeroboard XE的頁面或佈局模組也可以通過『代碼建立』功能直接可以新增相對應控件。";
$lang->cmd_content_insert = "新增內容";
$lang->cmd_box_widget_insert = "新增控件箱";
$lang->cmd_remove_all_widgets = "清空內容";
$lang->cmd_widget_size = "大小";
$lang->cmd_widget_align = "對齊";
$lang->cmd_widget_align_left = "靠左對齊";
$lang->cmd_widget_align_right = "靠右對齊";
$lang->cmd_widget_margin = "外邊距";
$lang->cmd_widget_padding = "內填充";
$lang->cmd_widget_border = "邊框";
$lang->cmd_widget_border_solid = "實線";
$lang->cmd_widget_border_dotted = "點線";
$lang->cmd_widget_background_color = "背景色";
$lang->cmd_widget_background_image_url = "背景圖片";
$lang->cmd_widget_background_image_repeat = "重複";
$lang->cmd_widget_background_image_no_repeat = "不重複";
$lang->cmd_widget_background_image_x_repeat = "橫向重複";
$lang->cmd_widget_background_image_y_repeat = "縱向重複";
$lang->cmd_widget_background_image_x = "水平位置";
$lang->cmd_widget_background_image_y = "垂直位置";
?>