@@ -1,884 +1,884 | |||
|
1 | 1 | bg: |
|
2 | 2 | date: |
|
3 | 3 | formats: |
|
4 | 4 | # Use the strftime parameters for formats. |
|
5 | 5 | # When no format has been given, it uses default. |
|
6 | 6 | # You can provide other formats here if you like! |
|
7 | 7 | default: "%Y-%m-%d" |
|
8 | 8 | short: "%b %d" |
|
9 | 9 | long: "%B %d, %Y" |
|
10 | 10 | |
|
11 | 11 | day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] |
|
12 | 12 | abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] |
|
13 | 13 | |
|
14 | 14 | # Don't forget the nil at the beginning; there's no such thing as a 0th month |
|
15 | 15 | month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] |
|
16 | 16 | abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] |
|
17 | 17 | # Used in date_select and datime_select. |
|
18 | 18 | order: [ :year, :month, :day ] |
|
19 | 19 | |
|
20 | 20 | time: |
|
21 | 21 | formats: |
|
22 | 22 | default: "%a, %d %b %Y %H:%M:%S %z" |
|
23 | 23 | time: "%H:%M" |
|
24 | 24 | short: "%d %b %H:%M" |
|
25 | 25 | long: "%B %d, %Y %H:%M" |
|
26 | 26 | am: "am" |
|
27 | 27 | pm: "pm" |
|
28 | 28 | |
|
29 | 29 | datetime: |
|
30 | 30 | distance_in_words: |
|
31 | 31 | half_a_minute: "half a minute" |
|
32 | 32 | less_than_x_seconds: |
|
33 | 33 | one: "less than 1 second" |
|
34 | 34 | other: "less than {{count}} seconds" |
|
35 | 35 | x_seconds: |
|
36 | 36 | one: "1 second" |
|
37 | 37 | other: "{{count}} seconds" |
|
38 | 38 | less_than_x_minutes: |
|
39 | 39 | one: "less than a minute" |
|
40 | 40 | other: "less than {{count}} minutes" |
|
41 | 41 | x_minutes: |
|
42 | 42 | one: "1 minute" |
|
43 | 43 | other: "{{count}} minutes" |
|
44 | 44 | about_x_hours: |
|
45 | 45 | one: "about 1 hour" |
|
46 | 46 | other: "about {{count}} hours" |
|
47 | 47 | x_days: |
|
48 | 48 | one: "1 day" |
|
49 | 49 | other: "{{count}} days" |
|
50 | 50 | about_x_months: |
|
51 | 51 | one: "about 1 month" |
|
52 | 52 | other: "about {{count}} months" |
|
53 | 53 | x_months: |
|
54 | 54 | one: "1 month" |
|
55 | 55 | other: "{{count}} months" |
|
56 | 56 | about_x_years: |
|
57 | 57 | one: "about 1 year" |
|
58 | 58 | other: "about {{count}} years" |
|
59 | 59 | over_x_years: |
|
60 | 60 | one: "over 1 year" |
|
61 | 61 | other: "over {{count}} years" |
|
62 | 62 | almost_x_years: |
|
63 | 63 | one: "almost 1 year" |
|
64 | 64 | other: "almost {{count}} years" |
|
65 | 65 | |
|
66 | 66 | number: |
|
67 | 67 | human: |
|
68 | 68 | format: |
|
69 | 69 | precision: 1 |
|
70 | 70 | delimiter: "" |
|
71 | 71 | storage_units: |
|
72 | 72 | format: "%n %u" |
|
73 | 73 | units: |
|
74 | 74 | kb: KB |
|
75 | 75 | tb: TB |
|
76 | 76 | gb: GB |
|
77 | 77 | byte: |
|
78 | 78 | one: Byte |
|
79 | 79 | other: Bytes |
|
80 | 80 | mb: 'MB' |
|
81 | 81 | |
|
82 | 82 | # Used in array.to_sentence. |
|
83 | 83 | support: |
|
84 | 84 | array: |
|
85 | 85 | sentence_connector: "and" |
|
86 | 86 | skip_last_comma: false |
|
87 | 87 | |
|
88 | 88 | activerecord: |
|
89 | 89 | errors: |
|
90 | 90 | messages: |
|
91 | 91 | inclusion: "не съществува в списъка" |
|
92 | 92 | exclusion: "е запазено" |
|
93 | 93 | invalid: "е невалидно" |
|
94 | 94 | confirmation: "липсва одобрение" |
|
95 | 95 | accepted: "трябва да се приеме" |
|
96 | 96 | empty: "не може да е празно" |
|
97 | 97 | blank: "не може да е празно" |
|
98 | 98 | too_long: "е прекалено дълго" |
|
99 | 99 | too_short: "е прекалено късо" |
|
100 | 100 | wrong_length: "е с грешна дължина" |
|
101 | 101 | taken: "вече съществува" |
|
102 | 102 | not_a_number: "не е число" |
|
103 | 103 | not_a_date: "е невалидна дата" |
|
104 | 104 | greater_than: "must be greater than {{count}}" |
|
105 | 105 | greater_than_or_equal_to: "must be greater than or equal to {{count}}" |
|
106 | 106 | equal_to: "must be equal to {{count}}" |
|
107 | 107 | less_than: "must be less than {{count}}" |
|
108 | 108 | less_than_or_equal_to: "must be less than or equal to {{count}}" |
|
109 | 109 | odd: "must be odd" |
|
110 | 110 | even: "must be even" |
|
111 | 111 | greater_than_start_date: "трябва да е след началната дата" |
|
112 | 112 | not_same_project: "не е от същия проект" |
|
113 | 113 | circular_dependency: "Тази релация ще доведе до безкрайна зависимост" |
|
114 | 114 | |
|
115 | 115 | actionview_instancetag_blank_option: Изберете |
|
116 | 116 | |
|
117 | 117 | general_text_No: 'Не' |
|
118 | 118 | general_text_Yes: 'Да' |
|
119 | 119 | general_text_no: 'не' |
|
120 | 120 | general_text_yes: 'да' |
|
121 | 121 | general_lang_name: 'Bulgarian' |
|
122 | 122 | general_csv_separator: ',' |
|
123 | 123 | general_csv_decimal_separator: '.' |
|
124 | 124 | general_csv_encoding: UTF-8 |
|
125 | 125 | general_pdf_encoding: UTF-8 |
|
126 | 126 | general_first_day_of_week: '1' |
|
127 | 127 | |
|
128 | 128 | notice_account_updated: Профилът е обновен успешно. |
|
129 | 129 | notice_account_invalid_creditentials: Невалиден потребител или парола. |
|
130 | 130 | notice_account_password_updated: Паролата е успешно променена. |
|
131 | 131 | notice_account_wrong_password: Грешна парола |
|
132 | 132 | notice_account_register_done: Профилът е създаден успешно. |
|
133 | 133 | notice_account_unknown_email: Непознат e-mail. |
|
134 | 134 | notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата. |
|
135 | 135 | notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. |
|
136 | 136 | notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата. |
|
137 | 137 | notice_successful_create: Успешно създаване. |
|
138 | 138 | notice_successful_update: Успешно обновяване. |
|
139 | 139 | notice_successful_delete: Успешно изтриване. |
|
140 | 140 | notice_successful_connection: Успешно свързване. |
|
141 | 141 | notice_file_not_found: Несъществуваща или преместена страница. |
|
142 | 142 | notice_locking_conflict: Друг потребител променя тези данни в момента. |
|
143 | 143 | notice_not_authorized: Нямате право на достъп до тази страница. |
|
144 | 144 | notice_email_sent: "Изпратен e-mail на {{value}}" |
|
145 | 145 | notice_email_error: "Грешка при изпращане на e-mail ({{value}})" |
|
146 | 146 | notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен. |
|
147 | 147 | |
|
148 | 148 | error_scm_not_found: Несъществуващ обект в хранилището. |
|
149 | 149 | error_scm_command_failed: "Грешка при опит за комуникация с хранилище: {{value}}" |
|
150 | 150 | |
|
151 | 151 | mail_subject_lost_password: "Вашата парола ({{value}})" |
|
152 | 152 | mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:' |
|
153 | 153 | mail_subject_register: "Активация на профил ({{value}})" |
|
154 | 154 | mail_body_register: 'За да активирате профила си използвайте следния линк:' |
|
155 | 155 | |
|
156 | 156 | gui_validation_error: 1 грешка |
|
157 | 157 | gui_validation_error_plural: "{{count}} грешки" |
|
158 | 158 | |
|
159 | 159 | field_name: Име |
|
160 | 160 | field_description: Описание |
|
161 | 161 | field_summary: Групиран изглед |
|
162 | 162 | field_is_required: Задължително |
|
163 | 163 | field_firstname: Име |
|
164 | 164 | field_lastname: Фамилия |
|
165 | 165 | field_mail: Email |
|
166 | 166 | field_filename: Файл |
|
167 | 167 | field_filesize: Големина |
|
168 | 168 | field_downloads: Downloads |
|
169 | 169 | field_author: Автор |
|
170 | 170 | field_created_on: От дата |
|
171 | 171 | field_updated_on: Обновена |
|
172 | 172 | field_field_format: Тип |
|
173 | 173 | field_is_for_all: За всички проекти |
|
174 | 174 | field_possible_values: Възможни стойности |
|
175 | 175 | field_regexp: Регулярен израз |
|
176 | 176 | field_min_length: Мин. дължина |
|
177 | 177 | field_max_length: Макс. дължина |
|
178 | 178 | field_value: Стойност |
|
179 | 179 | field_category: Категория |
|
180 | 180 | field_title: Заглавие |
|
181 | 181 | field_project: Проект |
|
182 | 182 | field_issue: Задача |
|
183 | 183 | field_status: Статус |
|
184 | 184 | field_notes: Бележка |
|
185 | 185 | field_is_closed: Затворена задача |
|
186 | 186 | field_is_default: Статус по подразбиране |
|
187 | 187 | field_tracker: Тракер |
|
188 | 188 | field_subject: Относно |
|
189 | 189 | field_due_date: Крайна дата |
|
190 | 190 | field_assigned_to: Възложена на |
|
191 | 191 | field_priority: Приоритет |
|
192 | 192 | field_fixed_version: Планувана версия |
|
193 | 193 | field_user: Потребител |
|
194 | 194 | field_role: Роля |
|
195 | 195 | field_homepage: Начална страница |
|
196 | 196 | field_is_public: Публичен |
|
197 | 197 | field_parent: Подпроект на |
|
198 | 198 | field_is_in_roadmap: Да се вижда ли в Пътна карта |
|
199 | 199 | field_login: Потребител |
|
200 | 200 | field_mail_notification: Известия по пощата |
|
201 | 201 | field_admin: Администратор |
|
202 | 202 | field_last_login_on: Последно свързване |
|
203 | 203 | field_language: Език |
|
204 | 204 | field_effective_date: Дата |
|
205 | 205 | field_password: Парола |
|
206 | 206 | field_new_password: Нова парола |
|
207 | 207 | field_password_confirmation: Потвърждение |
|
208 | 208 | field_version: Версия |
|
209 | 209 | field_type: Тип |
|
210 | 210 | field_host: Хост |
|
211 | 211 | field_port: Порт |
|
212 | 212 | field_account: Профил |
|
213 | 213 | field_base_dn: Base DN |
|
214 | 214 | field_attr_login: Login attribute |
|
215 | 215 | field_attr_firstname: Firstname attribute |
|
216 | 216 | field_attr_lastname: Lastname attribute |
|
217 | 217 | field_attr_mail: Email attribute |
|
218 | 218 | field_onthefly: Динамично създаване на потребител |
|
219 | 219 | field_start_date: Начална дата |
|
220 | 220 | field_done_ratio: % Прогрес |
|
221 | 221 | field_auth_source: Начин на оторизация |
|
222 | 222 | field_hide_mail: Скрий e-mail адреса ми |
|
223 | 223 | field_comments: Коментар |
|
224 | 224 | field_url: Адрес |
|
225 | 225 | field_start_page: Начална страница |
|
226 | 226 | field_subproject: Подпроект |
|
227 | 227 | field_hours: Часове |
|
228 | 228 | field_activity: Дейност |
|
229 | 229 | field_spent_on: Дата |
|
230 | 230 | field_identifier: Идентификатор |
|
231 | 231 | field_is_filter: Използва се за филтър |
|
232 | 232 | field_issue_to: Свързана задача |
|
233 | 233 | field_delay: Отместване |
|
234 | 234 | field_assignable: Възможно е възлагане на задачи за тази роля |
|
235 | 235 | field_redirect_existing_links: Пренасочване на съществуващи линкове |
|
236 | 236 | field_estimated_hours: Изчислено време |
|
237 | 237 | field_default_value: Стойност по подразбиране |
|
238 | 238 | |
|
239 | 239 | setting_app_title: Заглавие |
|
240 | 240 | setting_app_subtitle: Описание |
|
241 | 241 | setting_welcome_text: Допълнителен текст |
|
242 | 242 | setting_default_language: Език по подразбиране |
|
243 | 243 | setting_login_required: Изискване за вход в системата |
|
244 | 244 | setting_self_registration: Регистрация от потребители |
|
245 | 245 | setting_attachment_max_size: Максимална големина на прикачен файл |
|
246 | 246 | setting_issues_export_limit: Лимит за експорт на задачи |
|
247 | 247 | setting_mail_from: E-mail адрес за емисии |
|
248 | 248 | setting_host_name: Хост |
|
249 | 249 | setting_text_formatting: Форматиране на текста |
|
250 | 250 | setting_wiki_compression: Wiki компресиране на историята |
|
251 | 251 | setting_feeds_limit: Лимит на Feeds |
|
252 | 252 | setting_autofetch_changesets: Автоматично обработване на ревизиите |
|
253 | 253 | setting_sys_api_enabled: Разрешаване на WS за управление |
|
254 | 254 | setting_commit_ref_keywords: Отбелязващи ключови думи |
|
255 | 255 | setting_commit_fix_keywords: Приключващи ключови думи |
|
256 | 256 | setting_autologin: Автоматичен вход |
|
257 | 257 | setting_date_format: Формат на датата |
|
258 | 258 | setting_cross_project_issue_relations: Релации на задачи между проекти |
|
259 | 259 | |
|
260 | 260 | label_user: Потребител |
|
261 | 261 | label_user_plural: Потребители |
|
262 | 262 | label_user_new: Нов потребител |
|
263 | 263 | label_project: Проект |
|
264 | 264 | label_project_new: Нов проект |
|
265 | 265 | label_project_plural: Проекти |
|
266 | 266 | label_x_projects: |
|
267 | 267 | zero: no projects |
|
268 | 268 | one: 1 project |
|
269 | 269 | other: "{{count}} projects" |
|
270 | 270 | label_project_all: Всички проекти |
|
271 | 271 | label_project_latest: Последни проекти |
|
272 | 272 | label_issue: Задача |
|
273 | 273 | label_issue_new: Нова задача |
|
274 | 274 | label_issue_plural: Задачи |
|
275 | 275 | label_issue_view_all: Всички задачи |
|
276 | 276 | label_document: Документ |
|
277 | 277 | label_document_new: Нов документ |
|
278 | 278 | label_document_plural: Документи |
|
279 | 279 | label_role: Роля |
|
280 | 280 | label_role_plural: Роли |
|
281 | 281 | label_role_new: Нова роля |
|
282 | 282 | label_role_and_permissions: Роли и права |
|
283 | 283 | label_member: Член |
|
284 | 284 | label_member_new: Нов член |
|
285 | 285 | label_member_plural: Членове |
|
286 | 286 | label_tracker: Тракер |
|
287 | 287 | label_tracker_plural: Тракери |
|
288 | 288 | label_tracker_new: Нов тракер |
|
289 | 289 | label_workflow: Работен процес |
|
290 | 290 | label_issue_status: Статус на задача |
|
291 | 291 | label_issue_status_plural: Статуси на задачи |
|
292 | 292 | label_issue_status_new: Нов статус |
|
293 | 293 | label_issue_category: Категория задача |
|
294 | 294 | label_issue_category_plural: Категории задачи |
|
295 | 295 | label_issue_category_new: Нова категория |
|
296 | 296 | label_custom_field: Потребителско поле |
|
297 | 297 | label_custom_field_plural: Потребителски полета |
|
298 | 298 | label_custom_field_new: Ново потребителско поле |
|
299 | 299 | label_enumerations: Списъци |
|
300 | 300 | label_enumeration_new: Нова стойност |
|
301 | 301 | label_information: Информация |
|
302 | 302 | label_information_plural: Информация |
|
303 | 303 | label_please_login: Вход |
|
304 | 304 | label_register: Регистрация |
|
305 | 305 | label_password_lost: Забравена парола |
|
306 | 306 | label_home: Начало |
|
307 | 307 | label_my_page: Лична страница |
|
308 | 308 | label_my_account: Профил |
|
309 | 309 | label_my_projects: Проекти, в които участвам |
|
310 | 310 | label_administration: Администрация |
|
311 | 311 | label_login: Вход |
|
312 | 312 | label_logout: Изход |
|
313 | 313 | label_help: Помощ |
|
314 | 314 | label_reported_issues: Публикувани задачи |
|
315 | 315 | label_assigned_to_me_issues: Възложени на мен |
|
316 | 316 | label_last_login: Последно свързване |
|
317 | 317 | label_registered_on: Регистрация |
|
318 | 318 | label_activity: Дейност |
|
319 | 319 | label_new: Нов |
|
320 | 320 | label_logged_as: Логнат като |
|
321 | 321 | label_environment: Среда |
|
322 | 322 | label_authentication: Оторизация |
|
323 | 323 | label_auth_source: Начин на оторозация |
|
324 | 324 | label_auth_source_new: Нов начин на оторизация |
|
325 | 325 | label_auth_source_plural: Начини на оторизация |
|
326 | 326 | label_subproject_plural: Подпроекти |
|
327 | 327 | label_min_max_length: Мин. - Макс. дължина |
|
328 | 328 | label_list: Списък |
|
329 | 329 | label_date: Дата |
|
330 | 330 | label_integer: Целочислен |
|
331 | 331 | label_boolean: Чекбокс |
|
332 | 332 | label_string: Текст |
|
333 | 333 | label_text: Дълъг текст |
|
334 | 334 | label_attribute: Атрибут |
|
335 | 335 | label_attribute_plural: Атрибути |
|
336 | 336 | label_download: "{{count}} Download" |
|
337 | 337 | label_download_plural: "{{count}} Downloads" |
|
338 | 338 | label_no_data: Няма изходни данни |
|
339 | 339 | label_change_status: Промяна на статуса |
|
340 | 340 | label_history: История |
|
341 | 341 | label_attachment: Файл |
|
342 | 342 | label_attachment_new: Нов файл |
|
343 | 343 | label_attachment_delete: Изтриване |
|
344 | 344 | label_attachment_plural: Файлове |
|
345 | 345 | label_report: Справка |
|
346 | 346 | label_report_plural: Справки |
|
347 | 347 | label_news: Новини |
|
348 | 348 | label_news_new: Добави |
|
349 | 349 | label_news_plural: Новини |
|
350 | 350 | label_news_latest: Последни новини |
|
351 | 351 | label_news_view_all: Виж всички |
|
352 | 352 | label_settings: Настройки |
|
353 | 353 | label_overview: Общ изглед |
|
354 | 354 | label_version: Версия |
|
355 | 355 | label_version_new: Нова версия |
|
356 | 356 | label_version_plural: Версии |
|
357 | 357 | label_confirmation: Одобрение |
|
358 | 358 | label_export_to: Експорт към |
|
359 | 359 | label_read: Read... |
|
360 | 360 | label_public_projects: Публични проекти |
|
361 | 361 | label_open_issues: отворена |
|
362 | 362 | label_open_issues_plural: отворени |
|
363 | 363 | label_closed_issues: затворена |
|
364 | 364 | label_closed_issues_plural: затворени |
|
365 | 365 | label_x_open_issues_abbr_on_total: |
|
366 | 366 | zero: 0 open / {{total}} |
|
367 | 367 | one: 1 open / {{total}} |
|
368 | 368 | other: "{{count}} open / {{total}}" |
|
369 | 369 | label_x_open_issues_abbr: |
|
370 | 370 | zero: 0 open |
|
371 | 371 | one: 1 open |
|
372 | 372 | other: "{{count}} open" |
|
373 | 373 | label_x_closed_issues_abbr: |
|
374 | 374 | zero: 0 closed |
|
375 | 375 | one: 1 closed |
|
376 | 376 | other: "{{count}} closed" |
|
377 | 377 | label_total: Общо |
|
378 | 378 | label_permissions: Права |
|
379 | 379 | label_current_status: Текущ статус |
|
380 | 380 | label_new_statuses_allowed: Позволени статуси |
|
381 | 381 | label_all: всички |
|
382 | 382 | label_none: никакви |
|
383 | 383 | label_next: Следващ |
|
384 | 384 | label_previous: Предишен |
|
385 | 385 | label_used_by: Използва се от |
|
386 | 386 | label_details: Детайли |
|
387 | 387 | label_add_note: Добавяне на бележка |
|
388 | 388 | label_per_page: На страница |
|
389 | 389 | label_calendar: Календар |
|
390 | 390 | label_months_from: месеца от |
|
391 | 391 | label_gantt: Gantt |
|
392 | 392 | label_internal: Вътрешен |
|
393 | 393 | label_last_changes: "последни {{count}} промени" |
|
394 | 394 | label_change_view_all: Виж всички промени |
|
395 | 395 | label_personalize_page: Персонализиране |
|
396 | 396 | label_comment: Коментар |
|
397 | 397 | label_comment_plural: Коментари |
|
398 | 398 | label_x_comments: |
|
399 | 399 | zero: no comments |
|
400 | 400 | one: 1 comment |
|
401 | 401 | other: "{{count}} comments" |
|
402 | 402 | label_comment_add: Добавяне на коментар |
|
403 | 403 | label_comment_added: Добавен коментар |
|
404 | 404 | label_comment_delete: Изтриване на коментари |
|
405 | 405 | label_query: Потребителска справка |
|
406 | 406 | label_query_plural: Потребителски справки |
|
407 | 407 | label_query_new: Нова заявка |
|
408 | 408 | label_filter_add: Добави филтър |
|
409 | 409 | label_filter_plural: Филтри |
|
410 | 410 | label_equals: е |
|
411 | 411 | label_not_equals: не е |
|
412 | 412 | label_in_less_than: след по-малко от |
|
413 | 413 | label_in_more_than: след повече от |
|
414 | 414 | label_in: в следващите |
|
415 | 415 | label_today: днес |
|
416 | 416 | label_this_week: тази седмица |
|
417 | 417 | label_less_than_ago: преди по-малко от |
|
418 | 418 | label_more_than_ago: преди повече от |
|
419 | 419 | label_ago: преди |
|
420 | 420 | label_contains: съдържа |
|
421 | 421 | label_not_contains: не съдържа |
|
422 | 422 | label_day_plural: дни |
|
423 | 423 | label_repository: Хранилище |
|
424 | 424 | label_browse: Разглеждане |
|
425 | 425 | label_modification: "{{count}} промяна" |
|
426 | 426 | label_modification_plural: "{{count}} промени" |
|
427 | 427 | label_revision: Ревизия |
|
428 | 428 | label_revision_plural: Ревизии |
|
429 | 429 | label_added: добавено |
|
430 | 430 | label_modified: променено |
|
431 | 431 | label_deleted: изтрито |
|
432 | 432 | label_latest_revision: Последна ревизия |
|
433 | 433 | label_latest_revision_plural: Последни ревизии |
|
434 | 434 | label_view_revisions: Виж ревизиите |
|
435 | 435 | label_max_size: Максимална големина |
|
436 | 436 | label_sort_highest: Премести най-горе |
|
437 | 437 | label_sort_higher: Премести по-горе |
|
438 | 438 | label_sort_lower: Премести по-долу |
|
439 | 439 | label_sort_lowest: Премести най-долу |
|
440 | 440 | label_roadmap: Пътна карта |
|
441 | 441 | label_roadmap_due_in: "Излиза след {{value}}" |
|
442 | 442 | label_roadmap_overdue: "{{value}} закъснение" |
|
443 | 443 | label_roadmap_no_issues: Няма задачи за тази версия |
|
444 | 444 | label_search: Търсене |
|
445 | 445 | label_result_plural: Pезултати |
|
446 | 446 | label_all_words: Всички думи |
|
447 | 447 | label_wiki: Wiki |
|
448 | 448 | label_wiki_edit: Wiki редакция |
|
449 | 449 | label_wiki_edit_plural: Wiki редакции |
|
450 | 450 | label_wiki_page: Wiki page |
|
451 | 451 | label_wiki_page_plural: Wiki pages |
|
452 | 452 | label_index_by_title: Индекс |
|
453 | 453 | label_index_by_date: Индекс по дата |
|
454 | 454 | label_current_version: Текуща версия |
|
455 | 455 | label_preview: Преглед |
|
456 | 456 | label_feed_plural: Feeds |
|
457 | 457 | label_changes_details: Подробни промени |
|
458 | 458 | label_issue_tracking: Тракинг |
|
459 | 459 | label_spent_time: Отделено време |
|
460 | 460 | label_f_hour: "{{value}} час" |
|
461 | 461 | label_f_hour_plural: "{{value}} часа" |
|
462 | 462 | label_time_tracking: Отделяне на време |
|
463 | 463 | label_change_plural: Промени |
|
464 | 464 | label_statistics: Статистики |
|
465 | 465 | label_commits_per_month: Ревизии по месеци |
|
466 | 466 | label_commits_per_author: Ревизии по автор |
|
467 | 467 | label_view_diff: Виж разликите |
|
468 | 468 | label_diff_inline: хоризонтално |
|
469 | 469 | label_diff_side_by_side: вертикално |
|
470 | 470 | label_options: Опции |
|
471 | 471 | label_copy_workflow_from: Копирай работния процес от |
|
472 | 472 | label_permissions_report: Справка за права |
|
473 | 473 | label_watched_issues: Наблюдавани задачи |
|
474 | 474 | label_related_issues: Свързани задачи |
|
475 | 475 | label_applied_status: Промени статуса на |
|
476 | 476 | label_loading: Зареждане... |
|
477 | 477 | label_relation_new: Нова релация |
|
478 | 478 | label_relation_delete: Изтриване на релация |
|
479 | 479 | label_relates_to: свързана със |
|
480 | 480 | label_duplicates: дублира |
|
481 | 481 | label_blocks: блокира |
|
482 | 482 | label_blocked_by: блокирана от |
|
483 | 483 | label_precedes: предшества |
|
484 | 484 | label_follows: изпълнява се след |
|
485 | 485 | label_end_to_start: end to start |
|
486 | 486 | label_end_to_end: end to end |
|
487 | 487 | label_start_to_start: start to start |
|
488 | 488 | label_start_to_end: start to end |
|
489 | 489 | label_stay_logged_in: Запомни ме |
|
490 | 490 | label_disabled: забранено |
|
491 | 491 | label_show_completed_versions: Показване на реализирани версии |
|
492 | 492 | label_me: аз |
|
493 | 493 | label_board: Форум |
|
494 | 494 | label_board_new: Нов форум |
|
495 | 495 | label_board_plural: Форуми |
|
496 | 496 | label_topic_plural: Теми |
|
497 | 497 | label_message_plural: Съобщения |
|
498 | 498 | label_message_last: Последно съобщение |
|
499 | 499 | label_message_new: Нова тема |
|
500 | 500 | label_reply_plural: Отговори |
|
501 | 501 | label_send_information: Изпращане на информацията до потребителя |
|
502 | 502 | label_year: Година |
|
503 | 503 | label_month: Месец |
|
504 | 504 | label_week: Седмица |
|
505 | 505 | label_date_from: От |
|
506 | 506 | label_date_to: До |
|
507 | 507 | label_language_based: В зависимост от езика |
|
508 | 508 | label_sort_by: "Сортиране по {{value}}" |
|
509 | 509 | label_send_test_email: Изпращане на тестов e-mail |
|
510 | 510 | label_feeds_access_key_created_on: "{{value}} от създаването на RSS ключа" |
|
511 | 511 | label_module_plural: Модули |
|
512 | 512 | label_added_time_by: "Публикувана от {{author}} преди {{age}}" |
|
513 | 513 | label_updated_time: "Обновена преди {{value}}" |
|
514 | 514 | label_jump_to_a_project: Проект... |
|
515 | 515 | |
|
516 | 516 | button_login: Вход |
|
517 | 517 | button_submit: Прикачване |
|
518 | 518 | button_save: Запис |
|
519 | 519 | button_check_all: Избор на всички |
|
520 | 520 | button_uncheck_all: Изчистване на всички |
|
521 | 521 | button_delete: Изтриване |
|
522 | 522 | button_create: Създаване |
|
523 | 523 | button_test: Тест |
|
524 | 524 | button_edit: Редакция |
|
525 | 525 | button_add: Добавяне |
|
526 | 526 | button_change: Промяна |
|
527 | 527 | button_apply: Приложи |
|
528 | 528 | button_clear: Изчисти |
|
529 | 529 | button_lock: Заключване |
|
530 | 530 | button_unlock: Отключване |
|
531 | 531 | button_download: Download |
|
532 | 532 | button_list: Списък |
|
533 | 533 | button_view: Преглед |
|
534 | 534 | button_move: Преместване |
|
535 | 535 | button_back: Назад |
|
536 | 536 | button_cancel: Отказ |
|
537 | 537 | button_activate: Активация |
|
538 | 538 | button_sort: Сортиране |
|
539 | 539 | button_log_time: Отделяне на време |
|
540 | 540 | button_rollback: Върни се към тази ревизия |
|
541 | 541 | button_watch: Наблюдавай |
|
542 | 542 | button_unwatch: Спри наблюдението |
|
543 | 543 | button_reply: Отговор |
|
544 | 544 | button_archive: Архивиране |
|
545 | 545 | button_unarchive: Разархивиране |
|
546 | 546 | button_reset: Генериране наново |
|
547 | 547 | button_rename: Преименуване |
|
548 | 548 | |
|
549 | 549 | status_active: активен |
|
550 | 550 | status_registered: регистриран |
|
551 | 551 | status_locked: заключен |
|
552 | 552 | |
|
553 | 553 | text_select_mail_notifications: Изберете събития за изпращане на e-mail. |
|
554 | 554 | text_regexp_info: пр. ^[A-Z0-9]+$ |
|
555 | 555 | text_min_max_length_info: 0 - без ограничения |
|
556 | 556 | text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? |
|
557 | 557 | text_workflow_edit: Изберете роля и тракер за да редактирате работния процес |
|
558 | 558 | text_are_you_sure: Сигурни ли сте? |
|
559 | 559 | text_tip_task_begin_day: задача започваща този ден |
|
560 | 560 | text_tip_task_end_day: задача завършваща този ден |
|
561 | 561 | text_tip_task_begin_end_day: задача започваща и завършваща този ден |
|
562 | 562 | text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.' |
|
563 | 563 | text_caracters_maximum: "До {{count}} символа." |
|
564 | 564 | text_length_between: "От {{min}} до {{max}} символа." |
|
565 | 565 | text_tracker_no_workflow: Няма дефиниран работен процес за този тракер |
|
566 | 566 | text_unallowed_characters: Непозволени символи |
|
567 | 567 | text_comma_separated: Позволено е изброяване (с разделител запетая). |
|
568 | 568 | text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии |
|
569 | 569 | text_issue_added: "Публикувана е нова задача с номер {{id}} (от {{author}})." |
|
570 | 570 | text_issue_updated: "Задача {{id}} е обновена (от {{author}})." |
|
571 | 571 | text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание? |
|
572 | 572 | text_issue_category_destroy_question: "Има задачи ({{count}}) обвързани с тази категория. Какво ще изберете?" |
|
573 | 573 | text_issue_category_destroy_assignments: Премахване на връзките с категорията |
|
574 | 574 | text_issue_category_reassign_to: Преобвързване с категория |
|
575 | 575 | |
|
576 | 576 | default_role_manager: Мениджър |
|
577 | 577 | default_role_developper: Разработчик |
|
578 | 578 | default_role_reporter: Публикуващ |
|
579 | 579 | default_tracker_bug: Бъг |
|
580 | 580 | default_tracker_feature: Функционалност |
|
581 | 581 | default_tracker_support: Поддръжка |
|
582 | 582 | default_issue_status_new: Нова |
|
583 | 583 | default_issue_status_in_progress: In Progress |
|
584 | 584 | default_issue_status_resolved: Приключена |
|
585 | 585 | default_issue_status_feedback: Обратна връзка |
|
586 | 586 | default_issue_status_closed: Затворена |
|
587 | 587 | default_issue_status_rejected: Отхвърлена |
|
588 | 588 | default_doc_category_user: Документация за потребителя |
|
589 | 589 | default_doc_category_tech: Техническа документация |
|
590 | 590 | default_priority_low: Нисък |
|
591 | 591 | default_priority_normal: Нормален |
|
592 | 592 | default_priority_high: Висок |
|
593 | 593 | default_priority_urgent: Спешен |
|
594 | 594 | default_priority_immediate: Веднага |
|
595 | 595 | default_activity_design: Дизайн |
|
596 | 596 | default_activity_development: Разработка |
|
597 | 597 | |
|
598 | 598 | enumeration_issue_priorities: Приоритети на задачи |
|
599 | 599 | enumeration_doc_categories: Категории документи |
|
600 | 600 | enumeration_activities: Дейности (time tracking) |
|
601 | 601 | label_file_plural: Файлове |
|
602 | 602 | label_changeset_plural: Ревизии |
|
603 | 603 | field_column_names: Колони |
|
604 | 604 | label_default_columns: По подразбиране |
|
605 | 605 | setting_issue_list_default_columns: Показвани колони по подразбиране |
|
606 | 606 | setting_repositories_encodings: Кодови таблици |
|
607 | 607 | notice_no_issue_selected: "Няма избрани задачи." |
|
608 | 608 | label_bulk_edit_selected_issues: Редактиране на задачи |
|
609 | 609 | label_no_change_option: (Без промяна) |
|
610 | 610 | notice_failed_to_save_issues: "Неуспешен запис на {{count}} задачи от {{total}} избрани: {{ids}}." |
|
611 | 611 | label_theme: Тема |
|
612 | 612 | label_default: По подразбиране |
|
613 | 613 | label_search_titles_only: Само в заглавията |
|
614 | 614 | label_nobody: никой |
|
615 | 615 | button_change_password: Промяна на парола |
|
616 | 616 | text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)." |
|
617 | 617 | label_user_mail_option_selected: "За всички събития само в избраните проекти..." |
|
618 | 618 | label_user_mail_option_all: "За всяко събитие в проектите, в които участвам" |
|
619 | 619 | label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)" |
|
620 | 620 | setting_emails_footer: Подтекст за e-mail |
|
621 | 621 | label_float: Дробно |
|
622 | 622 | button_copy: Копиране |
|
623 | 623 | mail_body_account_information_external: "Можете да използвате вашия {{value}} профил за вход." |
|
624 | 624 | mail_body_account_information: Информацията за профила ви |
|
625 | 625 | setting_protocol: Протокол |
|
626 | 626 | label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени" |
|
627 | 627 | setting_time_format: Формат на часа |
|
628 | 628 | label_registration_activation_by_email: активиране на профила по email |
|
629 | 629 | mail_subject_account_activation_request: "Заявка за активиране на профил в {{value}}" |
|
630 | 630 | mail_body_account_activation_request: "Има новорегистриран потребител ({{value}}), очакващ вашето одобрение:" |
|
631 | 631 | label_registration_automatic_activation: автоматично активиране |
|
632 | 632 | label_registration_manual_activation: ръчно активиране |
|
633 | 633 | notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор." |
|
634 | 634 | field_time_zone: Часова зона |
|
635 | 635 | text_caracters_minimum: "Минимум {{count}} символа." |
|
636 | 636 | setting_bcc_recipients: Получатели на скрито копие (bcc) |
|
637 | 637 | button_annotate: Анотация |
|
638 | 638 | label_issues_by: "Задачи по {{value}}" |
|
639 | 639 | field_searchable: С възможност за търсене |
|
640 | 640 | label_display_per_page: "На страница по: {{value}}" |
|
641 | 641 | setting_per_page_options: Опции за страниране |
|
642 | 642 | label_age: Възраст |
|
643 | 643 | notice_default_data_loaded: Примерната информацията е успешно заредена. |
|
644 | 644 | text_load_default_configuration: Зареждане на примерна информация |
|
645 | 645 | text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате." |
|
646 | 646 | error_can_t_load_default_data: "Грешка при зареждане на примерната информация: {{value}}" |
|
647 | 647 | button_update: Обновяване |
|
648 | 648 | label_change_properties: Промяна на настройки |
|
649 | 649 | label_general: Основни |
|
650 | 650 | label_repository_plural: Хранилища |
|
651 | 651 | label_associated_revisions: Асоциирани ревизии |
|
652 | 652 | setting_user_format: Потребителски формат |
|
653 | 653 | text_status_changed_by_changeset: "Приложено с ревизия {{value}}." |
|
654 | 654 | label_more: Още |
|
655 | 655 | text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?' |
|
656 | 656 | label_scm: SCM (Система за контрол на кода) |
|
657 | 657 | text_select_project_modules: 'Изберете активните модули за този проект:' |
|
658 | 658 | label_issue_added: Добавена задача |
|
659 | 659 | label_issue_updated: Обновена задача |
|
660 | 660 | label_document_added: Добавен документ |
|
661 | 661 | label_message_posted: Добавено съобщение |
|
662 | 662 | label_file_added: Добавен файл |
|
663 | 663 | label_news_added: Добавена новина |
|
664 | 664 | project_module_boards: Форуми |
|
665 | 665 | project_module_issue_tracking: Тракинг |
|
666 | 666 | project_module_wiki: Wiki |
|
667 | 667 | project_module_files: Файлове |
|
668 | 668 | project_module_documents: Документи |
|
669 | 669 | project_module_repository: Хранилище |
|
670 | 670 | project_module_news: Новини |
|
671 | 671 | project_module_time_tracking: Отделяне на време |
|
672 | 672 | text_file_repository_writable: Възможност за писане в хранилището с файлове |
|
673 | 673 | text_default_administrator_account_changed: Сменен фабричния администраторски профил |
|
674 | 674 | text_rmagick_available: Наличен RMagick (по избор) |
|
675 | 675 | button_configure: Конфигуриране |
|
676 | 676 | label_plugins: Плъгини |
|
677 | 677 | label_ldap_authentication: LDAP оторизация |
|
678 | 678 | label_downloads_abbr: D/L |
|
679 | 679 | label_this_month: текущия месец |
|
680 | 680 | label_last_n_days: "последните {{count}} дни" |
|
681 | 681 | label_all_time: всички |
|
682 | 682 | label_this_year: текущата година |
|
683 | 683 | label_date_range: Период |
|
684 | 684 | label_last_week: последната седмица |
|
685 | 685 | label_yesterday: вчера |
|
686 | 686 | label_last_month: последния месец |
|
687 | 687 | label_add_another_file: Добавяне на друг файл |
|
688 | 688 | label_optional_description: Незадължително описание |
|
689 | 689 | text_destroy_time_entries_question: "{{hours}} часа са отделени на задачите, които искате да изтриете. Какво избирате?" |
|
690 | 690 | error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект' |
|
691 | 691 | text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект |
|
692 | 692 | text_destroy_time_entries: Изтриване на отделеното време |
|
693 | 693 | text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:' |
|
694 | 694 | setting_activity_days_default: Брой дни показвани на таб Дейност |
|
695 | 695 | label_chronological_order: Хронологичен ред |
|
696 | 696 | field_comments_sorting: Сортиране на коментарите |
|
697 | 697 | label_reverse_chronological_order: Обратен хронологичен ред |
|
698 | 698 | label_preferences: Предпочитания |
|
699 | 699 | setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране |
|
700 | 700 | label_overall_activity: Цялостна дейност |
|
701 | 701 | setting_default_projects_public: Новите проекти са публични по подразбиране |
|
702 | 702 | error_scm_annotate: "Обектът не съществува или не може да бъде анотиран." |
|
703 | 703 | label_planning: Планиране |
|
704 | 704 | text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted." |
|
705 | 705 | label_and_its_subprojects: "{{value}} and its subprojects" |
|
706 | 706 | mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:" |
|
707 | 707 | mail_subject_reminder: "{{count}} issue(s) due in the next days" |
|
708 | 708 | text_user_wrote: "{{value}} wrote:" |
|
709 | 709 | label_duplicated_by: duplicated by |
|
710 | 710 | setting_enabled_scm: Enabled SCM |
|
711 | 711 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
712 | 712 | text_enumeration_destroy_question: "{{count}} objects are assigned to this value." |
|
713 | 713 | label_incoming_emails: Incoming emails |
|
714 | 714 | label_generate_key: Generate a key |
|
715 | 715 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
716 | 716 | setting_mail_handler_api_key: API key |
|
717 | 717 | text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them." |
|
718 | 718 | field_parent_title: Parent page |
|
719 | 719 | label_issue_watchers: Watchers |
|
720 | 720 | setting_commit_logs_encoding: Commit messages encoding |
|
721 | 721 | button_quote: Quote |
|
722 | 722 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
723 | 723 | notice_unable_delete_version: Unable to delete version |
|
724 | 724 | label_renamed: renamed |
|
725 | 725 | label_copied: copied |
|
726 | 726 | setting_plain_text_mail: plain text only (no HTML) |
|
727 | 727 | permission_view_files: View files |
|
728 | 728 | permission_edit_issues: Edit issues |
|
729 | 729 | permission_edit_own_time_entries: Edit own time logs |
|
730 | 730 | permission_manage_public_queries: Manage public queries |
|
731 | 731 | permission_add_issues: Add issues |
|
732 | 732 | permission_log_time: Log spent time |
|
733 | 733 | permission_view_changesets: View changesets |
|
734 | 734 | permission_view_time_entries: View spent time |
|
735 | 735 | permission_manage_versions: Manage versions |
|
736 | 736 | permission_manage_wiki: Manage wiki |
|
737 | 737 | permission_manage_categories: Manage issue categories |
|
738 | 738 | permission_protect_wiki_pages: Protect wiki pages |
|
739 | 739 | permission_comment_news: Comment news |
|
740 | 740 | permission_delete_messages: Delete messages |
|
741 | 741 | permission_select_project_modules: Select project modules |
|
742 | 742 | permission_manage_documents: Manage documents |
|
743 | 743 | permission_edit_wiki_pages: Edit wiki pages |
|
744 | 744 | permission_add_issue_watchers: Add watchers |
|
745 | 745 | permission_view_gantt: View gantt chart |
|
746 | 746 | permission_move_issues: Move issues |
|
747 | 747 | permission_manage_issue_relations: Manage issue relations |
|
748 | 748 | permission_delete_wiki_pages: Delete wiki pages |
|
749 | 749 | permission_manage_boards: Manage boards |
|
750 | 750 | permission_delete_wiki_pages_attachments: Delete attachments |
|
751 | 751 | permission_view_wiki_edits: View wiki history |
|
752 | 752 | permission_add_messages: Post messages |
|
753 | 753 | permission_view_messages: View messages |
|
754 | 754 | permission_manage_files: Manage files |
|
755 | 755 | permission_edit_issue_notes: Edit notes |
|
756 | 756 | permission_manage_news: Manage news |
|
757 | 757 | permission_view_calendar: View calendrier |
|
758 | 758 | permission_manage_members: Manage members |
|
759 | 759 | permission_edit_messages: Edit messages |
|
760 | 760 | permission_delete_issues: Delete issues |
|
761 | 761 | permission_view_issue_watchers: View watchers list |
|
762 | 762 | permission_manage_repository: Manage repository |
|
763 | 763 | permission_commit_access: Commit access |
|
764 | 764 | permission_browse_repository: Browse repository |
|
765 | 765 | permission_view_documents: View documents |
|
766 | 766 | permission_edit_project: Edit project |
|
767 | 767 | permission_add_issue_notes: Add notes |
|
768 | 768 | permission_save_queries: Save queries |
|
769 | 769 | permission_view_wiki_pages: View wiki |
|
770 | 770 | permission_rename_wiki_pages: Rename wiki pages |
|
771 | 771 | permission_edit_time_entries: Edit time logs |
|
772 | 772 | permission_edit_own_issue_notes: Edit own notes |
|
773 | 773 | setting_gravatar_enabled: Use Gravatar user icons |
|
774 | 774 | label_example: Example |
|
775 | 775 | text_repository_usernames_mapping: "Select ou update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." |
|
776 | 776 | permission_edit_own_messages: Edit own messages |
|
777 | 777 | permission_delete_own_messages: Delete own messages |
|
778 | 778 | label_user_activity: "{{value}}'s activity" |
|
779 | 779 | label_updated_time_by: "Updated by {{author}} {{age}} ago" |
|
780 | 780 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
781 | 781 | setting_diff_max_lines_displayed: Max number of diff lines displayed |
|
782 | 782 | text_plugin_assets_writable: Plugin assets directory writable |
|
783 | 783 | warning_attachments_not_saved: "{{count}} file(s) could not be saved." |
|
784 | 784 | button_create_and_continue: Create and continue |
|
785 | 785 | text_custom_field_possible_values_info: 'One line for each value' |
|
786 | 786 | label_display: Display |
|
787 | 787 | field_editable: Editable |
|
788 | 788 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
789 | 789 | setting_file_max_size_displayed: Max size of text files displayed inline |
|
790 | 790 | field_watcher: Watcher |
|
791 | 791 | setting_openid: Allow OpenID login and registration |
|
792 | 792 | field_identity_url: OpenID URL |
|
793 | 793 | label_login_with_open_id_option: or login with OpenID |
|
794 | 794 | field_content: Content |
|
795 | 795 | label_descending: Descending |
|
796 | 796 | label_sort: Sort |
|
797 | 797 | label_ascending: Ascending |
|
798 | 798 | label_date_from_to: From {{start}} to {{end}} |
|
799 | 799 | label_greater_or_equal: ">=" |
|
800 | 800 | label_less_or_equal: <= |
|
801 | 801 | text_wiki_page_destroy_question: This page has {{descendants}} child page(s) and descendant(s). What do you want to do? |
|
802 | 802 | text_wiki_page_reassign_children: Reassign child pages to this parent page |
|
803 | 803 | text_wiki_page_nullify_children: Keep child pages as root pages |
|
804 | 804 | text_wiki_page_destroy_children: Delete child pages and all their descendants |
|
805 | 805 | setting_password_min_length: Minimum password length |
|
806 | 806 | field_group_by: Group results by |
|
807 | 807 | mail_subject_wiki_content_updated: "'{{page}}' wiki page has been updated" |
|
808 | 808 | label_wiki_content_added: Wiki page added |
|
809 | 809 | mail_subject_wiki_content_added: "'{{page}}' wiki page has been added" |
|
810 | 810 | mail_body_wiki_content_added: The '{{page}}' wiki page has been added by {{author}}. |
|
811 | 811 | label_wiki_content_updated: Wiki page updated |
|
812 | 812 | mail_body_wiki_content_updated: The '{{page}}' wiki page has been updated by {{author}}. |
|
813 | 813 | permission_add_project: Create project |
|
814 | 814 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
815 | 815 | label_view_all_revisions: View all revisions |
|
816 | 816 | label_tag: Tag |
|
817 | 817 | label_branch: Branch |
|
818 | 818 | error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings. |
|
819 | 819 | error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses"). |
|
820 | 820 | text_journal_changed: "{{label}} changed from {{old}} to {{new}}" |
|
821 | 821 | text_journal_set_to: "{{label}} set to {{value}}" |
|
822 | 822 | text_journal_deleted: "{{label}} deleted ({{old}})" |
|
823 | 823 | label_group_plural: Groups |
|
824 | 824 | label_group: Group |
|
825 | 825 | label_group_new: New group |
|
826 | 826 | label_time_entry_plural: Spent time |
|
827 | 827 | text_journal_added: "{{label}} {{value}} added" |
|
828 | 828 | field_active: Active |
|
829 | 829 | enumeration_system_activity: System Activity |
|
830 | 830 | permission_delete_issue_watchers: Delete watchers |
|
831 | 831 | version_status_closed: closed |
|
832 | 832 | version_status_locked: locked |
|
833 | 833 | version_status_open: open |
|
834 | 834 | error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened |
|
835 | 835 | label_user_anonymous: Anonymous |
|
836 | 836 | button_move_and_follow: Move and follow |
|
837 | 837 | setting_default_projects_modules: Default enabled modules for new projects |
|
838 | 838 | setting_gravatar_default: Default Gravatar image |
|
839 | 839 | field_sharing: Sharing |
|
840 | 840 | label_version_sharing_hierarchy: With project hierarchy |
|
841 | 841 | label_version_sharing_system: With all projects |
|
842 | 842 | label_version_sharing_descendants: With subprojects |
|
843 | 843 | label_version_sharing_tree: With project tree |
|
844 | 844 | label_version_sharing_none: Not shared |
|
845 | 845 | error_can_not_archive_project: This project can not be archived |
|
846 | 846 | button_duplicate: Duplicate |
|
847 | 847 | button_copy_and_follow: Copy and follow |
|
848 | 848 | label_copy_source: Source |
|
849 | 849 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
850 | 850 | setting_issue_done_ratio_issue_status: Use the issue status |
|
851 | 851 | error_issue_done_ratios_not_updated: Issue done ratios not updated. |
|
852 | 852 | error_workflow_copy_target: Please select target tracker(s) and role(s) |
|
853 | 853 | setting_issue_done_ratio_issue_field: Use the issue field |
|
854 | 854 | label_copy_same_as_target: Same as target |
|
855 | 855 | label_copy_target: Target |
|
856 | 856 | notice_issue_done_ratios_updated: Issue done ratios updated. |
|
857 | 857 | error_workflow_copy_source: Please select a source tracker or role |
|
858 | 858 | label_update_issue_done_ratios: Update issue done ratios |
|
859 | 859 | setting_start_of_week: Start calendars on |
|
860 | 860 | permission_view_issues: View Issues |
|
861 | 861 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
862 | 862 | label_revision_id: Revision {{value}} |
|
863 | 863 | label_api_access_key: API access key |
|
864 | 864 | label_api_access_key_created_on: API access key created {{value}} ago |
|
865 | 865 | label_feeds_access_key: RSS access key |
|
866 | 866 | notice_api_access_key_reseted: Your API access key was reset. |
|
867 | 867 | setting_rest_api_enabled: Enable REST web service |
|
868 | 868 | label_missing_api_access_key: Missing an API access key |
|
869 | 869 | label_missing_feeds_access_key: Missing a RSS access key |
|
870 | 870 | button_show: Show |
|
871 | 871 | text_line_separated: Multiple values allowed (one line for each value). |
|
872 | 872 | setting_mail_handler_body_delimiters: Truncate emails after one of these lines |
|
873 | 873 | permission_add_subprojects: Create subprojects |
|
874 | 874 | label_subproject_new: New subproject |
|
875 | 875 | text_own_membership_delete_confirmation: |- |
|
876 | 876 | You are about to remove some or all of your permissions and may no longer be able to edit this project after that. |
|
877 | 877 | Are you sure you want to continue? |
|
878 | 878 | label_close_versions: Close completed versions |
|
879 | 879 | label_board_sticky: Sticky |
|
880 | 880 | label_board_locked: Locked |
|
881 | 881 | permission_export_wiki_pages: Export wiki pages |
|
882 | 882 | setting_cache_formatted_text: Cache formatted text |
|
883 | 883 | permission_manage_project_activities: Manage project activities |
|
884 |
|
|
|
884 | error_unable_delete_issue_status: Unable to delete issue status |
@@ -1,897 +1,897 | |||
|
1 | 1 | # Italian translations for Ruby on Rails |
|
2 | 2 | # by Claudio Poli (masterkain@gmail.com) |
|
3 | 3 | |
|
4 | 4 | it: |
|
5 | 5 | date: |
|
6 | 6 | formats: |
|
7 | 7 | default: "%d-%m-%Y" |
|
8 | 8 | short: "%d %b" |
|
9 | 9 | long: "%d %B %Y" |
|
10 | 10 | only_day: "%e" |
|
11 | 11 | |
|
12 | 12 | day_names: [Domenica, Lunedì, Martedì, Mercoledì, Giovedì, Venerdì, Sabato] |
|
13 | 13 | abbr_day_names: [Dom, Lun, Mar, Mer, Gio, Ven, Sab] |
|
14 | 14 | month_names: [~, Gennaio, Febbraio, Marzo, Aprile, Maggio, Giugno, Luglio, Agosto, Settembre, Ottobre, Novembre, Dicembre] |
|
15 | 15 | abbr_month_names: [~, Gen, Feb, Mar, Apr, Mag, Giu, Lug, Ago, Set, Ott, Nov, Dic] |
|
16 | 16 | order: [ :day, :month, :year ] |
|
17 | 17 | |
|
18 | 18 | time: |
|
19 | 19 | formats: |
|
20 | 20 | default: "%a %d %b %Y, %H:%M:%S %z" |
|
21 | 21 | time: "%H:%M" |
|
22 | 22 | short: "%d %b %H:%M" |
|
23 | 23 | long: "%d %B %Y %H:%M" |
|
24 | 24 | only_second: "%S" |
|
25 | 25 | |
|
26 | 26 | datetime: |
|
27 | 27 | formats: |
|
28 | 28 | default: "%d-%m-%YT%H:%M:%S%Z" |
|
29 | 29 | |
|
30 | 30 | am: 'am' |
|
31 | 31 | pm: 'pm' |
|
32 | 32 | |
|
33 | 33 | datetime: |
|
34 | 34 | distance_in_words: |
|
35 | 35 | half_a_minute: "mezzo minuto" |
|
36 | 36 | less_than_x_seconds: |
|
37 | 37 | one: "meno di un secondo" |
|
38 | 38 | other: "meno di {{count}} secondi" |
|
39 | 39 | x_seconds: |
|
40 | 40 | one: "1 secondo" |
|
41 | 41 | other: "{{count}} secondi" |
|
42 | 42 | less_than_x_minutes: |
|
43 | 43 | one: "meno di un minuto" |
|
44 | 44 | other: "meno di {{count}} minuti" |
|
45 | 45 | x_minutes: |
|
46 | 46 | one: "1 minuto" |
|
47 | 47 | other: "{{count}} minuti" |
|
48 | 48 | about_x_hours: |
|
49 | 49 | one: "circa un'ora" |
|
50 | 50 | other: "circa {{count}} ore" |
|
51 | 51 | x_days: |
|
52 | 52 | one: "1 giorno" |
|
53 | 53 | other: "{{count}} giorni" |
|
54 | 54 | about_x_months: |
|
55 | 55 | one: "circa un mese" |
|
56 | 56 | other: "circa {{count}} mesi" |
|
57 | 57 | x_months: |
|
58 | 58 | one: "1 mese" |
|
59 | 59 | other: "{{count}} mesi" |
|
60 | 60 | about_x_years: |
|
61 | 61 | one: "circa un anno" |
|
62 | 62 | other: "circa {{count}} anni" |
|
63 | 63 | over_x_years: |
|
64 | 64 | one: "oltre un anno" |
|
65 | 65 | other: "oltre {{count}} anni" |
|
66 | 66 | almost_x_years: |
|
67 | 67 | one: "almost 1 year" |
|
68 | 68 | other: "almost {{count}} years" |
|
69 | 69 | |
|
70 | 70 | number: |
|
71 | 71 | format: |
|
72 | 72 | precision: 3 |
|
73 | 73 | separator: ',' |
|
74 | 74 | delimiter: '.' |
|
75 | 75 | currency: |
|
76 | 76 | format: |
|
77 | 77 | unit: '€' |
|
78 | 78 | precision: 2 |
|
79 | 79 | format: '%n %u' |
|
80 | 80 | human: |
|
81 | 81 | storage_units: |
|
82 | 82 | format: "%n %u" |
|
83 | 83 | units: |
|
84 | 84 | byte: |
|
85 | 85 | one: "Byte" |
|
86 | 86 | other: "Bytes" |
|
87 | 87 | kb: "KB" |
|
88 | 88 | mb: "MB" |
|
89 | 89 | gb: "GB" |
|
90 | 90 | tb: "TB" |
|
91 | 91 | |
|
92 | 92 | support: |
|
93 | 93 | array: |
|
94 | 94 | sentence_connector: "and" |
|
95 | 95 | skip_last_comma: false |
|
96 | 96 | |
|
97 | 97 | activerecord: |
|
98 | 98 | errors: |
|
99 | 99 | template: |
|
100 | 100 | header: |
|
101 | 101 | one: "Non posso salvare questo {{model}}: 1 errore" |
|
102 | 102 | other: "Non posso salvare questo {{model}}: {{count}} errori." |
|
103 | 103 | body: "Per favore ricontrolla i seguenti campi:" |
|
104 | 104 | messages: |
|
105 | 105 | inclusion: "non è incluso nella lista" |
|
106 | 106 | exclusion: "è riservato" |
|
107 | 107 | invalid: "non è valido" |
|
108 | 108 | confirmation: "non coincide con la conferma" |
|
109 | 109 | accepted: "deve essere accettata" |
|
110 | 110 | empty: "non può essere vuoto" |
|
111 | 111 | blank: "non può essere lasciato in bianco" |
|
112 | 112 | too_long: "è troppo lungo (il massimo è {{count}} lettere)" |
|
113 | 113 | too_short: "è troppo corto (il minimo è {{count}} lettere)" |
|
114 | 114 | wrong_length: "è della lunghezza sbagliata (deve essere di {{count}} lettere)" |
|
115 | 115 | taken: "è già in uso" |
|
116 | 116 | not_a_number: "non è un numero" |
|
117 | 117 | greater_than: "deve essere superiore a {{count}}" |
|
118 | 118 | greater_than_or_equal_to: "deve essere superiore o uguale a {{count}}" |
|
119 | 119 | equal_to: "deve essere uguale a {{count}}" |
|
120 | 120 | less_than: "deve essere meno di {{count}}" |
|
121 | 121 | less_than_or_equal_to: "deve essere meno o uguale a {{count}}" |
|
122 | 122 | odd: "deve essere dispari" |
|
123 | 123 | even: "deve essere pari" |
|
124 | 124 | greater_than_start_date: "deve essere maggiore della data di partenza" |
|
125 | 125 | not_same_project: "non appartiene allo stesso progetto" |
|
126 | 126 | circular_dependency: "Questa relazione creerebbe una dipendenza circolare" |
|
127 | 127 | |
|
128 | 128 | actionview_instancetag_blank_option: Scegli |
|
129 | 129 | |
|
130 | 130 | general_text_No: 'No' |
|
131 | 131 | general_text_Yes: 'Si' |
|
132 | 132 | general_text_no: 'no' |
|
133 | 133 | general_text_yes: 'si' |
|
134 | 134 | general_lang_name: 'Italiano' |
|
135 | 135 | general_csv_separator: ',' |
|
136 | 136 | general_csv_decimal_separator: '.' |
|
137 | 137 | general_csv_encoding: ISO-8859-1 |
|
138 | 138 | general_pdf_encoding: ISO-8859-1 |
|
139 | 139 | general_first_day_of_week: '1' |
|
140 | 140 | |
|
141 | 141 | notice_account_updated: L'utenza è stata aggiornata. |
|
142 | 142 | notice_account_invalid_creditentials: Nome utente o password non validi. |
|
143 | 143 | notice_account_password_updated: La password è stata aggiornata. |
|
144 | 144 | notice_account_wrong_password: Password errata |
|
145 | 145 | notice_account_register_done: L'utenza è stata creata. |
|
146 | 146 | notice_account_unknown_email: Utente sconosciuto. |
|
147 | 147 | notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. |
|
148 | 148 | notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. |
|
149 | 149 | notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. |
|
150 | 150 | notice_successful_create: Creazione effettuata. |
|
151 | 151 | notice_successful_update: Modifica effettuata. |
|
152 | 152 | notice_successful_delete: Eliminazione effettuata. |
|
153 | 153 | notice_successful_connection: Connessione effettuata. |
|
154 | 154 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. |
|
155 | 155 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. |
|
156 | 156 | notice_not_authorized: Non sei autorizzato ad accedere a questa pagina. |
|
157 | 157 | notice_email_sent: "Una e-mail è stata spedita a {{value}}" |
|
158 | 158 | notice_email_error: "Si è verificato un errore durante l'invio di una e-mail ({{value}})" |
|
159 | 159 | notice_feeds_access_key_reseted: La tua chiave di accesso RSS è stata reimpostata. |
|
160 | 160 | |
|
161 | 161 | error_scm_not_found: "La risorsa e/o la versione non esistono nel repository." |
|
162 | 162 | error_scm_command_failed: "Si è verificato un errore durante l'accesso al repository: {{value}}" |
|
163 | 163 | |
|
164 | 164 | mail_subject_lost_password: "Password {{value}}" |
|
165 | 165 | mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:' |
|
166 | 166 | mail_subject_register: "Attivazione utenza {{value}}" |
|
167 | 167 | mail_body_register: 'Per attivare la vostra utenza, usate il seguente collegamento:' |
|
168 | 168 | |
|
169 | 169 | gui_validation_error: 1 errore |
|
170 | 170 | gui_validation_error_plural: "{{count}} errori" |
|
171 | 171 | |
|
172 | 172 | field_name: Nome |
|
173 | 173 | field_description: Descrizione |
|
174 | 174 | field_summary: Sommario |
|
175 | 175 | field_is_required: Richiesto |
|
176 | 176 | field_firstname: Nome |
|
177 | 177 | field_lastname: Cognome |
|
178 | 178 | field_mail: Email |
|
179 | 179 | field_filename: File |
|
180 | 180 | field_filesize: Dimensione |
|
181 | 181 | field_downloads: Download |
|
182 | 182 | field_author: Autore |
|
183 | 183 | field_created_on: Creato |
|
184 | 184 | field_updated_on: Aggiornato |
|
185 | 185 | field_field_format: Formato |
|
186 | 186 | field_is_for_all: Per tutti i progetti |
|
187 | 187 | field_possible_values: Valori possibili |
|
188 | 188 | field_regexp: Espressione regolare |
|
189 | 189 | field_min_length: Lunghezza minima |
|
190 | 190 | field_max_length: Lunghezza massima |
|
191 | 191 | field_value: Valore |
|
192 | 192 | field_category: Categoria |
|
193 | 193 | field_title: Titolo |
|
194 | 194 | field_project: Progetto |
|
195 | 195 | field_issue: Segnalazione |
|
196 | 196 | field_status: Stato |
|
197 | 197 | field_notes: Note |
|
198 | 198 | field_is_closed: Chiude la segnalazione |
|
199 | 199 | field_is_default: Stato predefinito |
|
200 | 200 | field_tracker: Tracker |
|
201 | 201 | field_subject: Oggetto |
|
202 | 202 | field_due_date: Data ultima |
|
203 | 203 | field_assigned_to: Assegnato a |
|
204 | 204 | field_priority: Priorita' |
|
205 | 205 | field_fixed_version: Versione prevista |
|
206 | 206 | field_user: Utente |
|
207 | 207 | field_role: Ruolo |
|
208 | 208 | field_homepage: Homepage |
|
209 | 209 | field_is_public: Pubblico |
|
210 | 210 | field_parent: Sottoprogetto di |
|
211 | 211 | field_is_in_roadmap: Segnalazioni mostrate nel roadmap |
|
212 | 212 | field_login: Login |
|
213 | 213 | field_mail_notification: Notifiche via e-mail |
|
214 | 214 | field_admin: Amministratore |
|
215 | 215 | field_last_login_on: Ultima connessione |
|
216 | 216 | field_language: Lingua |
|
217 | 217 | field_effective_date: Data |
|
218 | 218 | field_password: Password |
|
219 | 219 | field_new_password: Nuova password |
|
220 | 220 | field_password_confirmation: Conferma |
|
221 | 221 | field_version: Versione |
|
222 | 222 | field_type: Tipo |
|
223 | 223 | field_host: Host |
|
224 | 224 | field_port: Porta |
|
225 | 225 | field_account: Utenza |
|
226 | 226 | field_base_dn: DN base |
|
227 | 227 | field_attr_login: Attributo login |
|
228 | 228 | field_attr_firstname: Attributo nome |
|
229 | 229 | field_attr_lastname: Attributo cognome |
|
230 | 230 | field_attr_mail: Attributo e-mail |
|
231 | 231 | field_onthefly: Creazione utenza "al volo" |
|
232 | 232 | field_start_date: Inizio |
|
233 | 233 | field_done_ratio: % completato |
|
234 | 234 | field_auth_source: Modalità di autenticazione |
|
235 | 235 | field_hide_mail: Nascondi il mio indirizzo di e-mail |
|
236 | 236 | field_comments: Commento |
|
237 | 237 | field_url: URL |
|
238 | 238 | field_start_page: Pagina principale |
|
239 | 239 | field_subproject: Sottoprogetto |
|
240 | 240 | field_hours: Ore |
|
241 | 241 | field_activity: Attività |
|
242 | 242 | field_spent_on: Data |
|
243 | 243 | field_identifier: Identificativo |
|
244 | 244 | field_is_filter: Usato come filtro |
|
245 | 245 | field_issue_to: Segnalazioni correlate |
|
246 | 246 | field_delay: Ritardo |
|
247 | 247 | field_assignable: E' possibile assegnare segnalazioni a questo ruolo |
|
248 | 248 | field_redirect_existing_links: Redirige i collegamenti esistenti |
|
249 | 249 | field_estimated_hours: Tempo stimato |
|
250 | 250 | field_default_value: Stato predefinito |
|
251 | 251 | |
|
252 | 252 | setting_app_title: Titolo applicazione |
|
253 | 253 | setting_app_subtitle: Sottotitolo applicazione |
|
254 | 254 | setting_welcome_text: Testo di benvenuto |
|
255 | 255 | setting_default_language: Lingua predefinita |
|
256 | 256 | setting_login_required: Autenticazione richiesta |
|
257 | 257 | setting_self_registration: Auto-registrazione abilitata |
|
258 | 258 | setting_attachment_max_size: Massima dimensione allegati |
|
259 | 259 | setting_issues_export_limit: Limite esportazione segnalazioni |
|
260 | 260 | setting_mail_from: Indirizzo sorgente e-mail |
|
261 | 261 | setting_host_name: Nome host |
|
262 | 262 | setting_text_formatting: Formattazione testo |
|
263 | 263 | setting_wiki_compression: Comprimi cronologia wiki |
|
264 | 264 | setting_feeds_limit: Limite contenuti del feed |
|
265 | 265 | setting_autofetch_changesets: Acquisisci automaticamente le commit |
|
266 | 266 | setting_sys_api_enabled: Abilita WS per la gestione del repository |
|
267 | 267 | setting_commit_ref_keywords: Parole chiave riferimento |
|
268 | 268 | setting_commit_fix_keywords: Parole chiave chiusura |
|
269 | 269 | setting_autologin: Login automatico |
|
270 | 270 | setting_date_format: Formato data |
|
271 | 271 | setting_cross_project_issue_relations: Consenti la creazione di relazioni tra segnalazioni in progetti differenti |
|
272 | 272 | |
|
273 | 273 | label_user: Utente |
|
274 | 274 | label_user_plural: Utenti |
|
275 | 275 | label_user_new: Nuovo utente |
|
276 | 276 | label_project: Progetto |
|
277 | 277 | label_project_new: Nuovo progetto |
|
278 | 278 | label_project_plural: Progetti |
|
279 | 279 | label_x_projects: |
|
280 | 280 | zero: no projects |
|
281 | 281 | one: 1 project |
|
282 | 282 | other: "{{count}} projects" |
|
283 | 283 | label_project_all: Tutti i progetti |
|
284 | 284 | label_project_latest: Ultimi progetti registrati |
|
285 | 285 | label_issue: Segnalazione |
|
286 | 286 | label_issue_new: Nuova segnalazione |
|
287 | 287 | label_issue_plural: Segnalazioni |
|
288 | 288 | label_issue_view_all: Mostra tutte le segnalazioni |
|
289 | 289 | label_document: Documento |
|
290 | 290 | label_document_new: Nuovo documento |
|
291 | 291 | label_document_plural: Documenti |
|
292 | 292 | label_role: Ruolo |
|
293 | 293 | label_role_plural: Ruoli |
|
294 | 294 | label_role_new: Nuovo ruolo |
|
295 | 295 | label_role_and_permissions: Ruoli e permessi |
|
296 | 296 | label_member: Membro |
|
297 | 297 | label_member_new: Nuovo membro |
|
298 | 298 | label_member_plural: Membri |
|
299 | 299 | label_tracker: Tracker |
|
300 | 300 | label_tracker_plural: Tracker |
|
301 | 301 | label_tracker_new: Nuovo tracker |
|
302 | 302 | label_workflow: Workflow |
|
303 | 303 | label_issue_status: Stato segnalazioni |
|
304 | 304 | label_issue_status_plural: Stati segnalazione |
|
305 | 305 | label_issue_status_new: Nuovo stato |
|
306 | 306 | label_issue_category: Categorie segnalazioni |
|
307 | 307 | label_issue_category_plural: Categorie segnalazioni |
|
308 | 308 | label_issue_category_new: Nuova categoria |
|
309 | 309 | label_custom_field: Campo personalizzato |
|
310 | 310 | label_custom_field_plural: Campi personalizzati |
|
311 | 311 | label_custom_field_new: Nuovo campo personalizzato |
|
312 | 312 | label_enumerations: Enumerazioni |
|
313 | 313 | label_enumeration_new: Nuovo valore |
|
314 | 314 | label_information: Informazione |
|
315 | 315 | label_information_plural: Informazioni |
|
316 | 316 | label_please_login: Autenticarsi |
|
317 | 317 | label_register: Registrati |
|
318 | 318 | label_password_lost: Password dimenticata |
|
319 | 319 | label_home: Home |
|
320 | 320 | label_my_page: Pagina personale |
|
321 | 321 | label_my_account: La mia utenza |
|
322 | 322 | label_my_projects: I miei progetti |
|
323 | 323 | label_administration: Amministrazione |
|
324 | 324 | label_login: Login |
|
325 | 325 | label_logout: Logout |
|
326 | 326 | label_help: Aiuto |
|
327 | 327 | label_reported_issues: Segnalazioni |
|
328 | 328 | label_assigned_to_me_issues: Le mie segnalazioni |
|
329 | 329 | label_last_login: Ultimo collegamento |
|
330 | 330 | label_registered_on: Registrato il |
|
331 | 331 | label_activity: Attività |
|
332 | 332 | label_new: Nuovo |
|
333 | 333 | label_logged_as: Autenticato come |
|
334 | 334 | label_environment: Ambiente |
|
335 | 335 | label_authentication: Autenticazione |
|
336 | 336 | label_auth_source: Modalità di autenticazione |
|
337 | 337 | label_auth_source_new: Nuova modalità di autenticazione |
|
338 | 338 | label_auth_source_plural: Modalità di autenticazione |
|
339 | 339 | label_subproject_plural: Sottoprogetti |
|
340 | 340 | label_min_max_length: Lunghezza minima - massima |
|
341 | 341 | label_list: Elenco |
|
342 | 342 | label_date: Data |
|
343 | 343 | label_integer: Intero |
|
344 | 344 | label_boolean: Booleano |
|
345 | 345 | label_string: Testo |
|
346 | 346 | label_text: Testo esteso |
|
347 | 347 | label_attribute: Attributo |
|
348 | 348 | label_attribute_plural: Attributi |
|
349 | 349 | label_download: "{{count}} Download" |
|
350 | 350 | label_download_plural: "{{count}} Download" |
|
351 | 351 | label_no_data: Nessun dato disponibile |
|
352 | 352 | label_change_status: Cambia stato |
|
353 | 353 | label_history: Cronologia |
|
354 | 354 | label_attachment: File |
|
355 | 355 | label_attachment_new: Nuovo file |
|
356 | 356 | label_attachment_delete: Elimina file |
|
357 | 357 | label_attachment_plural: File |
|
358 | 358 | label_report: Report |
|
359 | 359 | label_report_plural: Report |
|
360 | 360 | label_news: Notizia |
|
361 | 361 | label_news_new: Aggiungi notizia |
|
362 | 362 | label_news_plural: Notizie |
|
363 | 363 | label_news_latest: Utime notizie |
|
364 | 364 | label_news_view_all: Tutte le notizie |
|
365 | 365 | label_settings: Impostazioni |
|
366 | 366 | label_overview: Panoramica |
|
367 | 367 | label_version: Versione |
|
368 | 368 | label_version_new: Nuova versione |
|
369 | 369 | label_version_plural: Versioni |
|
370 | 370 | label_confirmation: Conferma |
|
371 | 371 | label_export_to: Esporta su |
|
372 | 372 | label_read: Leggi... |
|
373 | 373 | label_public_projects: Progetti pubblici |
|
374 | 374 | label_open_issues: aperta |
|
375 | 375 | label_open_issues_plural: aperte |
|
376 | 376 | label_closed_issues: chiusa |
|
377 | 377 | label_closed_issues_plural: chiuse |
|
378 | 378 | label_x_open_issues_abbr_on_total: |
|
379 | 379 | zero: 0 open / {{total}} |
|
380 | 380 | one: 1 open / {{total}} |
|
381 | 381 | other: "{{count}} open / {{total}}" |
|
382 | 382 | label_x_open_issues_abbr: |
|
383 | 383 | zero: 0 open |
|
384 | 384 | one: 1 open |
|
385 | 385 | other: "{{count}} open" |
|
386 | 386 | label_x_closed_issues_abbr: |
|
387 | 387 | zero: 0 closed |
|
388 | 388 | one: 1 closed |
|
389 | 389 | other: "{{count}} closed" |
|
390 | 390 | label_total: Totale |
|
391 | 391 | label_permissions: Permessi |
|
392 | 392 | label_current_status: Stato attuale |
|
393 | 393 | label_new_statuses_allowed: Nuovi stati possibili |
|
394 | 394 | label_all: tutti |
|
395 | 395 | label_none: nessuno |
|
396 | 396 | label_next: Successivo |
|
397 | 397 | label_previous: Precedente |
|
398 | 398 | label_used_by: Usato da |
|
399 | 399 | label_details: Dettagli |
|
400 | 400 | label_add_note: Aggiungi una nota |
|
401 | 401 | label_per_page: Per pagina |
|
402 | 402 | label_calendar: Calendario |
|
403 | 403 | label_months_from: mesi da |
|
404 | 404 | label_gantt: Gantt |
|
405 | 405 | label_internal: Interno |
|
406 | 406 | label_last_changes: "ultime {{count}} modifiche" |
|
407 | 407 | label_change_view_all: Tutte le modifiche |
|
408 | 408 | label_personalize_page: Personalizza la pagina |
|
409 | 409 | label_comment: Commento |
|
410 | 410 | label_comment_plural: Commenti |
|
411 | 411 | label_x_comments: |
|
412 | 412 | zero: no comments |
|
413 | 413 | one: 1 comment |
|
414 | 414 | other: "{{count}} comments" |
|
415 | 415 | label_comment_add: Aggiungi un commento |
|
416 | 416 | label_comment_added: Commento aggiunto |
|
417 | 417 | label_comment_delete: Elimina commenti |
|
418 | 418 | label_query: Query personalizzata |
|
419 | 419 | label_query_plural: Query personalizzate |
|
420 | 420 | label_query_new: Nuova query |
|
421 | 421 | label_filter_add: Aggiungi filtro |
|
422 | 422 | label_filter_plural: Filtri |
|
423 | 423 | label_equals: è |
|
424 | 424 | label_not_equals: non è |
|
425 | 425 | label_in_less_than: è minore di |
|
426 | 426 | label_in_more_than: è maggiore di |
|
427 | 427 | label_in: in |
|
428 | 428 | label_today: oggi |
|
429 | 429 | label_this_week: questa settimana |
|
430 | 430 | label_less_than_ago: meno di giorni fa |
|
431 | 431 | label_more_than_ago: più di giorni fa |
|
432 | 432 | label_ago: giorni fa |
|
433 | 433 | label_contains: contiene |
|
434 | 434 | label_not_contains: non contiene |
|
435 | 435 | label_day_plural: giorni |
|
436 | 436 | label_repository: Repository |
|
437 | 437 | label_browse: Sfoglia |
|
438 | 438 | label_modification: "{{count}} modifica" |
|
439 | 439 | label_modification_plural: "{{count}} modifiche" |
|
440 | 440 | label_revision: Versione |
|
441 | 441 | label_revision_plural: Versioni |
|
442 | 442 | label_added: aggiunto |
|
443 | 443 | label_modified: modificato |
|
444 | 444 | label_deleted: eliminato |
|
445 | 445 | label_latest_revision: Ultima versione |
|
446 | 446 | label_latest_revision_plural: Ultime versioni |
|
447 | 447 | label_view_revisions: Mostra versioni |
|
448 | 448 | label_max_size: Dimensione massima |
|
449 | 449 | label_sort_highest: Sposta in cima |
|
450 | 450 | label_sort_higher: Su |
|
451 | 451 | label_sort_lower: Giù |
|
452 | 452 | label_sort_lowest: Sposta in fondo |
|
453 | 453 | label_roadmap: Roadmap |
|
454 | 454 | label_roadmap_due_in: "Da ultimare in {{value}}" |
|
455 | 455 | label_roadmap_overdue: "{{value}} di ritardo" |
|
456 | 456 | label_roadmap_no_issues: Nessuna segnalazione per questa versione |
|
457 | 457 | label_search: Ricerca |
|
458 | 458 | label_result_plural: Risultati |
|
459 | 459 | label_all_words: Tutte le parole |
|
460 | 460 | label_wiki: Wiki |
|
461 | 461 | label_wiki_edit: Modifica Wiki |
|
462 | 462 | label_wiki_edit_plural: Modfiche wiki |
|
463 | 463 | label_wiki_page: Pagina Wiki |
|
464 | 464 | label_wiki_page_plural: Pagine Wiki |
|
465 | 465 | label_index_by_title: Ordina per titolo |
|
466 | 466 | label_index_by_date: Ordina per data |
|
467 | 467 | label_current_version: Versione corrente |
|
468 | 468 | label_preview: Anteprima |
|
469 | 469 | label_feed_plural: Feed |
|
470 | 470 | label_changes_details: Particolari di tutti i cambiamenti |
|
471 | 471 | label_issue_tracking: Tracking delle segnalazioni |
|
472 | 472 | label_spent_time: Tempo impiegato |
|
473 | 473 | label_f_hour: "{{value}} ora" |
|
474 | 474 | label_f_hour_plural: "{{value}} ore" |
|
475 | 475 | label_time_tracking: Tracking del tempo |
|
476 | 476 | label_change_plural: Modifiche |
|
477 | 477 | label_statistics: Statistiche |
|
478 | 478 | label_commits_per_month: Commit per mese |
|
479 | 479 | label_commits_per_author: Commit per autore |
|
480 | 480 | label_view_diff: mostra differenze |
|
481 | 481 | label_diff_inline: in linea |
|
482 | 482 | label_diff_side_by_side: fianco a fianco |
|
483 | 483 | label_options: Opzioni |
|
484 | 484 | label_copy_workflow_from: Copia workflow da |
|
485 | 485 | label_permissions_report: Report permessi |
|
486 | 486 | label_watched_issues: Segnalazioni osservate |
|
487 | 487 | label_related_issues: Segnalazioni correlate |
|
488 | 488 | label_applied_status: Stato applicato |
|
489 | 489 | label_loading: Caricamento... |
|
490 | 490 | label_relation_new: Nuova relazione |
|
491 | 491 | label_relation_delete: Elimina relazione |
|
492 | 492 | label_relates_to: correlato a |
|
493 | 493 | label_duplicates: duplicati |
|
494 | 494 | label_blocks: blocchi |
|
495 | 495 | label_blocked_by: bloccato da |
|
496 | 496 | label_precedes: precede |
|
497 | 497 | label_follows: segue |
|
498 | 498 | label_end_to_start: end to start |
|
499 | 499 | label_end_to_end: end to end |
|
500 | 500 | label_start_to_start: start to start |
|
501 | 501 | label_start_to_end: start to end |
|
502 | 502 | label_stay_logged_in: Rimani collegato |
|
503 | 503 | label_disabled: disabilitato |
|
504 | 504 | label_show_completed_versions: Mostra versioni completate |
|
505 | 505 | label_me: io |
|
506 | 506 | label_board: Forum |
|
507 | 507 | label_board_new: Nuovo forum |
|
508 | 508 | label_board_plural: Forum |
|
509 | 509 | label_topic_plural: Argomenti |
|
510 | 510 | label_message_plural: Messaggi |
|
511 | 511 | label_message_last: Ultimo messaggio |
|
512 | 512 | label_message_new: Nuovo messaggio |
|
513 | 513 | label_reply_plural: Risposte |
|
514 | 514 | label_send_information: Invia all'utente le informazioni relative all'account |
|
515 | 515 | label_year: Anno |
|
516 | 516 | label_month: Mese |
|
517 | 517 | label_week: Settimana |
|
518 | 518 | label_date_from: Da |
|
519 | 519 | label_date_to: A |
|
520 | 520 | label_language_based: Basato sul linguaggio |
|
521 | 521 | label_sort_by: "Ordina per {{value}}" |
|
522 | 522 | label_send_test_email: Invia una e-mail di test |
|
523 | 523 | label_feeds_access_key_created_on: "chiave di accesso RSS creata {{value}} fa" |
|
524 | 524 | label_module_plural: Moduli |
|
525 | 525 | label_added_time_by: "Aggiunto da {{author}} {{age}} fa" |
|
526 | 526 | label_updated_time: "Aggiornato {{value}} fa" |
|
527 | 527 | label_jump_to_a_project: Vai al progetto... |
|
528 | 528 | |
|
529 | 529 | button_login: Login |
|
530 | 530 | button_submit: Invia |
|
531 | 531 | button_save: Salva |
|
532 | 532 | button_check_all: Seleziona tutti |
|
533 | 533 | button_uncheck_all: Deseleziona tutti |
|
534 | 534 | button_delete: Elimina |
|
535 | 535 | button_create: Crea |
|
536 | 536 | button_test: Test |
|
537 | 537 | button_edit: Modifica |
|
538 | 538 | button_add: Aggiungi |
|
539 | 539 | button_change: Modifica |
|
540 | 540 | button_apply: Applica |
|
541 | 541 | button_clear: Pulisci |
|
542 | 542 | button_lock: Blocca |
|
543 | 543 | button_unlock: Sblocca |
|
544 | 544 | button_download: Scarica |
|
545 | 545 | button_list: Elenca |
|
546 | 546 | button_view: Mostra |
|
547 | 547 | button_move: Sposta |
|
548 | 548 | button_back: Indietro |
|
549 | 549 | button_cancel: Annulla |
|
550 | 550 | button_activate: Attiva |
|
551 | 551 | button_sort: Ordina |
|
552 | 552 | button_log_time: Registra tempo |
|
553 | 553 | button_rollback: Ripristina questa versione |
|
554 | 554 | button_watch: Osserva |
|
555 | 555 | button_unwatch: Dimentica |
|
556 | 556 | button_reply: Rispondi |
|
557 | 557 | button_archive: Archivia |
|
558 | 558 | button_unarchive: Ripristina |
|
559 | 559 | button_reset: Reset |
|
560 | 560 | button_rename: Rinomina |
|
561 | 561 | |
|
562 | 562 | status_active: attivo |
|
563 | 563 | status_registered: registrato |
|
564 | 564 | status_locked: bloccato |
|
565 | 565 | |
|
566 | 566 | text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. |
|
567 | 567 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
568 | 568 | text_min_max_length_info: 0 significa nessuna restrizione |
|
569 | 569 | text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati? |
|
570 | 570 | text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow |
|
571 | 571 | text_are_you_sure: Sei sicuro ? |
|
572 | 572 | text_tip_task_begin_day: attività che iniziano in questa giornata |
|
573 | 573 | text_tip_task_end_day: attività che terminano in questa giornata |
|
574 | 574 | text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata |
|
575 | 575 | text_project_identifier_info: "Lettere minuscole (a-z), numeri e trattini permessi.<br />Una volta salvato, l'identificativo non può essere modificato." |
|
576 | 576 | text_caracters_maximum: "massimo {{count}} caratteri." |
|
577 | 577 | text_length_between: "Lunghezza compresa tra {{min}} e {{max}} caratteri." |
|
578 | 578 | text_tracker_no_workflow: Nessun workflow definito per questo tracker |
|
579 | 579 | text_unallowed_characters: Caratteri non permessi |
|
580 | 580 | text_comma_separated: Valori multipli permessi (separati da virgola). |
|
581 | 581 | text_issues_ref_in_commit_messages: Segnalazioni di riferimento e chiusura nei messaggi di commit |
|
582 | 582 | text_issue_added: "E' stata segnalata l'anomalia {{id}} da {{author}}." |
|
583 | 583 | text_issue_updated: "L'anomalia {{id}} e' stata aggiornata da {{author}}." |
|
584 | 584 | text_wiki_destroy_confirmation: Sicuro di voler cancellare questo wiki e tutti i suoi contenuti? |
|
585 | 585 | text_issue_category_destroy_question: "Alcune segnalazioni ({{count}}) risultano assegnate a questa categoria. Cosa vuoi fare ?" |
|
586 | 586 | text_issue_category_destroy_assignments: Rimuovi gli assegnamenti a questa categoria |
|
587 | 587 | text_issue_category_reassign_to: Riassegna segnalazioni a questa categoria |
|
588 | 588 | |
|
589 | 589 | default_role_manager: Manager |
|
590 | 590 | default_role_developper: Sviluppatore |
|
591 | 591 | default_role_reporter: Reporter |
|
592 | 592 | default_tracker_bug: Segnalazione |
|
593 | 593 | default_tracker_feature: Funzione |
|
594 | 594 | default_tracker_support: Supporto |
|
595 | 595 | default_issue_status_new: Nuovo |
|
596 | 596 | default_issue_status_in_progress: In Progress |
|
597 | 597 | default_issue_status_resolved: Risolto |
|
598 | 598 | default_issue_status_feedback: Feedback |
|
599 | 599 | default_issue_status_closed: Chiuso |
|
600 | 600 | default_issue_status_rejected: Rifiutato |
|
601 | 601 | default_doc_category_user: Documentazione utente |
|
602 | 602 | default_doc_category_tech: Documentazione tecnica |
|
603 | 603 | default_priority_low: Bassa |
|
604 | 604 | default_priority_normal: Normale |
|
605 | 605 | default_priority_high: Alta |
|
606 | 606 | default_priority_urgent: Urgente |
|
607 | 607 | default_priority_immediate: Immediata |
|
608 | 608 | default_activity_design: Progettazione |
|
609 | 609 | default_activity_development: Sviluppo |
|
610 | 610 | |
|
611 | 611 | enumeration_issue_priorities: Priorità segnalazioni |
|
612 | 612 | enumeration_doc_categories: Categorie di documenti |
|
613 | 613 | enumeration_activities: Attività (time tracking) |
|
614 | 614 | label_file_plural: File |
|
615 | 615 | label_changeset_plural: Changeset |
|
616 | 616 | field_column_names: Colonne |
|
617 | 617 | label_default_columns: Colonne predefinite |
|
618 | 618 | setting_issue_list_default_columns: Colonne predefinite mostrate nell'elenco segnalazioni |
|
619 | 619 | setting_repositories_encodings: Codifiche dei repository |
|
620 | 620 | notice_no_issue_selected: "Nessuna segnalazione selezionata! Seleziona le segnalazioni che intendi modificare." |
|
621 | 621 | label_bulk_edit_selected_issues: Modifica massiva delle segnalazioni selezionate |
|
622 | 622 | label_no_change_option: (Nessuna modifica) |
|
623 | 623 | notice_failed_to_save_issues: "Impossibile salvare {{count}} segnalazioni su {{total}} selezionate: {{ids}}." |
|
624 | 624 | label_theme: Tema |
|
625 | 625 | label_default: Predefinito |
|
626 | 626 | label_search_titles_only: Cerca solo nei titoli |
|
627 | 627 | label_nobody: nessuno |
|
628 | 628 | button_change_password: Modifica password |
|
629 | 629 | text_user_mail_option: "Per i progetti non selezionati, riceverai solo le notifiche riguardanti le cose che osservi o nelle quali sei coinvolto (per esempio segnalazioni che hai creato o che ti sono state assegnate)." |
|
630 | 630 | label_user_mail_option_selected: "Solo per gli eventi relativi ai progetti selezionati..." |
|
631 | 631 | label_user_mail_option_all: "Per ogni evento relativo ad uno dei miei progetti" |
|
632 | 632 | label_user_mail_option_none: "Solo per argomenti che osservo o che mi riguardano" |
|
633 | 633 | setting_emails_footer: Piè di pagina e-mail |
|
634 | 634 | label_float: Decimale |
|
635 | 635 | button_copy: Copia |
|
636 | 636 | mail_body_account_information_external: "Puoi utilizzare il tuo account {{value}} per accedere al sistema." |
|
637 | 637 | mail_body_account_information: Le informazioni riguardanti il tuo account |
|
638 | 638 | setting_protocol: Protocollo |
|
639 | 639 | label_user_mail_no_self_notified: "Non voglio notifiche riguardanti modifiche da me apportate" |
|
640 | 640 | setting_time_format: Formato ora |
|
641 | 641 | label_registration_activation_by_email: attivazione account via e-mail |
|
642 | 642 | mail_subject_account_activation_request: "{{value}} richiesta attivazione account" |
|
643 | 643 | mail_body_account_activation_request: "Un nuovo utente ({{value}}) ha effettuato la registrazione. Il suo account è in attesa di abilitazione da parte tua:" |
|
644 | 644 | label_registration_automatic_activation: attivazione account automatica |
|
645 | 645 | label_registration_manual_activation: attivazione account manuale |
|
646 | 646 | notice_account_pending: "Il tuo account è stato creato ed è in attesa di attivazione da parte dell'amministratore." |
|
647 | 647 | field_time_zone: Fuso orario |
|
648 | 648 | text_caracters_minimum: "Deve essere lungo almeno {{count}} caratteri." |
|
649 | 649 | setting_bcc_recipients: Destinatari in copia nascosta (bcc) |
|
650 | 650 | button_annotate: Annota |
|
651 | 651 | label_issues_by: "Segnalazioni di {{value}}" |
|
652 | 652 | field_searchable: Ricercabile |
|
653 | 653 | label_display_per_page: "Per pagina: {{value}}" |
|
654 | 654 | setting_per_page_options: Opzioni oggetti per pagina |
|
655 | 655 | label_age: Età |
|
656 | 656 | notice_default_data_loaded: Configurazione predefinita caricata con successo. |
|
657 | 657 | text_load_default_configuration: Carica la configurazione predefinita |
|
658 | 658 | text_no_configuration_data: "Ruoli, tracker, stati delle segnalazioni e workflow non sono stati ancora configurati.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." |
|
659 | 659 | error_can_t_load_default_data: "Non è stato possibile caricare la configurazione predefinita : {{value}}" |
|
660 | 660 | button_update: Aggiorna |
|
661 | 661 | label_change_properties: Modifica le proprietà |
|
662 | 662 | label_general: Generale |
|
663 | 663 | label_repository_plural: Repository |
|
664 | 664 | label_associated_revisions: Revisioni associate |
|
665 | 665 | setting_user_format: Formato visualizzazione utenti |
|
666 | 666 | text_status_changed_by_changeset: "Applicata nel changeset {{value}}." |
|
667 | 667 | label_more: Altro |
|
668 | 668 | text_issues_destroy_confirmation: 'Sei sicuro di voler eliminare le segnalazioni selezionate?' |
|
669 | 669 | label_scm: SCM |
|
670 | 670 | text_select_project_modules: 'Seleziona i moduli abilitati per questo progetto:' |
|
671 | 671 | label_issue_added: Segnalazioni aggiunte |
|
672 | 672 | label_issue_updated: Segnalazioni aggiornate |
|
673 | 673 | label_document_added: Documenti aggiunti |
|
674 | 674 | label_message_posted: Messaggi aggiunti |
|
675 | 675 | label_file_added: File aggiunti |
|
676 | 676 | label_news_added: Notizie aggiunte |
|
677 | 677 | project_module_boards: Forum |
|
678 | 678 | project_module_issue_tracking: Tracking delle segnalazioni |
|
679 | 679 | project_module_wiki: Wiki |
|
680 | 680 | project_module_files: File |
|
681 | 681 | project_module_documents: Documenti |
|
682 | 682 | project_module_repository: Repository |
|
683 | 683 | project_module_news: Notizie |
|
684 | 684 | project_module_time_tracking: Time tracking |
|
685 | 685 | text_file_repository_writable: Repository dei file scrivibile |
|
686 | 686 | text_default_administrator_account_changed: L'account amministrativo predefinito è stato modificato |
|
687 | 687 | text_rmagick_available: RMagick disponibile (opzionale) |
|
688 | 688 | button_configure: Configura |
|
689 | 689 | label_plugins: Plugin |
|
690 | 690 | label_ldap_authentication: Autenticazione LDAP |
|
691 | 691 | label_downloads_abbr: D/L |
|
692 | 692 | label_this_month: questo mese |
|
693 | 693 | label_last_n_days: "ultimi {{count}} giorni" |
|
694 | 694 | label_all_time: sempre |
|
695 | 695 | label_this_year: quest'anno |
|
696 | 696 | label_date_range: Intervallo di date |
|
697 | 697 | label_last_week: ultima settimana |
|
698 | 698 | label_yesterday: ieri |
|
699 | 699 | label_last_month: ultimo mese |
|
700 | 700 | label_add_another_file: Aggiungi un altro file |
|
701 | 701 | label_optional_description: Descrizione opzionale |
|
702 | 702 | text_destroy_time_entries_question: "{{hours}} ore risultano spese sulle segnalazioni che stai per cancellare. Cosa vuoi fare ?" |
|
703 | 703 | error_issue_not_found_in_project: 'La segnalazione non è stata trovata o non appartiene al progetto' |
|
704 | 704 | text_assign_time_entries_to_project: Assegna le ore segnalate al progetto |
|
705 | 705 | text_destroy_time_entries: Elimina le ore segnalate |
|
706 | 706 | text_reassign_time_entries: 'Riassegna le ore a questa segnalazione:' |
|
707 | 707 | setting_activity_days_default: Giorni mostrati sulle attività di progetto |
|
708 | 708 | label_chronological_order: In ordine cronologico |
|
709 | 709 | field_comments_sorting: Mostra commenti |
|
710 | 710 | label_reverse_chronological_order: In ordine cronologico inverso |
|
711 | 711 | label_preferences: Preferenze |
|
712 | 712 | setting_display_subprojects_issues: Mostra le segnalazioni dei sottoprogetti nel progetto principale per default |
|
713 | 713 | label_overall_activity: Attività generale |
|
714 | 714 | setting_default_projects_public: I nuovi progetti sono pubblici per default |
|
715 | 715 | error_scm_annotate: "L'oggetto non esiste o non può essere annotato." |
|
716 | 716 | label_planning: Pianificazione |
|
717 | 717 | text_subprojects_destroy_warning: "Anche i suoi sottoprogetti: {{value}} verranno eliminati." |
|
718 | 718 | label_and_its_subprojects: "{{value}} ed i suoi sottoprogetti" |
|
719 | 719 | mail_body_reminder: "{{count}} segnalazioni che ti sono state assegnate scadranno nei prossimi {{days}} giorni:" |
|
720 | 720 | mail_subject_reminder: "{{count}} segnalazioni in scadenza nei prossimi giorni" |
|
721 | 721 | text_user_wrote: "{{value}} ha scritto:" |
|
722 | 722 | label_duplicated_by: duplicato da |
|
723 | 723 | setting_enabled_scm: SCM abilitato |
|
724 | 724 | text_enumeration_category_reassign_to: 'Riassegnale a questo valore:' |
|
725 | 725 | text_enumeration_destroy_question: "{{count}} oggetti hanno un assegnamento su questo valore." |
|
726 | 726 | label_incoming_emails: E-mail in arrivo |
|
727 | 727 | label_generate_key: Genera una chiave |
|
728 | 728 | setting_mail_handler_api_enabled: Abilita WS per le e-mail in arrivo |
|
729 | 729 | setting_mail_handler_api_key: Chiave API |
|
730 | 730 | text_email_delivery_not_configured: "La consegna via e-mail non è configurata e le notifiche sono disabilitate.\nConfigura il tuo server SMTP in config/email.yml e riavvia l'applicazione per abilitarle." |
|
731 | 731 | field_parent_title: Parent page |
|
732 | 732 | label_issue_watchers: Osservatori |
|
733 | 733 | setting_commit_logs_encoding: Codifica dei messaggi di commit |
|
734 | 734 | button_quote: Quota |
|
735 | 735 | setting_sequential_project_identifiers: Genera progetti con identificativi in sequenza |
|
736 | 736 | notice_unable_delete_version: Impossibile cancellare la versione |
|
737 | 737 | label_renamed: rinominato |
|
738 | 738 | label_copied: copiato |
|
739 | 739 | setting_plain_text_mail: Solo testo (non HTML) |
|
740 | 740 | permission_view_files: Vedi files |
|
741 | 741 | permission_edit_issues: Modifica segnalazioni |
|
742 | 742 | permission_edit_own_time_entries: Modifica propri time logs |
|
743 | 743 | permission_manage_public_queries: Gestisci query pubbliche |
|
744 | 744 | permission_add_issues: Aggiungi segnalazioni |
|
745 | 745 | permission_log_time: Segna tempo impiegato |
|
746 | 746 | permission_view_changesets: Vedi changesets |
|
747 | 747 | permission_view_time_entries: Vedi tempi impiegati |
|
748 | 748 | permission_manage_versions: Gestisci versioni |
|
749 | 749 | permission_manage_wiki: Gestisci wiki |
|
750 | 750 | permission_manage_categories: Gestisci categorie segnalazione |
|
751 | 751 | permission_protect_wiki_pages: Proteggi pagine wiki |
|
752 | 752 | permission_comment_news: Commenta notizie |
|
753 | 753 | permission_delete_messages: Elimina messaggi |
|
754 | 754 | permission_select_project_modules: Seleziona moduli progetto |
|
755 | 755 | permission_manage_documents: Gestisci documenti |
|
756 | 756 | permission_edit_wiki_pages: Modifica pagine wiki |
|
757 | 757 | permission_add_issue_watchers: Aggiungi osservatori |
|
758 | 758 | permission_view_gantt: Vedi diagrammi gantt |
|
759 | 759 | permission_move_issues: Muovi segnalazioni |
|
760 | 760 | permission_manage_issue_relations: Gestisci relazioni tra segnalazioni |
|
761 | 761 | permission_delete_wiki_pages: Elimina pagine wiki |
|
762 | 762 | permission_manage_boards: Gestisci forum |
|
763 | 763 | permission_delete_wiki_pages_attachments: Elimina allegati |
|
764 | 764 | permission_view_wiki_edits: Vedi cronologia wiki |
|
765 | 765 | permission_add_messages: Aggiungi messaggi |
|
766 | 766 | permission_view_messages: Vedi messaggi |
|
767 | 767 | permission_manage_files: Gestisci files |
|
768 | 768 | permission_edit_issue_notes: Modifica note |
|
769 | 769 | permission_manage_news: Gestisci notizie |
|
770 | 770 | permission_view_calendar: Vedi calendario |
|
771 | 771 | permission_manage_members: Gestisci membri |
|
772 | 772 | permission_edit_messages: Modifica messaggi |
|
773 | 773 | permission_delete_issues: Elimina segnalazioni |
|
774 | 774 | permission_view_issue_watchers: Vedi lista osservatori |
|
775 | 775 | permission_manage_repository: Gestisci repository |
|
776 | 776 | permission_commit_access: Permesso di commit |
|
777 | 777 | permission_browse_repository: Sfoglia repository |
|
778 | 778 | permission_view_documents: Vedi documenti |
|
779 | 779 | permission_edit_project: Modifica progetti |
|
780 | 780 | permission_add_issue_notes: Aggiungi note |
|
781 | 781 | permission_save_queries: Salva query |
|
782 | 782 | permission_view_wiki_pages: Vedi pagine wiki |
|
783 | 783 | permission_rename_wiki_pages: Rinomina pagine wiki |
|
784 | 784 | permission_edit_time_entries: Modifica time logs |
|
785 | 785 | permission_edit_own_issue_notes: Modifica proprie note |
|
786 | 786 | setting_gravatar_enabled: Usa icone utente Gravatar |
|
787 | 787 | label_example: Esempio |
|
788 | 788 | text_repository_usernames_mapping: "Seleziona per aggiornare la corrispondenza tra gli utenti Redmine e quelli presenti nel log del repository.\nGli utenti Redmine e repository con lo stesso username o email sono mappati automaticamente." |
|
789 | 789 | permission_edit_own_messages: Modifica propri messaggi |
|
790 | 790 | permission_delete_own_messages: Elimina propri messaggi |
|
791 | 791 | label_user_activity: "attività di {{value}}" |
|
792 | 792 | label_updated_time_by: "Aggiornato da {{author}} {{age}} fa" |
|
793 | 793 | text_diff_truncated: '... Le differenze sono state troncate perchè superano il limite massimo visualizzabile.' |
|
794 | 794 | setting_diff_max_lines_displayed: Limite massimo di differenze (linee) mostrate |
|
795 | 795 | text_plugin_assets_writable: Assets directory dei plugins scrivibile |
|
796 | 796 | warning_attachments_not_saved: "{{count}} file non possono essere salvati." |
|
797 | 797 | button_create_and_continue: Crea e continua |
|
798 | 798 | text_custom_field_possible_values_info: 'Un valore per ogni linea' |
|
799 | 799 | label_display: Mostra |
|
800 | 800 | field_editable: Modificabile |
|
801 | 801 | setting_repository_log_display_limit: Numero massimo di revisioni elencate nella cronologia file |
|
802 | 802 | setting_file_max_size_displayed: Dimensione massima dei contenuti testuali visualizzati |
|
803 | 803 | field_watcher: Osservatore |
|
804 | 804 | setting_openid: Accetta login e registrazione con OpenID |
|
805 | 805 | field_identity_url: URL OpenID |
|
806 | 806 | label_login_with_open_id_option: oppure autenticati usando OpenID |
|
807 | 807 | field_content: Contenuto |
|
808 | 808 | label_descending: Discendente |
|
809 | 809 | label_sort: Ordina |
|
810 | 810 | label_ascending: Ascendente |
|
811 | 811 | label_date_from_to: Da {{start}} a {{end}} |
|
812 | 812 | label_greater_or_equal: ">=" |
|
813 | 813 | label_less_or_equal: <= |
|
814 | 814 | text_wiki_page_destroy_question: Questa pagina ha {{descendants}} pagine figlie. Cosa ne vuoi fare? |
|
815 | 815 | text_wiki_page_reassign_children: Riassegna le pagine figlie al padre di questa pagina |
|
816 | 816 | text_wiki_page_nullify_children: Mantieni le pagine figlie come pagine radice |
|
817 | 817 | text_wiki_page_destroy_children: Elimina le pagine figlie e tutta la discendenza |
|
818 | 818 | setting_password_min_length: Minima lunghezza password |
|
819 | 819 | field_group_by: Raggruppa risultati per |
|
820 | 820 | mail_subject_wiki_content_updated: "La pagina wiki '{{page}}' è stata aggiornata" |
|
821 | 821 | label_wiki_content_added: Aggiunta pagina al wiki |
|
822 | 822 | mail_subject_wiki_content_added: "La pagina '{{page}}' è stata aggiunta al wiki" |
|
823 | 823 | mail_body_wiki_content_added: La pagina '{{page}}' è stata aggiunta al wiki da {{author}}. |
|
824 | 824 | label_wiki_content_updated: Aggiornata pagina wiki |
|
825 | 825 | mail_body_wiki_content_updated: La pagina '{{page}}' wiki è stata aggiornata da{{author}}. |
|
826 | 826 | permission_add_project: Crea progetto |
|
827 | 827 | setting_new_project_user_role_id: Ruolo assegnato agli utenti non amministratori che creano un progetto |
|
828 | 828 | label_view_all_revisions: View all revisions |
|
829 | 829 | label_tag: Tag |
|
830 | 830 | label_branch: Branch |
|
831 | 831 | error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings. |
|
832 | 832 | error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses"). |
|
833 | 833 | text_journal_changed: "{{label}} changed from {{old}} to {{new}}" |
|
834 | 834 | text_journal_set_to: "{{label}} set to {{value}}" |
|
835 | 835 | text_journal_deleted: "{{label}} deleted ({{old}})" |
|
836 | 836 | label_group_plural: Groups |
|
837 | 837 | label_group: Group |
|
838 | 838 | label_group_new: New group |
|
839 | 839 | label_time_entry_plural: Spent time |
|
840 | 840 | text_journal_added: "{{label}} {{value}} added" |
|
841 | 841 | field_active: Active |
|
842 | 842 | enumeration_system_activity: System Activity |
|
843 | 843 | permission_delete_issue_watchers: Delete watchers |
|
844 | 844 | version_status_closed: closed |
|
845 | 845 | version_status_locked: locked |
|
846 | 846 | version_status_open: open |
|
847 | 847 | error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened |
|
848 | 848 | label_user_anonymous: Anonymous |
|
849 | 849 | button_move_and_follow: Move and follow |
|
850 | 850 | setting_default_projects_modules: Default enabled modules for new projects |
|
851 | 851 | setting_gravatar_default: Default Gravatar image |
|
852 | 852 | field_sharing: Sharing |
|
853 | 853 | label_version_sharing_hierarchy: With project hierarchy |
|
854 | 854 | label_version_sharing_system: With all projects |
|
855 | 855 | label_version_sharing_descendants: With subprojects |
|
856 | 856 | label_version_sharing_tree: With project tree |
|
857 | 857 | label_version_sharing_none: Not shared |
|
858 | 858 | error_can_not_archive_project: This project can not be archived |
|
859 | 859 | button_duplicate: Duplicate |
|
860 | 860 | button_copy_and_follow: Copy and follow |
|
861 | 861 | label_copy_source: Source |
|
862 | 862 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
863 | 863 | setting_issue_done_ratio_issue_status: Use the issue status |
|
864 | 864 | error_issue_done_ratios_not_updated: Issue done ratios not updated. |
|
865 | 865 | error_workflow_copy_target: Please select target tracker(s) and role(s) |
|
866 | 866 | setting_issue_done_ratio_issue_field: Use the issue field |
|
867 | 867 | label_copy_same_as_target: Same as target |
|
868 | 868 | label_copy_target: Target |
|
869 | 869 | notice_issue_done_ratios_updated: Issue done ratios updated. |
|
870 | 870 | error_workflow_copy_source: Please select a source tracker or role |
|
871 | 871 | label_update_issue_done_ratios: Update issue done ratios |
|
872 | 872 | setting_start_of_week: Start calendars on |
|
873 | 873 | permission_view_issues: View Issues |
|
874 | 874 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
875 | 875 | label_revision_id: Revision {{value}} |
|
876 | 876 | label_api_access_key: API access key |
|
877 | 877 | label_api_access_key_created_on: API access key created {{value}} ago |
|
878 | 878 | label_feeds_access_key: RSS access key |
|
879 | 879 | notice_api_access_key_reseted: Your API access key was reset. |
|
880 | 880 | setting_rest_api_enabled: Enable REST web service |
|
881 | 881 | label_missing_api_access_key: Missing an API access key |
|
882 | 882 | label_missing_feeds_access_key: Missing a RSS access key |
|
883 | 883 | button_show: Show |
|
884 | 884 | text_line_separated: Multiple values allowed (one line for each value). |
|
885 | 885 | setting_mail_handler_body_delimiters: Truncate emails after one of these lines |
|
886 | 886 | permission_add_subprojects: Create subprojects |
|
887 | 887 | label_subproject_new: New subproject |
|
888 | 888 | text_own_membership_delete_confirmation: |- |
|
889 | 889 | You are about to remove some or all of your permissions and may no longer be able to edit this project after that. |
|
890 | 890 | Are you sure you want to continue? |
|
891 | 891 | label_close_versions: Close completed versions |
|
892 | 892 | label_board_sticky: Sticky |
|
893 | 893 | label_board_locked: Locked |
|
894 | 894 | permission_export_wiki_pages: Export wiki pages |
|
895 | 895 | setting_cache_formatted_text: Cache formatted text |
|
896 | 896 | permission_manage_project_activities: Manage project activities |
|
897 |
|
|
|
897 | error_unable_delete_issue_status: Unable to delete issue status |
@@ -1,912 +1,912 | |||
|
1 | 1 | # Chinese (China) translations for Ruby on Rails |
|
2 | 2 | # by tsechingho (http://github.com/tsechingho) |
|
3 | 3 | |
|
4 | 4 | zh: |
|
5 | 5 | date: |
|
6 | 6 | formats: |
|
7 | 7 | default: "%Y-%m-%d" |
|
8 | 8 | short: "%b%d日" |
|
9 | 9 | long: "%Y年%b%d日" |
|
10 | 10 | day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六] |
|
11 | 11 | abbr_day_names: [日, 一, 二, 三, 四, 五, 六] |
|
12 | 12 | month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月] |
|
13 | 13 | abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月] |
|
14 | 14 | order: [ :year, :month, :day ] |
|
15 | 15 | |
|
16 | 16 | time: |
|
17 | 17 | formats: |
|
18 | 18 | default: "%Y年%b%d日 %A %H:%M:%S" |
|
19 | 19 | time: "%H:%M" |
|
20 | 20 | time: "%H:%M" |
|
21 | 21 | short: "%b%d日 %H:%M" |
|
22 | 22 | long: "%Y年%b%d日 %H:%M" |
|
23 | 23 | am: "上午" |
|
24 | 24 | pm: "下午" |
|
25 | 25 | |
|
26 | 26 | datetime: |
|
27 | 27 | distance_in_words: |
|
28 | 28 | half_a_minute: "半分钟" |
|
29 | 29 | less_than_x_seconds: |
|
30 | 30 | one: "一秒内" |
|
31 | 31 | other: "少于 {{count}} 秒" |
|
32 | 32 | x_seconds: |
|
33 | 33 | one: "一秒" |
|
34 | 34 | other: "{{count}} 秒" |
|
35 | 35 | less_than_x_minutes: |
|
36 | 36 | one: "一分钟内" |
|
37 | 37 | other: "少于 {{count}} 分钟" |
|
38 | 38 | x_minutes: |
|
39 | 39 | one: "一分钟" |
|
40 | 40 | other: "{{count}} 分钟" |
|
41 | 41 | about_x_hours: |
|
42 | 42 | one: "大约一小时" |
|
43 | 43 | other: "大约 {{count}} 小时" |
|
44 | 44 | x_days: |
|
45 | 45 | one: "一天" |
|
46 | 46 | other: "{{count}} 天" |
|
47 | 47 | about_x_months: |
|
48 | 48 | one: "大约一个月" |
|
49 | 49 | other: "大约 {{count}} 个月" |
|
50 | 50 | x_months: |
|
51 | 51 | one: "一个月" |
|
52 | 52 | other: "{{count}} 个月" |
|
53 | 53 | about_x_years: |
|
54 | 54 | one: "大约一年" |
|
55 | 55 | other: "大约 {{count}} 年" |
|
56 | 56 | over_x_years: |
|
57 | 57 | one: "一年以上" |
|
58 | 58 | other: "{{count}} 年以上" |
|
59 | 59 | almost_x_years: |
|
60 | 60 | one: "almost 1 year" |
|
61 | 61 | other: "almost {{count}} years" |
|
62 | 62 | prompts: |
|
63 | 63 | year: "年" |
|
64 | 64 | month: "月" |
|
65 | 65 | day: "日" |
|
66 | 66 | hour: "时" |
|
67 | 67 | minute: "分" |
|
68 | 68 | second: "秒" |
|
69 | 69 | |
|
70 | 70 | number: |
|
71 | 71 | format: |
|
72 | 72 | separator: "." |
|
73 | 73 | delimiter: "," |
|
74 | 74 | precision: 3 |
|
75 | 75 | currency: |
|
76 | 76 | format: |
|
77 | 77 | format: "%n %u" |
|
78 | 78 | unit: "元" |
|
79 | 79 | separator: "." |
|
80 | 80 | delimiter: "," |
|
81 | 81 | precision: 2 |
|
82 | 82 | percentage: |
|
83 | 83 | format: |
|
84 | 84 | delimiter: "" |
|
85 | 85 | precision: |
|
86 | 86 | format: |
|
87 | 87 | delimiter: "" |
|
88 | 88 | human: |
|
89 | 89 | format: |
|
90 | 90 | delimiter: "" |
|
91 | 91 | precision: 1 |
|
92 | 92 | storage_units: |
|
93 | 93 | format: "%n %u" |
|
94 | 94 | units: |
|
95 | 95 | byte: |
|
96 | 96 | one: "Byte" |
|
97 | 97 | other: "Bytes" |
|
98 | 98 | kb: "KB" |
|
99 | 99 | mb: "MB" |
|
100 | 100 | gb: "GB" |
|
101 | 101 | tb: "TB" |
|
102 | 102 | |
|
103 | 103 | support: |
|
104 | 104 | array: |
|
105 | 105 | words_connector: ", " |
|
106 | 106 | two_words_connector: " 和 " |
|
107 | 107 | last_word_connector: ", 和 " |
|
108 | 108 | |
|
109 | 109 | activerecord: |
|
110 | 110 | errors: |
|
111 | 111 | template: |
|
112 | 112 | header: |
|
113 | 113 | one: "有 1 个错误发生导致「{{model}}」无法被保存。" |
|
114 | 114 | other: "有 {{count}} 个错误发生导致「{{model}}」无法被保存。" |
|
115 | 115 | body: "如下字段出现错误:" |
|
116 | 116 | messages: |
|
117 | 117 | inclusion: "不包含于列表中" |
|
118 | 118 | exclusion: "是保留关键字" |
|
119 | 119 | invalid: "是无效的" |
|
120 | 120 | confirmation: "与确认值不匹配" |
|
121 | 121 | accepted: "必须是可被接受的" |
|
122 | 122 | empty: "不能留空" |
|
123 | 123 | blank: "不能为空字符" |
|
124 | 124 | too_long: "过长(最长为 {{count}} 个字符)" |
|
125 | 125 | too_short: "过短(最短为 {{count}} 个字符)" |
|
126 | 126 | wrong_length: "长度非法(必须为 {{count}} 个字符)" |
|
127 | 127 | taken: "已经被使用" |
|
128 | 128 | not_a_number: "不是数字" |
|
129 | 129 | greater_than: "必须大于 {{count}}" |
|
130 | 130 | greater_than_or_equal_to: "必须大于或等于 {{count}}" |
|
131 | 131 | equal_to: "必须等于 {{count}}" |
|
132 | 132 | less_than: "必须小于 {{count}}" |
|
133 | 133 | less_than_or_equal_to: "必须小于或等于 {{count}}" |
|
134 | 134 | odd: "必须为单数" |
|
135 | 135 | even: "必须为双数" |
|
136 | 136 | greater_than_start_date: "必须在起始日期之后" |
|
137 | 137 | not_same_project: "不属于同一个项目" |
|
138 | 138 | circular_dependency: "此关联将导致循环依赖" |
|
139 | 139 | |
|
140 | 140 | actionview_instancetag_blank_option: 请选择 |
|
141 | 141 | |
|
142 | 142 | general_text_No: '否' |
|
143 | 143 | general_text_Yes: '是' |
|
144 | 144 | general_text_no: '否' |
|
145 | 145 | general_text_yes: '是' |
|
146 | 146 | general_lang_name: 'Simplified Chinese (简体中文)' |
|
147 | 147 | general_csv_separator: ',' |
|
148 | 148 | general_csv_decimal_separator: '.' |
|
149 | 149 | general_csv_encoding: gb18030 |
|
150 | 150 | general_pdf_encoding: gb18030 |
|
151 | 151 | general_first_day_of_week: '7' |
|
152 | 152 | |
|
153 | 153 | notice_account_updated: 帐号更新成功 |
|
154 | 154 | notice_account_invalid_creditentials: 无效的用户名或密码 |
|
155 | 155 | notice_account_password_updated: 密码更新成功 |
|
156 | 156 | notice_account_wrong_password: 密码错误 |
|
157 | 157 | notice_account_register_done: 帐号创建成功,请使用注册确认邮件中的链接来激活您的帐号。 |
|
158 | 158 | notice_account_unknown_email: 未知用户 |
|
159 | 159 | notice_can_t_change_password: 该帐号使用了外部认证,因此无法更改密码。 |
|
160 | 160 | notice_account_lost_email_sent: 系统已将引导您设置新密码的邮件发送给您。 |
|
161 | 161 | notice_account_activated: 您的帐号已被激活。您现在可以登录了。 |
|
162 | 162 | notice_successful_create: 创建成功 |
|
163 | 163 | notice_successful_update: 更新成功 |
|
164 | 164 | notice_successful_delete: 删除成功 |
|
165 | 165 | notice_successful_connection: 连接成功 |
|
166 | 166 | notice_file_not_found: 您访问的页面不存在或已被删除。 |
|
167 | 167 | notice_locking_conflict: 数据已被另一位用户更新 |
|
168 | 168 | notice_not_authorized: 对不起,您无权访问此页面。 |
|
169 | 169 | notice_email_sent: "邮件已成功发送到 {{value}}" |
|
170 | 170 | notice_email_error: "发送邮件时发生错误 ({{value}})" |
|
171 | 171 | notice_feeds_access_key_reseted: 您的RSS存取键已被重置。 |
|
172 | 172 | notice_api_access_key_reseted: 您的API访问键已被重置。 |
|
173 | 173 | notice_failed_to_save_issues: "{{count}} 个问题保存失败(共选择 {{total}} 个问题):{{ids}}." |
|
174 | 174 | notice_no_issue_selected: "未选择任何问题!请选择您要编辑的问题。" |
|
175 | 175 | notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。" |
|
176 | 176 | notice_default_data_loaded: 成功载入默认设置。 |
|
177 | 177 | notice_unable_delete_version: 无法删除版本 |
|
178 | 178 | notice_issue_done_ratios_updated: 问题完成度已更新。 |
|
179 | 179 | |
|
180 | 180 | error_can_t_load_default_data: "无法载入默认设置:{{value}}" |
|
181 | 181 | error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。" |
|
182 | 182 | error_scm_command_failed: "访问版本库时发生错误:{{value}}" |
|
183 | 183 | error_scm_annotate: "该条目不存在或无法追溯。" |
|
184 | 184 | error_issue_not_found_in_project: '问题不存在或不属于此项目' |
|
185 | 185 | error_no_tracker_in_project: 该项目未设定跟踪标签,请检查项目配置。 |
|
186 | 186 | error_no_default_issue_status: 未设置默认的问题状态。请检查系统设置("管理" -> "问题状态")。 |
|
187 | 187 | error_can_not_reopen_issue_on_closed_version: 该问题被关联到一个已经关闭的版本,因此无法重新打开。 |
|
188 | 188 | error_can_not_archive_project: 该项目无法被存档 |
|
189 | 189 | error_issue_done_ratios_not_updated: 问题完成度未能被更新。 |
|
190 | 190 | error_workflow_copy_source: 请选择一个源跟踪标签或者角色 |
|
191 | 191 | error_workflow_copy_target: 请选择目标跟踪标签和角色 |
|
192 | 192 | |
|
193 | 193 | warning_attachments_not_saved: "{{count}} 个文件保存失败。" |
|
194 | 194 | |
|
195 | 195 | mail_subject_lost_password: "您的 {{value}} 密码" |
|
196 | 196 | mail_body_lost_password: '请点击以下链接来修改您的密码:' |
|
197 | 197 | mail_subject_register: "{{value}}帐号激活" |
|
198 | 198 | mail_body_register: '请点击以下链接来激活您的帐号:' |
|
199 | 199 | mail_body_account_information_external: "您可以使用您的 {{value}} 帐号来登录。" |
|
200 | 200 | mail_body_account_information: 您的帐号信息 |
|
201 | 201 | mail_subject_account_activation_request: "{{value}}帐号激活请求" |
|
202 | 202 | mail_body_account_activation_request: "新用户({{value}})已完成注册,正在等候您的审核:" |
|
203 | 203 | mail_subject_reminder: "{{count}} 个问题需要尽快解决" |
|
204 | 204 | mail_body_reminder: "指派给您的 {{count}} 个问题需要在 {{days}} 天内完成:" |
|
205 | 205 | mail_subject_wiki_content_added: "'{{page}}' wiki页面已添加" |
|
206 | 206 | mail_body_wiki_content_added: "'{{page}}' wiki页面已由 {{author}} 添加。" |
|
207 | 207 | mail_subject_wiki_content_updated: "'{{page}}' wiki页面已更新" |
|
208 | 208 | mail_body_wiki_content_updated: "'{{page}}' wiki页面已由 {{author}} 更新。" |
|
209 | 209 | |
|
210 | 210 | gui_validation_error: 1 个错误 |
|
211 | 211 | gui_validation_error_plural: "{{count}} 个错误" |
|
212 | 212 | |
|
213 | 213 | field_name: 名称 |
|
214 | 214 | field_description: 描述 |
|
215 | 215 | field_summary: 摘要 |
|
216 | 216 | field_is_required: 必填 |
|
217 | 217 | field_firstname: 名字 |
|
218 | 218 | field_lastname: 姓氏 |
|
219 | 219 | field_mail: 邮件地址 |
|
220 | 220 | field_filename: 文件 |
|
221 | 221 | field_filesize: 大小 |
|
222 | 222 | field_downloads: 下载次数 |
|
223 | 223 | field_author: 作者 |
|
224 | 224 | field_created_on: 创建于 |
|
225 | 225 | field_updated_on: 更新于 |
|
226 | 226 | field_field_format: 格式 |
|
227 | 227 | field_is_for_all: 用于所有项目 |
|
228 | 228 | field_possible_values: 可能的值 |
|
229 | 229 | field_regexp: 正则表达式 |
|
230 | 230 | field_min_length: 最小长度 |
|
231 | 231 | field_max_length: 最大长度 |
|
232 | 232 | field_value: 值 |
|
233 | 233 | field_category: 类别 |
|
234 | 234 | field_title: 标题 |
|
235 | 235 | field_project: 项目 |
|
236 | 236 | field_issue: 问题 |
|
237 | 237 | field_status: 状态 |
|
238 | 238 | field_notes: 说明 |
|
239 | 239 | field_is_closed: 已关闭的问题 |
|
240 | 240 | field_is_default: 默认值 |
|
241 | 241 | field_tracker: 跟踪 |
|
242 | 242 | field_subject: 主题 |
|
243 | 243 | field_due_date: 完成日期 |
|
244 | 244 | field_assigned_to: 指派给 |
|
245 | 245 | field_priority: 优先级 |
|
246 | 246 | field_fixed_version: 目标版本 |
|
247 | 247 | field_user: 用户 |
|
248 | 248 | field_role: 角色 |
|
249 | 249 | field_homepage: 主页 |
|
250 | 250 | field_is_public: 公开 |
|
251 | 251 | field_parent: 上级项目 |
|
252 | 252 | field_is_in_roadmap: 在路线图中显示问题 |
|
253 | 253 | field_login: 登录名 |
|
254 | 254 | field_mail_notification: 邮件通知 |
|
255 | 255 | field_admin: 管理员 |
|
256 | 256 | field_last_login_on: 最后登录 |
|
257 | 257 | field_language: 语言 |
|
258 | 258 | field_effective_date: 日期 |
|
259 | 259 | field_password: 密码 |
|
260 | 260 | field_new_password: 新密码 |
|
261 | 261 | field_password_confirmation: 确认 |
|
262 | 262 | field_version: 版本 |
|
263 | 263 | field_type: 类型 |
|
264 | 264 | field_host: 主机 |
|
265 | 265 | field_port: 端口 |
|
266 | 266 | field_account: 帐号 |
|
267 | 267 | field_base_dn: Base DN |
|
268 | 268 | field_attr_login: 登录名属性 |
|
269 | 269 | field_attr_firstname: 名字属性 |
|
270 | 270 | field_attr_lastname: 姓氏属性 |
|
271 | 271 | field_attr_mail: 邮件属性 |
|
272 | 272 | field_onthefly: 即时用户生成 |
|
273 | 273 | field_start_date: 开始 |
|
274 | 274 | field_done_ratio: 完成度 |
|
275 | 275 | field_auth_source: 认证模式 |
|
276 | 276 | field_hide_mail: 隐藏我的邮件地址 |
|
277 | 277 | field_comments: 注释 |
|
278 | 278 | field_url: URL |
|
279 | 279 | field_start_page: 起始页 |
|
280 | 280 | field_subproject: 子项目 |
|
281 | 281 | field_hours: 小时 |
|
282 | 282 | field_activity: 活动 |
|
283 | 283 | field_spent_on: 日期 |
|
284 | 284 | field_identifier: 标识 |
|
285 | 285 | field_is_filter: 作为过滤条件 |
|
286 | 286 | field_issue_to: 相关问题 |
|
287 | 287 | field_delay: 延期 |
|
288 | 288 | field_assignable: 问题可指派给此角色 |
|
289 | 289 | field_redirect_existing_links: 重定向到现有链接 |
|
290 | 290 | field_estimated_hours: 预期时间 |
|
291 | 291 | field_column_names: 列 |
|
292 | 292 | field_time_zone: 时区 |
|
293 | 293 | field_searchable: 可用作搜索条件 |
|
294 | 294 | field_default_value: 默认值 |
|
295 | 295 | field_comments_sorting: 显示注释 |
|
296 | 296 | field_parent_title: 上级页面 |
|
297 | 297 | field_editable: 可编辑 |
|
298 | 298 | field_watcher: 跟踪者 |
|
299 | 299 | field_identity_url: OpenID URL |
|
300 | 300 | field_content: 内容 |
|
301 | 301 | field_group_by: 根据此条件分组 |
|
302 | 302 | field_sharing: 共享 |
|
303 | 303 | |
|
304 | 304 | setting_app_title: 应用程序标题 |
|
305 | 305 | setting_app_subtitle: 应用程序子标题 |
|
306 | 306 | setting_welcome_text: 欢迎文字 |
|
307 | 307 | setting_default_language: 默认语言 |
|
308 | 308 | setting_login_required: 要求认证 |
|
309 | 309 | setting_self_registration: 允许自注册 |
|
310 | 310 | setting_attachment_max_size: 附件大小限制 |
|
311 | 311 | setting_issues_export_limit: 问题输出条目的限制 |
|
312 | 312 | setting_mail_from: 邮件发件人地址 |
|
313 | 313 | setting_bcc_recipients: 使用密件抄送 (bcc) |
|
314 | 314 | setting_plain_text_mail: 纯文本(无HTML) |
|
315 | 315 | setting_host_name: 主机名称 |
|
316 | 316 | setting_text_formatting: 文本格式 |
|
317 | 317 | setting_wiki_compression: 压缩Wiki历史文档 |
|
318 | 318 | setting_feeds_limit: RSS Feed内容条数限制 |
|
319 | 319 | setting_default_projects_public: 新建项目默认为公开项目 |
|
320 | 320 | setting_autofetch_changesets: 自动获取程序变更 |
|
321 | 321 | setting_sys_api_enabled: 启用用于版本库管理的Web Service |
|
322 | 322 | setting_commit_ref_keywords: 用于引用问题的关键字 |
|
323 | 323 | setting_commit_fix_keywords: 用于解决问题的关键字 |
|
324 | 324 | setting_autologin: 自动登录 |
|
325 | 325 | setting_date_format: 日期格式 |
|
326 | 326 | setting_time_format: 时间格式 |
|
327 | 327 | setting_cross_project_issue_relations: 允许不同项目之间的问题关联 |
|
328 | 328 | setting_issue_list_default_columns: 问题列表中显示的默认列 |
|
329 | 329 | setting_repositories_encodings: 版本库编码 |
|
330 | 330 | setting_commit_logs_encoding: 提交注释的编码 |
|
331 | 331 | setting_emails_footer: 邮件签名 |
|
332 | 332 | setting_protocol: 协议 |
|
333 | 333 | setting_per_page_options: 每页显示条目个数的设置 |
|
334 | 334 | setting_user_format: 用户显示格式 |
|
335 | 335 | setting_activity_days_default: 在项目活动中显示的天数 |
|
336 | 336 | setting_display_subprojects_issues: 在项目页面上默认显示子项目的问题 |
|
337 | 337 | setting_enabled_scm: 启用 SCM |
|
338 | 338 | setting_mail_handler_body_delimiters: 在这些行之后截断邮件 |
|
339 | 339 | setting_mail_handler_api_enabled: 启用用于接收邮件的服务 |
|
340 | 340 | setting_mail_handler_api_key: API key |
|
341 | 341 | setting_sequential_project_identifiers: 顺序产生项目标识 |
|
342 | 342 | setting_gravatar_enabled: 使用Gravatar用户头像 |
|
343 | 343 | setting_gravatar_default: 默认的Gravatar头像 |
|
344 | 344 | setting_diff_max_lines_displayed: 查看差别页面上显示的最大行数 |
|
345 | 345 | setting_file_max_size_displayed: 允许直接显示的最大文本文件 |
|
346 | 346 | setting_repository_log_display_limit: 在文件变更记录页面上显示的最大修订版本数量 |
|
347 | 347 | setting_openid: 允许使用OpenID登录和注册 |
|
348 | 348 | setting_password_min_length: 最短密码长度 |
|
349 | 349 | setting_new_project_user_role_id: 非管理员用户新建项目时将被赋予的(在该项目中的)角色 |
|
350 | 350 | setting_default_projects_modules: 新建项目默认启用的模块 |
|
351 | 351 | setting_issue_done_ratio: 计算问题完成度: |
|
352 | 352 | setting_issue_done_ratio_issue_field: 使用问题(的完成度)属性 |
|
353 | 353 | setting_issue_done_ratio_issue_status: 使用问题状态 |
|
354 | 354 | setting_start_of_week: 日历开始于 |
|
355 | 355 | setting_rest_api_enabled: 启用REST web service |
|
356 | 356 | |
|
357 | 357 | permission_add_project: 新建项目 |
|
358 | 358 | permission_add_subprojects: 新建子项目 |
|
359 | 359 | permission_edit_project: 编辑项目 |
|
360 | 360 | permission_select_project_modules: 选择项目模块 |
|
361 | 361 | permission_manage_members: 管理成员 |
|
362 | 362 | permission_manage_versions: 管理版本 |
|
363 | 363 | permission_manage_categories: 管理问题类别 |
|
364 | 364 | permission_view_issues: 查看问题 |
|
365 | 365 | permission_add_issues: 新建问题 |
|
366 | 366 | permission_edit_issues: 更新问题 |
|
367 | 367 | permission_manage_issue_relations: 管理问题关联 |
|
368 | 368 | permission_add_issue_notes: 添加说明 |
|
369 | 369 | permission_edit_issue_notes: 编辑说明 |
|
370 | 370 | permission_edit_own_issue_notes: 编辑自己的说明 |
|
371 | 371 | permission_move_issues: 移动问题 |
|
372 | 372 | permission_delete_issues: 删除问题 |
|
373 | 373 | permission_manage_public_queries: 管理公开的查询 |
|
374 | 374 | permission_save_queries: 保存查询 |
|
375 | 375 | permission_view_gantt: 查看甘特图 |
|
376 | 376 | permission_view_calendar: 查看日历 |
|
377 | 377 | permission_view_issue_watchers: 查看跟踪者列表 |
|
378 | 378 | permission_add_issue_watchers: 添加跟踪者 |
|
379 | 379 | permission_delete_issue_watchers: 删除跟踪者 |
|
380 | 380 | permission_log_time: 登记工时 |
|
381 | 381 | permission_view_time_entries: 查看耗时 |
|
382 | 382 | permission_edit_time_entries: 编辑耗时 |
|
383 | 383 | permission_edit_own_time_entries: 编辑自己的耗时 |
|
384 | 384 | permission_manage_news: 管理新闻 |
|
385 | 385 | permission_comment_news: 为新闻添加评论 |
|
386 | 386 | permission_manage_documents: 管理文档 |
|
387 | 387 | permission_view_documents: 查看文档 |
|
388 | 388 | permission_manage_files: 管理文件 |
|
389 | 389 | permission_view_files: 查看文件 |
|
390 | 390 | permission_manage_wiki: 管理Wiki |
|
391 | 391 | permission_rename_wiki_pages: 重命名Wiki页面 |
|
392 | 392 | permission_delete_wiki_pages: 删除Wiki页面 |
|
393 | 393 | permission_view_wiki_pages: 查看Wiki |
|
394 | 394 | permission_view_wiki_edits: 查看Wiki历史记录 |
|
395 | 395 | permission_edit_wiki_pages: 编辑Wiki页面 |
|
396 | 396 | permission_delete_wiki_pages_attachments: 删除附件 |
|
397 | 397 | permission_protect_wiki_pages: 保护Wiki页面 |
|
398 | 398 | permission_manage_repository: 管理版本库 |
|
399 | 399 | permission_browse_repository: 浏览版本库 |
|
400 | 400 | permission_view_changesets: 查看变更 |
|
401 | 401 | permission_commit_access: 访问提交信息 |
|
402 | 402 | permission_manage_boards: 管理讨论区 |
|
403 | 403 | permission_view_messages: 查看帖子 |
|
404 | 404 | permission_add_messages: 发表帖子 |
|
405 | 405 | permission_edit_messages: 编辑帖子 |
|
406 | 406 | permission_edit_own_messages: 编辑自己的帖子 |
|
407 | 407 | permission_delete_messages: 删除帖子 |
|
408 | 408 | permission_delete_own_messages: 删除自己的帖子 |
|
409 | 409 | |
|
410 | 410 | project_module_issue_tracking: 问题跟踪 |
|
411 | 411 | project_module_time_tracking: 时间跟踪 |
|
412 | 412 | project_module_news: 新闻 |
|
413 | 413 | project_module_documents: 文档 |
|
414 | 414 | project_module_files: 文件 |
|
415 | 415 | project_module_wiki: Wiki |
|
416 | 416 | project_module_repository: 版本库 |
|
417 | 417 | project_module_boards: 讨论区 |
|
418 | 418 | |
|
419 | 419 | label_user: 用户 |
|
420 | 420 | label_user_plural: 用户 |
|
421 | 421 | label_user_new: 新建用户 |
|
422 | 422 | label_user_anonymous: 匿名用户 |
|
423 | 423 | label_project: 项目 |
|
424 | 424 | label_project_new: 新建项目 |
|
425 | 425 | label_project_plural: 项目 |
|
426 | 426 | label_x_projects: |
|
427 | 427 | zero: 无项目 |
|
428 | 428 | one: 1 个项目 |
|
429 | 429 | other: "{{count}} 个项目" |
|
430 | 430 | label_project_all: 所有的项目 |
|
431 | 431 | label_project_latest: 最近更新的项目 |
|
432 | 432 | label_issue: 问题 |
|
433 | 433 | label_issue_new: 新建问题 |
|
434 | 434 | label_issue_plural: 问题 |
|
435 | 435 | label_issue_view_all: 查看所有问题 |
|
436 | 436 | label_issues_by: "按 {{value}} 分组显示问题" |
|
437 | 437 | label_issue_added: 问题已添加 |
|
438 | 438 | label_issue_updated: 问题已更新 |
|
439 | 439 | label_document: 文档 |
|
440 | 440 | label_document_new: 新建文档 |
|
441 | 441 | label_document_plural: 文档 |
|
442 | 442 | label_document_added: 文档已添加 |
|
443 | 443 | label_role: 角色 |
|
444 | 444 | label_role_plural: 角色 |
|
445 | 445 | label_role_new: 新建角色 |
|
446 | 446 | label_role_and_permissions: 角色和权限 |
|
447 | 447 | label_member: 成员 |
|
448 | 448 | label_member_new: 新建成员 |
|
449 | 449 | label_member_plural: 成员 |
|
450 | 450 | label_tracker: 跟踪标签 |
|
451 | 451 | label_tracker_plural: 跟踪标签 |
|
452 | 452 | label_tracker_new: 新建跟踪标签 |
|
453 | 453 | label_workflow: 工作流程 |
|
454 | 454 | label_issue_status: 问题状态 |
|
455 | 455 | label_issue_status_plural: 问题状态 |
|
456 | 456 | label_issue_status_new: 新建问题状态 |
|
457 | 457 | label_issue_category: 问题类别 |
|
458 | 458 | label_issue_category_plural: 问题类别 |
|
459 | 459 | label_issue_category_new: 新建问题类别 |
|
460 | 460 | label_custom_field: 自定义属性 |
|
461 | 461 | label_custom_field_plural: 自定义属性 |
|
462 | 462 | label_custom_field_new: 新建自定义属性 |
|
463 | 463 | label_enumerations: 枚举值 |
|
464 | 464 | label_enumeration_new: 新建枚举值 |
|
465 | 465 | label_information: 信息 |
|
466 | 466 | label_information_plural: 信息 |
|
467 | 467 | label_please_login: 请登录 |
|
468 | 468 | label_register: 注册 |
|
469 | 469 | label_login_with_open_id_option: 或使用OpenID登录 |
|
470 | 470 | label_password_lost: 忘记密码 |
|
471 | 471 | label_home: 主页 |
|
472 | 472 | label_my_page: 我的工作台 |
|
473 | 473 | label_my_account: 我的帐号 |
|
474 | 474 | label_my_projects: 我的项目 |
|
475 | 475 | label_administration: 管理 |
|
476 | 476 | label_login: 登录 |
|
477 | 477 | label_logout: 退出 |
|
478 | 478 | label_help: 帮助 |
|
479 | 479 | label_reported_issues: 已报告的问题 |
|
480 | 480 | label_assigned_to_me_issues: 指派给我的问题 |
|
481 | 481 | label_last_login: 最后登录 |
|
482 | 482 | label_registered_on: 注册于 |
|
483 | 483 | label_activity: 活动 |
|
484 | 484 | label_overall_activity: 全部活动 |
|
485 | 485 | label_user_activity: "{{value}} 的活动" |
|
486 | 486 | label_new: 新建 |
|
487 | 487 | label_logged_as: 登录为 |
|
488 | 488 | label_environment: 环境 |
|
489 | 489 | label_authentication: 认证 |
|
490 | 490 | label_auth_source: 认证模式 |
|
491 | 491 | label_auth_source_new: 新建认证模式 |
|
492 | 492 | label_auth_source_plural: 认证模式 |
|
493 | 493 | label_subproject_plural: 子项目 |
|
494 | 494 | label_subproject_new: 新建子项目 |
|
495 | 495 | label_and_its_subprojects: "{{value}} 及其子项目" |
|
496 | 496 | label_min_max_length: 最小 - 最大 长度 |
|
497 | 497 | label_list: 列表 |
|
498 | 498 | label_date: 日期 |
|
499 | 499 | label_integer: 整数 |
|
500 | 500 | label_float: 浮点数 |
|
501 | 501 | label_boolean: 布尔量 |
|
502 | 502 | label_string: 文字 |
|
503 | 503 | label_text: 长段文字 |
|
504 | 504 | label_attribute: 属性 |
|
505 | 505 | label_attribute_plural: 属性 |
|
506 | 506 | label_download: "{{count}} 次下载" |
|
507 | 507 | label_download_plural: "{{count}} 次下载" |
|
508 | 508 | label_no_data: 没有任何数据可供显示 |
|
509 | 509 | label_change_status: 变更状态 |
|
510 | 510 | label_history: 历史记录 |
|
511 | 511 | label_attachment: 文件 |
|
512 | 512 | label_attachment_new: 新建文件 |
|
513 | 513 | label_attachment_delete: 删除文件 |
|
514 | 514 | label_attachment_plural: 文件 |
|
515 | 515 | label_file_added: 文件已添加 |
|
516 | 516 | label_report: 报表 |
|
517 | 517 | label_report_plural: 报表 |
|
518 | 518 | label_news: 新闻 |
|
519 | 519 | label_news_new: 添加新闻 |
|
520 | 520 | label_news_plural: 新闻 |
|
521 | 521 | label_news_latest: 最近的新闻 |
|
522 | 522 | label_news_view_all: 查看所有新闻 |
|
523 | 523 | label_news_added: 新闻已添加 |
|
524 | 524 | label_settings: 配置 |
|
525 | 525 | label_overview: 概述 |
|
526 | 526 | label_version: 版本 |
|
527 | 527 | label_version_new: 新建版本 |
|
528 | 528 | label_version_plural: 版本 |
|
529 | 529 | label_close_versions: 关闭已完成的版本 |
|
530 | 530 | label_confirmation: 确认 |
|
531 | 531 | label_export_to: 导出 |
|
532 | 532 | label_read: 读取... |
|
533 | 533 | label_public_projects: 公开的项目 |
|
534 | 534 | label_open_issues: 打开 |
|
535 | 535 | label_open_issues_plural: 打开 |
|
536 | 536 | label_closed_issues: 已关闭 |
|
537 | 537 | label_closed_issues_plural: 已关闭 |
|
538 | 538 | label_x_open_issues_abbr_on_total: |
|
539 | 539 | zero: 0 打开 / {{total}} |
|
540 | 540 | one: 1 打开 / {{total}} |
|
541 | 541 | other: "{{count}} 打开 / {{total}}" |
|
542 | 542 | label_x_open_issues_abbr: |
|
543 | 543 | zero: 0 打开 |
|
544 | 544 | one: 1 打开 |
|
545 | 545 | other: "{{count}} 打开" |
|
546 | 546 | label_x_closed_issues_abbr: |
|
547 | 547 | zero: 0 关闭 |
|
548 | 548 | one: 1 关闭 |
|
549 | 549 | other: "{{count}} 关闭" |
|
550 | 550 | label_total: 合计 |
|
551 | 551 | label_permissions: 权限 |
|
552 | 552 | label_current_status: 当前状态 |
|
553 | 553 | label_new_statuses_allowed: 可变更的新状态 |
|
554 | 554 | label_all: 全部 |
|
555 | 555 | label_none: 无 |
|
556 | 556 | label_nobody: 无人 |
|
557 | 557 | label_next: 下一个 |
|
558 | 558 | label_previous: 上一个 |
|
559 | 559 | label_used_by: 使用中 |
|
560 | 560 | label_details: 详情 |
|
561 | 561 | label_add_note: 添加说明 |
|
562 | 562 | label_per_page: 每页 |
|
563 | 563 | label_calendar: 日历 |
|
564 | 564 | label_months_from: 个月以来 |
|
565 | 565 | label_gantt: 甘特图 |
|
566 | 566 | label_internal: 内部 |
|
567 | 567 | label_last_changes: "最近的 {{count}} 次变更" |
|
568 | 568 | label_change_view_all: 查看所有变更 |
|
569 | 569 | label_personalize_page: 个性化定制本页 |
|
570 | 570 | label_comment: 评论 |
|
571 | 571 | label_comment_plural: 评论 |
|
572 | 572 | label_x_comments: |
|
573 | 573 | zero: 无评论 |
|
574 | 574 | one: 1 条评论 |
|
575 | 575 | other: "{{count}} 条评论" |
|
576 | 576 | label_comment_add: 添加评论 |
|
577 | 577 | label_comment_added: 评论已添加 |
|
578 | 578 | label_comment_delete: 删除评论 |
|
579 | 579 | label_query: 自定义查询 |
|
580 | 580 | label_query_plural: 自定义查询 |
|
581 | 581 | label_query_new: 新建查询 |
|
582 | 582 | label_filter_add: 增加过滤器 |
|
583 | 583 | label_filter_plural: 过滤器 |
|
584 | 584 | label_equals: 等于 |
|
585 | 585 | label_not_equals: 不等于 |
|
586 | 586 | label_in_less_than: 剩余天数小于 |
|
587 | 587 | label_in_more_than: 剩余天数大于 |
|
588 | 588 | label_greater_or_equal: '>=' |
|
589 | 589 | label_less_or_equal: '<=' |
|
590 | 590 | label_in: 剩余天数 |
|
591 | 591 | label_today: 今天 |
|
592 | 592 | label_all_time: 全部时间 |
|
593 | 593 | label_yesterday: 昨天 |
|
594 | 594 | label_this_week: 本周 |
|
595 | 595 | label_last_week: 下周 |
|
596 | 596 | label_last_n_days: "最后 {{count}} 天" |
|
597 | 597 | label_this_month: 本月 |
|
598 | 598 | label_last_month: 下月 |
|
599 | 599 | label_this_year: 今年 |
|
600 | 600 | label_date_range: 日期范围 |
|
601 | 601 | label_less_than_ago: 之前天数少于 |
|
602 | 602 | label_more_than_ago: 之前天数大于 |
|
603 | 603 | label_ago: 之前天数 |
|
604 | 604 | label_contains: 包含 |
|
605 | 605 | label_not_contains: 不包含 |
|
606 | 606 | label_day_plural: 天 |
|
607 | 607 | label_repository: 版本库 |
|
608 | 608 | label_repository_plural: 版本库 |
|
609 | 609 | label_browse: 浏览 |
|
610 | 610 | label_modification: "{{count}} 个更新" |
|
611 | 611 | label_modification_plural: "{{count}} 个更新" |
|
612 | 612 | label_branch: 分支 |
|
613 | 613 | label_tag: 标签 |
|
614 | 614 | label_revision: 修订 |
|
615 | 615 | label_revision_plural: 修订 |
|
616 | 616 | label_revision_id: 修订 {{value}} |
|
617 | 617 | label_associated_revisions: 相关修订版本 |
|
618 | 618 | label_added: 已添加 |
|
619 | 619 | label_modified: 已修改 |
|
620 | 620 | label_copied: 已复制 |
|
621 | 621 | label_renamed: 已重命名 |
|
622 | 622 | label_deleted: 已删除 |
|
623 | 623 | label_latest_revision: 最近的修订版本 |
|
624 | 624 | label_latest_revision_plural: 最近的修订版本 |
|
625 | 625 | label_view_revisions: 查看修订 |
|
626 | 626 | label_view_all_revisions: 查看所有修订 |
|
627 | 627 | label_max_size: 最大尺寸 |
|
628 | 628 | label_sort_highest: 置顶 |
|
629 | 629 | label_sort_higher: 上移 |
|
630 | 630 | label_sort_lower: 下移 |
|
631 | 631 | label_sort_lowest: 置底 |
|
632 | 632 | label_roadmap: 路线图 |
|
633 | 633 | label_roadmap_due_in: "截止日期到 {{value}}" |
|
634 | 634 | label_roadmap_overdue: "{{value}} 延期" |
|
635 | 635 | label_roadmap_no_issues: 该版本没有问题 |
|
636 | 636 | label_search: 搜索 |
|
637 | 637 | label_result_plural: 结果 |
|
638 | 638 | label_all_words: 所有单词 |
|
639 | 639 | label_wiki: Wiki |
|
640 | 640 | label_wiki_edit: Wiki 编辑 |
|
641 | 641 | label_wiki_edit_plural: Wiki 编辑记录 |
|
642 | 642 | label_wiki_page: Wiki 页面 |
|
643 | 643 | label_wiki_page_plural: Wiki 页面 |
|
644 | 644 | label_index_by_title: 按标题索引 |
|
645 | 645 | label_index_by_date: 按日期索引 |
|
646 | 646 | label_current_version: 当前版本 |
|
647 | 647 | label_preview: 预览 |
|
648 | 648 | label_feed_plural: Feeds |
|
649 | 649 | label_changes_details: 所有变更的详情 |
|
650 | 650 | label_issue_tracking: 问题跟踪 |
|
651 | 651 | label_spent_time: 耗时 |
|
652 | 652 | label_f_hour: "{{value}} 小时" |
|
653 | 653 | label_f_hour_plural: "{{value}} 小时" |
|
654 | 654 | label_time_tracking: 时间跟踪 |
|
655 | 655 | label_change_plural: 变更 |
|
656 | 656 | label_statistics: 统计 |
|
657 | 657 | label_commits_per_month: 每月提交次数 |
|
658 | 658 | label_commits_per_author: 每用户提交次数 |
|
659 | 659 | label_view_diff: 查看差别 |
|
660 | 660 | label_diff_inline: 直列 |
|
661 | 661 | label_diff_side_by_side: 并排 |
|
662 | 662 | label_options: 选项 |
|
663 | 663 | label_copy_workflow_from: 从以下项目复制工作流程 |
|
664 | 664 | label_permissions_report: 权限报表 |
|
665 | 665 | label_watched_issues: 跟踪的问题 |
|
666 | 666 | label_related_issues: 相关的问题 |
|
667 | 667 | label_applied_status: 应用后的状态 |
|
668 | 668 | label_loading: 载入中... |
|
669 | 669 | label_relation_new: 新建关联 |
|
670 | 670 | label_relation_delete: 删除关联 |
|
671 | 671 | label_relates_to: 关联到 |
|
672 | 672 | label_duplicates: 重复 |
|
673 | 673 | label_duplicated_by: 与其重复 |
|
674 | 674 | label_blocks: 阻挡 |
|
675 | 675 | label_blocked_by: 被阻挡 |
|
676 | 676 | label_precedes: 优先于 |
|
677 | 677 | label_follows: 跟随于 |
|
678 | 678 | label_end_to_start: 结束-开始 |
|
679 | 679 | label_end_to_end: 结束-结束 |
|
680 | 680 | label_start_to_start: 开始-开始 |
|
681 | 681 | label_start_to_end: 开始-结束 |
|
682 | 682 | label_stay_logged_in: 保持登录状态 |
|
683 | 683 | label_disabled: 禁用 |
|
684 | 684 | label_show_completed_versions: 显示已完成的版本 |
|
685 | 685 | label_me: 我 |
|
686 | 686 | label_board: 讨论区 |
|
687 | 687 | label_board_new: 新建讨论区 |
|
688 | 688 | label_board_plural: 讨论区 |
|
689 | 689 | label_topic_plural: 主题 |
|
690 | 690 | label_message_plural: 帖子 |
|
691 | 691 | label_message_last: 最新的帖子 |
|
692 | 692 | label_message_new: 新贴 |
|
693 | 693 | label_message_posted: 发帖成功 |
|
694 | 694 | label_reply_plural: 回复 |
|
695 | 695 | label_send_information: 给用户发送帐号信息 |
|
696 | 696 | label_year: 年 |
|
697 | 697 | label_month: 月 |
|
698 | 698 | label_week: 周 |
|
699 | 699 | label_date_from: 从 |
|
700 | 700 | label_date_to: 到 |
|
701 | 701 | label_language_based: 根据用户的语言 |
|
702 | 702 | label_sort_by: "根据 {{value}} 排序" |
|
703 | 703 | label_send_test_email: 发送测试邮件 |
|
704 | 704 | label_feeds_access_key: RSS存取键 |
|
705 | 705 | label_missing_feeds_access_key: 缺少RSS存取键 |
|
706 | 706 | label_feeds_access_key_created_on: "RSS存取键是在 {{value}} 之前建立的" |
|
707 | 707 | label_module_plural: 模块 |
|
708 | 708 | label_added_time_by: "由 {{author}} 在 {{age}} 之前添加" |
|
709 | 709 | label_updated_time: " 更新于 {{value}} 之前" |
|
710 | 710 | label_updated_time_by: "由 {{author}} 更新于 {{age}} 之前" |
|
711 | 711 | label_jump_to_a_project: 选择一个项目... |
|
712 | 712 | label_file_plural: 文件 |
|
713 | 713 | label_changeset_plural: 变更 |
|
714 | 714 | label_default_columns: 默认列 |
|
715 | 715 | label_no_change_option: (不变) |
|
716 | 716 | label_bulk_edit_selected_issues: 批量修改选中的问题 |
|
717 | 717 | label_theme: 主题 |
|
718 | 718 | label_default: 默认 |
|
719 | 719 | label_search_titles_only: 仅在标题中搜索 |
|
720 | 720 | label_user_mail_option_all: "收取我的项目的所有通知" |
|
721 | 721 | label_user_mail_option_selected: "收取选中项目的所有通知..." |
|
722 | 722 | label_user_mail_option_none: "只收取我跟踪或参与的项目的通知" |
|
723 | 723 | label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知" |
|
724 | 724 | label_registration_activation_by_email: 通过邮件认证激活帐号 |
|
725 | 725 | label_registration_manual_activation: 手动激活帐号 |
|
726 | 726 | label_registration_automatic_activation: 自动激活帐号 |
|
727 | 727 | label_display_per_page: "每页显示:{{value}}" |
|
728 | 728 | label_age: 年龄 |
|
729 | 729 | label_change_properties: 修改属性 |
|
730 | 730 | label_general: 一般 |
|
731 | 731 | label_more: 更多 |
|
732 | 732 | label_scm: SCM |
|
733 | 733 | label_plugins: 插件 |
|
734 | 734 | label_ldap_authentication: LDAP 认证 |
|
735 | 735 | label_downloads_abbr: D/L |
|
736 | 736 | label_optional_description: 可选的描述 |
|
737 | 737 | label_add_another_file: 添加其它文件 |
|
738 | 738 | label_preferences: 首选项 |
|
739 | 739 | label_chronological_order: 按时间顺序 |
|
740 | 740 | label_reverse_chronological_order: 按时间顺序(倒序) |
|
741 | 741 | label_planning: 计划 |
|
742 | 742 | label_incoming_emails: 接收邮件 |
|
743 | 743 | label_generate_key: 生成一个key |
|
744 | 744 | label_issue_watchers: 跟踪者 |
|
745 | 745 | label_example: 示例 |
|
746 | 746 | label_display: 显示 |
|
747 | 747 | label_sort: 排序 |
|
748 | 748 | label_ascending: 升序 |
|
749 | 749 | label_descending: 降序 |
|
750 | 750 | label_date_from_to: 从 {{start}} 到 {{end}} |
|
751 | 751 | label_wiki_content_added: Wiki 页面已添加 |
|
752 | 752 | label_wiki_content_updated: Wiki 页面已更新 |
|
753 | 753 | label_group: 组 |
|
754 | 754 | label_group_plural: 组 |
|
755 | 755 | label_group_new: 新建组 |
|
756 | 756 | label_time_entry_plural: 耗时 |
|
757 | 757 | label_version_sharing_none: 不共享 |
|
758 | 758 | label_version_sharing_descendants: 与子项目共享 |
|
759 | 759 | label_version_sharing_hierarchy: 与项目继承层次共享 |
|
760 | 760 | label_version_sharing_tree: 与项目树共享 |
|
761 | 761 | label_version_sharing_system: 与所有项目共享 |
|
762 | 762 | label_update_issue_done_ratios: 更新问题的完成度 |
|
763 | 763 | label_copy_source: 源 |
|
764 | 764 | label_copy_target: 目标 |
|
765 | 765 | label_copy_same_as_target: 与目标一致 |
|
766 | 766 | label_display_used_statuses_only: 只显示被此跟踪标签使用的状态 |
|
767 | 767 | label_api_access_key: API访问键 |
|
768 | 768 | label_missing_api_access_key: 缺少API访问键 |
|
769 | 769 | label_api_access_key_created_on: API访问键是在 {{value}} 之前建立的 |
|
770 | 770 | |
|
771 | 771 | button_login: 登录 |
|
772 | 772 | button_submit: 提交 |
|
773 | 773 | button_save: 保存 |
|
774 | 774 | button_check_all: 全选 |
|
775 | 775 | button_uncheck_all: 清除 |
|
776 | 776 | button_delete: 删除 |
|
777 | 777 | button_create: 创建 |
|
778 | 778 | button_create_and_continue: 创建并继续 |
|
779 | 779 | button_test: 测试 |
|
780 | 780 | button_edit: 编辑 |
|
781 | 781 | button_add: 新增 |
|
782 | 782 | button_change: 修改 |
|
783 | 783 | button_apply: 应用 |
|
784 | 784 | button_clear: 清除 |
|
785 | 785 | button_lock: 锁定 |
|
786 | 786 | button_unlock: 解锁 |
|
787 | 787 | button_download: 下载 |
|
788 | 788 | button_list: 列表 |
|
789 | 789 | button_view: 查看 |
|
790 | 790 | button_move: 移动 |
|
791 | 791 | button_move_and_follow: 移动并转到新问题 |
|
792 | 792 | button_back: 返回 |
|
793 | 793 | button_cancel: 取消 |
|
794 | 794 | button_activate: 激活 |
|
795 | 795 | button_sort: 排序 |
|
796 | 796 | button_log_time: 登记工时 |
|
797 | 797 | button_rollback: 恢复到这个版本 |
|
798 | 798 | button_watch: 跟踪 |
|
799 | 799 | button_unwatch: 取消跟踪 |
|
800 | 800 | button_reply: 回复 |
|
801 | 801 | button_archive: 存档 |
|
802 | 802 | button_unarchive: 取消存档 |
|
803 | 803 | button_reset: 重置 |
|
804 | 804 | button_rename: 重命名 |
|
805 | 805 | button_change_password: 修改密码 |
|
806 | 806 | button_copy: 复制 |
|
807 | 807 | button_copy_and_follow: 复制并转到新问题 |
|
808 | 808 | button_annotate: 追溯 |
|
809 | 809 | button_update: 更新 |
|
810 | 810 | button_configure: 配置 |
|
811 | 811 | button_quote: 引用 |
|
812 | 812 | button_duplicate: 副本 |
|
813 | 813 | button_show: 显示 |
|
814 | 814 | |
|
815 | 815 | status_active: 活动的 |
|
816 | 816 | status_registered: 已注册 |
|
817 | 817 | status_locked: 已锁定 |
|
818 | 818 | |
|
819 | 819 | version_status_open: 打开 |
|
820 | 820 | version_status_locked: 锁定 |
|
821 | 821 | version_status_closed: 关闭 |
|
822 | 822 | |
|
823 | 823 | field_active: 活动 |
|
824 | 824 | |
|
825 | 825 | text_select_mail_notifications: 选择需要发送邮件通知的动作 |
|
826 | 826 | text_regexp_info: 例如:^[A-Z0-9]+$ |
|
827 | 827 | text_min_max_length_info: 0 表示没有限制 |
|
828 | 828 | text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? |
|
829 | 829 | text_subprojects_destroy_warning: "以下子项目也将被同时删除:{{value}}" |
|
830 | 830 | text_workflow_edit: 选择角色和跟踪标签来编辑工作流程 |
|
831 | 831 | text_are_you_sure: 您确定? |
|
832 | 832 | text_journal_changed: "{{label}} 从 {{old}} 变更为 {{new}}" |
|
833 | 833 | text_journal_set_to: "{{label}} 被设置为 {{value}}" |
|
834 | 834 | text_journal_deleted: "{{label}} 已删除 ({{old}})" |
|
835 | 835 | text_journal_added: "{{label}} {{value}} 已添加" |
|
836 | 836 | text_tip_task_begin_day: 今天开始的任务 |
|
837 | 837 | text_tip_task_end_day: 今天结束的任务 |
|
838 | 838 | text_tip_task_begin_end_day: 今天开始并结束的任务 |
|
839 | 839 | text_project_identifier_info: '只允许使用小写字母(a-z),数字和连字符(-)。<br />请注意,标识符保存后将不可修改。' |
|
840 | 840 | text_caracters_maximum: "最多 {{count}} 个字符。" |
|
841 | 841 | text_caracters_minimum: "至少需要 {{count}} 个字符。" |
|
842 | 842 | text_length_between: "长度必须在 {{min}} 到 {{max}} 个字符之间。" |
|
843 | 843 | text_tracker_no_workflow: 此跟踪标签未定义工作流程 |
|
844 | 844 | text_unallowed_characters: 非法字符 |
|
845 | 845 | text_comma_separated: 可以使用多个值(用逗号,分开)。 |
|
846 | 846 | text_line_separated: 可以使用多个值(每行一个值)。 |
|
847 | 847 | text_issues_ref_in_commit_messages: 在提交信息中引用和解决问题 |
|
848 | 848 | text_issue_added: "问题 {{id}} 已由 {{author}} 提交。" |
|
849 | 849 | text_issue_updated: "问题 {{id}} 已由 {{author}} 更新。" |
|
850 | 850 | text_wiki_destroy_confirmation: 您确定要删除这个 wiki 及其所有内容吗? |
|
851 | 851 | text_issue_category_destroy_question: "有一些问题({{count}} 个)属于此类别。您想进行哪种操作?" |
|
852 | 852 | text_issue_category_destroy_assignments: 删除问题的所属类别(问题变为无类别) |
|
853 | 853 | text_issue_category_reassign_to: 为问题选择其它类别 |
|
854 | 854 | text_user_mail_option: "对于没有选中的项目,您将只会收到您跟踪或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。" |
|
855 | 855 | text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。" |
|
856 | 856 | text_load_default_configuration: 载入默认设置 |
|
857 | 857 | text_status_changed_by_changeset: "已应用到变更列表 {{value}}." |
|
858 | 858 | text_issues_destroy_confirmation: '您确定要删除选中的问题吗?' |
|
859 | 859 | text_select_project_modules: '请选择此项目可以使用的模块:' |
|
860 | 860 | text_default_administrator_account_changed: 默认的管理员帐号已改变 |
|
861 | 861 | text_file_repository_writable: 附件路径可写 |
|
862 | 862 | text_plugin_assets_writable: 插件的附件路径可写 |
|
863 | 863 | text_rmagick_available: RMagick 可用(可选的) |
|
864 | 864 | text_destroy_time_entries_question: 您要删除的问题已经上报了 {{hours}} 小时的工作量。您想进行那种操作? |
|
865 | 865 | text_destroy_time_entries: 删除上报的工作量 |
|
866 | 866 | text_assign_time_entries_to_project: 将已上报的工作量提交到项目中 |
|
867 | 867 | text_reassign_time_entries: '将已上报的工作量指定到此问题:' |
|
868 | 868 | text_user_wrote: "{{value}} 写到:" |
|
869 | 869 | text_enumeration_category_reassign_to: '将它们关联到新的枚举值:' |
|
870 | 870 | text_enumeration_destroy_question: "{{count}} 个对象被关联到了这个枚举值。" |
|
871 | 871 | text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/email.yml中配置您的SMTP服务器信息并重新启动以使其生效。" |
|
872 | 872 | text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。" |
|
873 | 873 | text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断' |
|
874 | 874 | text_custom_field_possible_values_info: '每项数值一行' |
|
875 | 875 | text_wiki_page_destroy_question: 此页面有 {{descendants}} 个子页面和下级页面。您想进行那种操作? |
|
876 | 876 | text_wiki_page_reassign_children: 将子页面的上级页面设置为 |
|
877 | 877 | text_wiki_page_nullify_children: 将子页面保留为根页面 |
|
878 | 878 | text_wiki_page_destroy_children: 删除子页面及其所有下级页面 |
|
879 | 879 | text_own_membership_delete_confirmation: 你正在删除你现有的某些或全部权限,如果这样做了你可能将会再也无法编辑该项目了。你确定要继续吗? |
|
880 | 880 | |
|
881 | 881 | default_role_manager: 管理人员 |
|
882 | 882 | default_role_developper: 开发人员 |
|
883 | 883 | default_role_reporter: 报告人员 |
|
884 | 884 | default_tracker_bug: 错误 |
|
885 | 885 | default_tracker_feature: 功能 |
|
886 | 886 | default_tracker_support: 支持 |
|
887 | 887 | default_issue_status_new: 新建 |
|
888 | 888 | default_issue_status_in_progress: 进行中 |
|
889 | 889 | default_issue_status_resolved: 已解决 |
|
890 | 890 | default_issue_status_feedback: 反馈 |
|
891 | 891 | default_issue_status_closed: 已关闭 |
|
892 | 892 | default_issue_status_rejected: 已拒绝 |
|
893 | 893 | default_doc_category_user: 用户文档 |
|
894 | 894 | default_doc_category_tech: 技术文档 |
|
895 | 895 | default_priority_low: 低 |
|
896 | 896 | default_priority_normal: 普通 |
|
897 | 897 | default_priority_high: 高 |
|
898 | 898 | default_priority_urgent: 紧急 |
|
899 | 899 | default_priority_immediate: 立刻 |
|
900 | 900 | default_activity_design: 设计 |
|
901 | 901 | default_activity_development: 开发 |
|
902 | 902 | |
|
903 | 903 | enumeration_issue_priorities: 问题优先级 |
|
904 | 904 | enumeration_doc_categories: 文档类别 |
|
905 | 905 | enumeration_activities: 活动(时间跟踪) |
|
906 | 906 | enumeration_system_activity: 系统活动 |
|
907 | 907 | label_board_sticky: Sticky |
|
908 | 908 | label_board_locked: Locked |
|
909 | 909 | permission_export_wiki_pages: Export wiki pages |
|
910 | 910 | setting_cache_formatted_text: Cache formatted text |
|
911 | 911 | permission_manage_project_activities: Manage project activities |
|
912 |
|
|
|
912 | error_unable_delete_issue_status: Unable to delete issue status |
General Comments 0
You need to be logged in to leave comments.
Login now