##// END OF EJS Templates
translation updates (closes #4016, #4017)....
Jean-Philippe Lang -
r2805:c5d8bbeb8ca7
parent child
Show More
@@ -1,921 +1,921
1 # Chinese (Taiwan) translations for Ruby on Rails
1 # Chinese (Taiwan) translations for Ruby on Rails
2 # by tsechingho (http://github.com/tsechingho)
2 # by tsechingho (http://github.com/tsechingho)
3 # See http://github.com/svenfuchs/rails-i18n/ for details.
3 # See http://github.com/svenfuchs/rails-i18n/ for details.
4
4
5 "zh-TW":
5 "zh-TW":
6 date:
6 date:
7 formats:
7 formats:
8 # Use the strftime parameters for formats.
8 # Use the strftime parameters for formats.
9 # When no format has been given, it uses default.
9 # When no format has been given, it uses default.
10 # You can provide other formats here if you like!
10 # You can provide other formats here if you like!
11 default: "%Y-%m-%d"
11 default: "%Y-%m-%d"
12 short: "%b%d日"
12 short: "%b%d日"
13 long: "%Y年%b%d日"
13 long: "%Y年%b%d日"
14
14
15 day_names: [星期日, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
15 day_names: [星期日, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
16 abbr_day_names: [, , , , , , ]
16 abbr_day_names: [, , , , , , ]
17
17
18 # Don't forget the nil at the beginning; there's no such thing as a 0th month
18 # Don't forget the nil at the beginning; there's no such thing as a 0th month
19 month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
19 month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
20 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
20 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
21 # 使用於 date_select 與 datime_select.
21 # 使用於 date_select 與 datime_select.
22 order: [ :year, :month, :day ]
22 order: [ :year, :month, :day ]
23
23
24 time:
24 time:
25 formats:
25 formats:
26 default: "%Y年%b%d日 %A %H:%M:%S %Z"
26 default: "%Y年%b%d日 %A %H:%M:%S %Z"
27 time: "%H:%M"
27 time: "%H:%M"
28 short: "%b%d日 %H:%M"
28 short: "%b%d日 %H:%M"
29 long: "%Y年%b%d日 %H:%M"
29 long: "%Y年%b%d日 %H:%M"
30 am: "AM"
30 am: "AM"
31 pm: "PM"
31 pm: "PM"
32
32
33 # 使用於 array.to_sentence.
33 # 使用於 array.to_sentence.
34 support:
34 support:
35 array:
35 array:
36 words_connector: ", "
36 words_connector: ", "
37 two_words_connector: " "
37 two_words_connector: " "
38 last_word_connector: ", "
38 last_word_connector: ", "
39 sentence_connector: "且"
39 sentence_connector: "且"
40 skip_last_comma: false
40 skip_last_comma: false
41
41
42 number:
42 number:
43 # 使用於 number_with_delimiter()
43 # 使用於 number_with_delimiter()
44 # 同時也是 'currency', 'percentage', 'precision', 與 'human' 的預設值
44 # 同時也是 'currency', 'percentage', 'precision', 與 'human' 的預設值
45 format:
45 format:
46 # 設定小數點分隔字元,以使用更高的準確度 (例如: 1.0 / 2.0 == 0.5)
46 # 設定小數點分隔字元,以使用更高的準確度 (例如: 1.0 / 2.0 == 0.5)
47 separator: "."
47 separator: "."
48 # 千分位符號 (例如:一百萬是 1,000,000) (均以三個位數來分組)
48 # 千分位符號 (例如:一百萬是 1,000,000) (均以三個位數來分組)
49 delimiter: ","
49 delimiter: ","
50 # 小數點分隔字元後之精確位數 (數字 1 搭配 2 位精確位數為: 1.00)
50 # 小數點分隔字元後之精確位數 (數字 1 搭配 2 位精確位數為: 1.00)
51 precision: 3
51 precision: 3
52
52
53 # 使用於 number_to_currency()
53 # 使用於 number_to_currency()
54 currency:
54 currency:
55 format:
55 format:
56 # 貨幣符號的位置? %u 是貨幣符號, %n 是數值 (預設值: $5.00)
56 # 貨幣符號的位置? %u 是貨幣符號, %n 是數值 (預設值: $5.00)
57 format: "%u%n"
57 format: "%u%n"
58 unit: "NT$"
58 unit: "NT$"
59 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
59 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
60 separator: "."
60 separator: "."
61 delimiter: ","
61 delimiter: ","
62 precision: 2
62 precision: 2
63
63
64 # 使用於 number_to_percentage()
64 # 使用於 number_to_percentage()
65 percentage:
65 percentage:
66 format:
66 format:
67 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
67 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
68 # separator:
68 # separator:
69 delimiter: ""
69 delimiter: ""
70 # precision:
70 # precision:
71
71
72 # 使用於 number_to_precision()
72 # 使用於 number_to_precision()
73 precision:
73 precision:
74 format:
74 format:
75 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
75 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
76 # separator:
76 # separator:
77 delimiter: ""
77 delimiter: ""
78 # precision:
78 # precision:
79
79
80 # 使用於 number_to_human_size()
80 # 使用於 number_to_human_size()
81 human:
81 human:
82 format:
82 format:
83 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
83 # 下列三個選項設定, 若有設定值將會取代 number.format 成為預設值
84 # separator:
84 # separator:
85 delimiter: ""
85 delimiter: ""
86 precision: 1
86 precision: 1
87 # 儲存單位輸出格式.
87 # 儲存單位輸出格式.
88 # %u 是儲存單位, %n 是數值 (預設值: 2 MB)
88 # %u 是儲存單位, %n 是數值 (預設值: 2 MB)
89 storage_units:
89 storage_units:
90 format: "%n %u"
90 format: "%n %u"
91 units:
91 units:
92 byte:
92 byte:
93 one: "位元組 (B)"
93 one: "位元組 (B)"
94 other: "位元組 (B)"
94 other: "位元組 (B)"
95 kb: "KB"
95 kb: "KB"
96 mb: "MB"
96 mb: "MB"
97 gb: "GB"
97 gb: "GB"
98 tb: "TB"
98 tb: "TB"
99
99
100 # 使用於 distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
100 # 使用於 distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
101 datetime:
101 datetime:
102 distance_in_words:
102 distance_in_words:
103 half_a_minute: "半分鐘"
103 half_a_minute: "半分鐘"
104 less_than_x_seconds:
104 less_than_x_seconds:
105 one: "小於 1 秒"
105 one: "小於 1 秒"
106 other: "小於 {{count}} 秒"
106 other: "小於 {{count}} 秒"
107 x_seconds:
107 x_seconds:
108 one: "1 秒"
108 one: "1 秒"
109 other: "{{count}} 秒"
109 other: "{{count}} 秒"
110 less_than_x_minutes:
110 less_than_x_minutes:
111 one: "小於 1 分鐘"
111 one: "小於 1 分鐘"
112 other: "小於 {{count}} 分鐘"
112 other: "小於 {{count}} 分鐘"
113 x_minutes:
113 x_minutes:
114 one: "1 分鐘"
114 one: "1 分鐘"
115 other: "{{count}} 分鐘"
115 other: "{{count}} 分鐘"
116 about_x_hours:
116 about_x_hours:
117 one: "約 1 小時"
117 one: "約 1 小時"
118 other: "約 {{count}} 小時"
118 other: "約 {{count}} 小時"
119 x_days:
119 x_days:
120 one: "1 天"
120 one: "1 天"
121 other: "{{count}} 天"
121 other: "{{count}} 天"
122 about_x_months:
122 about_x_months:
123 one: "約 1 個月"
123 one: "約 1 個月"
124 other: "約 {{count}} 個月"
124 other: "約 {{count}} 個月"
125 x_months:
125 x_months:
126 one: "1 個月"
126 one: "1 個月"
127 other: "{{count}} 個月"
127 other: "{{count}} 個月"
128 about_x_years:
128 about_x_years:
129 one: "約 1 年"
129 one: "約 1 年"
130 other: "約 {{count}} 年"
130 other: "約 {{count}} 年"
131 over_x_years:
131 over_x_years:
132 one: "超過 1 年"
132 one: "超過 1 年"
133 other: "超過 {{count}} 年"
133 other: "超過 {{count}} 年"
134 prompts:
134 prompts:
135 year: "年"
135 year: "年"
136 month: "月"
136 month: "月"
137 day: "日"
137 day: "日"
138 hour: "時"
138 hour: "時"
139 minute: "分"
139 minute: "分"
140 second: "秒"
140 second: "秒"
141
141
142 activerecord:
142 activerecord:
143 errors:
143 errors:
144 template:
144 template:
145 header:
145 header:
146 one: "有 1 個錯誤發生使得「{{model}}」無法被儲存。"
146 one: "有 1 個錯誤發生使得「{{model}}」無法被儲存。"
147 other: "有 {{count}} 個錯誤發生使得「{{model}}」無法被儲存。"
147 other: "有 {{count}} 個錯誤發生使得「{{model}}」無法被儲存。"
148 # The variable :count is also available
148 # The variable :count is also available
149 body: "下面所列欄位有問題:"
149 body: "下面所列欄位有問題:"
150 # The values :model, :attribute and :value are always available for interpolation
150 # The values :model, :attribute and :value are always available for interpolation
151 # The value :count is available when applicable. Can be used for pluralization.
151 # The value :count is available when applicable. Can be used for pluralization.
152 messages:
152 messages:
153 inclusion: "沒有包含在列表中"
153 inclusion: "沒有包含在列表中"
154 exclusion: "是被保留的"
154 exclusion: "是被保留的"
155 invalid: "是無效的"
155 invalid: "是無效的"
156 confirmation: "不符合確認值"
156 confirmation: "不符合確認值"
157 accepted: "必须是可被接受的"
157 accepted: "必须是可被接受的"
158 empty: "不能留空"
158 empty: "不能留空"
159 blank: "不能是空白字元"
159 blank: "不能是空白字元"
160 too_long: "過長(最長是 {{count}} 個字)"
160 too_long: "過長(最長是 {{count}} 個字)"
161 too_short: "過短(最短是 {{count}} 個字)"
161 too_short: "過短(最短是 {{count}} 個字)"
162 wrong_length: "字數錯誤(必須是 {{count}} 個字)"
162 wrong_length: "字數錯誤(必須是 {{count}} 個字)"
163 taken: "已經被使用"
163 taken: "已經被使用"
164 not_a_number: "不是數字"
164 not_a_number: "不是數字"
165 greater_than: "必須大於 {{count}}"
165 greater_than: "必須大於 {{count}}"
166 greater_than_or_equal_to: "必須大於或等於 {{count}}"
166 greater_than_or_equal_to: "必須大於或等於 {{count}}"
167 equal_to: "必須等於 {{count}}"
167 equal_to: "必須等於 {{count}}"
168 less_than: "必須小於 {{count}}"
168 less_than: "必須小於 {{count}}"
169 less_than_or_equal_to: "必須小於或等於 {{count}}"
169 less_than_or_equal_to: "必須小於或等於 {{count}}"
170 odd: "必須是奇數"
170 odd: "必須是奇數"
171 even: "必須是偶數"
171 even: "必須是偶數"
172 # Append your own errors here or at the model/attributes scope.
172 # Append your own errors here or at the model/attributes scope.
173 greater_than_start_date: "必須在起始日期之後"
173 greater_than_start_date: "必須在起始日期之後"
174 not_same_project: "不屬於同一個專案"
174 not_same_project: "不屬於同一個專案"
175 circular_dependency: "這個關聯會導致環狀相依"
175 circular_dependency: "這個關聯會導致環狀相依"
176
176
177 # You can define own errors for models or model attributes.
177 # You can define own errors for models or model attributes.
178 # The values :model, :attribute and :value are always available for interpolation.
178 # The values :model, :attribute and :value are always available for interpolation.
179 #
179 #
180 # For example,
180 # For example,
181 # models:
181 # models:
182 # user:
182 # user:
183 # blank: "This is a custom blank message for {{model}}: {{attribute}}"
183 # blank: "This is a custom blank message for {{model}}: {{attribute}}"
184 # attributes:
184 # attributes:
185 # login:
185 # login:
186 # blank: "This is a custom blank message for User login"
186 # blank: "This is a custom blank message for User login"
187 # Will define custom blank validation message for User model and
187 # Will define custom blank validation message for User model and
188 # custom blank validation message for login attribute of User model.
188 # custom blank validation message for login attribute of User model.
189 #models:
189 #models:
190
190
191 # Translate model names. Used in Model.human_name().
191 # Translate model names. Used in Model.human_name().
192 #models:
192 #models:
193 # For example,
193 # For example,
194 # user: "Dude"
194 # user: "Dude"
195 # will translate User model name to "Dude"
195 # will translate User model name to "Dude"
196
196
197 # Translate model attribute names. Used in Model.human_attribute_name(attribute).
197 # Translate model attribute names. Used in Model.human_attribute_name(attribute).
198 #attributes:
198 #attributes:
199 # For example,
199 # For example,
200 # user:
200 # user:
201 # login: "Handle"
201 # login: "Handle"
202 # will translate User attribute "login" as "Handle"
202 # will translate User attribute "login" as "Handle"
203
203
204 actionview_instancetag_blank_option: 請選擇
204 actionview_instancetag_blank_option: 請選擇
205
205
206 general_text_No: '否'
206 general_text_No: '否'
207 general_text_Yes: '是'
207 general_text_Yes: '是'
208 general_text_no: '否'
208 general_text_no: '否'
209 general_text_yes: '是'
209 general_text_yes: '是'
210 general_lang_name: 'Traditional Chinese (繁體中文)'
210 general_lang_name: 'Traditional Chinese (繁體中文)'
211 general_csv_separator: ','
211 general_csv_separator: ','
212 general_csv_decimal_separator: '.'
212 general_csv_decimal_separator: '.'
213 general_csv_encoding: Big5
213 general_csv_encoding: Big5
214 general_pdf_encoding: Big5
214 general_pdf_encoding: Big5
215 general_first_day_of_week: '7'
215 general_first_day_of_week: '7'
216
216
217 notice_account_updated: 帳戶更新資訊已儲存
217 notice_account_updated: 帳戶更新資訊已儲存
218 notice_account_invalid_creditentials: 帳戶或密碼不正確
218 notice_account_invalid_creditentials: 帳戶或密碼不正確
219 notice_account_password_updated: 帳戶新密碼已儲存
219 notice_account_password_updated: 帳戶新密碼已儲存
220 notice_account_wrong_password: 密碼不正確
220 notice_account_wrong_password: 密碼不正確
221 notice_account_register_done: 帳號已建立成功。欲啟用您的帳號,請點擊系統確認信函中的啟用連結。
221 notice_account_register_done: 帳號已建立成功。欲啟用您的帳號,請點擊系統確認信函中的啟用連結。
222 notice_account_unknown_email: 未知的使用者
222 notice_account_unknown_email: 未知的使用者
223 notice_can_t_change_password: 這個帳號使用外部認證方式,無法變更其密碼。
223 notice_can_t_change_password: 這個帳號使用外部認證方式,無法變更其密碼。
224 notice_account_lost_email_sent: 包含選擇新密碼指示的電子郵件,已經寄出給您。
224 notice_account_lost_email_sent: 包含選擇新密碼指示的電子郵件,已經寄出給您。
225 notice_account_activated: 您的帳號已經啟用,可用它登入系統。
225 notice_account_activated: 您的帳號已經啟用,可用它登入系統。
226 notice_successful_create: 建立成功
226 notice_successful_create: 建立成功
227 notice_successful_update: 更新成功
227 notice_successful_update: 更新成功
228 notice_successful_delete: 刪除成功
228 notice_successful_delete: 刪除成功
229 notice_successful_connection: 連線成功
229 notice_successful_connection: 連線成功
230 notice_file_not_found: 您想要存取的頁面已經不存在或被搬移至其他位置。
230 notice_file_not_found: 您想要存取的頁面已經不存在或被搬移至其他位置。
231 notice_locking_conflict: 資料已被其他使用者更新。
231 notice_locking_conflict: 資料已被其他使用者更新。
232 notice_not_authorized: 你未被授權存取此頁面。
232 notice_not_authorized: 你未被授權存取此頁面。
233 notice_email_sent: "郵件已經成功寄送至以下收件者: {{value}}"
233 notice_email_sent: "郵件已經成功寄送至以下收件者: {{value}}"
234 notice_email_error: "寄送郵件的過程中發生錯誤 ({{value}})"
234 notice_email_error: "寄送郵件的過程中發生錯誤 ({{value}})"
235 notice_feeds_access_key_reseted: 您的 RSS 存取鍵已被重新設定。
235 notice_feeds_access_key_reseted: 您的 RSS 存取鍵已被重新設定。
236 notice_failed_to_save_issues: " {{count}} 個項目儲存失敗 (總共選取 {{total}} 個項目): {{ids}}."
236 notice_failed_to_save_issues: " {{count}} 個項目儲存失敗 (總共選取 {{total}} 個項目): {{ids}}."
237 notice_no_issue_selected: "未選擇任何項目!請勾選您想要編輯的項目。"
237 notice_no_issue_selected: "未選擇任何項目!請勾選您想要編輯的項目。"
238 notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。"
238 notice_account_pending: "您的帳號已經建立,正在等待管理員的審核。"
239 notice_default_data_loaded: 預設組態已載入成功。
239 notice_default_data_loaded: 預設組態已載入成功。
240 notice_unable_delete_version: 無法刪除版本。
240 notice_unable_delete_version: 無法刪除版本。
241
241
242 error_can_t_load_default_data: "無法載入預設組態: {{value}}"
242 error_can_t_load_default_data: "無法載入預設組態: {{value}}"
243 error_scm_not_found: SCM 儲存庫中找不到這個專案或版本。
243 error_scm_not_found: SCM 儲存庫中找不到這個專案或版本。
244 error_scm_command_failed: "嘗試存取儲存庫時發生錯誤: {{value}}"
244 error_scm_command_failed: "嘗試存取儲存庫時發生錯誤: {{value}}"
245 error_scm_annotate: "SCM 儲存庫中無此項目或此項目無法被加註。"
245 error_scm_annotate: "SCM 儲存庫中無此項目或此項目無法被加註。"
246 error_issue_not_found_in_project: '該項目不存在或不屬於此專案'
246 error_issue_not_found_in_project: '該項目不存在或不屬於此專案'
247 error_no_tracker_in_project: '此專案尚未指定追蹤標籤。請檢查專案的設定資訊。'
247 error_no_tracker_in_project: '此專案尚未指定追蹤標籤。請檢查專案的設定資訊。'
248 error_no_default_issue_status: '尚未定義項目狀態的預設值。請您前往「網站管理」->「項目狀態清單」頁面,檢查相關組態設定。'
248 error_no_default_issue_status: '尚未定義項目狀態的預設值。請您前往「網站管理」->「項目狀態清單」頁面,檢查相關組態設定。'
249
249
250 warning_attachments_not_saved: "{{count}} 個附加檔案無法儲存。"
250 warning_attachments_not_saved: "{{count}} 個附加檔案無法儲存。"
251
251
252 mail_subject_lost_password: 您的 Redmine 網站密碼
252 mail_subject_lost_password: 您的 Redmine 網站密碼
253 mail_body_lost_password: '欲變更您的 Redmine 網站密碼, 請點選以下鏈結:'
253 mail_body_lost_password: '欲變更您的 Redmine 網站密碼, 請點選以下鏈結:'
254 mail_subject_register: 啟用您的 Redmine 帳號
254 mail_subject_register: 啟用您的 Redmine 帳號
255 mail_body_register: '欲啟用您的 Redmine 帳號, 請點選以下鏈結:'
255 mail_body_register: '欲啟用您的 Redmine 帳號, 請點選以下鏈結:'
256 mail_body_account_information_external: "您可以使用 {{value}} 帳號登入 Redmine 網站。"
256 mail_body_account_information_external: "您可以使用 {{value}} 帳號登入 Redmine 網站。"
257 mail_body_account_information: 您的 Redmine 帳號資訊
257 mail_body_account_information: 您的 Redmine 帳號資訊
258 mail_subject_account_activation_request: Redmine 帳號啟用需求通知
258 mail_subject_account_activation_request: Redmine 帳號啟用需求通知
259 mail_body_account_activation_request: "有位新用戶 ({{value}}) 已經完成註冊,正等候您的審核:"
259 mail_body_account_activation_request: "有位新用戶 ({{value}}) 已經完成註冊,正等候您的審核:"
260 mail_subject_reminder: "您有 {{count}} 個項目即將到期"
260 mail_subject_reminder: "您有 {{count}} 個項目即將到期"
261 mail_body_reminder: "{{count}} 個指派給您的項目,將於 {{days}} 天之內到期:"
261 mail_body_reminder: "{{count}} 個指派給您的項目,將於 {{days}} 天之內到期:"
262 mail_subject_wiki_content_added: "'{{page}}' wiki 頁面已被新增"
262 mail_subject_wiki_content_added: "'{{page}}' wiki 頁面已被新增"
263 mail_body_wiki_content_added: "The '{{page}}' wiki 頁面已被 {{author}} 新增。"
263 mail_body_wiki_content_added: "The '{{page}}' wiki 頁面已被 {{author}} 新增。"
264 mail_subject_wiki_content_updated: "'{{page}}' wiki 頁面已被更新"
264 mail_subject_wiki_content_updated: "'{{page}}' wiki 頁面已被更新"
265 mail_body_wiki_content_updated: "The '{{page}}' wiki 頁面已被 {{author}} 更新。"
265 mail_body_wiki_content_updated: "The '{{page}}' wiki 頁面已被 {{author}} 更新。"
266
266
267 gui_validation_error: 1 個錯誤
267 gui_validation_error: 1 個錯誤
268 gui_validation_error_plural: "{{count}} 個錯誤"
268 gui_validation_error_plural: "{{count}} 個錯誤"
269
269
270 field_name: 名稱
270 field_name: 名稱
271 field_description: 概述
271 field_description: 概述
272 field_summary: 摘要
272 field_summary: 摘要
273 field_is_required: 必填
273 field_is_required: 必填
274 field_firstname: 名字
274 field_firstname: 名字
275 field_lastname: 姓氏
275 field_lastname: 姓氏
276 field_mail: 電子郵件
276 field_mail: 電子郵件
277 field_filename: 檔案名稱
277 field_filename: 檔案名稱
278 field_filesize: 大小
278 field_filesize: 大小
279 field_downloads: 下載次數
279 field_downloads: 下載次數
280 field_author: 作者
280 field_author: 作者
281 field_created_on: 建立日期
281 field_created_on: 建立日期
282 field_updated_on: 更新
282 field_updated_on: 更新
283 field_field_format: 格式
283 field_field_format: 格式
284 field_is_for_all: 給全部的專案
284 field_is_for_all: 給全部的專案
285 field_possible_values: 可能值
285 field_possible_values: 可能值
286 field_regexp: 正規表示式
286 field_regexp: 正規表示式
287 field_min_length: 最小長度
287 field_min_length: 最小長度
288 field_max_length: 最大長度
288 field_max_length: 最大長度
289 field_value:
289 field_value:
290 field_category: 分類
290 field_category: 分類
291 field_title: 標題
291 field_title: 標題
292 field_project: 專案
292 field_project: 專案
293 field_issue: 項目
293 field_issue: 項目
294 field_status: 狀態
294 field_status: 狀態
295 field_notes: 筆記
295 field_notes: 筆記
296 field_is_closed: 項目結束
296 field_is_closed: 項目結束
297 field_is_default: 預設值
297 field_is_default: 預設值
298 field_tracker: 追蹤標籤
298 field_tracker: 追蹤標籤
299 field_subject: 主旨
299 field_subject: 主旨
300 field_due_date: 完成日期
300 field_due_date: 完成日期
301 field_assigned_to: 分派給
301 field_assigned_to: 分派給
302 field_priority: 優先權
302 field_priority: 優先權
303 field_fixed_version: 版本
303 field_fixed_version: 版本
304 field_user: 用戶
304 field_user: 用戶
305 field_role: 角色
305 field_role: 角色
306 field_homepage: 網站首頁
306 field_homepage: 網站首頁
307 field_is_public: 公開
307 field_is_public: 公開
308 field_parent: 父專案
308 field_parent: 父專案
309 field_is_in_chlog: 項目顯示於變更記錄中
309 field_is_in_chlog: 項目顯示於變更記錄中
310 field_is_in_roadmap: 項目顯示於版本藍圖中
310 field_is_in_roadmap: 項目顯示於版本藍圖中
311 field_login: 帳戶名稱
311 field_login: 帳戶名稱
312 field_mail_notification: 電子郵件提醒選項
312 field_mail_notification: 電子郵件提醒選項
313 field_admin: 管理者
313 field_admin: 管理者
314 field_last_login_on: 最近連線日期
314 field_last_login_on: 最近連線日期
315 field_language: 語系
315 field_language: 語系
316 field_effective_date: 日期
316 field_effective_date: 日期
317 field_password: 目前密碼
317 field_password: 目前密碼
318 field_new_password: 新密碼
318 field_new_password: 新密碼
319 field_password_confirmation: 確認新密碼
319 field_password_confirmation: 確認新密碼
320 field_version: 版本
320 field_version: 版本
321 field_type: Type
321 field_type: Type
322 field_host: Host
322 field_host: Host
323 field_port: 連接埠
323 field_port: 連接埠
324 field_account: 帳戶
324 field_account: 帳戶
325 field_base_dn: Base DN
325 field_base_dn: Base DN
326 field_attr_login: 登入屬性
326 field_attr_login: 登入屬性
327 field_attr_firstname: 名字屬性
327 field_attr_firstname: 名字屬性
328 field_attr_lastname: 姓氏屬性
328 field_attr_lastname: 姓氏屬性
329 field_attr_mail: 電子郵件信箱屬性
329 field_attr_mail: 電子郵件信箱屬性
330 field_onthefly: 即時建立使用者
330 field_onthefly: 即時建立使用者
331 field_start_date: 開始日期
331 field_start_date: 開始日期
332 field_done_ratio: 完成百分比
332 field_done_ratio: 完成百分比
333 field_auth_source: 認證模式
333 field_auth_source: 認證模式
334 field_hide_mail: 隱藏我的電子郵件
334 field_hide_mail: 隱藏我的電子郵件
335 field_comments: 註解
335 field_comments: 註解
336 field_url: 網址
336 field_url: 網址
337 field_start_page: 首頁
337 field_start_page: 首頁
338 field_subproject: 子專案
338 field_subproject: 子專案
339 field_hours: 小時
339 field_hours: 小時
340 field_activity: 活動
340 field_activity: 活動
341 field_spent_on: 日期
341 field_spent_on: 日期
342 field_identifier: 代碼
342 field_identifier: 代碼
343 field_is_filter: 用來作為過濾器
343 field_is_filter: 用來作為過濾器
344 field_issue_to: 相關項目
344 field_issue_to: 相關項目
345 field_delay: 逾期
345 field_delay: 逾期
346 field_assignable: 項目可被分派至此角色
346 field_assignable: 項目可被分派至此角色
347 field_redirect_existing_links: 重新導向現有連結
347 field_redirect_existing_links: 重新導向現有連結
348 field_estimated_hours: 預估工時
348 field_estimated_hours: 預估工時
349 field_column_names: 欄位
349 field_column_names: 欄位
350 field_time_zone: 時區
350 field_time_zone: 時區
351 field_searchable: 可用做搜尋條件
351 field_searchable: 可用做搜尋條件
352 field_default_value: 預設值
352 field_default_value: 預設值
353 field_comments_sorting: 註解排序
353 field_comments_sorting: 註解排序
354 field_parent_title: 父頁面
354 field_parent_title: 父頁面
355 field_editable: 可編輯
355 field_editable: 可編輯
356 field_watcher: 觀察者
356 field_watcher: 觀察者
357 field_identity_url: OpenID 網址
357 field_identity_url: OpenID 網址
358 field_content: 內容
358 field_content: 內容
359 field_group_by: 結果分組方式
359 field_group_by: 結果分組方式
360
360
361 setting_app_title: 標題
361 setting_app_title: 標題
362 setting_app_subtitle: 副標題
362 setting_app_subtitle: 副標題
363 setting_welcome_text: 歡迎詞
363 setting_welcome_text: 歡迎詞
364 setting_default_language: 預設語系
364 setting_default_language: 預設語系
365 setting_login_required: 需要驗證
365 setting_login_required: 需要驗證
366 setting_self_registration: 註冊選項
366 setting_self_registration: 註冊選項
367 setting_attachment_max_size: 附件大小限制
367 setting_attachment_max_size: 附件大小限制
368 setting_issues_export_limit: 項目匯出限制
368 setting_issues_export_limit: 項目匯出限制
369 setting_mail_from: 寄件者電子郵件
369 setting_mail_from: 寄件者電子郵件
370 setting_bcc_recipients: 使用密件副本 (BCC)
370 setting_bcc_recipients: 使用密件副本 (BCC)
371 setting_plain_text_mail: 純文字郵件 (不含 HTML)
371 setting_plain_text_mail: 純文字郵件 (不含 HTML)
372 setting_host_name: 主機名稱
372 setting_host_name: 主機名稱
373 setting_text_formatting: 文字格式
373 setting_text_formatting: 文字格式
374 setting_wiki_compression: 壓縮 Wiki 歷史文章
374 setting_wiki_compression: 壓縮 Wiki 歷史文章
375 setting_feeds_limit: RSS 新聞限制
375 setting_feeds_limit: RSS 新聞限制
376 setting_autofetch_changesets: 自動取得送交版次
376 setting_autofetch_changesets: 自動取得送交版次
377 setting_default_projects_public: 新建立之專案預設為「公開」
377 setting_default_projects_public: 新建立之專案預設為「公開」
378 setting_sys_api_enabled: 啟用管理版本庫之網頁服務 (Web Service)
378 setting_sys_api_enabled: 啟用管理版本庫之網頁服務 (Web Service)
379 setting_commit_ref_keywords: 送交用於參照項目之關鍵字
379 setting_commit_ref_keywords: 送交用於參照項目之關鍵字
380 setting_commit_fix_keywords: 送交用於修正項目之關鍵字
380 setting_commit_fix_keywords: 送交用於修正項目之關鍵字
381 setting_autologin: 自動登入
381 setting_autologin: 自動登入
382 setting_date_format: 日期格式
382 setting_date_format: 日期格式
383 setting_time_format: 時間格式
383 setting_time_format: 時間格式
384 setting_cross_project_issue_relations: 允許關聯至其它專案的項目
384 setting_cross_project_issue_relations: 允許關聯至其它專案的項目
385 setting_issue_list_default_columns: 預設顯示於項目清單的欄位
385 setting_issue_list_default_columns: 預設顯示於項目清單的欄位
386 setting_repositories_encodings: 版本庫編碼
386 setting_repositories_encodings: 版本庫編碼
387 setting_commit_logs_encoding: 送交訊息編碼
387 setting_commit_logs_encoding: 送交訊息編碼
388 setting_emails_footer: 電子郵件附帶說明
388 setting_emails_footer: 電子郵件附帶說明
389 setting_protocol: 協定
389 setting_protocol: 協定
390 setting_per_page_options: 每頁顯示個數選項
390 setting_per_page_options: 每頁顯示個數選項
391 setting_user_format: 使用者顯示格式
391 setting_user_format: 使用者顯示格式
392 setting_activity_days_default: 專案活動顯示天數
392 setting_activity_days_default: 專案活動顯示天數
393 setting_display_subprojects_issues: 預設於父專案中顯示子專案的項目
393 setting_display_subprojects_issues: 預設於父專案中顯示子專案的項目
394 setting_enabled_scm: 啟用的 SCM
394 setting_enabled_scm: 啟用的 SCM
395 setting_mail_handler_api_enabled: 啟用處理傳入電子郵件的服務
395 setting_mail_handler_api_enabled: 啟用處理傳入電子郵件的服務
396 setting_mail_handler_api_key: API 金鑰
396 setting_mail_handler_api_key: API 金鑰
397 setting_sequential_project_identifiers: 循序產生專案識別碼
397 setting_sequential_project_identifiers: 循序產生專案識別碼
398 setting_gravatar_enabled: 啟用 Gravatar 全球認證大頭像
398 setting_gravatar_enabled: 啟用 Gravatar 全球認證大頭像
399 setting_diff_max_lines_displayed: 差異顯示行數之最大值
399 setting_diff_max_lines_displayed: 差異顯示行數之最大值
400 setting_file_max_size_displayed: 檔案內容顯示大小之最大值
400 setting_file_max_size_displayed: 檔案內容顯示大小之最大值
401 setting_repository_log_display_limit: 版次顯示數目之最大值
401 setting_repository_log_display_limit: 版次顯示數目之最大值
402 setting_openid: 允許使用 OpenID 登入與註冊
402 setting_openid: 允許使用 OpenID 登入與註冊
403 setting_password_min_length: 密碼最小長度
403 setting_password_min_length: 密碼最小長度
404 setting_new_project_user_role_id: 管理者以外之用戶建立新專案時,將被指派的角色
404 setting_new_project_user_role_id: 管理者以外之用戶建立新專案時,將被指派的角色
405
405
406 permission_add_project: 建立專案
406 permission_add_project: 建立專案
407 permission_edit_project: 編輯專案
407 permission_edit_project: 編輯專案
408 permission_select_project_modules: 選擇專案模組
408 permission_select_project_modules: 選擇專案模組
409 permission_manage_members: 管理成員
409 permission_manage_members: 管理成員
410 permission_manage_versions: 管理版本
410 permission_manage_versions: 管理版本
411 permission_manage_categories: 管理項目分類
411 permission_manage_categories: 管理項目分類
412 permission_add_issues: 新增項目
412 permission_add_issues: 新增項目
413 permission_edit_issues: 編輯項目
413 permission_edit_issues: 編輯項目
414 permission_manage_issue_relations: 管理項目關聯
414 permission_manage_issue_relations: 管理項目關聯
415 permission_add_issue_notes: 新增筆記
415 permission_add_issue_notes: 新增筆記
416 permission_edit_issue_notes: 編輯筆記
416 permission_edit_issue_notes: 編輯筆記
417 permission_edit_own_issue_notes: 編輯自己的筆記
417 permission_edit_own_issue_notes: 編輯自己的筆記
418 permission_move_issues: 搬移項目
418 permission_move_issues: 搬移項目
419 permission_delete_issues: 刪除項目
419 permission_delete_issues: 刪除項目
420 permission_manage_public_queries: 管理公開查詢
420 permission_manage_public_queries: 管理公開查詢
421 permission_save_queries: 儲存查詢
421 permission_save_queries: 儲存查詢
422 permission_view_gantt: 檢視甘特圖
422 permission_view_gantt: 檢視甘特圖
423 permission_view_calendar: 檢視日曆
423 permission_view_calendar: 檢視日曆
424 permission_view_issue_watchers: 檢視觀察者清單
424 permission_view_issue_watchers: 檢視觀察者清單
425 permission_add_issue_watchers: 增加觀察者
425 permission_add_issue_watchers: 增加觀察者
426 permission_log_time: 紀錄耗用工時
426 permission_log_time: 紀錄耗用工時
427 permission_view_time_entries: 檢視耗用工時
427 permission_view_time_entries: 檢視耗用工時
428 permission_edit_time_entries: 編輯工時紀錄
428 permission_edit_time_entries: 編輯工時紀錄
429 permission_edit_own_time_entries: 編輯自己的工時記錄
429 permission_edit_own_time_entries: 編輯自己的工時記錄
430 permission_manage_news: 管理新聞
430 permission_manage_news: 管理新聞
431 permission_comment_news: 註解新聞
431 permission_comment_news: 註解新聞
432 permission_manage_documents: 管理文件
432 permission_manage_documents: 管理文件
433 permission_view_documents: 檢視文件
433 permission_view_documents: 檢視文件
434 permission_manage_files: 管理檔案
434 permission_manage_files: 管理檔案
435 permission_view_files: 檢視檔案
435 permission_view_files: 檢視檔案
436 permission_manage_wiki: 管理 wiki
436 permission_manage_wiki: 管理 wiki
437 permission_rename_wiki_pages: 重新命名 wiki 頁面
437 permission_rename_wiki_pages: 重新命名 wiki 頁面
438 permission_delete_wiki_pages: 刪除 wiki 頁面
438 permission_delete_wiki_pages: 刪除 wiki 頁面
439 permission_view_wiki_pages: 檢視 wiki
439 permission_view_wiki_pages: 檢視 wiki
440 permission_view_wiki_edits: 檢視 wiki 歷史
440 permission_view_wiki_edits: 檢視 wiki 歷史
441 permission_edit_wiki_pages: 編輯 wiki 頁面
441 permission_edit_wiki_pages: 編輯 wiki 頁面
442 permission_delete_wiki_pages_attachments: 刪除附件
442 permission_delete_wiki_pages_attachments: 刪除附件
443 permission_protect_wiki_pages: 專案 wiki 頁面
443 permission_protect_wiki_pages: 專案 wiki 頁面
444 permission_manage_repository: 管理版本庫
444 permission_manage_repository: 管理版本庫
445 permission_browse_repository: 瀏覽版本庫
445 permission_browse_repository: 瀏覽版本庫
446 permission_view_changesets: 檢視變更集
446 permission_view_changesets: 檢視變更集
447 permission_commit_access: 存取送交之變更
447 permission_commit_access: 存取送交之變更
448 permission_manage_boards: 管理討論版
448 permission_manage_boards: 管理討論版
449 permission_view_messages: 檢視訊息
449 permission_view_messages: 檢視訊息
450 permission_add_messages: 新增訊息
450 permission_add_messages: 新增訊息
451 permission_edit_messages: 編輯訊息
451 permission_edit_messages: 編輯訊息
452 permission_edit_own_messages: 編輯自己的訊息
452 permission_edit_own_messages: 編輯自己的訊息
453 permission_delete_messages: 刪除訊息
453 permission_delete_messages: 刪除訊息
454 permission_delete_own_messages: 刪除自己的訊息
454 permission_delete_own_messages: 刪除自己的訊息
455
455
456 project_module_issue_tracking: 項目追蹤
456 project_module_issue_tracking: 項目追蹤
457 project_module_time_tracking: 工時追蹤
457 project_module_time_tracking: 工時追蹤
458 project_module_news: 新聞
458 project_module_news: 新聞
459 project_module_documents: 文件
459 project_module_documents: 文件
460 project_module_files: 檔案
460 project_module_files: 檔案
461 project_module_wiki: Wiki
461 project_module_wiki: Wiki
462 project_module_repository: 版本控管
462 project_module_repository: 版本控管
463 project_module_boards: 討論區
463 project_module_boards: 討論區
464
464
465 label_user: 用戶
465 label_user: 用戶
466 label_user_plural: 用戶清單
466 label_user_plural: 用戶清單
467 label_user_new: 建立新用戶
467 label_user_new: 建立新用戶
468 label_project: 專案
468 label_project: 專案
469 label_project_new: 建立新專案
469 label_project_new: 建立新專案
470 label_project_plural: 專案清單
470 label_project_plural: 專案清單
471 label_x_projects:
471 label_x_projects:
472 zero: 無專案
472 zero: 無專案
473 one: 1 個專案
473 one: 1 個專案
474 other: "{{count}} 個專案"
474 other: "{{count}} 個專案"
475 label_project_all: 全部的專案
475 label_project_all: 全部的專案
476 label_project_latest: 最近的專案
476 label_project_latest: 最近的專案
477 label_issue: 項目
477 label_issue: 項目
478 label_issue_new: 建立新項目
478 label_issue_new: 建立新項目
479 label_issue_plural: 項目清單
479 label_issue_plural: 項目清單
480 label_issue_view_all: 檢視全部的項目
480 label_issue_view_all: 檢視全部的項目
481 label_issues_by: "項目按 {{value}} 分組顯示"
481 label_issues_by: "項目按 {{value}} 分組顯示"
482 label_issue_added: 項目已新增
482 label_issue_added: 項目已新增
483 label_issue_updated: 項目已更新
483 label_issue_updated: 項目已更新
484 label_document: 文件
484 label_document: 文件
485 label_document_new: 建立新文件
485 label_document_new: 建立新文件
486 label_document_plural: 文件
486 label_document_plural: 文件
487 label_document_added: 文件已新增
487 label_document_added: 文件已新增
488 label_role: 角色
488 label_role: 角色
489 label_role_plural: 角色
489 label_role_plural: 角色
490 label_role_new: 建立新角色
490 label_role_new: 建立新角色
491 label_role_and_permissions: 角色與權限
491 label_role_and_permissions: 角色與權限
492 label_member: 成員
492 label_member: 成員
493 label_member_new: 建立新成員
493 label_member_new: 建立新成員
494 label_member_plural: 成員
494 label_member_plural: 成員
495 label_tracker: 追蹤標籤
495 label_tracker: 追蹤標籤
496 label_tracker_plural: 追蹤標籤清單
496 label_tracker_plural: 追蹤標籤清單
497 label_tracker_new: 建立新的追蹤標籤
497 label_tracker_new: 建立新的追蹤標籤
498 label_workflow: 流程
498 label_workflow: 流程
499 label_issue_status: 項目狀態
499 label_issue_status: 項目狀態
500 label_issue_status_plural: 項目狀態清單
500 label_issue_status_plural: 項目狀態清單
501 label_issue_status_new: 建立新狀態
501 label_issue_status_new: 建立新狀態
502 label_issue_category: 項目分類
502 label_issue_category: 項目分類
503 label_issue_category_plural: 項目分類清單
503 label_issue_category_plural: 項目分類清單
504 label_issue_category_new: 建立新分類
504 label_issue_category_new: 建立新分類
505 label_custom_field: 自訂欄位
505 label_custom_field: 自訂欄位
506 label_custom_field_plural: 自訂欄位清單
506 label_custom_field_plural: 自訂欄位清單
507 label_custom_field_new: 建立新自訂欄位
507 label_custom_field_new: 建立新自訂欄位
508 label_enumerations: 列舉值清單
508 label_enumerations: 列舉值清單
509 label_enumeration_new: 建立新列舉值
509 label_enumeration_new: 建立新列舉值
510 label_information: 資訊
510 label_information: 資訊
511 label_information_plural: 資訊
511 label_information_plural: 資訊
512 label_please_login: 請先登入
512 label_please_login: 請先登入
513 label_register: 註冊
513 label_register: 註冊
514 label_login_with_open_id_option: 或使用 OpenID 登入
514 label_login_with_open_id_option: 或使用 OpenID 登入
515 label_password_lost: 遺失密碼
515 label_password_lost: 遺失密碼
516 label_home: 網站首頁
516 label_home: 網站首頁
517 label_my_page: 帳戶首頁
517 label_my_page: 帳戶首頁
518 label_my_account: 我的帳戶
518 label_my_account: 我的帳戶
519 label_my_projects: 我的專案
519 label_my_projects: 我的專案
520 label_administration: 網站管理
520 label_administration: 網站管理
521 label_login: 登入
521 label_login: 登入
522 label_logout: 登出
522 label_logout: 登出
523 label_help: 說明
523 label_help: 說明
524 label_reported_issues: 我通報的項目
524 label_reported_issues: 我通報的項目
525 label_assigned_to_me_issues: 分派給我的項目
525 label_assigned_to_me_issues: 分派給我的項目
526 label_last_login: 最近一次連線
526 label_last_login: 最近一次連線
527 label_registered_on: 註冊於
527 label_registered_on: 註冊於
528 label_activity: 活動
528 label_activity: 活動
529 label_overall_activity: 檢視整體活動
529 label_overall_activity: 檢視整體活動
530 label_user_activity: "{{value}} 的活動"
530 label_user_activity: "{{value}} 的活動"
531 label_new: 建立新的...
531 label_new: 建立新的...
532 label_logged_as: 目前登入
532 label_logged_as: 目前登入
533 label_environment: 環境
533 label_environment: 環境
534 label_authentication: 認證
534 label_authentication: 認證
535 label_auth_source: 認證模式
535 label_auth_source: 認證模式
536 label_auth_source_new: 建立新認證模式
536 label_auth_source_new: 建立新認證模式
537 label_auth_source_plural: 認證模式清單
537 label_auth_source_plural: 認證模式清單
538 label_subproject_plural: 子專案
538 label_subproject_plural: 子專案
539 label_and_its_subprojects: "{{value}} 與其子專案"
539 label_and_its_subprojects: "{{value}} 與其子專案"
540 label_min_max_length: 最小 - 最大 長度
540 label_min_max_length: 最小 - 最大 長度
541 label_list: 清單
541 label_list: 清單
542 label_date: 日期
542 label_date: 日期
543 label_integer: 整數
543 label_integer: 整數
544 label_float: 浮點數
544 label_float: 浮點數
545 label_boolean: 布林
545 label_boolean: 布林
546 label_string: 文字
546 label_string: 文字
547 label_text: 長文字
547 label_text: 長文字
548 label_attribute: 屬性
548 label_attribute: 屬性
549 label_attribute_plural: 屬性
549 label_attribute_plural: 屬性
550 label_download: "{{count}} 個下載"
550 label_download: "{{count}} 個下載"
551 label_download_plural: "{{count}} 個下載"
551 label_download_plural: "{{count}} 個下載"
552 label_no_data: 沒有任何資料可供顯示
552 label_no_data: 沒有任何資料可供顯示
553 label_change_status: 變更狀態
553 label_change_status: 變更狀態
554 label_history: 歷史
554 label_history: 歷史
555 label_attachment: 檔案
555 label_attachment: 檔案
556 label_attachment_new: 建立新檔案
556 label_attachment_new: 建立新檔案
557 label_attachment_delete: 刪除檔案
557 label_attachment_delete: 刪除檔案
558 label_attachment_plural: 檔案
558 label_attachment_plural: 檔案
559 label_file_added: 檔案已新增
559 label_file_added: 檔案已新增
560 label_report: 報告
560 label_report: 報告
561 label_report_plural: 報告
561 label_report_plural: 報告
562 label_news: 新聞
562 label_news: 新聞
563 label_news_new: 建立新聞
563 label_news_new: 建立新聞
564 label_news_plural: 新聞
564 label_news_plural: 新聞
565 label_news_latest: 最近新聞
565 label_news_latest: 最近新聞
566 label_news_view_all: 檢視全部的新聞
566 label_news_view_all: 檢視全部的新聞
567 label_news_added: 新聞已新增
567 label_news_added: 新聞已新增
568 label_change_log: 變更記錄
568 label_change_log: 變更記錄
569 label_settings: 設定
569 label_settings: 設定
570 label_overview: 概觀
570 label_overview: 概觀
571 label_version: 版本
571 label_version: 版本
572 label_version_new: 建立新版本
572 label_version_new: 建立新版本
573 label_version_plural: 版本
573 label_version_plural: 版本
574 label_confirmation: 確認
574 label_confirmation: 確認
575 label_export_to: 匯出至
575 label_export_to: 匯出至
576 label_read: 讀取...
576 label_read: 讀取...
577 label_public_projects: 公開專案
577 label_public_projects: 公開專案
578 label_open_issues: 進行中
578 label_open_issues: 進行中
579 label_open_issues_plural: 進行中
579 label_open_issues_plural: 進行中
580 label_closed_issues: 已結束
580 label_closed_issues: 已結束
581 label_closed_issues_plural: 已結束
581 label_closed_issues_plural: 已結束
582 label_x_open_issues_abbr_on_total:
582 label_x_open_issues_abbr_on_total:
583 zero: 0 進行中 / 共 {{total}}
583 zero: 0 進行中 / 共 {{total}}
584 one: 1 進行中 / 共 {{total}}
584 one: 1 進行中 / 共 {{total}}
585 other: "{{count}} 進行中 / {{total}}"
585 other: "{{count}} 進行中 / {{total}}"
586 label_x_open_issues_abbr:
586 label_x_open_issues_abbr:
587 zero: 0 進行中
587 zero: 0 進行中
588 one: 1 進行中
588 one: 1 進行中
589 other: "{{count}} 進行中"
589 other: "{{count}} 進行中"
590 label_x_closed_issues_abbr:
590 label_x_closed_issues_abbr:
591 zero: 0 已結束
591 zero: 0 已結束
592 one: 1 已結束
592 one: 1 已結束
593 other: "{{count}} 已結束"
593 other: "{{count}} 已結束"
594 label_total: 總計
594 label_total: 總計
595 label_permissions: 權限
595 label_permissions: 權限
596 label_current_status: 目前狀態
596 label_current_status: 目前狀態
597 label_new_statuses_allowed: 可變更至以下狀態
597 label_new_statuses_allowed: 可變更至以下狀態
598 label_all: 全部
598 label_all: 全部
599 label_none: 空值
599 label_none: 空值
600 label_nobody: 無名
600 label_nobody: 無名
601 label_next: 下一頁
601 label_next: 下一頁
602 label_previous: 上一頁
602 label_previous: 上一頁
603 label_used_by: Used by
603 label_used_by: Used by
604 label_details: 明細
604 label_details: 明細
605 label_add_note: 加入一個新筆記
605 label_add_note: 加入一個新筆記
606 label_per_page: 每頁
606 label_per_page: 每頁
607 label_calendar: 日曆
607 label_calendar: 日曆
608 label_months_from: 個月, 開始月份
608 label_months_from: 個月, 開始月份
609 label_gantt: 甘特圖
609 label_gantt: 甘特圖
610 label_internal: 內部
610 label_internal: 內部
611 label_last_changes: "最近 {{count}} 個變更"
611 label_last_changes: "最近 {{count}} 個變更"
612 label_change_view_all: 檢視全部的變更
612 label_change_view_all: 檢視全部的變更
613 label_personalize_page: 自訂版面
613 label_personalize_page: 自訂版面
614 label_comment: 註解
614 label_comment: 註解
615 label_comment_plural: 註解
615 label_comment_plural: 註解
616 label_x_comments:
616 label_x_comments:
617 zero: 無註解
617 zero: 無註解
618 one: 1 個註解
618 one: 1 個註解
619 other: "{{count}} 個註解"
619 other: "{{count}} 個註解"
620 label_comment_add: 加入新註解
620 label_comment_add: 加入新註解
621 label_comment_added: 新註解已加入
621 label_comment_added: 新註解已加入
622 label_comment_delete: 刪除註解
622 label_comment_delete: 刪除註解
623 label_query: 自訂查詢
623 label_query: 自訂查詢
624 label_query_plural: 自訂查詢
624 label_query_plural: 自訂查詢
625 label_query_new: 建立新查詢
625 label_query_new: 建立新查詢
626 label_filter_add: 加入新篩選條件
626 label_filter_add: 加入新篩選條件
627 label_filter_plural: 篩選條件
627 label_filter_plural: 篩選條件
628 label_equals: 等於
628 label_equals: 等於
629 label_not_equals: 不等於
629 label_not_equals: 不等於
630 label_in_less_than: 在小於
630 label_in_less_than: 在小於
631 label_in_more_than: 在大於
631 label_in_more_than: 在大於
632 label_greater_or_equal: "大於等於 (>=)"
632 label_greater_or_equal: "大於等於 (>=)"
633 label_less_or_equal: "小於等於 (<=)"
633 label_less_or_equal: "小於等於 (<=)"
634 label_in:
634 label_in:
635 label_today: 今天
635 label_today: 今天
636 label_all_time: 全部
636 label_all_time: 全部
637 label_yesterday: 昨天
637 label_yesterday: 昨天
638 label_this_week: 本週
638 label_this_week: 本週
639 label_last_week: 上週
639 label_last_week: 上週
640 label_last_n_days: "過去 {{count}} 天"
640 label_last_n_days: "過去 {{count}} 天"
641 label_this_month: 這個月
641 label_this_month: 這個月
642 label_last_month: 上個月
642 label_last_month: 上個月
643 label_this_year: 今年
643 label_this_year: 今年
644 label_date_range: 日期區間
644 label_date_range: 日期區間
645 label_less_than_ago: 小於幾天之前
645 label_less_than_ago: 小於幾天之前
646 label_more_than_ago: 大於幾天之前
646 label_more_than_ago: 大於幾天之前
647 label_ago: 天以前
647 label_ago: 天以前
648 label_contains: 包含
648 label_contains: 包含
649 label_not_contains: 不包含
649 label_not_contains: 不包含
650 label_day_plural:
650 label_day_plural:
651 label_repository: 版本控管
651 label_repository: 版本控管
652 label_repository_plural: 版本控管
652 label_repository_plural: 版本控管
653 label_browse: 瀏覽
653 label_browse: 瀏覽
654 label_modification: "{{count}} 變更"
654 label_modification: "{{count}} 變更"
655 label_modification_plural: "{{count}} 變更"
655 label_modification_plural: "{{count}} 變更"
656 label_branch: 分支
656 label_branch: 分支
657 label_tag: 標籤
657 label_tag: 標籤
658 label_revision: 版次
658 label_revision: 版次
659 label_revision_plural: 版次清單
659 label_revision_plural: 版次清單
660 label_associated_revisions: 相關版次
660 label_associated_revisions: 相關版次
661 label_added: 已新增
661 label_added: 已新增
662 label_modified: 已修改
662 label_modified: 已修改
663 label_copied: 已複製
663 label_copied: 已複製
664 label_renamed: 已重新命名
664 label_renamed: 已重新命名
665 label_deleted: 已刪除
665 label_deleted: 已刪除
666 label_latest_revision: 最新版次
666 label_latest_revision: 最新版次
667 label_latest_revision_plural: 最近版次清單
667 label_latest_revision_plural: 最近版次清單
668 label_view_revisions: 檢視版次清單
668 label_view_revisions: 檢視版次清單
669 label_view_all_revisions: 檢視全部的版次清單
669 label_view_all_revisions: 檢視全部的版次清單
670 label_max_size: 最大長度
670 label_max_size: 最大長度
671 label_sort_highest: 移動至開頭
671 label_sort_highest: 移動至開頭
672 label_sort_higher: 往上移動
672 label_sort_higher: 往上移動
673 label_sort_lower: 往下移動
673 label_sort_lower: 往下移動
674 label_sort_lowest: 移動至結尾
674 label_sort_lowest: 移動至結尾
675 label_roadmap: 版本藍圖
675 label_roadmap: 版本藍圖
676 label_roadmap_due_in: 倒數天數:
676 label_roadmap_due_in: 倒數天數:
677 label_roadmap_overdue: "{{value}} 逾期"
677 label_roadmap_overdue: "{{value}} 逾期"
678 label_roadmap_no_issues: 此版本尚未包含任何項目
678 label_roadmap_no_issues: 此版本尚未包含任何項目
679 label_search: 搜尋
679 label_search: 搜尋
680 label_result_plural: 結果
680 label_result_plural: 結果
681 label_all_words: 包含全部的字詞
681 label_all_words: 包含全部的字詞
682 label_wiki: Wiki
682 label_wiki: Wiki
683 label_wiki_edit: Wiki 編輯
683 label_wiki_edit: Wiki 編輯
684 label_wiki_edit_plural: Wiki 編輯
684 label_wiki_edit_plural: Wiki 編輯
685 label_wiki_page: Wiki 網頁
685 label_wiki_page: Wiki 網頁
686 label_wiki_page_plural: Wiki 網頁
686 label_wiki_page_plural: Wiki 網頁
687 label_index_by_title: 依標題索引
687 label_index_by_title: 依標題索引
688 label_index_by_date: 依日期索引
688 label_index_by_date: 依日期索引
689 label_current_version: 現行版本
689 label_current_version: 現行版本
690 label_preview: 預覽
690 label_preview: 預覽
691 label_feed_plural: Feeds
691 label_feed_plural: Feeds
692 label_changes_details: 所有變更的明細
692 label_changes_details: 所有變更的明細
693 label_issue_tracking: 項目追蹤
693 label_issue_tracking: 項目追蹤
694 label_spent_time: 耗用工時
694 label_spent_time: 耗用工時
695 label_f_hour: "{{value}} 小時"
695 label_f_hour: "{{value}} 小時"
696 label_f_hour_plural: "{{value}} 小時"
696 label_f_hour_plural: "{{value}} 小時"
697 label_time_tracking: 工時追蹤
697 label_time_tracking: 工時追蹤
698 label_change_plural: 變更
698 label_change_plural: 變更
699 label_statistics: 統計資訊
699 label_statistics: 統計資訊
700 label_commits_per_month: 依月份統計送交次數
700 label_commits_per_month: 依月份統計送交次數
701 label_commits_per_author: 依作者統計送交次數
701 label_commits_per_author: 依作者統計送交次數
702 label_view_diff: 檢視差異
702 label_view_diff: 檢視差異
703 label_diff_inline: 直列
703 label_diff_inline: 直列
704 label_diff_side_by_side: 並排
704 label_diff_side_by_side: 並排
705 label_options: 選項清單
705 label_options: 選項清單
706 label_copy_workflow_from: 從以下追蹤標籤複製工作流程
706 label_copy_workflow_from: 從以下追蹤標籤複製工作流程
707 label_permissions_report: 權限報表
707 label_permissions_report: 權限報表
708 label_watched_issues: 觀察中的項目清單
708 label_watched_issues: 觀察中的項目清單
709 label_related_issues: 相關的項目清單
709 label_related_issues: 相關的項目清單
710 label_applied_status: 已套用狀態
710 label_applied_status: 已套用狀態
711 label_loading: 載入中...
711 label_loading: 載入中...
712 label_relation_new: 建立新關聯
712 label_relation_new: 建立新關聯
713 label_relation_delete: 刪除關聯
713 label_relation_delete: 刪除關聯
714 label_relates_to: 關聯至
714 label_relates_to: 關聯至
715 label_duplicates: 已重複
715 label_duplicates: 已重複
716 label_duplicated_by: 與後面所列項目重複
716 label_duplicated_by: 與後面所列項目重複
717 label_blocks: 阻擋
717 label_blocks: 阻擋
718 label_blocked_by: 被阻擋
718 label_blocked_by: 被阻擋
719 label_precedes: 優先於
719 label_precedes: 優先於
720 label_follows: 跟隨於
720 label_follows: 跟隨於
721 label_end_to_start: 結束─開始
721 label_end_to_start: 結束─開始
722 label_end_to_end: 結束─結束
722 label_end_to_end: 結束─結束
723 label_start_to_start: 開始─開始
723 label_start_to_start: 開始─開始
724 label_start_to_end: 開始─結束
724 label_start_to_end: 開始─結束
725 label_stay_logged_in: 維持已登入狀態
725 label_stay_logged_in: 維持已登入狀態
726 label_disabled: 關閉
726 label_disabled: 關閉
727 label_show_completed_versions: 顯示已完成的版本
727 label_show_completed_versions: 顯示已完成的版本
728 label_me: 我自己
728 label_me: 我自己
729 label_board: 論壇
729 label_board: 論壇
730 label_board_new: 建立新論壇
730 label_board_new: 建立新論壇
731 label_board_plural: 論壇
731 label_board_plural: 論壇
732 label_topic_plural: 討論主題
732 label_topic_plural: 討論主題
733 label_message_plural: 訊息
733 label_message_plural: 訊息
734 label_message_last: 上一封訊息
734 label_message_last: 上一封訊息
735 label_message_new: 建立新訊息
735 label_message_new: 建立新訊息
736 label_message_posted: 訊息已新增
736 label_message_posted: 訊息已新增
737 label_reply_plural: 回應
737 label_reply_plural: 回應
738 label_send_information: 寄送帳戶資訊電子郵件給用戶
738 label_send_information: 寄送帳戶資訊電子郵件給用戶
739 label_year:
739 label_year:
740 label_month:
740 label_month:
741 label_week:
741 label_week:
742 label_date_from: 開始
742 label_date_from: 開始
743 label_date_to: 結束
743 label_date_to: 結束
744 label_language_based: 依用戶之語系決定
744 label_language_based: 依用戶之語系決定
745 label_sort_by: "按 {{value}} 排序"
745 label_sort_by: "按 {{value}} 排序"
746 label_send_test_email: 寄送測試郵件
746 label_send_test_email: 寄送測試郵件
747 label_feeds_access_key_created_on: "RSS 存取鍵建立於 {{value}} 之前"
747 label_feeds_access_key_created_on: "RSS 存取鍵建立於 {{value}} 之前"
748 label_module_plural: 模組
748 label_module_plural: 模組
749 label_added_time_by: "是由 {{author}} {{age}} 前加入"
749 label_added_time_by: "是由 {{author}} {{age}} 前加入"
750 label_updated_time_by: "是由 {{author}} {{age}} 前更新"
750 label_updated_time_by: "是由 {{author}} {{age}} 前更新"
751 label_updated_time: "於 {{value}} 前更新"
751 label_updated_time: "於 {{value}} 前更新"
752 label_jump_to_a_project: 選擇欲前往的專案...
752 label_jump_to_a_project: 選擇欲前往的專案...
753 label_file_plural: 檔案清單
753 label_file_plural: 檔案清單
754 label_changeset_plural: 變更集清單
754 label_changeset_plural: 變更集清單
755 label_default_columns: 預設欄位清單
755 label_default_columns: 預設欄位清單
756 label_no_change_option: (維持不變)
756 label_no_change_option: (維持不變)
757 label_bulk_edit_selected_issues: 編輯選定的項目
757 label_bulk_edit_selected_issues: 編輯選定的項目
758 label_theme: 畫面主題
758 label_theme: 畫面主題
759 label_default: 預設
759 label_default: 預設
760 label_search_titles_only: 僅搜尋標題
760 label_search_titles_only: 僅搜尋標題
761 label_user_mail_option_all: "提醒與我的專案有關的全部事件"
761 label_user_mail_option_all: "提醒與我的專案有關的全部事件"
762 label_user_mail_option_selected: "只提醒我所選擇專案中的事件..."
762 label_user_mail_option_selected: "只提醒我所選擇專案中的事件..."
763 label_user_mail_option_none: "只提醒我觀察中或參與中的事件"
763 label_user_mail_option_none: "只提醒我觀察中或參與中的事件"
764 label_user_mail_no_self_notified: "不提醒我自己所做的變更"
764 label_user_mail_no_self_notified: "不提醒我自己所做的變更"
765 label_registration_activation_by_email: 透過電子郵件啟用帳戶
765 label_registration_activation_by_email: 透過電子郵件啟用帳戶
766 label_registration_manual_activation: 手動啟用帳戶
766 label_registration_manual_activation: 手動啟用帳戶
767 label_registration_automatic_activation: 自動啟用帳戶
767 label_registration_automatic_activation: 自動啟用帳戶
768 label_display_per_page: "每頁顯示: {{value}} 個"
768 label_display_per_page: "每頁顯示: {{value}} 個"
769 label_age: 年齡
769 label_age: 年齡
770 label_change_properties: 變更屬性
770 label_change_properties: 變更屬性
771 label_general: 一般
771 label_general: 一般
772 label_more: 更多 »
772 label_more: 更多 »
773 label_scm: 版本控管
773 label_scm: 版本控管
774 label_plugins: 附加元件
774 label_plugins: 附加元件
775 label_ldap_authentication: LDAP 認證
775 label_ldap_authentication: LDAP 認證
776 label_downloads_abbr: 下載
776 label_downloads_abbr: 下載
777 label_optional_description: 額外的說明
777 label_optional_description: 額外的說明
778 label_add_another_file: 增加其他檔案
778 label_add_another_file: 增加其他檔案
779 label_preferences: 偏好選項
779 label_preferences: 偏好選項
780 label_chronological_order: 以時間由遠至近排序
780 label_chronological_order: 以時間由遠至近排序
781 label_reverse_chronological_order: 以時間由近至遠排序
781 label_reverse_chronological_order: 以時間由近至遠排序
782 label_planning: 計劃表
782 label_planning: 計劃表
783 label_incoming_emails: 傳入的電子郵件
783 label_incoming_emails: 傳入的電子郵件
784 label_generate_key: 產生金鑰
784 label_generate_key: 產生金鑰
785 label_issue_watchers: 觀察者
785 label_issue_watchers: 觀察者
786 label_example: 範例
786 label_example: 範例
787 label_display: 顯示
787 label_display: 顯示
788 label_sort: 排序
788 label_sort: 排序
789 label_ascending: 遞增排序
789 label_ascending: 遞增排序
790 label_descending: 遞減排序
790 label_descending: 遞減排序
791 label_date_from_to: 起 {{start}} 迄 {{end}}
791 label_date_from_to: 起 {{start}} 迄 {{end}}
792 label_wiki_content_added: Wiki 頁面已新增
792 label_wiki_content_added: Wiki 頁面已新增
793 label_wiki_content_updated: Wiki 頁面已更新
793 label_wiki_content_updated: Wiki 頁面已更新
794 label_group: 群組
794 label_group: 群組
795 label_group_plural: 群組清單
795 label_group_plural: 群組清單
796 label_group_new: 建立新群組
796 label_group_new: 建立新群組
797 label_time_entry_plural: 耗用工時
797 label_time_entry_plural: 耗用工時
798
798
799 button_login: 登入
799 button_login: 登入
800 button_submit: 送出
800 button_submit: 送出
801 button_save: 儲存
801 button_save: 儲存
802 button_check_all: 全選
802 button_check_all: 全選
803 button_uncheck_all: 全不選
803 button_uncheck_all: 全不選
804 button_delete: 刪除
804 button_delete: 刪除
805 button_create: 建立
805 button_create: 建立
806 button_create_and_continue: 繼續建立
806 button_create_and_continue: 繼續建立
807 button_test: 測試
807 button_test: 測試
808 button_edit: 編輯
808 button_edit: 編輯
809 button_add: 新增
809 button_add: 新增
810 button_change: 修改
810 button_change: 修改
811 button_apply: 套用
811 button_apply: 套用
812 button_clear: 清除
812 button_clear: 清除
813 button_lock: 鎖定
813 button_lock: 鎖定
814 button_unlock: 解除鎖定
814 button_unlock: 解除鎖定
815 button_download: 下載
815 button_download: 下載
816 button_list: 清單
816 button_list: 清單
817 button_view: 檢視
817 button_view: 檢視
818 button_move: 移動
818 button_move: 移動
819 button_back: 返回
819 button_back: 返回
820 button_cancel: 取消
820 button_cancel: 取消
821 button_activate: 啟用
821 button_activate: 啟用
822 button_sort: 排序
822 button_sort: 排序
823 button_log_time: 記錄時間
823 button_log_time: 記錄時間
824 button_rollback: 還原至此版本
824 button_rollback: 還原至此版本
825 button_watch: 觀察
825 button_watch: 觀察
826 button_unwatch: 取消觀察
826 button_unwatch: 取消觀察
827 button_reply: 回應
827 button_reply: 回應
828 button_archive: 歸檔
828 button_archive: 歸檔
829 button_unarchive: 取消歸檔
829 button_unarchive: 取消歸檔
830 button_reset: 回復
830 button_reset: 回復
831 button_rename: 重新命名
831 button_rename: 重新命名
832 button_change_password: 變更密碼
832 button_change_password: 變更密碼
833 button_copy: 複製
833 button_copy: 複製
834 button_annotate: 註解
834 button_annotate: 註解
835 button_update: 更新
835 button_update: 更新
836 button_configure: 設定
836 button_configure: 設定
837 button_quote: 引用
837 button_quote: 引用
838
838
839 status_active: 活動中
839 status_active: 活動中
840 status_registered: 註冊完成
840 status_registered: 註冊完成
841 status_locked: 鎖定中
841 status_locked: 鎖定中
842
842
843 text_select_mail_notifications: 選擇欲寄送提醒通知郵件之動作
843 text_select_mail_notifications: 選擇欲寄送提醒通知郵件之動作
844 text_regexp_info: eg. ^[A-Z0-9]+$
844 text_regexp_info: eg. ^[A-Z0-9]+$
845 text_min_max_length_info: 0 代表「不限制」
845 text_min_max_length_info: 0 代表「不限制」
846 text_project_destroy_confirmation: 您確定要刪除這個專案和其他相關資料?
846 text_project_destroy_confirmation: 您確定要刪除這個專案和其他相關資料?
847 text_subprojects_destroy_warning: "下列子專案: {{value}} 將一併被刪除。"
847 text_subprojects_destroy_warning: "下列子專案: {{value}} 將一併被刪除。"
848 text_workflow_edit: 選擇角色與追蹤標籤以設定其工作流程
848 text_workflow_edit: 選擇角色與追蹤標籤以設定其工作流程
849 text_are_you_sure: 確定執行?
849 text_are_you_sure: 確定執行?
850 text_journal_changed: "{{label}} {{old}} 變更為 {{new}}"
850 text_journal_changed: "{{label}} {{old}} 變更為 {{new}}"
851 text_journal_set_to: "{{label}} 設定為 {{value}}"
851 text_journal_set_to: "{{label}} 設定為 {{value}}"
852 text_journal_deleted: "{{label}} 已刪除 ({{old}})"
852 text_journal_deleted: "{{label}} 已刪除 ({{old}})"
853 text_journal_added: "{{label}} {{value}} 已新增"
853 text_tip_task_begin_day: 今天起始的工作
854 text_tip_task_begin_day: 今天起始的工作
854 text_tip_task_end_day: 今天截止的的工作
855 text_tip_task_end_day: 今天截止的的工作
855 text_tip_task_begin_end_day: 今天起始與截止的工作
856 text_tip_task_begin_end_day: 今天起始與截止的工作
856 text_project_identifier_info: '只允許小寫英文字母(a-z)、阿拉伯數字與連字符號(-)。<br />儲存後,代碼不可再被更改。'
857 text_project_identifier_info: '只允許小寫英文字母(a-z)、阿拉伯數字與連字符號(-)。<br />儲存後,代碼不可再被更改。'
857 text_caracters_maximum: "最多 {{count}} 個字元."
858 text_caracters_maximum: "最多 {{count}} 個字元."
858 text_caracters_minimum: "長度必須大於 {{count}} 個字元."
859 text_caracters_minimum: "長度必須大於 {{count}} 個字元."
859 text_length_between: "長度必須介於 {{min}} {{max}} 個字元之間."
860 text_length_between: "長度必須介於 {{min}} {{max}} 個字元之間."
860 text_tracker_no_workflow: 此追蹤標籤尚未定義工作流程
861 text_tracker_no_workflow: 此追蹤標籤尚未定義工作流程
861 text_unallowed_characters: 不允許的字元
862 text_unallowed_characters: 不允許的字元
862 text_comma_separated: 可輸入多個值 (以逗號分隔).
863 text_comma_separated: 可輸入多個值 (以逗號分隔).
863 text_issues_ref_in_commit_messages: 送交訊息中參照(或修正)項目之關鍵字
864 text_issues_ref_in_commit_messages: 送交訊息中參照(或修正)項目之關鍵字
864 text_issue_added: "項目 {{id}} 已被 {{author}} 通報。"
865 text_issue_added: "項目 {{id}} 已被 {{author}} 通報。"
865 text_issue_updated: "項目 {{id}} 已被 {{author}} 更新。"
866 text_issue_updated: "項目 {{id}} 已被 {{author}} 更新。"
866 text_wiki_destroy_confirmation: 您確定要刪除這個 wiki 和其中的所有內容?
867 text_wiki_destroy_confirmation: 您確定要刪除這個 wiki 和其中的所有內容?
867 text_issue_category_destroy_question: "有 ({{count}}) 個項目被指派到此分類. 請選擇您想要的動作?"
868 text_issue_category_destroy_question: "有 ({{count}}) 個項目被指派到此分類. 請選擇您想要的動作?"
868 text_issue_category_destroy_assignments: 移除這些項目的分類
869 text_issue_category_destroy_assignments: 移除這些項目的分類
869 text_issue_category_reassign_to: 重新指派這些項目至其它分類
870 text_issue_category_reassign_to: 重新指派這些項目至其它分類
870 text_user_mail_option: "對於那些未被選擇的專案,將只會接收到您正在觀察中,或是參與中的項目通知。(「參與中的項目」包含您建立的或是指派給您的項目)"
871 text_user_mail_option: "對於那些未被選擇的專案,將只會接收到您正在觀察中,或是參與中的項目通知。(「參與中的項目」包含您建立的或是指派給您的項目)"
871 text_no_configuration_data: "角色、追蹤器、項目狀態與流程尚未被設定完成。\n強烈建議您先載入預設的設定,然後修改成您想要的設定。"
872 text_no_configuration_data: "角色、追蹤器、項目狀態與流程尚未被設定完成。\n強烈建議您先載入預設的設定,然後修改成您想要的設定。"
872 text_load_default_configuration: 載入預設組態
873 text_load_default_configuration: 載入預設組態
873 text_status_changed_by_changeset: "已套用至變更集 {{value}}."
874 text_status_changed_by_changeset: "已套用至變更集 {{value}}."
874 text_issues_destroy_confirmation: '確定刪除已選擇的項目?'
875 text_issues_destroy_confirmation: '確定刪除已選擇的項目?'
875 text_select_project_modules: '選擇此專案可使用之模組:'
876 text_select_project_modules: '選擇此專案可使用之模組:'
876 text_default_administrator_account_changed: 已變更預設管理員帳號內容
877 text_default_administrator_account_changed: 已變更預設管理員帳號內容
877 text_file_repository_writable: 可寫入附加檔案目錄
878 text_file_repository_writable: 可寫入附加檔案目錄
878 text_plugin_assets_writable: 可寫入附加元件目錄
879 text_plugin_assets_writable: 可寫入附加元件目錄
879 text_rmagick_available: 可使用 RMagick (選配)
880 text_rmagick_available: 可使用 RMagick (選配)
880 text_destroy_time_entries_question: 您即將刪除的項目已報工 {{hours}} 小時. 您的選擇是?
881 text_destroy_time_entries_question: 您即將刪除的項目已報工 {{hours}} 小時. 您的選擇是?
881 text_destroy_time_entries: 刪除已報工的時數
882 text_destroy_time_entries: 刪除已報工的時數
882 text_assign_time_entries_to_project: 指定已報工的時數至專案中
883 text_assign_time_entries_to_project: 指定已報工的時數至專案中
883 text_reassign_time_entries: '重新指定已報工的時數至此項目:'
884 text_reassign_time_entries: '重新指定已報工的時數至此項目:'
884 text_user_wrote: "{{value}} 先前提到:"
885 text_user_wrote: "{{value}} 先前提到:"
885 text_enumeration_destroy_question: "目前有 {{count}} 個物件使用此列舉值。"
886 text_enumeration_destroy_question: "目前有 {{count}} 個物件使用此列舉值。"
886 text_enumeration_category_reassign_to: '重新設定其列舉值為:'
887 text_enumeration_category_reassign_to: '重新設定其列舉值為:'
887 text_email_delivery_not_configured: "您尚未設定電子郵件傳送方式,因此提醒選項已被停用。\n請在 config/email.yml 中設定 SMTP 之後,重新啟動 Redmine,以啟用電子郵件提醒選項。"
888 text_email_delivery_not_configured: "您尚未設定電子郵件傳送方式,因此提醒選項已被停用。\n請在 config/email.yml 中設定 SMTP 之後,重新啟動 Redmine,以啟用電子郵件提醒選項。"
888 text_repository_usernames_mapping: "選擇或更新 Redmine 使用者與版本庫使用者之對應關係。\n版本庫中之使用者帳號或電子郵件信箱,與 Redmine 設定相同者,將自動產生對應關係。"
889 text_repository_usernames_mapping: "選擇或更新 Redmine 使用者與版本庫使用者之對應關係。\n版本庫中之使用者帳號或電子郵件信箱,與 Redmine 設定相同者,將自動產生對應關係。"
889 text_diff_truncated: '... 這份差異已被截短以符合顯示行數之最大值'
890 text_diff_truncated: '... 這份差異已被截短以符合顯示行數之最大值'
890 text_custom_field_possible_values_info: '一列輸入一個值'
891 text_custom_field_possible_values_info: '一列輸入一個值'
891 text_wiki_page_destroy_question: "此頁面包含 {{descendants}} 個子頁面及延伸頁面。 請選擇您想要的動作?"
892 text_wiki_page_destroy_question: "此頁面包含 {{descendants}} 個子頁面及延伸頁面。 請選擇您想要的動作?"
892 text_wiki_page_nullify_children: "保留所有子頁面當作根頁面"
893 text_wiki_page_nullify_children: "保留所有子頁面當作根頁面"
893 text_wiki_page_destroy_children: "刪除所有子頁面及其延伸頁面"
894 text_wiki_page_destroy_children: "刪除所有子頁面及其延伸頁面"
894 text_wiki_page_reassign_children: "重新指定所有的子頁面之父頁面至此頁面"
895 text_wiki_page_reassign_children: "重新指定所有的子頁面之父頁面至此頁面"
895
896
896 default_role_manager: 管理人員
897 default_role_manager: 管理人員
897 default_role_developper: 開發人員
898 default_role_developper: 開發人員
898 default_role_reporter: 報告人員
899 default_role_reporter: 報告人員
899 default_tracker_bug: 臭蟲
900 default_tracker_bug: 臭蟲
900 default_tracker_feature: 功能
901 default_tracker_feature: 功能
901 default_tracker_support: 支援
902 default_tracker_support: 支援
902 default_issue_status_new: 新建立
903 default_issue_status_new: 新建立
903 default_issue_status_assigned: 已指派
904 default_issue_status_assigned: 已指派
904 default_issue_status_resolved: 已解決
905 default_issue_status_resolved: 已解決
905 default_issue_status_feedback: 已回應
906 default_issue_status_feedback: 已回應
906 default_issue_status_closed: 已結束
907 default_issue_status_closed: 已結束
907 default_issue_status_rejected: 已拒絕
908 default_issue_status_rejected: 已拒絕
908 default_doc_category_user: 使用手冊
909 default_doc_category_user: 使用手冊
909 default_doc_category_tech: 技術文件
910 default_doc_category_tech: 技術文件
910 default_priority_low:
911 default_priority_low:
911 default_priority_normal: 正常
912 default_priority_normal: 正常
912 default_priority_high:
913 default_priority_high:
913 default_priority_urgent:
914 default_priority_urgent:
914 default_priority_immediate:
915 default_priority_immediate:
915 default_activity_design: 設計
916 default_activity_design: 設計
916 default_activity_development: 開發
917 default_activity_development: 開發
917
918
918 enumeration_issue_priorities: 項目優先權
919 enumeration_issue_priorities: 項目優先權
919 enumeration_doc_categories: 文件分類
920 enumeration_doc_categories: 文件分類
920 enumeration_activities: 活動 (時間追蹤)
921 enumeration_activities: 活動 (時間追蹤)
921 text_journal_added: "{{label}} {{value}} added"
@@ -1,854 +1,854
1 # Chinese (China) translations for Ruby on Rails
1 # Chinese (China) translations for Ruby on Rails
2 # by tsechingho (http://github.com/tsechingho)
2 # by tsechingho (http://github.com/tsechingho)
3
3
4 zh:
4 zh:
5 date:
5 date:
6 formats:
6 formats:
7 default: "%Y-%m-%d"
7 default: "%Y-%m-%d"
8 short: "%b%d日"
8 short: "%b%d日"
9 long: "%Y年%b%d日"
9 long: "%Y年%b%d日"
10 day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
10 day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
11 abbr_day_names: [, , , , , , ]
11 abbr_day_names: [, , , , , , ]
12 month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
12 month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
13 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
13 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
14 order: [ :year, :month, :day ]
14 order: [ :year, :month, :day ]
15
15
16 time:
16 time:
17 formats:
17 formats:
18 default: "%Y年%b%d日 %A %H:%M:%S"
18 default: "%Y年%b%d日 %A %H:%M:%S"
19 time: "%H:%M"
19 time: "%H:%M"
20 time: "%H:%M"
20 time: "%H:%M"
21 short: "%b%d日 %H:%M"
21 short: "%b%d日 %H:%M"
22 long: "%Y年%b%d日 %H:%M"
22 long: "%Y年%b%d日 %H:%M"
23 am: "上午"
23 am: "上午"
24 pm: "下午"
24 pm: "下午"
25
25
26 datetime:
26 datetime:
27 distance_in_words:
27 distance_in_words:
28 half_a_minute: "半分钟"
28 half_a_minute: "半分钟"
29 less_than_x_seconds:
29 less_than_x_seconds:
30 one: "一秒内"
30 one: "一秒内"
31 other: "少于 {{count}} 秒"
31 other: "少于 {{count}} 秒"
32 x_seconds:
32 x_seconds:
33 one: "一秒"
33 one: "一秒"
34 other: "{{count}} 秒"
34 other: "{{count}} 秒"
35 less_than_x_minutes:
35 less_than_x_minutes:
36 one: "一分钟内"
36 one: "一分钟内"
37 other: "少于 {{count}} 分钟"
37 other: "少于 {{count}} 分钟"
38 x_minutes:
38 x_minutes:
39 one: "一分钟"
39 one: "一分钟"
40 other: "{{count}} 分钟"
40 other: "{{count}} 分钟"
41 about_x_hours:
41 about_x_hours:
42 one: "大约一小时"
42 one: "大约一小时"
43 other: "大约 {{count}} 小时"
43 other: "大约 {{count}} 小时"
44 x_days:
44 x_days:
45 one: "一天"
45 one: "一天"
46 other: "{{count}} 天"
46 other: "{{count}} 天"
47 about_x_months:
47 about_x_months:
48 one: "大约一个月"
48 one: "大约一个月"
49 other: "大约 {{count}} 个月"
49 other: "大约 {{count}} 个月"
50 x_months:
50 x_months:
51 one: "一个月"
51 one: "一个月"
52 other: "{{count}} 个月"
52 other: "{{count}} 个月"
53 about_x_years:
53 about_x_years:
54 one: "大约一年"
54 one: "大约一年"
55 other: "大约 {{count}} 年"
55 other: "大约 {{count}} 年"
56 over_x_years:
56 over_x_years:
57 one: "一年以上"
57 one: "一年以上"
58 other: "{{count}} 年以上"
58 other: "{{count}} 年以上"
59 prompts:
59 prompts:
60 year: "年"
60 year: "年"
61 month: "月"
61 month: "月"
62 day: "日"
62 day: "日"
63 hour: "时"
63 hour: "时"
64 minute: "分"
64 minute: "分"
65 second: "秒"
65 second: "秒"
66
66
67 number:
67 number:
68 format:
68 format:
69 separator: "."
69 separator: "."
70 delimiter: ","
70 delimiter: ","
71 precision: 3
71 precision: 3
72 currency:
72 currency:
73 format:
73 format:
74 format: "%n %u"
74 format: "%n %u"
75 unit: "元"
75 unit: "元"
76 separator: "."
76 separator: "."
77 delimiter: ","
77 delimiter: ","
78 precision: 2
78 precision: 2
79 percentage:
79 percentage:
80 format:
80 format:
81 delimiter: ""
81 delimiter: ""
82 precision:
82 precision:
83 format:
83 format:
84 delimiter: ""
84 delimiter: ""
85 human:
85 human:
86 format:
86 format:
87 delimiter: ""
87 delimiter: ""
88 precision: 1
88 precision: 1
89 storage_units:
89 storage_units:
90 format: "%n %u"
90 format: "%n %u"
91 units:
91 units:
92 byte:
92 byte:
93 one: "Byte"
93 one: "Byte"
94 other: "Bytes"
94 other: "Bytes"
95 kb: "KB"
95 kb: "KB"
96 mb: "MB"
96 mb: "MB"
97 gb: "GB"
97 gb: "GB"
98 tb: "TB"
98 tb: "TB"
99
99
100 support:
100 support:
101 array:
101 array:
102 words_connector: ", "
102 words_connector: ", "
103 two_words_connector: " "
103 two_words_connector: " "
104 last_word_connector: ", "
104 last_word_connector: ", "
105
105
106 activerecord:
106 activerecord:
107 errors:
107 errors:
108 template:
108 template:
109 header:
109 header:
110 one: "有 1 个错误发生导致「{{model}}」无法被保存。"
110 one: "有 1 个错误发生导致「{{model}}」无法被保存。"
111 other: "有 {{count}} 个错误发生导致「{{model}}」无法被保存。"
111 other: "有 {{count}} 个错误发生导致「{{model}}」无法被保存。"
112 body: "如下字段出现错误:"
112 body: "如下字段出现错误:"
113 messages:
113 messages:
114 inclusion: "不包含于列表中"
114 inclusion: "不包含于列表中"
115 exclusion: "是保留关键字"
115 exclusion: "是保留关键字"
116 invalid: "是无效的"
116 invalid: "是无效的"
117 confirmation: "与确认值不匹配"
117 confirmation: "与确认值不匹配"
118 accepted: "必须是可被接受的"
118 accepted: "必须是可被接受的"
119 empty: "不能留空"
119 empty: "不能留空"
120 blank: "不能为空字符"
120 blank: "不能为空字符"
121 too_long: "过长(最长为 {{count}} 个字符)"
121 too_long: "过长(最长为 {{count}} 个字符)"
122 too_short: "过短(最短为 {{count}} 个字符)"
122 too_short: "过短(最短为 {{count}} 个字符)"
123 wrong_length: "长度非法(必须为 {{count}} 个字符)"
123 wrong_length: "长度非法(必须为 {{count}} 个字符)"
124 taken: "已经被使用"
124 taken: "已经被使用"
125 not_a_number: "不是数字"
125 not_a_number: "不是数字"
126 greater_than: "必须大于 {{count}}"
126 greater_than: "必须大于 {{count}}"
127 greater_than_or_equal_to: "必须大于或等于 {{count}}"
127 greater_than_or_equal_to: "必须大于或等于 {{count}}"
128 equal_to: "必须等于 {{count}}"
128 equal_to: "必须等于 {{count}}"
129 less_than: "必须小于 {{count}}"
129 less_than: "必须小于 {{count}}"
130 less_than_or_equal_to: "必须小于或等于 {{count}}"
130 less_than_or_equal_to: "必须小于或等于 {{count}}"
131 odd: "必须为单数"
131 odd: "必须为单数"
132 even: "必须为双数"
132 even: "必须为双数"
133 greater_than_start_date: "必须在起始日期之后"
133 greater_than_start_date: "必须在起始日期之后"
134 not_same_project: "不属于同一个项目"
134 not_same_project: "不属于同一个项目"
135 circular_dependency: "此关联将导致循环依赖"
135 circular_dependency: "此关联将导致循环依赖"
136
136
137 actionview_instancetag_blank_option: 请选择
137 actionview_instancetag_blank_option: 请选择
138
138
139 general_text_No: '否'
139 general_text_No: '否'
140 general_text_Yes: '是'
140 general_text_Yes: '是'
141 general_text_no: '否'
141 general_text_no: '否'
142 general_text_yes: '是'
142 general_text_yes: '是'
143 general_lang_name: 'Simplified Chinese (简体中文)'
143 general_lang_name: 'Simplified Chinese (简体中文)'
144 general_csv_separator: ','
144 general_csv_separator: ','
145 general_csv_decimal_separator: '.'
145 general_csv_decimal_separator: '.'
146 general_csv_encoding: gb18030
146 general_csv_encoding: gb18030
147 general_pdf_encoding: gb18030
147 general_pdf_encoding: gb18030
148 general_first_day_of_week: '7'
148 general_first_day_of_week: '7'
149
149
150 notice_account_updated: 帐号更新成功
150 notice_account_updated: 帐号更新成功
151 notice_account_invalid_creditentials: 无效的用户名或密码
151 notice_account_invalid_creditentials: 无效的用户名或密码
152 notice_account_password_updated: 密码更新成功
152 notice_account_password_updated: 密码更新成功
153 notice_account_wrong_password: 密码错误
153 notice_account_wrong_password: 密码错误
154 notice_account_register_done: 帐号创建成功,请使用注册确认邮件中的链接来激活您的帐号。
154 notice_account_register_done: 帐号创建成功,请使用注册确认邮件中的链接来激活您的帐号。
155 notice_account_unknown_email: 未知用户
155 notice_account_unknown_email: 未知用户
156 notice_can_t_change_password: 该帐号使用了外部认证,因此无法更改密码。
156 notice_can_t_change_password: 该帐号使用了外部认证,因此无法更改密码。
157 notice_account_lost_email_sent: 系统已将引导您设置新密码的邮件发送给您。
157 notice_account_lost_email_sent: 系统已将引导您设置新密码的邮件发送给您。
158 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
158 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
159 notice_successful_create: 创建成功
159 notice_successful_create: 创建成功
160 notice_successful_update: 更新成功
160 notice_successful_update: 更新成功
161 notice_successful_delete: 删除成功
161 notice_successful_delete: 删除成功
162 notice_successful_connection: 连接成功
162 notice_successful_connection: 连接成功
163 notice_file_not_found: 您访问的页面不存在或已被删除。
163 notice_file_not_found: 您访问的页面不存在或已被删除。
164 notice_locking_conflict: 数据已被另一位用户更新
164 notice_locking_conflict: 数据已被另一位用户更新
165 notice_not_authorized: 对不起,您无权访问此页面。
165 notice_not_authorized: 对不起,您无权访问此页面。
166 notice_email_sent: "邮件已成功发送到 {{value}}"
166 notice_email_sent: "邮件已成功发送到 {{value}}"
167 notice_email_error: "发送邮件时发生错误 ({{value}})"
167 notice_email_error: "发送邮件时发生错误 ({{value}})"
168 notice_feeds_access_key_reseted: 您的RSS存取键已被重置。
168 notice_feeds_access_key_reseted: 您的RSS存取键已被重置。
169 notice_failed_to_save_issues: "{{count}} 个问题保存失败(共选择 {{total}} 个问题):{{ids}}."
169 notice_failed_to_save_issues: "{{count}} 个问题保存失败(共选择 {{total}} 个问题):{{ids}}."
170 notice_no_issue_selected: "未选择任何问题!请选择您要编辑的问题。"
170 notice_no_issue_selected: "未选择任何问题!请选择您要编辑的问题。"
171 notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。"
171 notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。"
172 notice_default_data_loaded: 成功载入默认设置。
172 notice_default_data_loaded: 成功载入默认设置。
173 notice_unable_delete_version: 无法删除版本
173 notice_unable_delete_version: 无法删除版本
174
174
175 error_can_t_load_default_data: "无法载入默认设置:{{value}}"
175 error_can_t_load_default_data: "无法载入默认设置:{{value}}"
176 error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。"
176 error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。"
177 error_scm_command_failed: "访问版本库时发生错误:{{value}}"
177 error_scm_command_failed: "访问版本库时发生错误:{{value}}"
178 error_scm_annotate: "该条目不存在或无法追溯。"
178 error_scm_annotate: "该条目不存在或无法追溯。"
179 error_issue_not_found_in_project: '问题不存在或不属于此项目'
179 error_issue_not_found_in_project: '问题不存在或不属于此项目'
180 error_no_tracker_in_project: 该项目未设定跟踪标签,请检查项目配置。
181 error_no_default_issue_status: 未设置默认的问题状态。请检查系统设置("管理" -> "问题状态")。
180
182
181 warning_attachments_not_saved: "{{count}} 个文件保存失败。"
183 warning_attachments_not_saved: "{{count}} 个文件保存失败。"
182
184
183 mail_subject_lost_password: "您的 {{value}} 密码"
185 mail_subject_lost_password: "您的 {{value}} 密码"
184 mail_body_lost_password: '请点击以下链接来修改您的密码:'
186 mail_body_lost_password: '请点击以下链接来修改您的密码:'
185 mail_subject_register: "{{value}}帐号激活"
187 mail_subject_register: "{{value}}帐号激活"
186 mail_body_register: '请点击以下链接来激活您的帐号:'
188 mail_body_register: '请点击以下链接来激活您的帐号:'
187 mail_body_account_information_external: "您可以使用您的 {{value}} 帐号来登录。"
189 mail_body_account_information_external: "您可以使用您的 {{value}} 帐号来登录。"
188 mail_body_account_information: 您的帐号信息
190 mail_body_account_information: 您的帐号信息
189 mail_subject_account_activation_request: "{{value}}帐号激活请求"
191 mail_subject_account_activation_request: "{{value}}帐号激活请求"
190 mail_body_account_activation_request: "新用户({{value}})已完成注册,正在等候您的审核:"
192 mail_body_account_activation_request: "新用户({{value}})已完成注册,正在等候您的审核:"
191 mail_subject_reminder: "{{count}} 个问题需要尽快解决"
193 mail_subject_reminder: "{{count}} 个问题需要尽快解决"
192 mail_body_reminder: "指派给您的 {{count}} 个问题需要在 {{days}} 天内完成:"
194 mail_body_reminder: "指派给您的 {{count}} 个问题需要在 {{days}} 天内完成:"
193 mail_subject_wiki_content_added: "'{{page}}' wiki页面已添加"
195 mail_subject_wiki_content_added: "'{{page}}' wiki页面已添加"
194 mail_body_wiki_content_added: "'{{page}}' wiki页面已由 {{author}} 添加。"
196 mail_body_wiki_content_added: "'{{page}}' wiki页面已由 {{author}} 添加。"
195 mail_subject_wiki_content_updated: "'{{page}}' wiki页面已更新"
197 mail_subject_wiki_content_updated: "'{{page}}' wiki页面已更新"
196 mail_body_wiki_content_updated: "'{{page}}' wiki页面已由 {{author}} 更新。"
198 mail_body_wiki_content_updated: "'{{page}}' wiki页面已由 {{author}} 更新。"
197
199
198 gui_validation_error: 1 个错误
200 gui_validation_error: 1 个错误
199 gui_validation_error_plural: "{{count}} 个错误"
201 gui_validation_error_plural: "{{count}} 个错误"
200
202
201 field_name: 名称
203 field_name: 名称
202 field_description: 描述
204 field_description: 描述
203 field_summary: 摘要
205 field_summary: 摘要
204 field_is_required: 必填
206 field_is_required: 必填
205 field_firstname: 名字
207 field_firstname: 名字
206 field_lastname: 姓氏
208 field_lastname: 姓氏
207 field_mail: 邮件地址
209 field_mail: 邮件地址
208 field_filename: 文件
210 field_filename: 文件
209 field_filesize: 大小
211 field_filesize: 大小
210 field_downloads: 下载次数
212 field_downloads: 下载次数
211 field_author: 作者
213 field_author: 作者
212 field_created_on: 创建于
214 field_created_on: 创建于
213 field_updated_on: 更新于
215 field_updated_on: 更新于
214 field_field_format: 格式
216 field_field_format: 格式
215 field_is_for_all: 用于所有项目
217 field_is_for_all: 用于所有项目
216 field_possible_values: 可能的值
218 field_possible_values: 可能的值
217 field_regexp: 正则表达式
219 field_regexp: 正则表达式
218 field_min_length: 最小长度
220 field_min_length: 最小长度
219 field_max_length: 最大长度
221 field_max_length: 最大长度
220 field_value:
222 field_value:
221 field_category: 类别
223 field_category: 类别
222 field_title: 标题
224 field_title: 标题
223 field_project: 项目
225 field_project: 项目
224 field_issue: 问题
226 field_issue: 问题
225 field_status: 状态
227 field_status: 状态
226 field_notes: 说明
228 field_notes: 说明
227 field_is_closed: 已关闭的问题
229 field_is_closed: 已关闭的问题
228 field_is_default: 默认值
230 field_is_default: 默认值
229 field_tracker: 跟踪
231 field_tracker: 跟踪
230 field_subject: 主题
232 field_subject: 主题
231 field_due_date: 完成日期
233 field_due_date: 完成日期
232 field_assigned_to: 指派给
234 field_assigned_to: 指派给
233 field_priority: 优先级
235 field_priority: 优先级
234 field_fixed_version: 目标版本
236 field_fixed_version: 目标版本
235 field_user: 用户
237 field_user: 用户
236 field_role: 角色
238 field_role: 角色
237 field_homepage: 主页
239 field_homepage: 主页
238 field_is_public: 公开
240 field_is_public: 公开
239 field_parent: 上级项目
241 field_parent: 上级项目
240 field_is_in_chlog: 在更新日志中显示问题
242 field_is_in_chlog: 在更新日志中显示问题
241 field_is_in_roadmap: 在路线图中显示问题
243 field_is_in_roadmap: 在路线图中显示问题
242 field_login: 登录名
244 field_login: 登录名
243 field_mail_notification: 邮件通知
245 field_mail_notification: 邮件通知
244 field_admin: 管理员
246 field_admin: 管理员
245 field_last_login_on: 最后登录
247 field_last_login_on: 最后登录
246 field_language: 语言
248 field_language: 语言
247 field_effective_date: 日期
249 field_effective_date: 日期
248 field_password: 密码
250 field_password: 密码
249 field_new_password: 新密码
251 field_new_password: 新密码
250 field_password_confirmation: 确认
252 field_password_confirmation: 确认
251 field_version: 版本
253 field_version: 版本
252 field_type: 类型
254 field_type: 类型
253 field_host: 主机
255 field_host: 主机
254 field_port: 端口
256 field_port: 端口
255 field_account: 帐号
257 field_account: 帐号
256 field_base_dn: Base DN
258 field_base_dn: Base DN
257 field_attr_login: 登录名属性
259 field_attr_login: 登录名属性
258 field_attr_firstname: 名字属性
260 field_attr_firstname: 名字属性
259 field_attr_lastname: 姓氏属性
261 field_attr_lastname: 姓氏属性
260 field_attr_mail: 邮件属性
262 field_attr_mail: 邮件属性
261 field_onthefly: 即时用户生成
263 field_onthefly: 即时用户生成
262 field_start_date: 开始
264 field_start_date: 开始
263 field_done_ratio: 完成度
265 field_done_ratio: 完成度
264 field_auth_source: 认证模式
266 field_auth_source: 认证模式
265 field_hide_mail: 隐藏我的邮件地址
267 field_hide_mail: 隐藏我的邮件地址
266 field_comments: 注释
268 field_comments: 注释
267 field_url: URL
269 field_url: URL
268 field_start_page: 起始页
270 field_start_page: 起始页
269 field_subproject: 子项目
271 field_subproject: 子项目
270 field_hours: 小时
272 field_hours: 小时
271 field_activity: 活动
273 field_activity: 活动
272 field_spent_on: 日期
274 field_spent_on: 日期
273 field_identifier: 标识
275 field_identifier: 标识
274 field_is_filter: 作为过滤条件
276 field_is_filter: 作为过滤条件
275 field_issue_to: 相关问题
277 field_issue_to: 相关问题
276 field_delay: 延期
278 field_delay: 延期
277 field_assignable: 问题可指派给此角色
279 field_assignable: 问题可指派给此角色
278 field_redirect_existing_links: 重定向到现有链接
280 field_redirect_existing_links: 重定向到现有链接
279 field_estimated_hours: 预期时间
281 field_estimated_hours: 预期时间
280 field_column_names:
282 field_column_names:
281 field_time_zone: 时区
283 field_time_zone: 时区
282 field_searchable: 可用作搜索条件
284 field_searchable: 可用作搜索条件
283 field_default_value: 默认值
285 field_default_value: 默认值
284 field_comments_sorting: 显示注释
286 field_comments_sorting: 显示注释
285 field_parent_title: 上级页面
287 field_parent_title: 上级页面
286 field_editable: 可编辑
288 field_editable: 可编辑
287 field_watcher: 跟踪者
289 field_watcher: 跟踪者
288 field_identity_url: OpenID URL
290 field_identity_url: OpenID URL
289 field_content: 内容
291 field_content: 内容
290 field_group_by: 根据此条件分组
292 field_group_by: 根据此条件分组
291
293
292 setting_app_title: 应用程序标题
294 setting_app_title: 应用程序标题
293 setting_app_subtitle: 应用程序子标题
295 setting_app_subtitle: 应用程序子标题
294 setting_welcome_text: 欢迎文字
296 setting_welcome_text: 欢迎文字
295 setting_default_language: 默认语言
297 setting_default_language: 默认语言
296 setting_login_required: 要求认证
298 setting_login_required: 要求认证
297 setting_self_registration: 允许自注册
299 setting_self_registration: 允许自注册
298 setting_attachment_max_size: 附件大小限制
300 setting_attachment_max_size: 附件大小限制
299 setting_issues_export_limit: 问题输出条目的限制
301 setting_issues_export_limit: 问题输出条目的限制
300 setting_mail_from: 邮件发件人地址
302 setting_mail_from: 邮件发件人地址
301 setting_bcc_recipients: 使用密件抄送 (bcc)
303 setting_bcc_recipients: 使用密件抄送 (bcc)
302 setting_plain_text_mail: 纯文本(无HTML)
304 setting_plain_text_mail: 纯文本(无HTML)
303 setting_host_name: 主机名称
305 setting_host_name: 主机名称
304 setting_text_formatting: 文本格式
306 setting_text_formatting: 文本格式
305 setting_wiki_compression: 压缩Wiki历史文档
307 setting_wiki_compression: 压缩Wiki历史文档
306 setting_feeds_limit: RSS Feed内容条数限制
308 setting_feeds_limit: RSS Feed内容条数限制
307 setting_default_projects_public: 新建项目默认为公开项目
309 setting_default_projects_public: 新建项目默认为公开项目
308 setting_autofetch_changesets: 自动获取程序变更
310 setting_autofetch_changesets: 自动获取程序变更
309 setting_sys_api_enabled: 启用用于版本库管理的Web Service
311 setting_sys_api_enabled: 启用用于版本库管理的Web Service
310 setting_commit_ref_keywords: 用于引用问题的关键字
312 setting_commit_ref_keywords: 用于引用问题的关键字
311 setting_commit_fix_keywords: 用于解决问题的关键字
313 setting_commit_fix_keywords: 用于解决问题的关键字
312 setting_autologin: 自动登录
314 setting_autologin: 自动登录
313 setting_date_format: 日期格式
315 setting_date_format: 日期格式
314 setting_time_format: 时间格式
316 setting_time_format: 时间格式
315 setting_cross_project_issue_relations: 允许不同项目之间的问题关联
317 setting_cross_project_issue_relations: 允许不同项目之间的问题关联
316 setting_issue_list_default_columns: 问题列表中显示的默认列
318 setting_issue_list_default_columns: 问题列表中显示的默认列
317 setting_repositories_encodings: 版本库编码
319 setting_repositories_encodings: 版本库编码
318 setting_commit_logs_encoding: 提交注释的编码
320 setting_commit_logs_encoding: 提交注释的编码
319 setting_emails_footer: 邮件签名
321 setting_emails_footer: 邮件签名
320 setting_protocol: 协议
322 setting_protocol: 协议
321 setting_per_page_options: 每页显示条目个数的设置
323 setting_per_page_options: 每页显示条目个数的设置
322 setting_user_format: 用户显示格式
324 setting_user_format: 用户显示格式
323 setting_activity_days_default: 在项目活动中显示的天数
325 setting_activity_days_default: 在项目活动中显示的天数
324 setting_display_subprojects_issues: 在项目页面上默认显示子项目的问题
326 setting_display_subprojects_issues: 在项目页面上默认显示子项目的问题
325 setting_enabled_scm: 启用 SCM
327 setting_enabled_scm: 启用 SCM
326 setting_mail_handler_api_enabled: 启用用于接收邮件的服务
328 setting_mail_handler_api_enabled: 启用用于接收邮件的服务
327 setting_mail_handler_api_key: API key
329 setting_mail_handler_api_key: API key
328 setting_sequential_project_identifiers: 顺序产生项目标识
330 setting_sequential_project_identifiers: 顺序产生项目标识
329 setting_gravatar_enabled: 使用Gravatar用户头像
331 setting_gravatar_enabled: 使用Gravatar用户头像
330 setting_diff_max_lines_displayed: 查看差别页面上显示的最大行数
332 setting_diff_max_lines_displayed: 查看差别页面上显示的最大行数
331 setting_file_max_size_displayed: 允许直接显示的最大文本文件
333 setting_file_max_size_displayed: 允许直接显示的最大文本文件
332 setting_repository_log_display_limit: 在文件变更记录页面上显示的最大修订版本数量
334 setting_repository_log_display_limit: 在文件变更记录页面上显示的最大修订版本数量
333 setting_openid: 允许使用OpenID登录和注册
335 setting_openid: 允许使用OpenID登录和注册
334 setting_password_min_length: 最短密码长度
336 setting_password_min_length: 最短密码长度
335 setting_new_project_user_role_id: 非管理员用户新建项目时将被赋予的(在该项目中的)角色
337 setting_new_project_user_role_id: 非管理员用户新建项目时将被赋予的(在该项目中的)角色
336
338
337 permission_add_project: 新建项目
339 permission_add_project: 新建项目
338 permission_edit_project: 编辑项目
340 permission_edit_project: 编辑项目
339 permission_select_project_modules: 选择项目模块
341 permission_select_project_modules: 选择项目模块
340 permission_manage_members: 管理成员
342 permission_manage_members: 管理成员
341 permission_manage_versions: 管理版本
343 permission_manage_versions: 管理版本
342 permission_manage_categories: 管理问题类别
344 permission_manage_categories: 管理问题类别
343 permission_add_issues: 新建问题
345 permission_add_issues: 新建问题
344 permission_edit_issues: 更新问题
346 permission_edit_issues: 更新问题
345 permission_manage_issue_relations: 管理问题关联
347 permission_manage_issue_relations: 管理问题关联
346 permission_add_issue_notes: 添加说明
348 permission_add_issue_notes: 添加说明
347 permission_edit_issue_notes: 编辑说明
349 permission_edit_issue_notes: 编辑说明
348 permission_edit_own_issue_notes: 编辑自己的说明
350 permission_edit_own_issue_notes: 编辑自己的说明
349 permission_move_issues: 移动问题
351 permission_move_issues: 移动问题
350 permission_delete_issues: 删除问题
352 permission_delete_issues: 删除问题
351 permission_manage_public_queries: 管理公开的查询
353 permission_manage_public_queries: 管理公开的查询
352 permission_save_queries: 保存查询
354 permission_save_queries: 保存查询
353 permission_view_gantt: 查看甘特图
355 permission_view_gantt: 查看甘特图
354 permission_view_calendar: 查看日历
356 permission_view_calendar: 查看日历
355 permission_view_issue_watchers: 查看跟踪者列表
357 permission_view_issue_watchers: 查看跟踪者列表
356 permission_add_issue_watchers: 添加跟踪者
358 permission_add_issue_watchers: 添加跟踪者
357 permission_log_time: 登记工时
359 permission_log_time: 登记工时
358 permission_view_time_entries: 查看耗时
360 permission_view_time_entries: 查看耗时
359 permission_edit_time_entries: 编辑耗时
361 permission_edit_time_entries: 编辑耗时
360 permission_edit_own_time_entries: 编辑自己的耗时
362 permission_edit_own_time_entries: 编辑自己的耗时
361 permission_manage_news: 管理新闻
363 permission_manage_news: 管理新闻
362 permission_comment_news: 为新闻添加评论
364 permission_comment_news: 为新闻添加评论
363 permission_manage_documents: 管理文档
365 permission_manage_documents: 管理文档
364 permission_view_documents: 查看文档
366 permission_view_documents: 查看文档
365 permission_manage_files: 管理文件
367 permission_manage_files: 管理文件
366 permission_view_files: 查看文件
368 permission_view_files: 查看文件
367 permission_manage_wiki: 管理Wiki
369 permission_manage_wiki: 管理Wiki
368 permission_rename_wiki_pages: 重命名Wiki页面
370 permission_rename_wiki_pages: 重命名Wiki页面
369 permission_delete_wiki_pages: 删除Wiki页面
371 permission_delete_wiki_pages: 删除Wiki页面
370 permission_view_wiki_pages: 查看Wiki
372 permission_view_wiki_pages: 查看Wiki
371 permission_view_wiki_edits: 查看Wiki历史记录
373 permission_view_wiki_edits: 查看Wiki历史记录
372 permission_edit_wiki_pages: 编辑Wiki页面
374 permission_edit_wiki_pages: 编辑Wiki页面
373 permission_delete_wiki_pages_attachments: 删除附件
375 permission_delete_wiki_pages_attachments: 删除附件
374 permission_protect_wiki_pages: 保护Wiki页面
376 permission_protect_wiki_pages: 保护Wiki页面
375 permission_manage_repository: 管理版本库
377 permission_manage_repository: 管理版本库
376 permission_browse_repository: 浏览版本库
378 permission_browse_repository: 浏览版本库
377 permission_view_changesets: 查看变更
379 permission_view_changesets: 查看变更
378 permission_commit_access: 访问提交信息
380 permission_commit_access: 访问提交信息
379 permission_manage_boards: 管理讨论区
381 permission_manage_boards: 管理讨论区
380 permission_view_messages: 查看帖子
382 permission_view_messages: 查看帖子
381 permission_add_messages: 发表帖子
383 permission_add_messages: 发表帖子
382 permission_edit_messages: 编辑帖子
384 permission_edit_messages: 编辑帖子
383 permission_edit_own_messages: 编辑自己的帖子
385 permission_edit_own_messages: 编辑自己的帖子
384 permission_delete_messages: 删除帖子
386 permission_delete_messages: 删除帖子
385 permission_delete_own_messages: 删除自己的帖子
387 permission_delete_own_messages: 删除自己的帖子
386
388
387 project_module_issue_tracking: 问题跟踪
389 project_module_issue_tracking: 问题跟踪
388 project_module_time_tracking: 时间跟踪
390 project_module_time_tracking: 时间跟踪
389 project_module_news: 新闻
391 project_module_news: 新闻
390 project_module_documents: 文档
392 project_module_documents: 文档
391 project_module_files: 文件
393 project_module_files: 文件
392 project_module_wiki: Wiki
394 project_module_wiki: Wiki
393 project_module_repository: 版本库
395 project_module_repository: 版本库
394 project_module_boards: 讨论区
396 project_module_boards: 讨论区
395
397
396 label_user: 用户
398 label_user: 用户
397 label_user_plural: 用户
399 label_user_plural: 用户
398 label_user_new: 新建用户
400 label_user_new: 新建用户
399 label_project: 项目
401 label_project: 项目
400 label_project_new: 新建项目
402 label_project_new: 新建项目
401 label_project_plural: 项目
403 label_project_plural: 项目
402 label_x_projects:
404 label_x_projects:
403 zero: 无项目
405 zero: 无项目
404 one: 1 个项目
406 one: 1 个项目
405 other: "{{count}} 个项目"
407 other: "{{count}} 个项目"
406 label_project_all: 所有的项目
408 label_project_all: 所有的项目
407 label_project_latest: 最近更新的项目
409 label_project_latest: 最近更新的项目
408 label_issue: 问题
410 label_issue: 问题
409 label_issue_new: 新建问题
411 label_issue_new: 新建问题
410 label_issue_plural: 问题
412 label_issue_plural: 问题
411 label_issue_view_all: 查看所有问题
413 label_issue_view_all: 查看所有问题
412 label_issues_by: "按 {{value}} 分组显示问题"
414 label_issues_by: "按 {{value}} 分组显示问题"
413 label_issue_added: 问题已添加
415 label_issue_added: 问题已添加
414 label_issue_updated: 问题已更新
416 label_issue_updated: 问题已更新
415 label_document: 文档
417 label_document: 文档
416 label_document_new: 新建文档
418 label_document_new: 新建文档
417 label_document_plural: 文档
419 label_document_plural: 文档
418 label_document_added: 文档已添加
420 label_document_added: 文档已添加
419 label_role: 角色
421 label_role: 角色
420 label_role_plural: 角色
422 label_role_plural: 角色
421 label_role_new: 新建角色
423 label_role_new: 新建角色
422 label_role_and_permissions: 角色和权限
424 label_role_and_permissions: 角色和权限
423 label_member: 成员
425 label_member: 成员
424 label_member_new: 新建成员
426 label_member_new: 新建成员
425 label_member_plural: 成员
427 label_member_plural: 成员
426 label_tracker: 跟踪标签
428 label_tracker: 跟踪标签
427 label_tracker_plural: 跟踪标签
429 label_tracker_plural: 跟踪标签
428 label_tracker_new: 新建跟踪标签
430 label_tracker_new: 新建跟踪标签
429 label_workflow: 工作流程
431 label_workflow: 工作流程
430 label_issue_status: 问题状态
432 label_issue_status: 问题状态
431 label_issue_status_plural: 问题状态
433 label_issue_status_plural: 问题状态
432 label_issue_status_new: 新建问题状态
434 label_issue_status_new: 新建问题状态
433 label_issue_category: 问题类别
435 label_issue_category: 问题类别
434 label_issue_category_plural: 问题类别
436 label_issue_category_plural: 问题类别
435 label_issue_category_new: 新建问题类别
437 label_issue_category_new: 新建问题类别
436 label_custom_field: 自定义属性
438 label_custom_field: 自定义属性
437 label_custom_field_plural: 自定义属性
439 label_custom_field_plural: 自定义属性
438 label_custom_field_new: 新建自定义属性
440 label_custom_field_new: 新建自定义属性
439 label_enumerations: 枚举值
441 label_enumerations: 枚举值
440 label_enumeration_new: 新建枚举值
442 label_enumeration_new: 新建枚举值
441 label_information: 信息
443 label_information: 信息
442 label_information_plural: 信息
444 label_information_plural: 信息
443 label_please_login: 请登录
445 label_please_login: 请登录
444 label_register: 注册
446 label_register: 注册
445 label_login_with_open_id_option: 或使用OpenID登录
447 label_login_with_open_id_option: 或使用OpenID登录
446 label_password_lost: 忘记密码
448 label_password_lost: 忘记密码
447 label_home: 主页
449 label_home: 主页
448 label_my_page: 我的工作台
450 label_my_page: 我的工作台
449 label_my_account: 我的帐号
451 label_my_account: 我的帐号
450 label_my_projects: 我的项目
452 label_my_projects: 我的项目
451 label_administration: 管理
453 label_administration: 管理
452 label_login: 登录
454 label_login: 登录
453 label_logout: 退出
455 label_logout: 退出
454 label_help: 帮助
456 label_help: 帮助
455 label_reported_issues: 已报告的问题
457 label_reported_issues: 已报告的问题
456 label_assigned_to_me_issues: 指派给我的问题
458 label_assigned_to_me_issues: 指派给我的问题
457 label_last_login: 最后登录
459 label_last_login: 最后登录
458 label_registered_on: 注册于
460 label_registered_on: 注册于
459 label_activity: 活动
461 label_activity: 活动
460 label_overall_activity: 全部活动
462 label_overall_activity: 全部活动
461 label_user_activity: "{{value}} 的活动"
463 label_user_activity: "{{value}} 的活动"
462 label_new: 新建
464 label_new: 新建
463 label_logged_as: 登录为
465 label_logged_as: 登录为
464 label_environment: 环境
466 label_environment: 环境
465 label_authentication: 认证
467 label_authentication: 认证
466 label_auth_source: 认证模式
468 label_auth_source: 认证模式
467 label_auth_source_new: 新建认证模式
469 label_auth_source_new: 新建认证模式
468 label_auth_source_plural: 认证模式
470 label_auth_source_plural: 认证模式
469 label_subproject_plural: 子项目
471 label_subproject_plural: 子项目
470 label_and_its_subprojects: "{{value}} 及其子项目"
472 label_and_its_subprojects: "{{value}} 及其子项目"
471 label_min_max_length: 最小 - 最大 长度
473 label_min_max_length: 最小 - 最大 长度
472 label_list: 列表
474 label_list: 列表
473 label_date: 日期
475 label_date: 日期
474 label_integer: 整数
476 label_integer: 整数
475 label_float: 浮点数
477 label_float: 浮点数
476 label_boolean: 布尔量
478 label_boolean: 布尔量
477 label_string: 文字
479 label_string: 文字
478 label_text: 长段文字
480 label_text: 长段文字
479 label_attribute: 属性
481 label_attribute: 属性
480 label_attribute_plural: 属性
482 label_attribute_plural: 属性
481 label_download: "{{count}} 次下载"
483 label_download: "{{count}} 次下载"
482 label_download_plural: "{{count}} 次下载"
484 label_download_plural: "{{count}} 次下载"
483 label_no_data: 没有任何数据可供显示
485 label_no_data: 没有任何数据可供显示
484 label_change_status: 变更状态
486 label_change_status: 变更状态
485 label_history: 历史记录
487 label_history: 历史记录
486 label_attachment: 文件
488 label_attachment: 文件
487 label_attachment_new: 新建文件
489 label_attachment_new: 新建文件
488 label_attachment_delete: 删除文件
490 label_attachment_delete: 删除文件
489 label_attachment_plural: 文件
491 label_attachment_plural: 文件
490 label_file_added: 文件已添加
492 label_file_added: 文件已添加
491 label_report: 报表
493 label_report: 报表
492 label_report_plural: 报表
494 label_report_plural: 报表
493 label_news: 新闻
495 label_news: 新闻
494 label_news_new: 添加新闻
496 label_news_new: 添加新闻
495 label_news_plural: 新闻
497 label_news_plural: 新闻
496 label_news_latest: 最近的新闻
498 label_news_latest: 最近的新闻
497 label_news_view_all: 查看所有新闻
499 label_news_view_all: 查看所有新闻
498 label_news_added: 新闻已添加
500 label_news_added: 新闻已添加
499 label_change_log: 更新日志
501 label_change_log: 更新日志
500 label_settings: 配置
502 label_settings: 配置
501 label_overview: 概述
503 label_overview: 概述
502 label_version: 版本
504 label_version: 版本
503 label_version_new: 新建版本
505 label_version_new: 新建版本
504 label_version_plural: 版本
506 label_version_plural: 版本
505 label_confirmation: 确认
507 label_confirmation: 确认
506 label_export_to: 导出
508 label_export_to: 导出
507 label_read: 读取...
509 label_read: 读取...
508 label_public_projects: 公开的项目
510 label_public_projects: 公开的项目
509 label_open_issues: 打开
511 label_open_issues: 打开
510 label_open_issues_plural: 打开
512 label_open_issues_plural: 打开
511 label_closed_issues: 已关闭
513 label_closed_issues: 已关闭
512 label_closed_issues_plural: 已关闭
514 label_closed_issues_plural: 已关闭
513 label_x_open_issues_abbr_on_total:
515 label_x_open_issues_abbr_on_total:
514 zero: 0 打开 / {{total}}
516 zero: 0 打开 / {{total}}
515 one: 1 打开 / {{total}}
517 one: 1 打开 / {{total}}
516 other: "{{count}} 打开 / {{total}}"
518 other: "{{count}} 打开 / {{total}}"
517 label_x_open_issues_abbr:
519 label_x_open_issues_abbr:
518 zero: 0 打开
520 zero: 0 打开
519 one: 1 打开
521 one: 1 打开
520 other: "{{count}} 打开"
522 other: "{{count}} 打开"
521 label_x_closed_issues_abbr:
523 label_x_closed_issues_abbr:
522 zero: 0 关闭
524 zero: 0 关闭
523 one: 1 关闭
525 one: 1 关闭
524 other: "{{count}} 关闭"
526 other: "{{count}} 关闭"
525 label_total: 合计
527 label_total: 合计
526 label_permissions: 权限
528 label_permissions: 权限
527 label_current_status: 当前状态
529 label_current_status: 当前状态
528 label_new_statuses_allowed: 可变更的新状态
530 label_new_statuses_allowed: 可变更的新状态
529 label_all: 全部
531 label_all: 全部
530 label_none:
532 label_none:
531 label_nobody: 无人
533 label_nobody: 无人
532 label_next: 下一个
534 label_next: 下一个
533 label_previous: 上一个
535 label_previous: 上一个
534 label_used_by: 使用中
536 label_used_by: 使用中
535 label_details: 详情
537 label_details: 详情
536 label_add_note: 添加说明
538 label_add_note: 添加说明
537 label_per_page: 每页
539 label_per_page: 每页
538 label_calendar: 日历
540 label_calendar: 日历
539 label_months_from: 个月以来
541 label_months_from: 个月以来
540 label_gantt: 甘特图
542 label_gantt: 甘特图
541 label_internal: 内部
543 label_internal: 内部
542 label_last_changes: "最近的 {{count}} 次变更"
544 label_last_changes: "最近的 {{count}} 次变更"
543 label_change_view_all: 查看所有变更
545 label_change_view_all: 查看所有变更
544 label_personalize_page: 个性化定制本页
546 label_personalize_page: 个性化定制本页
545 label_comment: 评论
547 label_comment: 评论
546 label_comment_plural: 评论
548 label_comment_plural: 评论
547 label_x_comments:
549 label_x_comments:
548 zero: 无评论
550 zero: 无评论
549 one: 1 条评论
551 one: 1 条评论
550 other: "{{count}} 条评论"
552 other: "{{count}} 条评论"
551 label_comment_add: 添加评论
553 label_comment_add: 添加评论
552 label_comment_added: 评论已添加
554 label_comment_added: 评论已添加
553 label_comment_delete: 删除评论
555 label_comment_delete: 删除评论
554 label_query: 自定义查询
556 label_query: 自定义查询
555 label_query_plural: 自定义查询
557 label_query_plural: 自定义查询
556 label_query_new: 新建查询
558 label_query_new: 新建查询
557 label_filter_add: 增加过滤器
559 label_filter_add: 增加过滤器
558 label_filter_plural: 过滤器
560 label_filter_plural: 过滤器
559 label_equals: 等于
561 label_equals: 等于
560 label_not_equals: 不等于
562 label_not_equals: 不等于
561 label_in_less_than: 剩余天数小于
563 label_in_less_than: 剩余天数小于
562 label_in_more_than: 剩余天数大于
564 label_in_more_than: 剩余天数大于
563 label_greater_or_equal: '>='
565 label_greater_or_equal: '>='
564 label_less_or_equal: '<='
566 label_less_or_equal: '<='
565 label_in: 剩余天数
567 label_in: 剩余天数
566 label_today: 今天
568 label_today: 今天
567 label_all_time: 全部时间
569 label_all_time: 全部时间
568 label_yesterday: 昨天
570 label_yesterday: 昨天
569 label_this_week: 本周
571 label_this_week: 本周
570 label_last_week: 下周
572 label_last_week: 下周
571 label_last_n_days: "最后 {{count}} 天"
573 label_last_n_days: "最后 {{count}} 天"
572 label_this_month: 本月
574 label_this_month: 本月
573 label_last_month: 下月
575 label_last_month: 下月
574 label_this_year: 今年
576 label_this_year: 今年
575 label_date_range: 日期范围
577 label_date_range: 日期范围
576 label_less_than_ago: 之前天数少于
578 label_less_than_ago: 之前天数少于
577 label_more_than_ago: 之前天数大于
579 label_more_than_ago: 之前天数大于
578 label_ago: 之前天数
580 label_ago: 之前天数
579 label_contains: 包含
581 label_contains: 包含
580 label_not_contains: 不包含
582 label_not_contains: 不包含
581 label_day_plural:
583 label_day_plural:
582 label_repository: 版本库
584 label_repository: 版本库
583 label_repository_plural: 版本库
585 label_repository_plural: 版本库
584 label_browse: 浏览
586 label_browse: 浏览
585 label_modification: "{{count}} 个更新"
587 label_modification: "{{count}} 个更新"
586 label_modification_plural: "{{count}} 个更新"
588 label_modification_plural: "{{count}} 个更新"
589 label_branch: 分支
590 label_tag: 标签
587 label_revision: 修订
591 label_revision: 修订
588 label_revision_plural: 修订
592 label_revision_plural: 修订
589 label_associated_revisions: 相关修订版本
593 label_associated_revisions: 相关修订版本
590 label_added: 已添加
594 label_added: 已添加
591 label_modified: 已修改
595 label_modified: 已修改
592 label_copied: 已复制
596 label_copied: 已复制
593 label_renamed: 已重命名
597 label_renamed: 已重命名
594 label_deleted: 已删除
598 label_deleted: 已删除
595 label_latest_revision: 最近的修订版本
599 label_latest_revision: 最近的修订版本
596 label_latest_revision_plural: 最近的修订版本
600 label_latest_revision_plural: 最近的修订版本
597 label_view_revisions: 查看修订
601 label_view_revisions: 查看修订
602 label_view_all_revisions: 查看所有修订
598 label_max_size: 最大尺寸
603 label_max_size: 最大尺寸
599 label_sort_highest: 置顶
604 label_sort_highest: 置顶
600 label_sort_higher: 上移
605 label_sort_higher: 上移
601 label_sort_lower: 下移
606 label_sort_lower: 下移
602 label_sort_lowest: 置底
607 label_sort_lowest: 置底
603 label_roadmap: 路线图
608 label_roadmap: 路线图
604 label_roadmap_due_in: "截止日期到 {{value}}"
609 label_roadmap_due_in: "截止日期到 {{value}}"
605 label_roadmap_overdue: "{{value}} 延期"
610 label_roadmap_overdue: "{{value}} 延期"
606 label_roadmap_no_issues: 该版本没有问题
611 label_roadmap_no_issues: 该版本没有问题
607 label_search: 搜索
612 label_search: 搜索
608 label_result_plural: 结果
613 label_result_plural: 结果
609 label_all_words: 所有单词
614 label_all_words: 所有单词
610 label_wiki: Wiki
615 label_wiki: Wiki
611 label_wiki_edit: Wiki 编辑
616 label_wiki_edit: Wiki 编辑
612 label_wiki_edit_plural: Wiki 编辑记录
617 label_wiki_edit_plural: Wiki 编辑记录
613 label_wiki_page: Wiki 页面
618 label_wiki_page: Wiki 页面
614 label_wiki_page_plural: Wiki 页面
619 label_wiki_page_plural: Wiki 页面
615 label_index_by_title: 按标题索引
620 label_index_by_title: 按标题索引
616 label_index_by_date: 按日期索引
621 label_index_by_date: 按日期索引
617 label_current_version: 当前版本
622 label_current_version: 当前版本
618 label_preview: 预览
623 label_preview: 预览
619 label_feed_plural: Feeds
624 label_feed_plural: Feeds
620 label_changes_details: 所有变更的详情
625 label_changes_details: 所有变更的详情
621 label_issue_tracking: 问题跟踪
626 label_issue_tracking: 问题跟踪
622 label_spent_time: 耗时
627 label_spent_time: 耗时
623 label_f_hour: "{{value}} 小时"
628 label_f_hour: "{{value}} 小时"
624 label_f_hour_plural: "{{value}} 小时"
629 label_f_hour_plural: "{{value}} 小时"
625 label_time_tracking: 时间跟踪
630 label_time_tracking: 时间跟踪
626 label_change_plural: 变更
631 label_change_plural: 变更
627 label_statistics: 统计
632 label_statistics: 统计
628 label_commits_per_month: 每月提交次数
633 label_commits_per_month: 每月提交次数
629 label_commits_per_author: 每用户提交次数
634 label_commits_per_author: 每用户提交次数
630 label_view_diff: 查看差别
635 label_view_diff: 查看差别
631 label_diff_inline: 直列
636 label_diff_inline: 直列
632 label_diff_side_by_side: 并排
637 label_diff_side_by_side: 并排
633 label_options: 选项
638 label_options: 选项
634 label_copy_workflow_from: 从以下项目复制工作流程
639 label_copy_workflow_from: 从以下项目复制工作流程
635 label_permissions_report: 权限报表
640 label_permissions_report: 权限报表
636 label_watched_issues: 跟踪的问题
641 label_watched_issues: 跟踪的问题
637 label_related_issues: 相关的问题
642 label_related_issues: 相关的问题
638 label_applied_status: 应用后的状态
643 label_applied_status: 应用后的状态
639 label_loading: 载入中...
644 label_loading: 载入中...
640 label_relation_new: 新建关联
645 label_relation_new: 新建关联
641 label_relation_delete: 删除关联
646 label_relation_delete: 删除关联
642 label_relates_to: 关联到
647 label_relates_to: 关联到
643 label_duplicates: 重复
648 label_duplicates: 重复
644 label_duplicated_by: 与其重复
649 label_duplicated_by: 与其重复
645 label_blocks: 阻挡
650 label_blocks: 阻挡
646 label_blocked_by: 被阻挡
651 label_blocked_by: 被阻挡
647 label_precedes: 优先于
652 label_precedes: 优先于
648 label_follows: 跟随于
653 label_follows: 跟随于
649 label_end_to_start: 结束-开始
654 label_end_to_start: 结束-开始
650 label_end_to_end: 结束-结束
655 label_end_to_end: 结束-结束
651 label_start_to_start: 开始-开始
656 label_start_to_start: 开始-开始
652 label_start_to_end: 开始-结束
657 label_start_to_end: 开始-结束
653 label_stay_logged_in: 保持登录状态
658 label_stay_logged_in: 保持登录状态
654 label_disabled: 禁用
659 label_disabled: 禁用
655 label_show_completed_versions: 显示已完成的版本
660 label_show_completed_versions: 显示已完成的版本
656 label_me:
661 label_me:
657 label_board: 讨论区
662 label_board: 讨论区
658 label_board_new: 新建讨论区
663 label_board_new: 新建讨论区
659 label_board_plural: 讨论区
664 label_board_plural: 讨论区
660 label_topic_plural: 主题
665 label_topic_plural: 主题
661 label_message_plural: 帖子
666 label_message_plural: 帖子
662 label_message_last: 最新的帖子
667 label_message_last: 最新的帖子
663 label_message_new: 新贴
668 label_message_new: 新贴
664 label_message_posted: 发帖成功
669 label_message_posted: 发帖成功
665 label_reply_plural: 回复
670 label_reply_plural: 回复
666 label_send_information: 给用户发送帐号信息
671 label_send_information: 给用户发送帐号信息
667 label_year:
672 label_year:
668 label_month:
673 label_month:
669 label_week:
674 label_week:
670 label_date_from:
675 label_date_from:
671 label_date_to:
676 label_date_to:
672 label_language_based: 根据用户的语言
677 label_language_based: 根据用户的语言
673 label_sort_by: "根据 {{value}} 排序"
678 label_sort_by: "根据 {{value}} 排序"
674 label_send_test_email: 发送测试邮件
679 label_send_test_email: 发送测试邮件
675 label_feeds_access_key_created_on: "RSS 存取键是在 {{value}} 之前建立的"
680 label_feeds_access_key_created_on: "RSS 存取键是在 {{value}} 之前建立的"
676 label_module_plural: 模块
681 label_module_plural: 模块
677 label_added_time_by: "由 {{author}} {{age}} 之前添加"
682 label_added_time_by: "由 {{author}} {{age}} 之前添加"
678 label_updated_time: " 更新于 {{value}} 之前"
683 label_updated_time: " 更新于 {{value}} 之前"
679 label_updated_time_by: "由 {{author}} 更新于 {{age}} 之前"
684 label_updated_time_by: "由 {{author}} 更新于 {{age}} 之前"
680 label_jump_to_a_project: 选择一个项目...
685 label_jump_to_a_project: 选择一个项目...
681 label_file_plural: 文件
686 label_file_plural: 文件
682 label_changeset_plural: 变更
687 label_changeset_plural: 变更
683 label_default_columns: 默认列
688 label_default_columns: 默认列
684 label_no_change_option: (不变)
689 label_no_change_option: (不变)
685 label_bulk_edit_selected_issues: 批量修改选中的问题
690 label_bulk_edit_selected_issues: 批量修改选中的问题
686 label_theme: 主题
691 label_theme: 主题
687 label_default: 默认
692 label_default: 默认
688 label_search_titles_only: 仅在标题中搜索
693 label_search_titles_only: 仅在标题中搜索
689 label_user_mail_option_all: "收取我的项目的所有通知"
694 label_user_mail_option_all: "收取我的项目的所有通知"
690 label_user_mail_option_selected: "收取选中项目的所有通知..."
695 label_user_mail_option_selected: "收取选中项目的所有通知..."
691 label_user_mail_option_none: "只收取我跟踪或参与的项目的通知"
696 label_user_mail_option_none: "只收取我跟踪或参与的项目的通知"
692 label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知"
697 label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知"
693 label_registration_activation_by_email: 通过邮件认证激活帐号
698 label_registration_activation_by_email: 通过邮件认证激活帐号
694 label_registration_manual_activation: 手动激活帐号
699 label_registration_manual_activation: 手动激活帐号
695 label_registration_automatic_activation: 自动激活帐号
700 label_registration_automatic_activation: 自动激活帐号
696 label_display_per_page: "每页显示:{{value}}"
701 label_display_per_page: "每页显示:{{value}}"
697 label_age: 年龄
702 label_age: 年龄
698 label_change_properties: 修改属性
703 label_change_properties: 修改属性
699 label_general: 一般
704 label_general: 一般
700 label_more: 更多
705 label_more: 更多
701 label_scm: SCM
706 label_scm: SCM
702 label_plugins: 插件
707 label_plugins: 插件
703 label_ldap_authentication: LDAP 认证
708 label_ldap_authentication: LDAP 认证
704 label_downloads_abbr: D/L
709 label_downloads_abbr: D/L
705 label_optional_description: 可选的描述
710 label_optional_description: 可选的描述
706 label_add_another_file: 添加其它文件
711 label_add_another_file: 添加其它文件
707 label_preferences: 首选项
712 label_preferences: 首选项
708 label_chronological_order: 按时间顺序
713 label_chronological_order: 按时间顺序
709 label_reverse_chronological_order: 按时间顺序(倒序)
714 label_reverse_chronological_order: 按时间顺序(倒序)
710 label_planning: 计划
715 label_planning: 计划
711 label_incoming_emails: 接收邮件
716 label_incoming_emails: 接收邮件
712 label_generate_key: 生成一个key
717 label_generate_key: 生成一个key
713 label_issue_watchers: 跟踪者
718 label_issue_watchers: 跟踪者
714 label_example: 示例
719 label_example: 示例
715 label_display: 显示
720 label_display: 显示
716 label_sort: 排序
721 label_sort: 排序
717 label_ascending: 升序
722 label_ascending: 升序
718 label_descending: 降序
723 label_descending: 降序
719 label_date_from_to: 从 {{start}} 到 {{end}}
724 label_date_from_to: 从 {{start}} 到 {{end}}
720 label_wiki_content_added: Wiki 页面已添加
725 label_wiki_content_added: Wiki 页面已添加
721 label_wiki_content_updated: Wiki 页面已更新
726 label_wiki_content_updated: Wiki 页面已更新
727 label_group:
728 label_group_plural:
729 label_group_new: 新建组
730 label_time_entry_plural: 耗时
722
731
723 button_login: 登录
732 button_login: 登录
724 button_submit: 提交
733 button_submit: 提交
725 button_save: 保存
734 button_save: 保存
726 button_check_all: 全选
735 button_check_all: 全选
727 button_uncheck_all: 清除
736 button_uncheck_all: 清除
728 button_delete: 删除
737 button_delete: 删除
729 button_create: 创建
738 button_create: 创建
730 button_create_and_continue: 创建并继续
739 button_create_and_continue: 创建并继续
731 button_test: 测试
740 button_test: 测试
732 button_edit: 编辑
741 button_edit: 编辑
733 button_add: 新增
742 button_add: 新增
734 button_change: 修改
743 button_change: 修改
735 button_apply: 应用
744 button_apply: 应用
736 button_clear: 清除
745 button_clear: 清除
737 button_lock: 锁定
746 button_lock: 锁定
738 button_unlock: 解锁
747 button_unlock: 解锁
739 button_download: 下载
748 button_download: 下载
740 button_list: 列表
749 button_list: 列表
741 button_view: 查看
750 button_view: 查看
742 button_move: 移动
751 button_move: 移动
743 button_back: 返回
752 button_back: 返回
744 button_cancel: 取消
753 button_cancel: 取消
745 button_activate: 激活
754 button_activate: 激活
746 button_sort: 排序
755 button_sort: 排序
747 button_log_time: 登记工时
756 button_log_time: 登记工时
748 button_rollback: 恢复到这个版本
757 button_rollback: 恢复到这个版本
749 button_watch: 跟踪
758 button_watch: 跟踪
750 button_unwatch: 取消跟踪
759 button_unwatch: 取消跟踪
751 button_reply: 回复
760 button_reply: 回复
752 button_archive: 存档
761 button_archive: 存档
753 button_unarchive: 取消存档
762 button_unarchive: 取消存档
754 button_reset: 重置
763 button_reset: 重置
755 button_rename: 重命名
764 button_rename: 重命名
756 button_change_password: 修改密码
765 button_change_password: 修改密码
757 button_copy: 复制
766 button_copy: 复制
758 button_annotate: 追溯
767 button_annotate: 追溯
759 button_update: 更新
768 button_update: 更新
760 button_configure: 配置
769 button_configure: 配置
761 button_quote: 引用
770 button_quote: 引用
762
771
763 status_active: 活动的
772 status_active: 活动的
764 status_registered: 已注册
773 status_registered: 已注册
765 status_locked: 已锁定
774 status_locked: 已锁定
766
775
767 text_select_mail_notifications: 选择需要发送邮件通知的动作
776 text_select_mail_notifications: 选择需要发送邮件通知的动作
768 text_regexp_info: 例如:^[A-Z0-9]+$
777 text_regexp_info: 例如:^[A-Z0-9]+$
769 text_min_max_length_info: 0 表示没有限制
778 text_min_max_length_info: 0 表示没有限制
770 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
779 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
771 text_subprojects_destroy_warning: "以下子项目也将被同时删除:{{value}}"
780 text_subprojects_destroy_warning: "以下子项目也将被同时删除:{{value}}"
772 text_workflow_edit: 选择角色和跟踪标签来编辑工作流程
781 text_workflow_edit: 选择角色和跟踪标签来编辑工作流程
773 text_are_you_sure: 您确定?
782 text_are_you_sure: 您确定?
783 text_journal_changed: "{{label}} {{old}} 变更为 {{new}}"
784 text_journal_set_to: "{{label}} 被设置为 {{value}}"
785 text_journal_deleted: "{{label}} 已删除 ({{old}})"
786 text_journal_added: "{{label}} {{value}} 已添加"
774 text_tip_task_begin_day: 今天开始的任务
787 text_tip_task_begin_day: 今天开始的任务
775 text_tip_task_end_day: 今天结束的任务
788 text_tip_task_end_day: 今天结束的任务
776 text_tip_task_begin_end_day: 今天开始并结束的任务
789 text_tip_task_begin_end_day: 今天开始并结束的任务
777 text_project_identifier_info: '只允许使用小写字母(a-z),数字和连字符(-)。<br />请注意,标识符保存后将不可修改。'
790 text_project_identifier_info: '只允许使用小写字母(a-z),数字和连字符(-)。<br />请注意,标识符保存后将不可修改。'
778 text_caracters_maximum: "最多 {{count}} 个字符。"
791 text_caracters_maximum: "最多 {{count}} 个字符。"
779 text_caracters_minimum: "至少需要 {{count}} 个字符。"
792 text_caracters_minimum: "至少需要 {{count}} 个字符。"
780 text_length_between: "长度必须在 {{min}} {{max}} 个字符之间。"
793 text_length_between: "长度必须在 {{min}} {{max}} 个字符之间。"
781 text_tracker_no_workflow: 此跟踪标签未定义工作流程
794 text_tracker_no_workflow: 此跟踪标签未定义工作流程
782 text_unallowed_characters: 非法字符
795 text_unallowed_characters: 非法字符
783 text_comma_separated: 可以使用多个值(用逗号,分开)。
796 text_comma_separated: 可以使用多个值(用逗号,分开)。
784 text_issues_ref_in_commit_messages: 在提交信息中引用和解决问题
797 text_issues_ref_in_commit_messages: 在提交信息中引用和解决问题
785 text_issue_added: "问题 {{id}} 已由 {{author}} 提交。"
798 text_issue_added: "问题 {{id}} 已由 {{author}} 提交。"
786 text_issue_updated: "问题 {{id}} 已由 {{author}} 更新。"
799 text_issue_updated: "问题 {{id}} 已由 {{author}} 更新。"
787 text_wiki_destroy_confirmation: 您确定要删除这个 wiki 及其所有内容吗?
800 text_wiki_destroy_confirmation: 您确定要删除这个 wiki 及其所有内容吗?
788 text_issue_category_destroy_question: "有一些问题({{count}} 个)属于此类别。您想进行哪种操作?"
801 text_issue_category_destroy_question: "有一些问题({{count}} 个)属于此类别。您想进行哪种操作?"
789 text_issue_category_destroy_assignments: 删除问题的所属类别(问题变为无类别)
802 text_issue_category_destroy_assignments: 删除问题的所属类别(问题变为无类别)
790 text_issue_category_reassign_to: 为问题选择其它类别
803 text_issue_category_reassign_to: 为问题选择其它类别
791 text_user_mail_option: "对于没有选中的项目,您将只会收到您跟踪或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。"
804 text_user_mail_option: "对于没有选中的项目,您将只会收到您跟踪或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。"
792 text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。"
805 text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。"
793 text_load_default_configuration: 载入默认设置
806 text_load_default_configuration: 载入默认设置
794 text_status_changed_by_changeset: "已应用到变更列表 {{value}}."
807 text_status_changed_by_changeset: "已应用到变更列表 {{value}}."
795 text_issues_destroy_confirmation: '您确定要删除选中的问题吗?'
808 text_issues_destroy_confirmation: '您确定要删除选中的问题吗?'
796 text_select_project_modules: '请选择此项目可以使用的模块:'
809 text_select_project_modules: '请选择此项目可以使用的模块:'
797 text_default_administrator_account_changed: 默认的管理员帐号已改变
810 text_default_administrator_account_changed: 默认的管理员帐号已改变
798 text_file_repository_writable: 附件路径可写
811 text_file_repository_writable: 附件路径可写
799 text_plugin_assets_writable: 插件的附件路径可写
812 text_plugin_assets_writable: 插件的附件路径可写
800 text_rmagick_available: RMagick 可用(可选的)
813 text_rmagick_available: RMagick 可用(可选的)
801 text_destroy_time_entries_question: 您要删除的问题已经上报了 {{hours}} 小时的工作量。您想进行那种操作?
814 text_destroy_time_entries_question: 您要删除的问题已经上报了 {{hours}} 小时的工作量。您想进行那种操作?
802 text_destroy_time_entries: 删除上报的工作量
815 text_destroy_time_entries: 删除上报的工作量
803 text_assign_time_entries_to_project: 将已上报的工作量提交到项目中
816 text_assign_time_entries_to_project: 将已上报的工作量提交到项目中
804 text_reassign_time_entries: '将已上报的工作量指定到此问题:'
817 text_reassign_time_entries: '将已上报的工作量指定到此问题:'
805 text_user_wrote: "{{value}} 写到:"
818 text_user_wrote: "{{value}} 写到:"
806 text_enumeration_category_reassign_to: '将它们关联到新的枚举值:'
819 text_enumeration_category_reassign_to: '将它们关联到新的枚举值:'
807 text_enumeration_destroy_question: "{{count}} 个对象被关联到了这个枚举值。"
820 text_enumeration_destroy_question: "{{count}} 个对象被关联到了这个枚举值。"
808 text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/email.yml中配置您的SMTP服务器信息并重新启动以使其生效。"
821 text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/email.yml中配置您的SMTP服务器信息并重新启动以使其生效。"
809 text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。"
822 text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。"
810 text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断'
823 text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断'
811 text_custom_field_possible_values_info: '每项数值一行'
824 text_custom_field_possible_values_info: '每项数值一行'
812 text_wiki_page_destroy_question: 此页面有 {{descendants}} 个子页面和下级页面。您想进行那种操作?
825 text_wiki_page_destroy_question: 此页面有 {{descendants}} 个子页面和下级页面。您想进行那种操作?
813 text_wiki_page_reassign_children: 将子页面的上级页面设置为
826 text_wiki_page_reassign_children: 将子页面的上级页面设置为
814 text_wiki_page_nullify_children: 将子页面保留为根页面
827 text_wiki_page_nullify_children: 将子页面保留为根页面
815 text_wiki_page_destroy_children: 删除子页面及其所有下级页面
828 text_wiki_page_destroy_children: 删除子页面及其所有下级页面
816
829
817 default_role_manager: 管理人员
830 default_role_manager: 管理人员
818 default_role_developper: 开发人员
831 default_role_developper: 开发人员
819 default_role_reporter: 报告人员
832 default_role_reporter: 报告人员
820 default_tracker_bug: 错误
833 default_tracker_bug: 错误
821 default_tracker_feature: 功能
834 default_tracker_feature: 功能
822 default_tracker_support: 支持
835 default_tracker_support: 支持
823 default_issue_status_new: 新建
836 default_issue_status_new: 新建
824 default_issue_status_assigned: 已指派
837 default_issue_status_assigned: 已指派
825 default_issue_status_resolved: 已解决
838 default_issue_status_resolved: 已解决
826 default_issue_status_feedback: 反馈
839 default_issue_status_feedback: 反馈
827 default_issue_status_closed: 已关闭
840 default_issue_status_closed: 已关闭
828 default_issue_status_rejected: 已拒绝
841 default_issue_status_rejected: 已拒绝
829 default_doc_category_user: 用户文档
842 default_doc_category_user: 用户文档
830 default_doc_category_tech: 技术文档
843 default_doc_category_tech: 技术文档
831 default_priority_low:
844 default_priority_low:
832 default_priority_normal: 普通
845 default_priority_normal: 普通
833 default_priority_high:
846 default_priority_high:
834 default_priority_urgent: 紧急
847 default_priority_urgent: 紧急
835 default_priority_immediate: 立刻
848 default_priority_immediate: 立刻
836 default_activity_design: 设计
849 default_activity_design: 设计
837 default_activity_development: 开发
850 default_activity_development: 开发
838
851
839 enumeration_issue_priorities: 问题优先级
852 enumeration_issue_priorities: 问题优先级
840 enumeration_doc_categories: 文档类别
853 enumeration_doc_categories: 文档类别
841 enumeration_activities: 活动(时间跟踪)
854 enumeration_activities: 活动(时间跟踪)
842 label_view_all_revisions: View all revisions
843 label_tag: Tag
844 label_branch: Branch
845 error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings.
846 error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").
847 text_journal_changed: "{{label}} changed from {{old}} to {{new}}"
848 text_journal_set_to: "{{label}} set to {{value}}"
849 text_journal_deleted: "{{label}} deleted ({{old}})"
850 label_group_plural: Groups
851 label_group: Group
852 label_group_new: New group
853 label_time_entry_plural: Spent time
854 text_journal_added: "{{label}} {{value}} added"
General Comments 0
You need to be logged in to leave comments. Login now