##// END OF EJS Templates
Remove hardcoded "Redmine" strings in account related emails. And use application title instead....
Jean-Philippe Lang -
r1239:a59e6bfb020f
parent child
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -1,172 +1,172
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class Mailer < ActionMailer::Base
19 19 helper :application
20 20 helper :issues
21 21 helper :custom_fields
22 22
23 23 include ActionController::UrlWriter
24 24
25 25 def issue_add(issue)
26 26 recipients issue.recipients
27 27 subject "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}"
28 28 body :issue => issue,
29 29 :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue)
30 30 end
31 31
32 32 def issue_edit(journal)
33 33 issue = journal.journalized
34 34 recipients issue.recipients
35 35 # Watchers in cc
36 36 cc(issue.watcher_recipients - @recipients)
37 37 s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] "
38 38 s << "(#{issue.status.name}) " if journal.new_value_for('status_id')
39 39 s << issue.subject
40 40 subject s
41 41 body :issue => issue,
42 42 :journal => journal,
43 43 :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue)
44 44 end
45 45
46 46 def document_added(document)
47 47 recipients document.project.recipients
48 48 subject "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}"
49 49 body :document => document,
50 50 :document_url => url_for(:controller => 'documents', :action => 'show', :id => document)
51 51 end
52 52
53 53 def attachments_added(attachments)
54 54 container = attachments.first.container
55 55 added_to = ''
56 56 added_to_url = ''
57 57 case container.class.name
58 58 when 'Version'
59 59 added_to_url = url_for(:controller => 'projects', :action => 'list_files', :id => container.project_id)
60 60 added_to = "#{l(:label_version)}: #{container.name}"
61 61 when 'Document'
62 62 added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id)
63 63 added_to = "#{l(:label_document)}: #{container.title}"
64 64 end
65 65 recipients container.project.recipients
66 66 subject "[#{container.project.name}] #{l(:label_attachment_new)}"
67 67 body :attachments => attachments,
68 68 :added_to => added_to,
69 69 :added_to_url => added_to_url
70 70 end
71 71
72 72 def news_added(news)
73 73 recipients news.project.recipients
74 74 subject "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
75 75 body :news => news,
76 76 :news_url => url_for(:controller => 'news', :action => 'show', :id => news)
77 77 end
78 78
79 79 def message_posted(message, recipients)
80 80 recipients(recipients)
81 81 subject "[#{message.board.project.name} - #{message.board.name}] #{message.subject}"
82 82 body :message => message,
83 83 :message_url => url_for(:controller => 'messages', :action => 'show', :board_id => message.board_id, :id => message.root)
84 84 end
85 85
86 86 def account_information(user, password)
87 87 set_language_if_valid user.language
88 88 recipients user.mail
89 subject l(:mail_subject_register)
89 subject l(:mail_subject_register, Setting.app_title)
90 90 body :user => user,
91 91 :password => password,
92 92 :login_url => url_for(:controller => 'account', :action => 'login')
93 93 end
94 94
95 95 def account_activation_request(user)
96 96 # Send the email to all active administrators
97 97 recipients User.find_active(:all, :conditions => {:admin => true}).collect { |u| u.mail }.compact
98 subject l(:mail_subject_account_activation_request)
98 subject l(:mail_subject_account_activation_request, Setting.app_title)
99 99 body :user => user,
100 100 :url => url_for(:controller => 'users', :action => 'index', :status => User::STATUS_REGISTERED, :sort_key => 'created_on', :sort_order => 'desc')
101 101 end
102 102
103 103 def lost_password(token)
104 104 set_language_if_valid(token.user.language)
105 105 recipients token.user.mail
106 subject l(:mail_subject_lost_password)
106 subject l(:mail_subject_lost_password, Setting.app_title)
107 107 body :token => token,
108 108 :url => url_for(:controller => 'account', :action => 'lost_password', :token => token.value)
109 109 end
110 110
111 111 def register(token)
112 112 set_language_if_valid(token.user.language)
113 113 recipients token.user.mail
114 subject l(:mail_subject_register)
114 subject l(:mail_subject_register, Setting.app_title)
115 115 body :token => token,
116 116 :url => url_for(:controller => 'account', :action => 'activate', :token => token.value)
117 117 end
118 118
119 119 def test(user)
120 120 set_language_if_valid(user.language)
121 121 recipients user.mail
122 122 subject 'Redmine test'
123 123 body :url => url_for(:controller => 'welcome')
124 124 end
125 125
126 126 # Overrides default deliver! method to prevent from sending an email
127 127 # with no recipient, cc or bcc
128 128 def deliver!(mail = @mail)
129 129 return false if (recipients.nil? || recipients.empty?) &&
130 130 (cc.nil? || cc.empty?) &&
131 131 (bcc.nil? || bcc.empty?)
132 132 super
133 133 end
134 134
135 135 private
136 136 def initialize_defaults(method_name)
137 137 super
138 138 set_language_if_valid Setting.default_language
139 139 from Setting.mail_from
140 140 default_url_options[:host] = Setting.host_name
141 141 default_url_options[:protocol] = Setting.protocol
142 142 end
143 143
144 144 # Overrides the create_mail method
145 145 def create_mail
146 146 # Removes the current user from the recipients and cc
147 147 # if he doesn't want to receive notifications about what he does
148 148 if User.current.pref[:no_self_notified]
149 149 recipients.delete(User.current.mail) if recipients
150 150 cc.delete(User.current.mail) if cc
151 151 end
152 152 # Blind carbon copy recipients
153 153 if Setting.bcc_recipients?
154 154 bcc([recipients, cc].flatten.compact.uniq)
155 155 recipients []
156 156 cc []
157 157 end
158 158 super
159 159 end
160 160
161 161 # Renders a message with the corresponding layout
162 162 def render_message(method_name, body)
163 163 layout = method_name.match(%r{text\.html\.(rhtml|rxml)}) ? 'layout.text.html.rhtml' : 'layout.text.plain.rhtml'
164 164 body[:content_for_layout] = render(:file => method_name, :body => body)
165 165 ActionView::Base.new(template_root, body, self).render(:file => "mailer/#{layout}")
166 166 end
167 167
168 168 # Makes partial rendering work with Rails 1.2 (retro-compatibility)
169 169 def self.controller_path
170 170 ''
171 171 end unless respond_to?('controller_path')
172 172 end
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 ден
9 9 actionview_datehelper_time_in_words_day_plural: %d дни
10 10 actionview_datehelper_time_in_words_hour_about: около час
11 11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 12 actionview_datehelper_time_in_words_hour_about_single: около час
13 13 actionview_datehelper_time_in_words_minute: 1 минута
14 14 actionview_datehelper_time_in_words_minute_half: половин минута
15 15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 20 actionview_instancetag_blank_option: Изберете
21 21
22 22 activerecord_error_inclusion: не съществува в списъка
23 23 activerecord_error_exclusion: е запазено
24 24 activerecord_error_invalid: е невалидно
25 25 activerecord_error_confirmation: липсва одобрение
26 26 activerecord_error_accepted: трябва да се приеме
27 27 activerecord_error_empty: не може да е празно
28 28 activerecord_error_blank: не може да е празно
29 29 activerecord_error_too_long: е прекалено дълго
30 30 activerecord_error_too_short: е прекалено късо
31 31 activerecord_error_wrong_length: е с грешна дължина
32 32 activerecord_error_taken: вече съществува
33 33 activerecord_error_not_a_number: не е число
34 34 activerecord_error_not_a_date: е невалидна дата
35 35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 36 activerecord_error_not_same_project: не е от същия проект
37 37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%d.%%m.%%Y
42 42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Не'
46 46 general_text_Yes: 'Да'
47 47 general_text_no: 'не'
48 48 general_text_yes: 'да'
49 49 general_lang_name: 'Bulgarian'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: cp1251
52 52 general_pdf_encoding: cp1251
53 53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Профилът е обновен успешно.
57 57 notice_account_invalid_creditentials: Невалиден потребител или парола.
58 58 notice_account_password_updated: Паролата е успешно променена.
59 59 notice_account_wrong_password: Грешна парола
60 60 notice_account_register_done: Акаунтът е създаден успешно.
61 61 notice_account_unknown_email: Непознат потребител.
62 62 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
63 63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
64 64 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
65 65 notice_successful_create: Успешно създаване.
66 66 notice_successful_update: Успешно обновяване.
67 67 notice_successful_delete: Успешно изтриване.
68 68 notice_successful_connection: Успешно свързване.
69 69 notice_file_not_found: Несъществуваща или преместена страница.
70 70 notice_locking_conflict: Друг потребител променя тези данни в момента.
71 71 notice_not_authorized: Нямате право на достъп до тази страница.
72 72 notice_email_sent: Изпратен e-mail на %s
73 73 notice_email_error: Грешка при изпращане на e-mail (%s)
74 74 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
75 75
76 76 error_scm_not_found: Несъществуващ обект в хранилището.
77 77 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %s"
78 78
79 mail_subject_lost_password: Вашата парола
79 mail_subject_lost_password: Вашата парола (%s)
80 80 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
81 mail_subject_register: Активация на акаунт
81 mail_subject_register: Активация на акаунт (%s)
82 82 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
83 83
84 84 gui_validation_error: 1 грешка
85 85 gui_validation_error_plural: %d грешки
86 86
87 87 field_name: Име
88 88 field_description: Описание
89 89 field_summary: Групиран изглед
90 90 field_is_required: Задължително
91 91 field_firstname: Име
92 92 field_lastname: Фамилия
93 93 field_mail: Email
94 94 field_filename: Файл
95 95 field_filesize: Големина
96 96 field_downloads: Downloads
97 97 field_author: Автор
98 98 field_created_on: От дата
99 99 field_updated_on: Обновена
100 100 field_field_format: Тип
101 101 field_is_for_all: За всички проекти
102 102 field_possible_values: Възможни стойности
103 103 field_regexp: Регулярен израз
104 104 field_min_length: Мин. дължина
105 105 field_max_length: Макс. дължина
106 106 field_value: Стойност
107 107 field_category: Категория
108 108 field_title: Заглавие
109 109 field_project: Проект
110 110 field_issue: Задача
111 111 field_status: Статус
112 112 field_notes: Бележка
113 113 field_is_closed: Затворена задача
114 114 field_is_default: Статус по подразбиране
115 115 field_tracker: Тракер
116 116 field_subject: Тема
117 117 field_due_date: Крайна дата
118 118 field_assigned_to: Възложена на
119 119 field_priority: Приоритет
120 120 field_fixed_version: Target version
121 121 field_user: Потребител
122 122 field_role: Роля
123 123 field_homepage: Начална страница
124 124 field_is_public: Публичен
125 125 field_parent: Подпроект на
126 126 field_is_in_chlog: Да се вижда ли в Изменения
127 127 field_is_in_roadmap: Да се вижда ли в Пътна карта
128 128 field_login: Потребител
129 129 field_mail_notification: Известия по пощата
130 130 field_admin: Администратор
131 131 field_last_login_on: Последно свързване
132 132 field_language: Език
133 133 field_effective_date: Дата
134 134 field_password: Парола
135 135 field_new_password: Нова парола
136 136 field_password_confirmation: Потвърждение
137 137 field_version: Версия
138 138 field_type: Тип
139 139 field_host: Хост
140 140 field_port: Порт
141 141 field_account: Акаунт
142 142 field_base_dn: Base DN
143 143 field_attr_login: Login attribute
144 144 field_attr_firstname: Firstname attribute
145 145 field_attr_lastname: Lastname attribute
146 146 field_attr_mail: Email attribute
147 147 field_onthefly: Динамично създаване на потребител
148 148 field_start_date: Начална дата
149 149 field_done_ratio: %% Прогрес
150 150 field_auth_source: Начин на оторизация
151 151 field_hide_mail: Скрий e-mail адреса ми
152 152 field_comments: Коментар
153 153 field_url: Адрес
154 154 field_start_page: Начална страница
155 155 field_subproject: Подпроект
156 156 field_hours: Часове
157 157 field_activity: Дейност
158 158 field_spent_on: Дата
159 159 field_identifier: Идентификатор
160 160 field_is_filter: Използва се за филтър
161 161 field_issue_to_id: Свързана задача
162 162 field_delay: Отместване
163 163 field_assignable: Възможно е възлагане на задачи за тази роля
164 164 field_redirect_existing_links: Пренасочване на съществуващи линкове
165 165 field_estimated_hours: Изчислено време
166 166 field_default_value: Статус по подразбиране
167 167
168 168 setting_app_title: Заглавие
169 169 setting_app_subtitle: Описание
170 170 setting_welcome_text: Допълнителен текст
171 171 setting_default_language: Език по подразбиране
172 172 setting_login_required: Изискване за вход в системата
173 173 setting_self_registration: Регистрация от потребители
174 174 setting_attachment_max_size: Максимално голям приложен файл
175 175 setting_issues_export_limit: Лимит за експорт на задачи
176 176 setting_mail_from: E-mail адрес за емисии
177 177 setting_host_name: Хост
178 178 setting_text_formatting: Форматиране на текста
179 179 setting_wiki_compression: Wiki компресиране на историята
180 180 setting_feeds_limit: Лимит на Feeds
181 181 setting_autofetch_changesets: Автоматично обработване на commits в хранилището
182 182 setting_sys_api_enabled: Разрешаване на WS за управление на хранилището
183 183 setting_commit_ref_keywords: Отбелязващи ключови думи
184 184 setting_commit_fix_keywords: Приключващи ключови думи
185 185 setting_autologin: Автоматичен вход
186 186 setting_date_format: Формат на датата
187 187 setting_cross_project_issue_relations: Релации на задачи между проекти
188 188
189 189 label_user: Потребител
190 190 label_user_plural: Потребители
191 191 label_user_new: Нов потребител
192 192 label_project: Проект
193 193 label_project_new: Нов проект
194 194 label_project_plural: Проекти
195 195 label_project_all: Всички проекти
196 196 label_project_latest: Последни проекти
197 197 label_issue: Задача
198 198 label_issue_new: Нова задача
199 199 label_issue_plural: Задачи
200 200 label_issue_view_all: Всички задачи
201 201 label_document: Документ
202 202 label_document_new: Нов документ
203 203 label_document_plural: Документи
204 204 label_role: Роля
205 205 label_role_plural: Роли
206 206 label_role_new: Нова роля
207 207 label_role_and_permissions: Роли и права
208 208 label_member: Член
209 209 label_member_new: Нов член
210 210 label_member_plural: Членове
211 211 label_tracker: Тракер
212 212 label_tracker_plural: Тракери
213 213 label_tracker_new: Нов тракер
214 214 label_workflow: Работен процес
215 215 label_issue_status: Статус на задача
216 216 label_issue_status_plural: Статуси на задачи
217 217 label_issue_status_new: Нов статус
218 218 label_issue_category: Категория задача
219 219 label_issue_category_plural: Категории задачи
220 220 label_issue_category_new: Нова категория
221 221 label_custom_field: Потребителско поле
222 222 label_custom_field_plural: Потребителски полета
223 223 label_custom_field_new: Ново потребителско поле
224 224 label_enumerations: Списъци
225 225 label_enumeration_new: Нова стойност
226 226 label_information: Информация
227 227 label_information_plural: Информация
228 228 label_please_login: Вход
229 229 label_register: Регистрация
230 230 label_password_lost: Забравена парола
231 231 label_home: Начало
232 232 label_my_page: Лична страница
233 233 label_my_account: Профил
234 234 label_my_projects: Моите проекти
235 235 label_administration: Администрация
236 236 label_login: Вход
237 237 label_logout: Изход
238 238 label_help: Помощ
239 239 label_reported_issues: Публикувани задачи
240 240 label_assigned_to_me_issues: Възложени на мен
241 241 label_last_login: Последно свързване
242 242 label_last_updates: Последно обновена
243 243 label_last_updates_plural: %d последно обновени
244 244 label_registered_on: Регистрация
245 245 label_activity: Дейност
246 246 label_new: Нов
247 247 label_logged_as: Логнат като
248 248 label_environment: Среда
249 249 label_authentication: Оторизация
250 250 label_auth_source: Начин на оторозация
251 251 label_auth_source_new: Нов начин на оторизация
252 252 label_auth_source_plural: Начини на оторизация
253 253 label_subproject_plural: Подпроекти
254 254 label_min_max_length: Мин. - Макс. дължина
255 255 label_list: Списък
256 256 label_date: Дата
257 257 label_integer: Целочислен
258 258 label_boolean: Чекбокс
259 259 label_string: Текст
260 260 label_text: Дълъг текст
261 261 label_attribute: Атрибут
262 262 label_attribute_plural: Атрибути
263 263 label_download: %d Download
264 264 label_download_plural: %d Downloads
265 265 label_no_data: Няма изходни данни
266 266 label_change_status: Промяна на статуса
267 267 label_history: История
268 268 label_attachment: Файл
269 269 label_attachment_new: Нов файл
270 270 label_attachment_delete: Изтриване
271 271 label_attachment_plural: Файлове
272 272 label_report: Справка
273 273 label_report_plural: Справки
274 274 label_news: Новини
275 275 label_news_new: Добави
276 276 label_news_plural: Новини
277 277 label_news_latest: Последни новини
278 278 label_news_view_all: Виж всички
279 279 label_change_log: Изменения
280 280 label_settings: Настройки
281 281 label_overview: Общ изглед
282 282 label_version: Версия
283 283 label_version_new: Нова версия
284 284 label_version_plural: Версии
285 285 label_confirmation: Одобрение
286 286 label_export_to: Експорт към
287 287 label_read: Read...
288 288 label_public_projects: Публични проекти
289 289 label_open_issues: отворена
290 290 label_open_issues_plural: отворени
291 291 label_closed_issues: затворена
292 292 label_closed_issues_plural: затворени
293 293 label_total: Общо
294 294 label_permissions: Права
295 295 label_current_status: Текущ статус
296 296 label_new_statuses_allowed: Позволени статуси
297 297 label_all: всички
298 298 label_none: никакви
299 299 label_next: Следващ
300 300 label_previous: Предишен
301 301 label_used_by: Използва се от
302 302 label_details: Детайли
303 303 label_add_note: Добавяне на бележка
304 304 label_per_page: На страница
305 305 label_calendar: Календар
306 306 label_months_from: месеца от
307 307 label_gantt: Gantt
308 308 label_internal: Вътрешен
309 309 label_last_changes: последни %d промени
310 310 label_change_view_all: Виж всички промени
311 311 label_personalize_page: Персонализиране
312 312 label_comment: Коментар
313 313 label_comment_plural: Коментари
314 314 label_comment_add: Добавяне на коментар
315 315 label_comment_added: Добавен коментар
316 316 label_comment_delete: Изтриване на коментари
317 317 label_query: Потребителска справка
318 318 label_query_plural: Потребителски справки
319 319 label_query_new: Нова заявка
320 320 label_filter_add: Добави филтър
321 321 label_filter_plural: Филтри
322 322 label_equals: е
323 323 label_not_equals: не е
324 324 label_in_less_than: след по-малко от
325 325 label_in_more_than: след повече от
326 326 label_in: в следващите
327 327 label_today: днес
328 328 label_this_week: тази седмица
329 329 label_less_than_ago: преди по-малко от
330 330 label_more_than_ago: преди повече от
331 331 label_ago: преди
332 332 label_contains: съдържа
333 333 label_not_contains: не съдържа
334 334 label_day_plural: дни
335 335 label_repository: Хранилище
336 336 label_browse: Разглеждане
337 337 label_modification: %d промяна
338 338 label_modification_plural: %d промени
339 339 label_revision: Ревизия
340 340 label_revision_plural: Ревизии
341 341 label_added: добавено
342 342 label_modified: променено
343 343 label_deleted: изтрито
344 344 label_latest_revision: Последна ревизия
345 345 label_latest_revision_plural: Последни ревизии
346 346 label_view_revisions: Виж ревизиите
347 347 label_max_size: Максимална големина
348 348 label_on: 'от'
349 349 label_sort_highest: Премести най-горе
350 350 label_sort_higher: Премести по-горе
351 351 label_sort_lower: Премести по-долу
352 352 label_sort_lowest: Премести най-долу
353 353 label_roadmap: Пътна карта
354 354 label_roadmap_due_in: Излиза след
355 355 label_roadmap_overdue: %s закъснение
356 356 label_roadmap_no_issues: Няма задачи за тази версия
357 357 label_search: Търсене
358 358 label_result_plural: Pезултати
359 359 label_all_words: Всички думи
360 360 label_wiki: Wiki
361 361 label_wiki_edit: Wiki редакция
362 362 label_wiki_edit_plural: Wiki редакции
363 363 label_wiki_page: Wiki page
364 364 label_wiki_page_plural: Wiki pages
365 365 label_index_by_title: Индекс
366 366 label_index_by_date: Индекс по дата
367 367 label_current_version: Текуща версия
368 368 label_preview: Преглед
369 369 label_feed_plural: Feeds
370 370 label_changes_details: Подробни промени
371 371 label_issue_tracking: Тракинг
372 372 label_spent_time: Отделено време
373 373 label_f_hour: %.2f час
374 374 label_f_hour_plural: %.2f часа
375 375 label_time_tracking: Отделяне на време
376 376 label_change_plural: Промени
377 377 label_statistics: Статистики
378 378 label_commits_per_month: Commits за месец
379 379 label_commits_per_author: Commits за автор
380 380 label_view_diff: Виж разликите
381 381 label_diff_inline: хоризонтално
382 382 label_diff_side_by_side: вертикално
383 383 label_options: Опции
384 384 label_copy_workflow_from: Копирай работния процес от
385 385 label_permissions_report: Справка за права
386 386 label_watched_issues: Наблюдавани задачи
387 387 label_related_issues: Свързани задачи
388 388 label_applied_status: Промени статуса на
389 389 label_loading: Зареждане...
390 390 label_relation_new: Нова релация
391 391 label_relation_delete: Изтриване на релация
392 392 label_relates_to: Свързана със
393 393 label_duplicates: дублира
394 394 label_blocks: блокира
395 395 label_blocked_by: блокирана от
396 396 label_precedes: предшества
397 397 label_follows: изпълнява се след
398 398 label_end_to_start: end to start
399 399 label_end_to_end: end to end
400 400 label_start_to_start: start to start
401 401 label_start_to_end: start to end
402 402 label_stay_logged_in: Запомни ме
403 403 label_disabled: забранено
404 404 label_show_completed_versions: Показване на реализирани версии
405 405 label_me: аз
406 406 label_board: Форум
407 407 label_board_new: Нов форум
408 408 label_board_plural: Форуми
409 409 label_topic_plural: Теми
410 410 label_message_plural: Съобщения
411 411 label_message_last: Последно съобщение
412 412 label_message_new: Нова тема
413 413 label_reply_plural: Отговори
414 414 label_send_information: Изпращане на информацията до потребителя
415 415 label_year: Година
416 416 label_month: Месец
417 417 label_week: Седмица
418 418 label_date_from: От
419 419 label_date_to: До
420 420 label_language_based: В зависимост от езика
421 421 label_sort_by: Сортиране по %s
422 422 label_send_test_email: Изпращане на тестов e-mail
423 423 label_feeds_access_key_created_on: %s от създаването на RSS ключа
424 424 label_module_plural: Модули
425 425 label_added_time_by: Публикувана от %s преди %s
426 426 label_updated_time: Обновена преди %s
427 427 label_jump_to_a_project: Проект...
428 428
429 429 button_login: Вход
430 430 button_submit: Приложи
431 431 button_save: Запис
432 432 button_check_all: Маркирай всички
433 433 button_uncheck_all: Изчисти всички
434 434 button_delete: Изтриване
435 435 button_create: Създаване
436 436 button_test: Тест
437 437 button_edit: Редакция
438 438 button_add: Добавяне
439 439 button_change: Промяна
440 440 button_apply: Приложи
441 441 button_clear: Изчисти
442 442 button_lock: Заключване
443 443 button_unlock: Отключване
444 444 button_download: Download
445 445 button_list: Списък
446 446 button_view: Преглед
447 447 button_move: Преместване
448 448 button_back: Назад
449 449 button_cancel: Отказ
450 450 button_activate: Активация
451 451 button_sort: Сортиране
452 452 button_log_time: Отделяне на време
453 453 button_rollback: Върни се към тази ревизия
454 454 button_watch: Наблюдавай
455 455 button_unwatch: Спри наблюдението
456 456 button_reply: Отговор
457 457 button_archive: Архивиране
458 458 button_unarchive: Разархивиране
459 459 button_reset: Генериране наново
460 460 button_rename: Преименуване
461 461
462 462 status_active: активен
463 463 status_registered: регистриран
464 464 status_locked: заключен
465 465
466 466 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
467 467 text_regexp_info: пр. ^[A-Z0-9]+$
468 468 text_min_max_length_info: 0 - без ограничения
469 469 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
470 470 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
471 471 text_are_you_sure: Сигурни ли сте?
472 472 text_journal_changed: промяна от %s на %s
473 473 text_journal_set_to: установено на %s
474 474 text_journal_deleted: изтрито
475 475 text_tip_task_begin_day: задача започваща този ден
476 476 text_tip_task_end_day: задача завършваща този ден
477 477 text_tip_task_begin_end_day: задача започваща и завършваща този ден
478 478 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
479 479 text_caracters_maximum: До %d символа.
480 480 text_length_between: От %d до %d символа.
481 481 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
482 482 text_unallowed_characters: Непозволени символи
483 483 text_comma_separated: Позволено е изброяване (с разделител запетая).
484 484 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
485 485 text_issue_added: Публикувана е нова задача с номер %s (by %s).
486 486 text_issue_updated: Задача %s е обновена (by %s).
487 487 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
488 488 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
489 489 text_issue_category_destroy_assignments: Премахване на връзките с категорията
490 490 text_issue_category_reassign_to: Преобвързване с категория
491 491
492 492 default_role_manager: Мениджър
493 493 default_role_developper: Разработчик
494 494 default_role_reporter: Публикуващ
495 495 default_tracker_bug: Бъг
496 496 default_tracker_feature: Функционалност
497 497 default_tracker_support: Поддръжка
498 498 default_issue_status_new: Нова
499 499 default_issue_status_assigned: Възложена
500 500 default_issue_status_resolved: Приключена
501 501 default_issue_status_feedback: Обратна връзка
502 502 default_issue_status_closed: Затворена
503 503 default_issue_status_rejected: Отхвърлена
504 504 default_doc_category_user: Документация за потребителя
505 505 default_doc_category_tech: Техническа документация
506 506 default_priority_low: Нисък
507 507 default_priority_normal: Нормален
508 508 default_priority_high: Висок
509 509 default_priority_urgent: Спешен
510 510 default_priority_immediate: Веднага
511 511 default_activity_design: Дизайн
512 512 default_activity_development: Разработка
513 513
514 514 enumeration_issue_priorities: Приоритети на задачи
515 515 enumeration_doc_categories: Категории документи
516 516 enumeration_activities: Дейности (time tracking)
517 517 label_file_plural: Файлове
518 518 label_changeset_plural: Changesets
519 519 field_column_names: Колони
520 520 label_default_columns: По подразбиране
521 521 setting_issue_list_default_columns: Показвани колони по подразбиране
522 522 setting_repositories_encodings: Кодови таблици на хранилищата
523 523 notice_no_issue_selected: "Няма избрани задачи."
524 524 label_bulk_edit_selected_issues: Редактиране на задачи
525 525 label_no_change_option: (Без промяна)
526 526 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
527 527 label_theme: Тема
528 528 label_default: По подразбиране
529 529 label_search_titles_only: Само в заглавията
530 530 label_nobody: никой
531 531 button_change_password: Промяна на парола
532 532 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
533 533 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
534 534 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
535 535 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
536 536 setting_emails_footer: Подтекст за e-mail
537 537 label_float: Дробно
538 538 button_copy: Копиране
539 mail_body_account_information_external: Можете да използвате вашия "%s" акаунт за вход в Redmine.
540 mail_body_account_information: Информацията за акаунта ви в Redmine
539 mail_body_account_information_external: Можете да използвате вашия "%s" акаунт за вход.
540 mail_body_account_information: Информацията за акаунта
541 541 setting_protocol: Протокол
542 542 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
543 543 setting_time_format: Формат на часа
544 544 label_registration_activation_by_email: активиране на акаунта по email
545 mail_subject_account_activation_request: Заявка за активиране на акаунт в Redmine
545 mail_subject_account_activation_request: Заявка за активиране на акаунт в %s
546 546 mail_body_account_activation_request: 'Има новорегистриран потребител (%s), очакващ вашето одобрение:'
547 547 label_registration_automatic_activation: автоматично активиране
548 548 label_registration_manual_activation: ръчно активиране
549 549 notice_account_pending: "Акаунтът Ви е създаден и очаква одобрение от администратор."
550 550 field_time_zone: Часова зона
551 551 text_caracters_minimum: Минимум %d символа.
552 552 setting_bcc_recipients: Blind carbon copy (bcc) получатели
553 553 button_annotate: Анотация
554 554 label_issues_by: Задачи по %s
555 555 field_searchable: С възможност за търсене
556 556 label_display_per_page: 'На страница по: %s'
557 557 setting_per_page_options: Опции за страниране
558 558 label_age: Възраст
559 559 notice_default_data_loaded: Примерната информацията е успешно заредена.
560 560 text_load_default_configuration: Зареждане на примерна информация
561 561 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
562 562 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %s"
563 563 button_update: Обновяване
564 564 label_change_properties: Промяна на настройки
565 565 label_general: Основни
566 566 label_repository_plural: Хранилища
567 567 label_associated_revisions: Асоциирани ревизии
568 568 setting_user_format: Потребителски формат
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Select modules to enable for this project:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: Boards
581 581 project_module_issue_tracking: Issue tracking
582 582 project_module_wiki: Wiki
583 583 project_module_files: Files
584 584 project_module_documents: Documents
585 585 project_module_repository: Repository
586 586 project_module_news: News
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: Default administrator account changed
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: Configure
592 592 label_plugins: Plugins
593 593 label_ldap_authentication: LDAP authentication
594 594 label_downloads_abbr: D/L
595 595 label_this_month: this month
596 596 label_last_n_days: last %d days
597 597 label_all_time: all time
598 598 label_this_year: this year
599 599 label_date_range: Date range
600 600 label_last_week: last week
601 601 label_yesterday: yesterday
602 602 label_last_month: last month
603 603 label_add_another_file: Add another file
604 604 label_optional_description: Optional description
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,619 +1,619
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
5 5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 den
9 9 actionview_datehelper_time_in_words_day_plural: %d dny
10 10 actionview_datehelper_time_in_words_hour_about: asi hodinu
11 11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
12 12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
13 13 actionview_datehelper_time_in_words_minute: 1 minuta
14 14 actionview_datehelper_time_in_words_minute_half: půl minuty
15 15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
16 16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
19 19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
20 20 actionview_instancetag_blank_option: Prosím vyberte
21 21
22 22 activerecord_error_inclusion: není zahrnuto v seznamu
23 23 activerecord_error_exclusion: je rezervováno
24 24 activerecord_error_invalid: je neplatné
25 25 activerecord_error_confirmation: se neshoduje s potvrzením
26 26 activerecord_error_accepted: musí být akceptováno
27 27 activerecord_error_empty: nemůže být prázdný
28 28 activerecord_error_blank: nemůže být prázdný
29 29 activerecord_error_too_long: je příliš dlouhý
30 30 activerecord_error_too_short: je příliš krátký
31 31 activerecord_error_wrong_length: má chybnou délku
32 32 activerecord_error_taken: je již použito
33 33 activerecord_error_not_a_number: není číslo
34 34 activerecord_error_not_a_date: není platné datum
35 35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
36 36 activerecord_error_not_same_project: nepatří stejnému projektu
37 37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
38 38
39 39 general_fmt_age: %d rok
40 40 general_fmt_age_plural: %d roků
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Ne'
46 46 general_text_Yes: 'Ano'
47 47 general_text_no: 'ne'
48 48 general_text_yes: 'ano'
49 49 general_lang_name: 'Čeština'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: UTF-8
52 52 general_pdf_encoding: UTF-8
53 53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Účet byl úspěšně změněn.
57 57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
58 58 notice_account_password_updated: Heslo bylo úspěšně změněno.
59 59 notice_account_wrong_password: Chybné heslo
60 60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
61 61 notice_account_unknown_email: Neznámý uživatel.
62 62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
63 63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
64 64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
65 65 notice_successful_create: Úspěšně vytvořeno.
66 66 notice_successful_update: Úspěšně aktualizováno.
67 67 notice_successful_delete: Úspěšně odstraněno.
68 68 notice_successful_connection: Úspěšné připojení.
69 69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
70 70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
71 71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
73 73 notice_email_sent: Na adresu %s byl odeslán email
74 74 notice_email_error: Při odesílání emailu nastala chyba (%s)
75 75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
76 76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 77 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
78 78 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
79 79 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
80 80
81 81 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %s"
82 82 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
83 83 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: %s"
84 84 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
85 85
86 mail_subject_lost_password: Vaše heslo
86 mail_subject_lost_password: Vaše heslo (%s)
87 87 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
88 mail_subject_register: aktivace účtu
88 mail_subject_register: Aktivace účtu (%s)
89 89 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
90 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit do Redmine.
91 mail_body_account_information: Informace o vašem Redmine účtu
92 mail_subject_account_activation_request: Aktivace Redmine účtu
90 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit.
91 mail_body_account_information: Informace o vašem účtu
92 mail_subject_account_activation_request: Aktivace %s účtu
93 93 mail_body_account_activation_request: Byl zaregistrován nový uživatel "%s". Aktivace jeho účtu závisí na vašem potvrzení.
94 94
95 95 gui_validation_error: 1 chyba
96 96 gui_validation_error_plural: %d chyb(y)
97 97
98 98 field_name: Jméno
99 99 field_description: Popis
100 100 field_summary: Přehled
101 101 field_is_required: Požadovaný
102 102 field_firstname: Jméno
103 103 field_lastname: Příjmení
104 104 field_mail: Email
105 105 field_filename: Soubor
106 106 field_filesize: Velikost
107 107 field_downloads: Staženo
108 108 field_author: Autor
109 109 field_created_on: Vytvořeno
110 110 field_updated_on: Aktualizováno
111 111 field_field_format: Formát
112 112 field_is_for_all: Pro všechny projekty
113 113 field_possible_values: Možné hodnoty
114 114 field_regexp: Regulární výraz
115 115 field_min_length: Minimální délka
116 116 field_max_length: Maximální délka
117 117 field_value: Hodnota
118 118 field_category: Kategorie
119 119 field_title: Název
120 120 field_project: Projekt
121 121 field_issue: Úkol
122 122 field_status: Stav
123 123 field_notes: Poznámka
124 124 field_is_closed: Úkol uzavřen
125 125 field_is_default: Výchozí stav
126 126 field_tracker: Fronta
127 127 field_subject: Předmět
128 128 field_due_date: Uzavřít do
129 129 field_assigned_to: Přiřazeno
130 130 field_priority: Priorita
131 131 field_fixed_version: Přiřazeno k verzi
132 132 field_user: Uživatel
133 133 field_role: Role
134 134 field_homepage: Úvodní
135 135 field_is_public: Veřejný
136 136 field_parent: Nadřazený projekt
137 137 field_is_in_chlog: Úkoly zobrazené v změnovém logu
138 138 field_is_in_roadmap: Úkoly zobrazené v plánu
139 139 field_login: Přihlášení
140 140 field_mail_notification: Emailová oznámení
141 141 field_admin: Administrátor
142 142 field_last_login_on: Poslední přihlášení
143 143 field_language: Jazyk
144 144 field_effective_date: Datum
145 145 field_password: Heslo
146 146 field_new_password: Nové heslo
147 147 field_password_confirmation: Potvrzení
148 148 field_version: Verze
149 149 field_type: Typ
150 150 field_host: Host
151 151 field_port: Port
152 152 field_account: Účet
153 153 field_base_dn: Base DN
154 154 field_attr_login: Přihlášení (atribut)
155 155 field_attr_firstname: Jméno (atribut)
156 156 field_attr_lastname: Příjemní (atribut)
157 157 field_attr_mail: Email (atribut)
158 158 field_onthefly: Automatické vytváření uživatelů
159 159 field_start_date: Začátek
160 160 field_done_ratio: %% Hotovo
161 161 field_auth_source: Autentifikační mód
162 162 field_hide_mail: Nezobrazovat můj email
163 163 field_comments: Komentář
164 164 field_url: URL
165 165 field_start_page: Výchozí stránka
166 166 field_subproject: Podprojekt
167 167 field_hours: Hodiny
168 168 field_activity: Aktivita
169 169 field_spent_on: Datum
170 170 field_identifier: Identifikátor
171 171 field_is_filter: Použít jako filtr
172 172 field_issue_to_id: Související úkol
173 173 field_delay: Zpoždění
174 174 field_assignable: Úkoly mohou být přiřazeny této roli
175 175 field_redirect_existing_links: Přesměrovat stvávající odkazy
176 176 field_estimated_hours: Odhadovaná doba
177 177 field_column_names: Sloupce
178 178 field_time_zone: Časové pásmo
179 179 field_searchable: Umožnit vyhledávání
180 180 field_default_value: Výchozí hodnota
181 181 field_comments_sorting: Zobrazit komentáře
182 182
183 183 setting_app_title: Název aplikace
184 184 setting_app_subtitle: Podtitulek aplikace
185 185 setting_welcome_text: Uvítací text
186 186 setting_default_language: Výchozí jazyk
187 187 setting_login_required: Auten. vyžadována
188 188 setting_self_registration: Povolena automatická registrace
189 189 setting_attachment_max_size: Maximální velikost přílohy
190 190 setting_issues_export_limit: Limit pro export úkolů
191 191 setting_mail_from: Odesílat emaily z adresy
192 192 setting_bcc_recipients: Příjemci skryté kopie (bcc)
193 193 setting_host_name: Host name
194 194 setting_text_formatting: Formátování textu
195 195 setting_wiki_compression: Komperese historie Wiki
196 196 setting_feeds_limit: Feed content limit
197 197 setting_default_projects_public: Nové projekty nastavovat jako veřejné
198 198 setting_autofetch_changesets: Autofetch commits
199 199 setting_sys_api_enabled: Povolit WS pro správu repozitory
200 200 setting_commit_ref_keywords: Klíčová slova pro odkazy
201 201 setting_commit_fix_keywords: Klíčová slova pro uzavření
202 202 setting_autologin: Automatické přihlašování
203 203 setting_date_format: Formát data
204 204 setting_time_format: Formát času
205 205 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
206 206 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
207 207 setting_repositories_encodings: Repositories encodings
208 208 setting_emails_footer: Patička emailů
209 209 setting_protocol: Protokol
210 210 setting_per_page_options: Objects per page options
211 211 setting_user_format: Users display format
212 212 setting_activity_days_default: Days displayed on project activity
213 213 setting_display_subprojects_issues: Display subprojects issues on main projects by default
214 214
215 215 project_module_issue_tracking: Sledování úkolů
216 216 project_module_time_tracking: Sledování času
217 217 project_module_news: Novinky
218 218 project_module_documents: Dokumenty
219 219 project_module_files: Soubory
220 220 project_module_wiki: Wiki
221 221 project_module_repository: Repository
222 222 project_module_boards: Diskuse
223 223
224 224 label_user: Uživatel
225 225 label_user_plural: Uživatelé
226 226 label_user_new: Nový uživatel
227 227 label_project: Projekt
228 228 label_project_new: Nový projekt
229 229 label_project_plural: Projekty
230 230 label_project_all: Všechny projekty
231 231 label_project_latest: Poslední projekty
232 232 label_issue: Úkol
233 233 label_issue_new: Nový úkol
234 234 label_issue_plural: Úkoly
235 235 label_issue_view_all: Všechny úkoly
236 236 label_issues_by: Úkoly od uživatele %s
237 237 label_issue_added: Úkol přidán
238 238 label_issue_updated: Úkol aktualizován
239 239 label_document: Dokument
240 240 label_document_new: Nový dokument
241 241 label_document_plural: Dokumenty
242 242 label_document_added: Dokument přidán
243 243 label_role: Role
244 244 label_role_plural: Role
245 245 label_role_new: Nová role
246 246 label_role_and_permissions: Role a práva
247 247 label_member: Člen
248 248 label_member_new: Nový člen
249 249 label_member_plural: Členové
250 250 label_tracker: Fronta
251 251 label_tracker_plural: Fronty
252 252 label_tracker_new: Nová fronta
253 253 label_workflow: Workflow
254 254 label_issue_status: Stav úkolu
255 255 label_issue_status_plural: Stavy úkolů
256 256 label_issue_status_new: Nový stav
257 257 label_issue_category: Kategorie úkolu
258 258 label_issue_category_plural: Kategorie úkolů
259 259 label_issue_category_new: Nová kategorie
260 260 label_custom_field: Uživatelské pole
261 261 label_custom_field_plural: Uživatelská pole
262 262 label_custom_field_new: Nové uživatelské pole
263 263 label_enumerations: Seznamy
264 264 label_enumeration_new: Nová hodnota
265 265 label_information: Informace
266 266 label_information_plural: Informace
267 267 label_please_login: Prosím přihlašte se
268 268 label_register: Registrovat
269 269 label_password_lost: Zapomenuté heslo
270 270 label_home: Úvodní
271 271 label_my_page: Moje stránka
272 272 label_my_account: Můj účet
273 273 label_my_projects: Moje projekty
274 274 label_administration: Administrace
275 275 label_login: Přihlášení
276 276 label_logout: Odhlášení
277 277 label_help: Nápověda
278 278 label_reported_issues: Nahlášené úkoly
279 279 label_assigned_to_me_issues: Mé úkoly
280 280 label_last_login: Poslední přihlášení
281 281 label_last_updates: Poslední změna
282 282 label_last_updates_plural: %d poslední změny
283 283 label_registered_on: Registrován
284 284 label_activity: Aktivita
285 285 label_overall_activity: Celková aktivita
286 286 label_new: Nový
287 287 label_logged_as: Přihlášen jako
288 288 label_environment: Prostředí
289 289 label_authentication: Autentifikace
290 290 label_auth_source: Mód autentifikace
291 291 label_auth_source_new: Nový mód autentifikace
292 292 label_auth_source_plural: Módy autentifikace
293 293 label_subproject_plural: Podprojekty
294 294 label_min_max_length: Min - Max délka
295 295 label_list: Seznam
296 296 label_date: Datum
297 297 label_integer: Celé číslo
298 298 label_float: Desetiné číslo
299 299 label_boolean: Ano/Ne
300 300 label_string: Text
301 301 label_text: Dlouhý text
302 302 label_attribute: Atribut
303 303 label_attribute_plural: Atributy
304 304 label_download: %d Download
305 305 label_download_plural: %d Downloads
306 306 label_no_data: Žádná data k zobrazení
307 307 label_change_status: Změnit stav
308 308 label_history: Historie
309 309 label_attachment: Soubor
310 310 label_attachment_new: Nový soubor
311 311 label_attachment_delete: Odstranit soubor
312 312 label_attachment_plural: Soubory
313 313 label_file_added: Soubor přidán
314 314 label_report: Přeheled
315 315 label_report_plural: Přehledy
316 316 label_news: Novinky
317 317 label_news_new: Přidat novinku
318 318 label_news_plural: Novinky
319 319 label_news_latest: Poslední novinky
320 320 label_news_view_all: Zobrazit všechny novinky
321 321 label_news_added: Novinka přidána
322 322 label_change_log: Protokol změn
323 323 label_settings: Nastavení
324 324 label_overview: Přehled
325 325 label_version: Verze
326 326 label_version_new: Nová verze
327 327 label_version_plural: Verze
328 328 label_confirmation: Potvrzení
329 329 label_export_to: 'Také k dispozici:'
330 330 label_read: Načítá se...
331 331 label_public_projects: Veřejné projekty
332 332 label_open_issues: otevřený
333 333 label_open_issues_plural: otevřené
334 334 label_closed_issues: uzavřený
335 335 label_closed_issues_plural: uzavřené
336 336 label_total: Celkem
337 337 label_permissions: Práva
338 338 label_current_status: Aktuální stav
339 339 label_new_statuses_allowed: Nové povolené stavy
340 340 label_all: vše
341 341 label_none: nic
342 342 label_nobody: nikdo
343 343 label_next: Další
344 344 label_previous: Předchozí
345 345 label_used_by: Použito
346 346 label_details: Detaily
347 347 label_add_note: Přidat poznámku
348 348 label_per_page: Na stránku
349 349 label_calendar: Kalendář
350 350 label_months_from: měsíců od
351 351 label_gantt: Ganttův graf
352 352 label_internal: Interní
353 353 label_last_changes: posledních %d změn
354 354 label_change_view_all: Zobrazit všechny změny
355 355 label_personalize_page: Přizpůsobit tuto stránku
356 356 label_comment: Komentář
357 357 label_comment_plural: Komentáře
358 358 label_comment_add: Přidat komentáře
359 359 label_comment_added: Komentář přidán
360 360 label_comment_delete: Odstranit komentář
361 361 label_query: Uživatelský dotaz
362 362 label_query_plural: Uživatelské dotazy
363 363 label_query_new: Nový dotaz
364 364 label_filter_add: Přidat filtr
365 365 label_filter_plural: Filtry
366 366 label_equals: je
367 367 label_not_equals: není
368 368 label_in_less_than: je měší než
369 369 label_in_more_than: je větší než
370 370 label_in: v
371 371 label_today: dnes
372 372 label_all_time: veškerý čas
373 373 label_yesterday: včera
374 374 label_this_week: tento týden
375 375 label_last_week: minulý týden
376 376 label_last_n_days: posledních %d dnů
377 377 label_this_month: tento měsíc
378 378 label_last_month: minulý měsíc
379 379 label_this_year: tento rok
380 380 label_date_range: Rozsah dat
381 381 label_less_than_ago: před méně jak (dny)
382 382 label_more_than_ago: před více jak (dny)
383 383 label_ago: před (dny)
384 384 label_contains: obsahuje
385 385 label_not_contains: neobsahuje
386 386 label_day_plural: dny
387 387 label_repository: Repository
388 388 label_repository_plural: Repository
389 389 label_browse: Procházet
390 390 label_modification: %d změna
391 391 label_modification_plural: %d změn
392 392 label_revision: Revize
393 393 label_revision_plural: Revizí
394 394 label_associated_revisions: Související verze
395 395 label_added: přidáno
396 396 label_modified: změněno
397 397 label_deleted: odstraněno
398 398 label_latest_revision: Poslední revize
399 399 label_latest_revision_plural: Poslední revize
400 400 label_view_revisions: Zobrazit revize
401 401 label_max_size: Maximální velikost
402 402 label_on: 'zapnuto'
403 403 label_sort_highest: Přesunout na začátek
404 404 label_sort_higher: Přesunout nahoru
405 405 label_sort_lower: Přesunout dolů
406 406 label_sort_lowest: Přesunout na konec
407 407 label_roadmap: Plán
408 408 label_roadmap_due_in: Zbývá
409 409 label_roadmap_overdue: %s pozdě
410 410 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
411 411 label_search: Hledat
412 412 label_result_plural: Výsledky
413 413 label_all_words: Všechna slova
414 414 label_wiki: Wiki
415 415 label_wiki_edit: Wiki úprava
416 416 label_wiki_edit_plural: Wiki úpravy
417 417 label_wiki_page: Wiki stránka
418 418 label_wiki_page_plural: Wiki stránky
419 419 label_index_by_title: Index dle názvu
420 420 label_index_by_date: Index dle data
421 421 label_current_version: Aktuální verze
422 422 label_preview: Náhled
423 423 label_feed_plural: Příspěvky
424 424 label_changes_details: Detail všech změn
425 425 label_issue_tracking: Sledování úkolů
426 426 label_spent_time: Strávený čas
427 427 label_f_hour: %.2f hodina
428 428 label_f_hour_plural: %.2f hodin
429 429 label_time_tracking: Sledování času
430 430 label_change_plural: Změny
431 431 label_statistics: Statistiky
432 432 label_commits_per_month: Commitů za měsíc
433 433 label_commits_per_author: Commitů za autora
434 434 label_view_diff: Zobrazit rozdíly
435 435 label_diff_inline: uvnitř
436 436 label_diff_side_by_side: vedle sebe
437 437 label_options: Nastavení
438 438 label_copy_workflow_from: Kopírovat workflow z
439 439 label_permissions_report: Přehled práv
440 440 label_watched_issues: Sledované úkoly
441 441 label_related_issues: Související úkoly
442 442 label_applied_status: Použitý stav
443 443 label_loading: Nahrávám...
444 444 label_relation_new: Nová souvislost
445 445 label_relation_delete: Odstranit souvislost
446 446 label_relates_to: související s
447 447 label_duplicates: duplicity
448 448 label_blocks: bloků
449 449 label_blocked_by: zablokován
450 450 label_precedes: předchází
451 451 label_follows: následuje
452 452 label_end_to_start: od konce do začátku
453 453 label_end_to_end: od konce do konce
454 454 label_start_to_start: od začátku do začátku
455 455 label_start_to_end: od začátku do konce
456 456 label_stay_logged_in: Zůstat přihlášený
457 457 label_disabled: zakázán
458 458 label_show_completed_versions: Ukázat dokončené verze
459 459 label_me:
460 460 label_board: Fórum
461 461 label_board_new: Nové fórum
462 462 label_board_plural: Fóra
463 463 label_topic_plural: Témata
464 464 label_message_plural: Zprávy
465 465 label_message_last: Poslední zpráva
466 466 label_message_new: Nová zpráva
467 467 label_message_posted: Zpráva přidána
468 468 label_reply_plural: Odpovědi
469 469 label_send_information: Zaslat informace o účtu uživateli
470 470 label_year: Rok
471 471 label_month: Měsíc
472 472 label_week: Týden
473 473 label_date_from: Od
474 474 label_date_to: Do
475 475 label_language_based: Podle výchozího jazyku
476 476 label_sort_by: Seřadit podle %s
477 477 label_send_test_email: Poslat testovací email
478 478 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
479 479 label_module_plural: Moduly
480 480 label_added_time_by: 'Přidáno před: %s %s'
481 481 label_updated_time: 'Aktualizováno před: %s'
482 482 label_jump_to_a_project: Zvolit projekt...
483 483 label_file_plural: Soubory
484 484 label_changeset_plural: Changesety
485 485 label_default_columns: Výchozí sloupce
486 486 label_no_change_option: (beze změny)
487 487 label_bulk_edit_selected_issues: Bulk edit selected issues
488 488 label_theme: Téma
489 489 label_default: Výchozí
490 490 label_search_titles_only: Vyhledávat pouze v názvech
491 491 label_user_mail_option_all: "Pro všechny události všech mých projektů"
492 492 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
493 493 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
494 494 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
495 495 label_registration_activation_by_email: aktivace účtu emailem
496 496 label_registration_manual_activation: manuální aktivace účtu
497 497 label_registration_automatic_activation: automatická aktivace účtu
498 498 label_display_per_page: '%s na stránku'
499 499 label_age: Věk
500 500 label_change_properties: Změnit vlastnosti
501 501 label_general: Obecné
502 502 label_more: Více
503 503 label_scm: SCM
504 504 label_plugins: Doplňky
505 505 label_ldap_authentication: Autentifikace LDAP
506 506 label_downloads_abbr: D/L
507 507 label_optional_description: Volitelný popis
508 508 label_add_another_file: Přidat další soubor
509 509 label_preferences: Nastavení
510 510 label_chronological_order: V chronologickém pořadí
511 511 label_reverse_chronological_order: V obrácaném chronologickém pořadí
512 512
513 513 button_login: Přihlásit
514 514 button_submit: Potvrdit
515 515 button_save: Uložit
516 516 button_check_all: Zašrtnout vše
517 517 button_uncheck_all: Odšrtnout vše
518 518 button_delete: Odstranit
519 519 button_create: Vytvořit
520 520 button_test: Test
521 521 button_edit: Upravit
522 522 button_add: Přidat
523 523 button_change: Změnit
524 524 button_apply: Použít
525 525 button_clear: Smazat
526 526 button_lock: Zamknout
527 527 button_unlock: Odemknout
528 528 button_download: Stáhnout
529 529 button_list: Vypsat
530 530 button_view: Zobrazit
531 531 button_move: Přesunout
532 532 button_back: Zpět
533 533 button_cancel: Storno
534 534 button_activate: Aktivovat
535 535 button_sort: Seřadit
536 536 button_log_time: Přidat čas
537 537 button_rollback: Zpět k této verzi
538 538 button_watch: Sledovat
539 539 button_unwatch: Nesledovat
540 540 button_reply: Odpovědět
541 541 button_archive: Archivovat
542 542 button_unarchive: Odarchivovat
543 543 button_reset: Reset
544 544 button_rename: Přejmenovat
545 545 button_change_password: Změnit heslo
546 546 button_copy: Kopírovat
547 547 button_annotate: Komentovat
548 548 button_update: Aktualizovat
549 549 button_configure: Konfigurovat
550 550
551 551 status_active: aktivní
552 552 status_registered: registrovaný
553 553 status_locked: uzamčený
554 554
555 555 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
556 556 text_regexp_info: např. ^[A-Z0-9]+$
557 557 text_min_max_length_info: 0 znamená bez limitu
558 558 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
559 559 text_workflow_edit: Vyberte roli a frontu k editaci workflow
560 560 text_are_you_sure: Jste si jisti?
561 561 text_journal_changed: změněno z %s na %s
562 562 text_journal_set_to: nastaveno na %s
563 563 text_journal_deleted: odstraněno
564 564 text_tip_task_begin_day: úkol začíná v tento den
565 565 text_tip_task_end_day: úkol končí v tento den
566 566 text_tip_task_begin_end_day: úkol začíná a končí v tento den
567 567 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
568 568 text_caracters_maximum: %d znaků maximálně.
569 569 text_caracters_minimum: Musí být alespoň %d znaků dlouhé.
570 570 text_length_between: Délka mezi %d a %d znaky.
571 571 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
572 572 text_unallowed_characters: Nepovolené znaky
573 573 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
574 574 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
575 575 text_issue_added: Úkol %s byl vytvořen uživatelem %s.
576 576 text_issue_updated: Úkol %s byl aktualizován uživatelem %s.
577 577 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
578 578 text_issue_category_destroy_question: Některé úkoly (%d) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?
579 579 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
580 580 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
581 581 text_user_mail_option: "U projektů, které nebyly vybrány, budete dostávat oznámení pouze o vašich či o sledovaných položkách (např. o položkách jejichž jste autor nebo ke kterým jste přiřazen(a))."
582 582 text_no_configuration_data: "Role, fronty, stavy úkolů ani workflow nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci.Po si můžete vše upravit"
583 583 text_load_default_configuration: Nahrát výchozí konfiguraci
584 584 text_status_changed_by_changeset: Použito v changesetu %s.
585 585 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
586 586 text_select_project_modules: 'Zvolte moduly aktivní v tomto projektu:'
587 587 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
588 588 text_file_repository_writable: Povolen zápis do repository
589 589 text_rmagick_available: RMagick k dispozici (volitelné)
590 590 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
591 591 text_destroy_time_entries: Odstranit evidované hodiny.
592 592 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
593 593 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
594 594
595 595 default_role_manager: Manažer
596 596 default_role_developper: Vývojář
597 597 default_role_reporter: Reportér
598 598 default_tracker_bug: Chyba
599 599 default_tracker_feature: Požadavek
600 600 default_tracker_support: Podpora
601 601 default_issue_status_new: Nový
602 602 default_issue_status_assigned: Přiřazený
603 603 default_issue_status_resolved: Vyřešený
604 604 default_issue_status_feedback: Čeká se
605 605 default_issue_status_closed: Uzavřený
606 606 default_issue_status_rejected: Odmítnutý
607 607 default_doc_category_user: Uživatelská dokumentace
608 608 default_doc_category_tech: Technická dokumentace
609 609 default_priority_low: Nízká
610 610 default_priority_normal: Normální
611 611 default_priority_high: Vysoká
612 612 default_priority_urgent: Urgentní
613 613 default_priority_immediate: Okamžitá
614 614 default_activity_design: Design
615 615 default_activity_development: Vývoj
616 616
617 617 enumeration_issue_priorities: Priority úkolů
618 618 enumeration_doc_categories: Kategorie dokumentů
619 619 enumeration_activities: Aktivity (sledování času)
@@ -1,619 +1,619
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dag
9 9 actionview_datehelper_time_in_words_day_plural: %d dage
10 10 actionview_datehelper_time_in_words_hour_about: cirka en time
11 11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timer
12 12 actionview_datehelper_time_in_words_hour_about_single: cirka en time
13 13 actionview_datehelper_time_in_words_minute: 1 minut
14 14 actionview_datehelper_time_in_words_minute_half: et halvt minut
15 15 actionview_datehelper_time_in_words_minute_less_than: mindre end et minut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutter
17 17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 18 actionview_datehelper_time_in_words_second_less_than: mindre end et sekund
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mindre end %d sekunder
20 20 actionview_instancetag_blank_option: Vælg venligst
21 21
22 22 activerecord_error_inclusion: er ikke i listen
23 23 activerecord_error_exclusion: er reserveret
24 24 activerecord_error_invalid: er ugyldig
25 25 activerecord_error_confirmation: passer ikke bekræftelsen
26 26 activerecord_error_accepted: skal accepteres
27 27 activerecord_error_empty: kan ikke være tom
28 28 activerecord_error_blank: kan ikke være blank
29 29 activerecord_error_too_long: er for lang
30 30 activerecord_error_too_short: er for kort
31 31 activerecord_error_wrong_length: har den forkerte længde
32 32 activerecord_error_taken: er allerede valgt
33 33 activerecord_error_not_a_number: er ikke et nummer
34 34 activerecord_error_not_a_date: er en ugyldig dato
35 35 activerecord_error_greater_than_start_date: skal være senere end start datoen
36 36 activerecord_error_not_same_project: høre ikke til samme projekt
37 37 activerecord_error_circular_dependency: Denne relation vil skabe et afhængigheds forhold
38 38
39 39 general_fmt_age: %d år
40 40 general_fmt_age_plural: %d år
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nej'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nej'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Danish (Dansk)'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Kontoen er opdateret.
57 57 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
58 58 notice_account_password_updated: Kodeordet er opdateret.
59 59 notice_account_wrong_password: Forkert kodeord
60 60 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen, ska du klikke på linket i den tilsendte email.
61 61 notice_account_unknown_email: Ukendt bruger.
62 62 notice_can_t_change_password: Denne konto benytter en ekstern sikkerheds godkendelse. Det er ikke muligt at skifte kodeord.
63 63 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
64 64 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
65 65 notice_successful_create: Succesfuld oprettelsen.
66 66 notice_successful_update: Succesfuld opdatering.
67 67 notice_successful_delete: Succesfuld sletning.
68 68 notice_successful_connection: Succesfuld forbindelse.
69 69 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
70 70 notice_locking_conflict: Data er opdateret af en anden bruger.
71 71 notice_not_authorized: Du har ike adgang til denne side.
72 72 notice_email_sent: En email er sendt til %s
73 73 notice_email_error: En fejl opstod under afsendelse af email (%s)
74 74 notice_feeds_access_key_reseted: Din RSS adgangs nøgle er nulstillet.
75 75 notice_failed_to_save_issues: "Det mislykkedes at gemme %d sage(r) %d valgt: %s."
76 76 notice_no_issue_selected: "Ingen sag er valgt! vælg venligst hvilke emner du vil rette."
77 77 notice_account_pending: "Din konto er oprettet, og afventer administratorens godkendelse."
78 78 notice_default_data_loaded: Default konfiguration er indlæst.
79 79
80 80 error_can_t_load_default_data: "Standard konfiguration kunne ikke indlæses: %s"
81 81 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
82 82 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: %s"
83 83
84 mail_subject_lost_password: Dit Redmine kodeord
85 mail_body_lost_password: 'For at ændre dit Redmine kodeord, klik dette link:'
86 mail_subject_register: Redmine konto aktivering
87 mail_body_register: 'For at aktivere din Redmine konto, klik dette link:'
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind på Redmine.
89 mail_body_account_information: Din Redmine konto information
90 mail_subject_account_activation_request: Redmine konto aktivering
84 mail_subject_lost_password: Dit %s kodeord
85 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
86 mail_subject_register: %s konto aktivering
87 mail_body_register: 'For at aktivere din konto, klik dette link:'
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind.
89 mail_body_account_information: Din konto information
90 mail_subject_account_activation_request: %s konto aktivering
91 91 mail_body_account_activation_request: 'En ny bruger (%s) er registreret. Godkend venligst kontoen:'
92 92
93 93 gui_validation_error: 1 fejl
94 94 gui_validation_error_plural: %d fejl
95 95
96 96 field_name: Navn
97 97 field_description: Beskrivelse
98 98 field_summary: Sammenfatning
99 99 field_is_required: Skal udfyldes
100 100 field_firstname: Fornavn
101 101 field_lastname: Efternavn
102 102 field_mail: Email
103 103 field_filename: Fil
104 104 field_filesize: Størrelse
105 105 field_downloads: Downloads
106 106 field_author: Forfatter
107 107 field_created_on: Oprettet
108 108 field_updated_on: Opdateret
109 109 field_field_format: Format
110 110 field_is_for_all: For alle projekter
111 111 field_possible_values: Mulige værdier
112 112 field_regexp: Regulære udtryk
113 113 field_min_length: Minimum længde
114 114 field_max_length: Maximal længde
115 115 field_value: Værdi
116 116 field_category: Kategori
117 117 field_title: Titel
118 118 field_project: Projekt
119 119 field_issue: Sag
120 120 field_status: Status
121 121 field_notes: Noter
122 122 field_is_closed: Sagen er lukket
123 123 field_is_default: Standard værdi
124 124 field_tracker: Type
125 125 field_subject: Emne
126 126 field_due_date: Deadline
127 127 field_assigned_to: Tildelt til
128 128 field_priority: Prioritet
129 129 field_fixed_version: Target version
130 130 field_user: Bruger
131 131 field_role: Rolle
132 132 field_homepage: Hjemmeside
133 133 field_is_public: Offentlig
134 134 field_parent: Underprojekt af
135 135 field_is_in_chlog: Sager vist i ændringer
136 136 field_is_in_roadmap: Sager vist i roadmap
137 137 field_login: Login
138 138 field_mail_notification: Email notifikatiner
139 139 field_admin: Administrator
140 140 field_last_login_on: Sidste forbindelse
141 141 field_language: Sprog
142 142 field_effective_date: Dato
143 143 field_password: Kodeord
144 144 field_new_password: Nyt kodeord
145 145 field_password_confirmation: Bekræft
146 146 field_version: Version
147 147 field_type: Type
148 148 field_host: Vært
149 149 field_port: Port
150 150 field_account: Kode
151 151 field_base_dn: Base DN
152 152 field_attr_login: Login attribut
153 153 field_attr_firstname: Fornavn attribut
154 154 field_attr_lastname: Efternavn attribut
155 155 field_attr_mail: Email attribut
156 156 field_onthefly: On-the-fly bruger oprettelse
157 157 field_start_date: Start
158 158 field_done_ratio: %% Færdig
159 159 field_auth_source: Sikkerheds metode
160 160 field_hide_mail: Skjul min email
161 161 field_comments: Kommentar
162 162 field_url: URL
163 163 field_start_page: Start side
164 164 field_subproject: Underprojekt
165 165 field_hours: Timer
166 166 field_activity: Aktivitet
167 167 field_spent_on: Dato
168 168 field_identifier: Identificering
169 169 field_is_filter: Brugt som et filter
170 170 field_issue_to_id: Beslægtede sag
171 171 field_delay: Udsættelse
172 172 field_assignable: Sager kan tildeles denne rolle
173 173 field_redirect_existing_links: Videresend eksisterende links
174 174 field_estimated_hours: Estimeret tid
175 175 field_column_names: Kolonner
176 176 field_time_zone: Tids zone
177 177 field_searchable: Søgbar
178 178 field_default_value: Standard værdi
179 179
180 180 setting_app_title: Applikations titel
181 181 setting_app_subtitle: Applikations undertekst
182 182 setting_welcome_text: Velkomst tekst
183 183 setting_default_language: Standrad sporg
184 184 setting_login_required: Sikkerhed påkrævet
185 185 setting_self_registration: Bruger oprettelse
186 186 setting_attachment_max_size: Vedhæftede filers max størrelse
187 187 setting_issues_export_limit: Sags eksporterings begrænsning
188 188 setting_mail_from: Afsender email
189 189 setting_bcc_recipients: Blind carbon copy modtager (bcc)
190 190 setting_host_name: Værts navn
191 191 setting_text_formatting: Tekst formattering
192 192 setting_wiki_compression: Wiki historik komprimering
193 193 setting_feeds_limit: Feed indholds begrænsning
194 194 setting_autofetch_changesets: Automatisk hent commits
195 195 setting_sys_api_enabled: Aktiver web service for automatisk repository administration
196 196 setting_commit_ref_keywords: Reference nøgleord
197 197 setting_commit_fix_keywords: Afslutnings nøgleord
198 198 setting_autologin: Autologin
199 199 setting_date_format: Dato format
200 200 setting_time_format: Tids format
201 201 setting_cross_project_issue_relations: Tillad cross-projekt sags relationer
202 202 setting_issue_list_default_columns: Standrad kolonner på sags listen
203 203 setting_repositories_encodings: Repository tegnsæt
204 204 setting_emails_footer: Email fodnote
205 205 setting_protocol: Protokol
206 206 setting_per_page_options: Objekter pr. side indstillinger
207 207 setting_user_format: Bruger visnings format
208 208
209 209 project_module_issue_tracking: Sag søgning
210 210 project_module_time_tracking: Tids styring
211 211 project_module_news: Nyheder
212 212 project_module_documents: Dokumenter
213 213 project_module_files: Filer
214 214 project_module_wiki: Wiki
215 215 project_module_repository: Repository
216 216 project_module_boards: Opslagstavle
217 217
218 218 label_user: Bruger
219 219 label_user_plural: Brugere
220 220 label_user_new: Ny bruger
221 221 label_project: Projekt
222 222 label_project_new: Nyt projekt
223 223 label_project_plural: Projekter
224 224 label_project_all: Alle projekter
225 225 label_project_latest: Seneste projekter
226 226 label_issue: Sag
227 227 label_issue_new: Opret sag
228 228 label_issue_plural: Sager
229 229 label_issue_view_all: Vis alle sager
230 230 label_issues_by: Sager fra %s
231 231 label_issue_added: Sagen er oprettet
232 232 label_issue_updated: Sagen er opdateret
233 233 label_document: Dokument
234 234 label_document_new: Nyt dokument
235 235 label_document_plural: Dokumenter
236 236 label_document_added: Dokument tilføjet
237 237 label_role: Rolle
238 238 label_role_plural: Roller
239 239 label_role_new: Ny rolle
240 240 label_role_and_permissions: Roller og rettigheder
241 241 label_member: Medlem
242 242 label_member_new: Nyt medlem
243 243 label_member_plural: Medlemmer
244 244 label_tracker: Type
245 245 label_tracker_plural: Typer
246 246 label_tracker_new: Ny type
247 247 label_workflow: Arbejdsgang
248 248 label_issue_status: Sags status
249 249 label_issue_status_plural: Sags statuser
250 250 label_issue_status_new: Ny status
251 251 label_issue_category: Sags kategori
252 252 label_issue_category_plural: Sags kategorier
253 253 label_issue_category_new: Ny kategori
254 254 label_custom_field: Brugerdefineret felt
255 255 label_custom_field_plural: Brugerdefineret felt
256 256 label_custom_field_new: Nyt brugerdefineret felt
257 257 label_enumerations: Værdier
258 258 label_enumeration_new: Ny værdi
259 259 label_information: Information
260 260 label_information_plural: Information
261 261 label_please_login: Login
262 262 label_register: Registrer
263 263 label_password_lost: Glemt kodeord
264 264 label_home: Forside
265 265 label_my_page: Min side
266 266 label_my_account: Min konto
267 267 label_my_projects: Mine projekter
268 268 label_administration: Administration
269 269 label_login: Log ind
270 270 label_logout: Log ud
271 271 label_help: Hjælp
272 272 label_reported_issues: Rapporterede sager
273 273 label_assigned_to_me_issues: Sager tildelt til mig
274 274 label_last_login: Sidste forbindelse
275 275 label_last_updates: Sidst opdateret
276 276 label_last_updates_plural: %d sidst opdateret
277 277 label_registered_on: Registeret den
278 278 label_activity: Aktivitet
279 279 label_new: Ny
280 280 label_logged_as: Registreret som
281 281 label_environment: Miljø
282 282 label_authentication: Sikkerhed
283 283 label_auth_source: Sikkerheds metode
284 284 label_auth_source_new: Ny sikkerheds metode
285 285 label_auth_source_plural: Sikkerheds metoder
286 286 label_subproject_plural: Underprojekter
287 287 label_min_max_length: Min - Max længde
288 288 label_list: Liste
289 289 label_date: Dato
290 290 label_integer: Heltal
291 291 label_float: Kommatal
292 292 label_boolean: Sand/falsk
293 293 label_string: Tekst
294 294 label_text: Lang tekst
295 295 label_attribute: Attribut
296 296 label_attribute_plural: Attributter
297 297 label_download: %d Download
298 298 label_download_plural: %d Downloads
299 299 label_no_data: Ingen data at vise
300 300 label_change_status: Ændrings status
301 301 label_history: Historik
302 302 label_attachment: Fil
303 303 label_attachment_new: Ny fil
304 304 label_attachment_delete: Slet fil
305 305 label_attachment_plural: Filer
306 306 label_file_added: Fil tilføjet
307 307 label_report: Rapport
308 308 label_report_plural: Rapporter
309 309 label_news: Nyheder
310 310 label_news_new: Tilføj nyheder
311 311 label_news_plural: Nyheder
312 312 label_news_latest: Seneste nyheder
313 313 label_news_view_all: Vis alle nyheder
314 314 label_news_added: Nyhed tilføjet
315 315 label_change_log: Ændringer
316 316 label_settings: Indstillinger
317 317 label_overview: Oversit
318 318 label_version: Version
319 319 label_version_new: Ny version
320 320 label_version_plural: Versioner
321 321 label_confirmation: Bekræftigelser
322 322 label_export_to: Exporter til
323 323 label_read: Læs...
324 324 label_public_projects: Offentlige projekter
325 325 label_open_issues: åben
326 326 label_open_issues_plural: åbne
327 327 label_closed_issues: lukket
328 328 label_closed_issues_plural: lukkede
329 329 label_total: Total
330 330 label_permissions: Rettigheder
331 331 label_current_status: Nuværende status
332 332 label_new_statuses_allowed: Ny status tilladt
333 333 label_all: alle
334 334 label_none: intet
335 335 label_nobody: ingen
336 336 label_next: Næste
337 337 label_previous: Forrig
338 338 label_used_by: Brugt af
339 339 label_details: Detaljer
340 340 label_add_note: Tilføj en note
341 341 label_per_page: Pr. side
342 342 label_calendar: Kalender
343 343 label_months_from: måneder frem
344 344 label_gantt: Gantt
345 345 label_internal: Intern
346 346 label_last_changes: sidste %d ændringer
347 347 label_change_view_all: Vis alle ændringer
348 348 label_personalize_page: Tilret denne side
349 349 label_comment: Kommentar
350 350 label_comment_plural: Kommentarer
351 351 label_comment_add: Tilføj en kommentar
352 352 label_comment_added: Kommentaren er tilføjet
353 353 label_comment_delete: Slet kommentar
354 354 label_query: Brugerdefineret forespørgsel
355 355 label_query_plural: Brugerdefinerede forespørgsler
356 356 label_query_new: Ny forespørgsel
357 357 label_filter_add: Tilføj filter
358 358 label_filter_plural: Filtre
359 359 label_equals: er
360 360 label_not_equals: er ikke
361 361 label_in_less_than: er mindre end
362 362 label_in_more_than: er større end
363 363 label_in: indeholdt i
364 364 label_today: idag
365 365 label_all_time: altid
366 366 label_yesterday: igår
367 367 label_this_week: denne uge
368 368 label_last_week: sidste uge
369 369 label_last_n_days: sidste %d dage
370 370 label_this_month: denne måned
371 371 label_last_month: sidste måned
372 372 label_this_year: dette år
373 373 label_date_range: Dato interval
374 374 label_less_than_ago: mindre end dage siden
375 375 label_more_than_ago: mere end dage siden
376 376 label_ago: days siden
377 377 label_contains: indeholder
378 378 label_not_contains: ikke indeholder
379 379 label_day_plural: dage
380 380 label_repository: Repository
381 381 label_repository_plural: Repositories
382 382 label_browse: Gennemse
383 383 label_modification: %d ændring
384 384 label_modification_plural: %d ændringer
385 385 label_revision: Revision
386 386 label_revision_plural: Revisions
387 387 label_associated_revisions: Tilnyttede revisions
388 388 label_added: tilføjet
389 389 label_modified: ændret
390 390 label_deleted: slettet
391 391 label_latest_revision: Seneste revision
392 392 label_latest_revision_plural: Seneste revisions
393 393 label_view_revisions: Se revisions
394 394 label_max_size: Maximal størrelse
395 395 label_on: 'til'
396 396 label_sort_highest: Flyt til toppen
397 397 label_sort_higher: Flyt op
398 398 label_sort_lower: Flyt ned
399 399 label_sort_lowest: Flyt til bunden
400 400 label_roadmap: Roadmap
401 401 label_roadmap_due_in: Deadline
402 402 label_roadmap_overdue: %s forsinket
403 403 label_roadmap_no_issues: Ingen sager til denne version
404 404 label_search: Søg
405 405 label_result_plural: Resultater
406 406 label_all_words: Alle ord
407 407 label_wiki: Wiki
408 408 label_wiki_edit: Wiki ændring
409 409 label_wiki_edit_plural: Wiki ændringer
410 410 label_wiki_page: Wiki side
411 411 label_wiki_page_plural: Wiki sider
412 412 label_index_by_title: Indhold efter titel
413 413 label_index_by_date: Indhold efter dato
414 414 label_current_version: Nuværende version
415 415 label_preview: Forhåndsvisning
416 416 label_feed_plural: Feeds
417 417 label_changes_details: Detaljer for alle ænringer
418 418 label_issue_tracking: Sags søgning
419 419 label_spent_time: Brugt tid
420 420 label_f_hour: %.2f time
421 421 label_f_hour_plural: %.2f timer
422 422 label_time_tracking: Tids styring
423 423 label_change_plural: Ændringer
424 424 label_statistics: Statistik
425 425 label_commits_per_month: Commits pr. måned
426 426 label_commits_per_author: Commits pr. bruger
427 427 label_view_diff: Vis forskellighed
428 428 label_diff_inline: inline
429 429 label_diff_side_by_side: side ved side
430 430 label_options: Options
431 431 label_copy_workflow_from: Kopier arbejdsgang fra
432 432 label_permissions_report: Godkendelses rapport
433 433 label_watched_issues: Overvågede sager
434 434 label_related_issues: Relaterede sage
435 435 label_applied_status: Anvendte statuser
436 436 label_loading: Indlæser...
437 437 label_relation_new: Ny relation
438 438 label_relation_delete: Slet relation
439 439 label_relates_to: relaterer til
440 440 label_duplicates: kopierer
441 441 label_blocks: blokerer
442 442 label_blocked_by: blokeret af
443 443 label_precedes: kommer før
444 444 label_follows: følger
445 445 label_end_to_start: slut til start
446 446 label_end_to_end: slut til slut
447 447 label_start_to_start: start til start
448 448 label_start_to_end: start til slut
449 449 label_stay_logged_in: Forblin indlogget
450 450 label_disabled: deaktiveret
451 451 label_show_completed_versions: Vis færdige versioner
452 452 label_me: mig
453 453 label_board: Forum
454 454 label_board_new: Nyt forum
455 455 label_board_plural: Forumer
456 456 label_topic_plural: Emner
457 457 label_message_plural: Beskeder
458 458 label_message_last: Sidste besked
459 459 label_message_new: Ny besked
460 460 label_message_posted: Besked tilføjet
461 461 label_reply_plural: Besvarer
462 462 label_send_information: Send konto information til bruger
463 463 label_year: År
464 464 label_month: Måned
465 465 label_week: Uge
466 466 label_date_from: Fra
467 467 label_date_to: Til
468 468 label_language_based: Baseret på brugerens sprog
469 469 label_sort_by: Sorter efter %s
470 470 label_send_test_email: Send en test email
471 471 label_feeds_access_key_created_on: RSS adgangsnøgle genereret %s siden
472 472 label_module_plural: Moduler
473 473 label_added_time_by: Tilføjet af %s for %s siden
474 474 label_updated_time: Opdateret for %s siden
475 475 label_jump_to_a_project: Skift til projekt...
476 476 label_file_plural: Filer
477 477 label_changeset_plural: Ændringer
478 478 label_default_columns: Standard kolonner
479 479 label_no_change_option: (Ingen ændringer)
480 480 label_bulk_edit_selected_issues: Masse ret de valgte sager
481 481 label_theme: Tema
482 482 label_default: standard
483 483 label_search_titles_only: Søg kun i titler
484 484 label_user_mail_option_all: "For alle hændelser mine projekter"
485 485 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
486 486 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
487 487 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
488 488 label_registration_activation_by_email: konto aktivering på email
489 489 label_registration_manual_activation: manuel konto aktivering
490 490 label_registration_automatic_activation: automatisk konto aktivering
491 491 label_display_per_page: 'Per side: %s'
492 492 label_age: Alder
493 493 label_change_properties: Ændre indstillinger
494 494 label_general: Generalt
495 495 label_more: Mere
496 496 label_scm: SCM
497 497 label_plugins: Plugins
498 498 label_ldap_authentication: LDAP godkendelse
499 499 label_downloads_abbr: D/L
500 500
501 501 button_login: Login
502 502 button_submit: Send
503 503 button_save: Gem
504 504 button_check_all: Vælg alt
505 505 button_uncheck_all: Fravælg alt
506 506 button_delete: Slet
507 507 button_create: Opret
508 508 button_test: Test
509 509 button_edit: Ret
510 510 button_add: Tilføj
511 511 button_change: Ændre
512 512 button_apply: Anvend
513 513 button_clear: Nulstil
514 514 button_lock: Lås
515 515 button_unlock: Lås op
516 516 button_download: Download
517 517 button_list: List
518 518 button_view: Vis
519 519 button_move: Flyt
520 520 button_back: Tilbage
521 521 button_cancel: Annuller
522 522 button_activate: Aktiver
523 523 button_sort: Sorter
524 524 button_log_time: Log tidspunkt
525 525 button_rollback: Tilbagefør til denne version
526 526 button_watch: Overvåg
527 527 button_unwatch: Stop overvågning
528 528 button_reply: Besvar
529 529 button_archive: Arkiver
530 530 button_unarchive: Fjern fra arkiv
531 531 button_reset: Nulstil
532 532 button_rename: Omdøb
533 533 button_change_password: Skift kodeord
534 534 button_copy: Kopier
535 535 button_annotate: Annotere
536 536 button_update: Opdater
537 537 button_configure: Konfigurer
538 538
539 539 status_active: aktiv
540 540 status_registered: registreret
541 541 status_locked: låst
542 542
543 543 text_select_mail_notifications: Vælg handlinger for hvilke, der skal sendes en email besked.
544 544 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
545 545 text_min_max_length_info: 0 betyder ingen begrænsninger
546 546 text_project_destroy_confirmation: Er du sikker på di vil slette dette projekt og alle relaterede data ?
547 547 text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen
548 548 text_are_you_sure: Er du sikker ?
549 549 text_journal_changed: ændret fra %s til %s
550 550 text_journal_set_to: sat til %s
551 551 text_journal_deleted: slettet
552 552 text_tip_task_begin_day: opgaven begynder denne dag
553 553 text_tip_task_end_day: opaven slutter denne dag
554 554 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
555 555 text_project_identifier_info: 'Minuskler (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
556 556 text_caracters_maximum: max %d karakterer.
557 557 text_caracters_minimum: Skal være mindst %d karakterer lang.
558 558 text_length_between: Længde skal være mellem %d og %d karakterer.
559 559 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
560 560 text_unallowed_characters: Ikke tilladte karakterer
561 561 text_comma_separated: Adskillige værdier tilladt (komma separeret).
562 562 text_issues_ref_in_commit_messages: Referer og løser sager i commit beskeder
563 563 text_issue_added: Sag %s er rapporteret af %s.
564 564 text_issue_updated: Sag %s er blevet opdateret af %s.
565 565 text_wiki_destroy_confirmation: Er du sikker på at du vil slette debbe wiki, og alt indholdet ?
566 566 text_issue_category_destroy_question: Nogle sgaer (%d) er tildelt denne kategori. Hvad ønsker du at gøre ?
567 567 text_issue_category_destroy_assignments: Slet kategori tildelinger
568 568 text_issue_category_reassign_to: Tildel sager til denne kategori
569 569 text_user_mail_option: "For ikke valgte projekter, vil du kun modtage beskeder omhandlende ting, du er involveret i, eller overvåger (f.eks. sager du ahr indberettet eller ejer)."
570 570 text_no_configuration_data: "Roller, typer, sags statuser og arbejdsgange er endnu ikek konfigureret.\nDet er anbefalet at indlæse standard konfigurationen. Du vil kunne ændre denne når den er indlæst."
571 571 text_load_default_configuration: Indlæs standard konfiguration
572 572 text_status_changed_by_changeset: Anvendt i ændring %s.
573 573 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er) ?'
574 574 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
575 575 text_default_administrator_account_changed: Standard administrator konto ændret
576 576 text_file_repository_writable: Filarkiv er skrivbar
577 577 text_rmagick_available: RMagick tilgængelig (valgfri)
578 578
579 579 default_role_manager: Leder
580 580 default_role_developper: Udvikler
581 581 default_role_reporter: Rapportør
582 582 default_tracker_bug: Bug
583 583 default_tracker_feature: Feature
584 584 default_tracker_support: Support
585 585 default_issue_status_new: Ny
586 586 default_issue_status_assigned: Tildelt
587 587 default_issue_status_resolved: Løst
588 588 default_issue_status_feedback: Feedback
589 589 default_issue_status_closed: Lukket
590 590 default_issue_status_rejected: Afvist
591 591 default_doc_category_user: Bruger dokumentation
592 592 default_doc_category_tech: Teknisk dokumentation
593 593 default_priority_low: Lav
594 594 default_priority_normal: Normal
595 595 default_priority_high: Høj
596 596 default_priority_urgent: Akut
597 597 default_priority_immediate: Omgående
598 598 default_activity_design: Design
599 599 default_activity_development: Udvikling
600 600
601 601 enumeration_issue_priorities: Sags prioriteter
602 602 enumeration_doc_categories: Dokument kategorier
603 603 enumeration_activities: Aktiviteter (tids styring)
604 604
605 605 label_add_another_file: Add another file
606 606 label_chronological_order: In chronological order
607 607 setting_activity_days_default: Days displayed on project activity
608 608 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
609 609 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
610 610 text_assign_time_entries_to_project: Assign reported hours to the project
611 611 setting_display_subprojects_issues: Display subprojects issues on main projects by default
612 612 label_optional_description: Optional description
613 613 text_destroy_time_entries: Delete reported hours
614 614 field_comments_sorting: Display comments
615 615 text_reassign_time_entries: 'Reassign reported hours to this issue:'
616 616 label_reverse_chronological_order: In reverse chronological order
617 617 label_preferences: Preferences
618 618 label_overall_activity: Overall activity
619 619 setting_default_projects_public: New projects are public by default
@@ -1,618 +1,618
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 Tag
9 9 actionview_datehelper_time_in_words_day_plural: %d Tagen
10 10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
11 11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
13 13 actionview_datehelper_time_in_words_minute: 1 Minute
14 14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
15 15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 20 actionview_instancetag_blank_option: Bitte auswählen
21 21
22 22 activerecord_error_inclusion: ist nicht inbegriffen
23 23 activerecord_error_exclusion: ist reserviert
24 24 activerecord_error_invalid: ist unzulässig
25 25 activerecord_error_confirmation: Bestätigung nötig
26 26 activerecord_error_accepted: muss angenommen werden
27 27 activerecord_error_empty: darf nicht leer sein
28 28 activerecord_error_blank: darf nicht leer sein
29 29 activerecord_error_too_long: ist zu lang
30 30 activerecord_error_too_short: ist zu kurz
31 31 activerecord_error_wrong_length: hat die falsche Länge
32 32 activerecord_error_taken: ist bereits vergeben
33 33 activerecord_error_not_a_number: ist keine Zahl
34 34 activerecord_error_not_a_date: ist kein gültiges Datum
35 35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
38 38
39 39 general_fmt_age: %d Jahr
40 40 general_fmt_age_plural: %d Jahre
41 41 general_fmt_date: %%d.%%m.%%y
42 42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Nein'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nein'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Deutsch'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
57 57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
58 58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
59 59 notice_account_wrong_password: Falsches Kennwort
60 60 notice_account_register_done: Konto wurde erfolgreich angelegt.
61 61 notice_account_unknown_email: Unbekannter Benutzer.
62 62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
63 63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
64 64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
65 65 notice_successful_create: Erfolgreich angelegt
66 66 notice_successful_update: Erfolgreich aktualisiert.
67 67 notice_successful_delete: Erfolgreich gelöscht.
68 68 notice_successful_connection: Verbindung erfolgreich.
69 69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
70 70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
71 71 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
72 72 notice_email_sent: Eine E-Mail wurde an %s gesendet.
73 73 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
74 74 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
75 75 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
76 76 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
77 77 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
78 78 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
79 79
80 80 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %s"
81 81 error_scm_not_found: Eintrag und/oder Revision besteht nicht im Projektarchiv.
82 82 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %s"
83 83 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
84 84
85 mail_subject_lost_password: Ihr Redmine-Kennwort
85 mail_subject_lost_password: Ihr %s Kennwort
86 86 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
87 mail_subject_register: Redmine Kontoaktivierung
87 mail_subject_register: %s Kontoaktivierung
88 88 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
89 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an Redmine anmelden.
90 mail_body_account_information: Ihre Redmine Konto-Informationen
91 mail_subject_account_activation_request: Antrag auf Redmine Kontoaktivierung
89 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an anmelden.
90 mail_body_account_information: Ihre Konto-Informationen
91 mail_subject_account_activation_request: Antrag auf %s Kontoaktivierung
92 92 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
93 93
94 94 gui_validation_error: 1 Fehler
95 95 gui_validation_error_plural: %d Fehler
96 96
97 97 field_name: Name
98 98 field_description: Beschreibung
99 99 field_summary: Zusammenfassung
100 100 field_is_required: Erforderlich
101 101 field_firstname: Vorname
102 102 field_lastname: Nachname
103 103 field_mail: E-Mail
104 104 field_filename: Datei
105 105 field_filesize: Größe
106 106 field_downloads: Downloads
107 107 field_author: Autor
108 108 field_created_on: Angelegt
109 109 field_updated_on: Aktualisiert
110 110 field_field_format: Format
111 111 field_is_for_all: Für alle Projekte
112 112 field_possible_values: Mögliche Werte
113 113 field_regexp: Regulärer Ausdruck
114 114 field_min_length: Minimale Länge
115 115 field_max_length: Maximale Länge
116 116 field_value: Wert
117 117 field_category: Kategorie
118 118 field_title: Titel
119 119 field_project: Projekt
120 120 field_issue: Ticket
121 121 field_status: Status
122 122 field_notes: Kommentare
123 123 field_is_closed: Problem erledigt
124 124 field_is_default: Default
125 125 field_tracker: Tracker
126 126 field_subject: Thema
127 127 field_due_date: Abgabedatum
128 128 field_assigned_to: Zugewiesen an
129 129 field_priority: Priorität
130 130 field_fixed_version: Target version
131 131 field_user: Benutzer
132 132 field_role: Rolle
133 133 field_homepage: Projekt-Homepage
134 134 field_is_public: Öffentlich
135 135 field_parent: Unterprojekt von
136 136 field_is_in_chlog: Ansicht im Change-Log
137 137 field_is_in_roadmap: Ansicht in der Roadmap
138 138 field_login: Mitgliedsname
139 139 field_mail_notification: Mailbenachrichtigung
140 140 field_admin: Administrator
141 141 field_last_login_on: Letzte Anmeldung
142 142 field_language: Sprache
143 143 field_effective_date: Datum
144 144 field_password: Kennwort
145 145 field_new_password: Neues Kennwort
146 146 field_password_confirmation: Bestätigung
147 147 field_version: Version
148 148 field_type: Typ
149 149 field_host: Host
150 150 field_port: Port
151 151 field_account: Konto
152 152 field_base_dn: Base DN
153 153 field_attr_login: Mitgliedsname-Attribut
154 154 field_attr_firstname: Vorname-Attribut
155 155 field_attr_lastname: Name-Attribut
156 156 field_attr_mail: E-Mail-Attribut
157 157 field_onthefly: On-the-fly-Benutzererstellung
158 158 field_start_date: Beginn
159 159 field_done_ratio: %% erledigt
160 160 field_auth_source: Authentifizierungs-Modus
161 161 field_hide_mail: E-Mail-Adresse nicht anzeigen
162 162 field_comments: Kommentar
163 163 field_url: URL
164 164 field_start_page: Hauptseite
165 165 field_subproject: Subprojekt von
166 166 field_hours: Stunden
167 167 field_activity: Aktivität
168 168 field_spent_on: Datum
169 169 field_identifier: Kennung
170 170 field_is_filter: Als Filter benutzen
171 171 field_issue_to_id: Zugehöriges Ticket
172 172 field_delay: Pufferzeit
173 173 field_assignable: Tickets können dieser Rolle zugewiesen werden
174 174 field_redirect_existing_links: Existierende Links umleiten
175 175 field_estimated_hours: Geschätzter Aufwand
176 176 field_column_names: Spalten
177 177 field_time_zone: Zeitzone
178 178 field_searchable: Durchsuchbar
179 179 field_default_value: Standardwert
180 180
181 181 setting_app_title: Applikations-Titel
182 182 setting_app_subtitle: Applikations-Untertitel
183 183 setting_welcome_text: Willkommenstext
184 184 setting_default_language: Default-Sprache
185 185 setting_login_required: Authentisierung erforderlich
186 186 setting_self_registration: Anmeldung ermöglicht
187 187 setting_attachment_max_size: Max. Dateigröße
188 188 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
189 189 setting_mail_from: E-Mail-Absender
190 190 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
191 191 setting_host_name: Hostname
192 192 setting_text_formatting: Textformatierung
193 193 setting_wiki_compression: Wiki-Historie komprimieren
194 194 setting_feeds_limit: Feed-Inhalt begrenzen
195 195 setting_autofetch_changesets: Changesets automatisch abrufen
196 196 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
197 197 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
198 198 setting_commit_fix_keywords: Schlüsselwörter (Status)
199 199 setting_autologin: Automatische Anmeldung
200 200 setting_date_format: Datumsformat
201 201 setting_time_format: Zeitformat
202 202 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
203 203 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
204 204 setting_repositories_encodings: Kodierungen der Projektarchive
205 205 setting_emails_footer: E-Mail-Fußzeile
206 206 setting_protocol: Protokoll
207 207 setting_per_page_options: Objekte pro Seite
208 208 setting_user_format: Benutzer-Anzeigeformat
209 209
210 210 project_module_issue_tracking: Ticket-Verfolgung
211 211 project_module_time_tracking: Zeiterfassung
212 212 project_module_news: News
213 213 project_module_documents: Dokumente
214 214 project_module_files: Dateien
215 215 project_module_wiki: Wiki
216 216 project_module_repository: Projektarchiv
217 217 project_module_boards: Foren
218 218
219 219 label_user: Benutzer
220 220 label_user_plural: Benutzer
221 221 label_user_new: Neuer Benutzer
222 222 label_project: Projekt
223 223 label_project_new: Neues Projekt
224 224 label_project_plural: Projekte
225 225 label_project_all: Alle Projekte
226 226 label_project_latest: Neueste Projekte
227 227 label_issue: Ticket
228 228 label_issue_new: Neues Ticket
229 229 label_issue_plural: Tickets
230 230 label_issue_view_all: Alle Tickets ansehen
231 231 label_issues_by: Tickets von %s
232 232 label_issue_added: Ticket hinzugefügt
233 233 label_issue_updated: Ticket aktualisiert
234 234 label_document: Dokument
235 235 label_document_new: Neues Dokument
236 236 label_document_plural: Dokumente
237 237 label_document_added: Dokument hinzugefügt
238 238 label_role: Rolle
239 239 label_role_plural: Rollen
240 240 label_role_new: Neue Rolle
241 241 label_role_and_permissions: Rollen und Rechte
242 242 label_member: Mitglied
243 243 label_member_new: Neues Mitglied
244 244 label_member_plural: Mitglieder
245 245 label_tracker: Tracker
246 246 label_tracker_plural: Tracker
247 247 label_tracker_new: Neuer Tracker
248 248 label_workflow: Workflow
249 249 label_issue_status: Ticket-Status
250 250 label_issue_status_plural: Ticket-Status
251 251 label_issue_status_new: Neuer Status
252 252 label_issue_category: Ticket-Kategorie
253 253 label_issue_category_plural: Ticket-Kategorien
254 254 label_issue_category_new: Neue Kategorie
255 255 label_custom_field: Benutzerdefiniertes Feld
256 256 label_custom_field_plural: Benutzerdefinierte Felder
257 257 label_custom_field_new: Neues Feld
258 258 label_enumerations: Aufzählungen
259 259 label_enumeration_new: Neuer Wert
260 260 label_information: Information
261 261 label_information_plural: Informationen
262 262 label_please_login: Anmelden
263 263 label_register: Registrieren
264 264 label_password_lost: Kennwort vergessen
265 265 label_home: Hauptseite
266 266 label_my_page: Meine Seite
267 267 label_my_account: Mein Konto
268 268 label_my_projects: Meine Projekte
269 269 label_administration: Administration
270 270 label_login: Anmelden
271 271 label_logout: Abmelden
272 272 label_help: Hilfe
273 273 label_reported_issues: Gemeldete Tickets
274 274 label_assigned_to_me_issues: Mir zugewiesen
275 275 label_last_login: Letzte Anmeldung
276 276 label_last_updates: zuletzt aktualisiert
277 277 label_last_updates_plural: %d zuletzt aktualisierten
278 278 label_registered_on: Angemeldet am
279 279 label_activity: Aktivität
280 280 label_new: Neu
281 281 label_logged_as: Angemeldet als
282 282 label_environment: Environment
283 283 label_authentication: Authentifizierung
284 284 label_auth_source: Authentifizierungs-Modus
285 285 label_auth_source_new: Neuer Authentifizierungs-Modus
286 286 label_auth_source_plural: Authentifizierungs-Arten
287 287 label_subproject_plural: Unterprojekte
288 288 label_min_max_length: Länge (Min. - Max.)
289 289 label_list: Liste
290 290 label_date: Datum
291 291 label_integer: Zahl
292 292 label_float: Fließkommazahl
293 293 label_boolean: Boolean
294 294 label_string: Text
295 295 label_text: Langer Text
296 296 label_attribute: Attribut
297 297 label_attribute_plural: Attribute
298 298 label_download: %d Download
299 299 label_download_plural: %d Downloads
300 300 label_no_data: Nichts anzuzeigen
301 301 label_change_status: Statuswechsel
302 302 label_history: Historie
303 303 label_attachment: Datei
304 304 label_attachment_new: Neue Datei
305 305 label_attachment_delete: Anhang löschen
306 306 label_attachment_plural: Dateien
307 307 label_file_added: Datei hinzugefügt
308 308 label_report: Bericht
309 309 label_report_plural: Berichte
310 310 label_news: News
311 311 label_news_new: News hinzufügen
312 312 label_news_plural: News
313 313 label_news_latest: Letzte News
314 314 label_news_view_all: Alle News anzeigen
315 315 label_news_added: News hinzugefügt
316 316 label_change_log: Change-Log
317 317 label_settings: Konfiguration
318 318 label_overview: Übersicht
319 319 label_version: Version
320 320 label_version_new: Neue Version
321 321 label_version_plural: Versionen
322 322 label_confirmation: Bestätigung
323 323 label_export_to: Export zu
324 324 label_read: Lesen...
325 325 label_public_projects: Öffentliche Projekte
326 326 label_open_issues: offen
327 327 label_open_issues_plural: offen
328 328 label_closed_issues: geschlossen
329 329 label_closed_issues_plural: geschlossen
330 330 label_total: Gesamtzahl
331 331 label_permissions: Berechtigungen
332 332 label_current_status: Gegenwärtiger Status
333 333 label_new_statuses_allowed: Neue Berechtigungen
334 334 label_all: alle
335 335 label_none: kein
336 336 label_nobody: Niemand
337 337 label_next: Weiter
338 338 label_previous: Zurück
339 339 label_used_by: Benutzt von
340 340 label_details: Details
341 341 label_add_note: Kommentar hinzufügen
342 342 label_per_page: Pro Seite
343 343 label_calendar: Kalender
344 344 label_months_from: Monate ab
345 345 label_gantt: Gantt
346 346 label_internal: Intern
347 347 label_last_changes: %d letzte Änderungen
348 348 label_change_view_all: Alle Änderungen ansehen
349 349 label_personalize_page: Diese Seite anpassen
350 350 label_comment: Kommentar
351 351 label_comment_plural: Kommentare
352 352 label_comment_add: Kommentar hinzufügen
353 353 label_comment_added: Kommentar hinzugefügt
354 354 label_comment_delete: Kommentar löschen
355 355 label_query: Benutzerdefinierte Abfrage
356 356 label_query_plural: Benutzerdefinierte Berichte
357 357 label_query_new: Neuer Bericht
358 358 label_filter_add: Filter hinzufügen
359 359 label_filter_plural: Filter
360 360 label_equals: ist
361 361 label_not_equals: ist nicht
362 362 label_in_less_than: in weniger als
363 363 label_in_more_than: in mehr als
364 364 label_in: an
365 365 label_today: heute
366 366 label_all_time: gesamter Zeitraum
367 367 label_yesterday: gestern
368 368 label_this_week: aktuelle Woche
369 369 label_last_week: vorige Woche
370 370 label_last_n_days: die letzten %d Tage
371 371 label_this_month: aktueller Monat
372 372 label_last_month: voriger Monat
373 373 label_this_year: aktuelles Jahr
374 374 label_date_range: Zeitraum
375 375 label_less_than_ago: vor weniger als
376 376 label_more_than_ago: vor mehr als
377 377 label_ago: vor
378 378 label_contains: enthält
379 379 label_not_contains: enthält nicht
380 380 label_day_plural: Tage
381 381 label_repository: Projektarchiv
382 382 label_repository_plural: Projektarchive
383 383 label_browse: Codebrowser
384 384 label_modification: %d Änderung
385 385 label_modification_plural: %d Änderungen
386 386 label_revision: Revision
387 387 label_revision_plural: Revisionen
388 388 label_associated_revisions: Zugehörige Revisionen
389 389 label_added: hinzugefügt
390 390 label_modified: geändert
391 391 label_deleted: gelöscht
392 392 label_latest_revision: Aktuellste Revision
393 393 label_latest_revision_plural: Aktuellste Revisionen
394 394 label_view_revisions: Revisionen anzeigen
395 395 label_max_size: Maximale Größe
396 396 label_on: von
397 397 label_sort_highest: An den Anfang
398 398 label_sort_higher: Eins höher
399 399 label_sort_lower: Eins tiefer
400 400 label_sort_lowest: Ans Ende
401 401 label_roadmap: Roadmap
402 402 label_roadmap_due_in: Fällig in
403 403 label_roadmap_overdue: %s verspätet
404 404 label_roadmap_no_issues: Keine Tickets für diese Version
405 405 label_search: Suche
406 406 label_result_plural: Resultate
407 407 label_all_words: Alle Wörter
408 408 label_wiki: Wiki
409 409 label_wiki_edit: Wiki-Bearbeitung
410 410 label_wiki_edit_plural: Wiki-Bearbeitungen
411 411 label_wiki_page: Wiki-Seite
412 412 label_wiki_page_plural: Wiki-Seiten
413 413 label_index_by_title: Seiten nach Titel sortiert
414 414 label_index_by_date: Seiten nach Datum sortiert
415 415 label_current_version: Gegenwärtige Version
416 416 label_preview: Vorschau
417 417 label_feed_plural: Feeds
418 418 label_changes_details: Details aller Änderungen
419 419 label_issue_tracking: Tickets
420 420 label_spent_time: Aufgewendete Zeit
421 421 label_f_hour: %.2f Stunde
422 422 label_f_hour_plural: %.2f Stunden
423 423 label_time_tracking: Zeiterfassung
424 424 label_change_plural: Änderungen
425 425 label_statistics: Statistiken
426 426 label_commits_per_month: Übertragungen pro Monat
427 427 label_commits_per_author: Übertragungen pro Autor
428 428 label_view_diff: Unterschiede anzeigen
429 429 label_diff_inline: inline
430 430 label_diff_side_by_side: nebeneinander
431 431 label_options: Optionen
432 432 label_copy_workflow_from: Workflow kopieren von
433 433 label_permissions_report: Berechtigungsübersicht
434 434 label_watched_issues: Beobachtete Tickets
435 435 label_related_issues: Zugehörige Tickets
436 436 label_applied_status: Zugewiesener Status
437 437 label_loading: Lade...
438 438 label_relation_new: Neue Beziehung
439 439 label_relation_delete: Beziehung löschen
440 440 label_relates_to: Beziehung mit
441 441 label_duplicates: Duplikat von
442 442 label_blocks: Blockiert
443 443 label_blocked_by: Blockiert durch
444 444 label_precedes: Vorgänger von
445 445 label_follows: folgt
446 446 label_end_to_start: Ende - Anfang
447 447 label_end_to_end: Ende - Ende
448 448 label_start_to_start: Anfang - Anfang
449 449 label_start_to_end: Anfang - Ende
450 450 label_stay_logged_in: Angemeldet bleiben
451 451 label_disabled: gesperrt
452 452 label_show_completed_versions: Abgeschlossene Versionen anzeigen
453 453 label_me: ich
454 454 label_board: Forum
455 455 label_board_new: Neues Forum
456 456 label_board_plural: Foren
457 457 label_topic_plural: Themen
458 458 label_message_plural: Nachrichten
459 459 label_message_last: Letzte Nachricht
460 460 label_message_new: Neue Nachricht
461 461 label_message_posted: Forums-Beitrag hinzugefügt
462 462 label_reply_plural: Antworten
463 463 label_send_information: Sende Kontoinformationen zum Benutzer
464 464 label_year: Jahr
465 465 label_month: Monat
466 466 label_week: Woche
467 467 label_date_from: Von
468 468 label_date_to: Bis
469 469 label_language_based: Sprachabhängig
470 470 label_sort_by: Sortiert nach %s
471 471 label_send_test_email: Test-E-Mail senden
472 472 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
473 473 label_module_plural: Module
474 474 label_added_time_by: Von %s vor %s hinzugefügt
475 475 label_updated_time: Vor %s aktualisiert
476 476 label_jump_to_a_project: Zu einem Projekt springen...
477 477 label_file_plural: Dateien
478 478 label_changeset_plural: Changesets
479 479 label_default_columns: Default-Spalten
480 480 label_no_change_option: (Keine Änderung)
481 481 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
482 482 label_theme: Stil
483 483 label_default: Default
484 484 label_search_titles_only: Nur Titel durchsuchen
485 485 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
486 486 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
487 487 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
488 488 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
489 489 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
490 490 label_registration_manual_activation: Manuelle Kontoaktivierung
491 491 label_registration_automatic_activation: Automatische Kontoaktivierung
492 492 label_display_per_page: 'Pro Seite: %s'
493 493 label_age: Geändert vor
494 494 label_change_properties: Eigenschaften ändern
495 495 label_general: Allgemein
496 496 label_more: Mehr
497 497 label_scm: Versionskontrollsystem
498 498 label_plugins: Plugins
499 499 label_ldap_authentication: LDAP-Authentifizierung
500 500 label_downloads_abbr: D/L
501 501 label_optional_description: Beschreibung (optional)
502 502 label_add_another_file: Eine weitere Datei hinzufügen
503 503
504 504 button_login: Anmelden
505 505 button_submit: OK
506 506 button_save: Speichern
507 507 button_check_all: Alles auswählen
508 508 button_uncheck_all: Alles abwählen
509 509 button_delete: Löschen
510 510 button_create: Anlegen
511 511 button_test: Testen
512 512 button_edit: Bearbeiten
513 513 button_add: Hinzufügen
514 514 button_change: Wechseln
515 515 button_apply: Anwenden
516 516 button_clear: Zurücksetzen
517 517 button_lock: Sperren
518 518 button_unlock: Entsperren
519 519 button_download: Download
520 520 button_list: Liste
521 521 button_view: Ansehen
522 522 button_move: Verschieben
523 523 button_back: Zurück
524 524 button_cancel: Abbrechen
525 525 button_activate: Aktivieren
526 526 button_sort: Sortieren
527 527 button_log_time: Aufwand buchen
528 528 button_rollback: Auf diese Version zurücksetzen
529 529 button_watch: Beobachten
530 530 button_unwatch: Nicht beobachten
531 531 button_reply: Antworten
532 532 button_archive: Archivieren
533 533 button_unarchive: Entarchivieren
534 534 button_reset: Zurücksetzen
535 535 button_rename: Umbenennen
536 536 button_change_password: Kennwort ändern
537 537 button_copy: Kopieren
538 538 button_annotate: Mit Anmerkungen versehen
539 539 button_update: Aktualisieren
540 540 button_configure: Konfigurieren
541 541
542 542 status_active: aktiv
543 543 status_registered: angemeldet
544 544 status_locked: gesperrt
545 545
546 546 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
547 547 text_regexp_info: z. B. ^[A-Z0-9]+$
548 548 text_min_max_length_info: 0 heißt keine Beschränkung
549 549 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
550 550 text_workflow_edit: Workflow zum Bearbeiten auswählen
551 551 text_are_you_sure: Sind Sie sicher?
552 552 text_journal_changed: geändert von %s zu %s
553 553 text_journal_set_to: gestellt zu %s
554 554 text_journal_deleted: gelöscht
555 555 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
556 556 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
557 557 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
558 558 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
559 559 text_caracters_maximum: Max. %d Zeichen.
560 560 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
561 561 text_length_between: Länge zwischen %d und %d Zeichen.
562 562 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
563 563 text_unallowed_characters: Nicht erlaubte Zeichen
564 564 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
565 565 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
566 566 text_issue_added: Ticket %s wurde erstellt by %s.
567 567 text_issue_updated: Ticket %s wurde aktualisiert by %s.
568 568 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
569 569 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
570 570 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
571 571 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
572 572 text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z. B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
573 573 text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie sie abändern."
574 574 text_load_default_configuration: Standard-Konfiguration laden
575 575 text_status_changed_by_changeset: Status geändert durch Changeset %s.
576 576 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
577 577 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
578 578 text_default_administrator_account_changed: Administrator-Kennwort geändert
579 579 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
580 580 text_rmagick_available: RMagick verfügbar (optional)
581 581 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
582 582 text_destroy_time_entries: Gebuchte Aufwände löschen
583 583 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
584 584 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
585 585
586 586 default_role_manager: Manager
587 587 default_role_developper: Entwickler
588 588 default_role_reporter: Reporter
589 589 default_tracker_bug: Fehler
590 590 default_tracker_feature: Feature
591 591 default_tracker_support: Unterstützung
592 592 default_issue_status_new: Neu
593 593 default_issue_status_assigned: Zugewiesen
594 594 default_issue_status_resolved: Gelöst
595 595 default_issue_status_feedback: Feedback
596 596 default_issue_status_closed: Erledigt
597 597 default_issue_status_rejected: Abgewiesen
598 598 default_doc_category_user: Benutzerdokumentation
599 599 default_doc_category_tech: Technische Dokumentation
600 600 default_priority_low: Niedrig
601 601 default_priority_normal: Normal
602 602 default_priority_high: Hoch
603 603 default_priority_urgent: Dringend
604 604 default_priority_immediate: Sofort
605 605 default_activity_design: Design
606 606 default_activity_development: Entwicklung
607 607
608 608 enumeration_issue_priorities: Ticket-Prioritäten
609 609 enumeration_doc_categories: Dokumentenkategorien
610 610 enumeration_activities: Aktivitäten (Zeiterfassung)
611 611 setting_activity_days_default: Days displayed on project activity
612 612 label_chronological_order: In chronological order
613 613 field_comments_sorting: Display comments
614 614 label_reverse_chronological_order: In reverse chronological order
615 615 label_preferences: Preferences
616 616 setting_display_subprojects_issues: Display subprojects issues on main projects by default
617 617 label_overall_activity: Overall activity
618 618 setting_default_projects_public: New projects are public by default
@@ -1,618 +1,618
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 day
9 9 actionview_datehelper_time_in_words_day_plural: %d days
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: half a minute
15 15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 20 actionview_instancetag_blank_option: Please select
21 21
22 22 activerecord_error_inclusion: is not included in the list
23 23 activerecord_error_exclusion: is reserved
24 24 activerecord_error_invalid: is invalid
25 25 activerecord_error_confirmation: doesn't match confirmation
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: can't be empty
28 28 activerecord_error_blank: can't be blank
29 29 activerecord_error_too_long: is too long
30 30 activerecord_error_too_short: is too short
31 31 activerecord_error_wrong_length: is the wrong length
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: is not a number
34 34 activerecord_error_not_a_date: is not a valid date
35 35 activerecord_error_greater_than_start_date: must be greater than start date
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Yes'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'yes'
49 49 general_lang_name: 'English'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Account was successfully updated.
57 57 notice_account_invalid_creditentials: Invalid user or password
58 58 notice_account_password_updated: Password was successfully updated.
59 59 notice_account_wrong_password: Wrong password
60 60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
61 61 notice_account_unknown_email: Unknown user.
62 62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
64 64 notice_account_activated: Your account has been activated. You can now log in.
65 65 notice_successful_create: Successful creation.
66 66 notice_successful_update: Successful update.
67 67 notice_successful_delete: Successful deletion.
68 68 notice_successful_connection: Successful connection.
69 69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
70 70 notice_locking_conflict: Data have been updated by another user.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 76 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
77 77 notice_account_pending: "Your account was created and is now pending administrator approval."
78 78 notice_default_data_loaded: Default configuration successfully loaded.
79 79
80 80 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
81 81 error_scm_not_found: "Entry and/or revision doesn't exist in the repository."
82 82 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
83 83 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
84 84
85 mail_subject_lost_password: Your Redmine password
86 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
87 mail_subject_register: Redmine account activation
88 mail_body_register: 'To activate your Redmine account, click on the following link:'
89 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
90 mail_body_account_information: Your Redmine account information
91 mail_subject_account_activation_request: Redmine account activation request
85 mail_subject_lost_password: Your %s password
86 mail_body_lost_password: 'To change your password, click on the following link:'
87 mail_subject_register: Your %s account activation
88 mail_body_register: 'To activate your account, click on the following link:'
89 mail_body_account_information_external: You can use your "%s" account to log in.
90 mail_body_account_information: Your account information
91 mail_subject_account_activation_request: %s account activation request
92 92 mail_body_account_activation_request: 'A new user (%s) has registered. His account is pending your approval:'
93 93
94 94 gui_validation_error: 1 error
95 95 gui_validation_error_plural: %d errors
96 96
97 97 field_name: Name
98 98 field_description: Description
99 99 field_summary: Summary
100 100 field_is_required: Required
101 101 field_firstname: Firstname
102 102 field_lastname: Lastname
103 103 field_mail: Email
104 104 field_filename: File
105 105 field_filesize: Size
106 106 field_downloads: Downloads
107 107 field_author: Author
108 108 field_created_on: Created
109 109 field_updated_on: Updated
110 110 field_field_format: Format
111 111 field_is_for_all: For all projects
112 112 field_possible_values: Possible values
113 113 field_regexp: Regular expression
114 114 field_min_length: Minimum length
115 115 field_max_length: Maximum length
116 116 field_value: Value
117 117 field_category: Category
118 118 field_title: Title
119 119 field_project: Project
120 120 field_issue: Issue
121 121 field_status: Status
122 122 field_notes: Notes
123 123 field_is_closed: Issue closed
124 124 field_is_default: Default value
125 125 field_tracker: Tracker
126 126 field_subject: Subject
127 127 field_due_date: Due date
128 128 field_assigned_to: Assigned to
129 129 field_priority: Priority
130 130 field_fixed_version: Target version
131 131 field_user: User
132 132 field_role: Role
133 133 field_homepage: Homepage
134 134 field_is_public: Public
135 135 field_parent: Subproject of
136 136 field_is_in_chlog: Issues displayed in changelog
137 137 field_is_in_roadmap: Issues displayed in roadmap
138 138 field_login: Login
139 139 field_mail_notification: Email notifications
140 140 field_admin: Administrator
141 141 field_last_login_on: Last connection
142 142 field_language: Language
143 143 field_effective_date: Date
144 144 field_password: Password
145 145 field_new_password: New password
146 146 field_password_confirmation: Confirmation
147 147 field_version: Version
148 148 field_type: Type
149 149 field_host: Host
150 150 field_port: Port
151 151 field_account: Account
152 152 field_base_dn: Base DN
153 153 field_attr_login: Login attribute
154 154 field_attr_firstname: Firstname attribute
155 155 field_attr_lastname: Lastname attribute
156 156 field_attr_mail: Email attribute
157 157 field_onthefly: On-the-fly user creation
158 158 field_start_date: Start
159 159 field_done_ratio: %% Done
160 160 field_auth_source: Authentication mode
161 161 field_hide_mail: Hide my email address
162 162 field_comments: Comment
163 163 field_url: URL
164 164 field_start_page: Start page
165 165 field_subproject: Subproject
166 166 field_hours: Hours
167 167 field_activity: Activity
168 168 field_spent_on: Date
169 169 field_identifier: Identifier
170 170 field_is_filter: Used as a filter
171 171 field_issue_to_id: Related issue
172 172 field_delay: Delay
173 173 field_assignable: Issues can be assigned to this role
174 174 field_redirect_existing_links: Redirect existing links
175 175 field_estimated_hours: Estimated time
176 176 field_column_names: Columns
177 177 field_time_zone: Time zone
178 178 field_searchable: Searchable
179 179 field_default_value: Default value
180 180 field_comments_sorting: Display comments
181 181
182 182 setting_app_title: Application title
183 183 setting_app_subtitle: Application subtitle
184 184 setting_welcome_text: Welcome text
185 185 setting_default_language: Default language
186 186 setting_login_required: Authentication required
187 187 setting_self_registration: Self-registration
188 188 setting_attachment_max_size: Attachment max. size
189 189 setting_issues_export_limit: Issues export limit
190 190 setting_mail_from: Emission email address
191 191 setting_bcc_recipients: Blind carbon copy recipients (bcc)
192 192 setting_host_name: Host name
193 193 setting_text_formatting: Text formatting
194 194 setting_wiki_compression: Wiki history compression
195 195 setting_feeds_limit: Feed content limit
196 196 setting_default_projects_public: New projects are public by default
197 197 setting_autofetch_changesets: Autofetch commits
198 198 setting_sys_api_enabled: Enable WS for repository management
199 199 setting_commit_ref_keywords: Referencing keywords
200 200 setting_commit_fix_keywords: Fixing keywords
201 201 setting_autologin: Autologin
202 202 setting_date_format: Date format
203 203 setting_time_format: Time format
204 204 setting_cross_project_issue_relations: Allow cross-project issue relations
205 205 setting_issue_list_default_columns: Default columns displayed on the issue list
206 206 setting_repositories_encodings: Repositories encodings
207 207 setting_emails_footer: Emails footer
208 208 setting_protocol: Protocol
209 209 setting_per_page_options: Objects per page options
210 210 setting_user_format: Users display format
211 211 setting_activity_days_default: Days displayed on project activity
212 212 setting_display_subprojects_issues: Display subprojects issues on main projects by default
213 213
214 214 project_module_issue_tracking: Issue tracking
215 215 project_module_time_tracking: Time tracking
216 216 project_module_news: News
217 217 project_module_documents: Documents
218 218 project_module_files: Files
219 219 project_module_wiki: Wiki
220 220 project_module_repository: Repository
221 221 project_module_boards: Boards
222 222
223 223 label_user: User
224 224 label_user_plural: Users
225 225 label_user_new: New user
226 226 label_project: Project
227 227 label_project_new: New project
228 228 label_project_plural: Projects
229 229 label_project_all: All Projects
230 230 label_project_latest: Latest projects
231 231 label_issue: Issue
232 232 label_issue_new: New issue
233 233 label_issue_plural: Issues
234 234 label_issue_view_all: View all issues
235 235 label_issues_by: Issues by %s
236 236 label_issue_added: Issue added
237 237 label_issue_updated: Issue updated
238 238 label_document: Document
239 239 label_document_new: New document
240 240 label_document_plural: Documents
241 241 label_document_added: Document added
242 242 label_role: Role
243 243 label_role_plural: Roles
244 244 label_role_new: New role
245 245 label_role_and_permissions: Roles and permissions
246 246 label_member: Member
247 247 label_member_new: New member
248 248 label_member_plural: Members
249 249 label_tracker: Tracker
250 250 label_tracker_plural: Trackers
251 251 label_tracker_new: New tracker
252 252 label_workflow: Workflow
253 253 label_issue_status: Issue status
254 254 label_issue_status_plural: Issue statuses
255 255 label_issue_status_new: New status
256 256 label_issue_category: Issue category
257 257 label_issue_category_plural: Issue categories
258 258 label_issue_category_new: New category
259 259 label_custom_field: Custom field
260 260 label_custom_field_plural: Custom fields
261 261 label_custom_field_new: New custom field
262 262 label_enumerations: Enumerations
263 263 label_enumeration_new: New value
264 264 label_information: Information
265 265 label_information_plural: Information
266 266 label_please_login: Please login
267 267 label_register: Register
268 268 label_password_lost: Lost password
269 269 label_home: Home
270 270 label_my_page: My page
271 271 label_my_account: My account
272 272 label_my_projects: My projects
273 273 label_administration: Administration
274 274 label_login: Sign in
275 275 label_logout: Sign out
276 276 label_help: Help
277 277 label_reported_issues: Reported issues
278 278 label_assigned_to_me_issues: Issues assigned to me
279 279 label_last_login: Last connection
280 280 label_last_updates: Last updated
281 281 label_last_updates_plural: %d last updated
282 282 label_registered_on: Registered on
283 283 label_activity: Activity
284 284 label_overall_activity: Overall activity
285 285 label_new: New
286 286 label_logged_as: Logged as
287 287 label_environment: Environment
288 288 label_authentication: Authentication
289 289 label_auth_source: Authentication mode
290 290 label_auth_source_new: New authentication mode
291 291 label_auth_source_plural: Authentication modes
292 292 label_subproject_plural: Subprojects
293 293 label_min_max_length: Min - Max length
294 294 label_list: List
295 295 label_date: Date
296 296 label_integer: Integer
297 297 label_float: Float
298 298 label_boolean: Boolean
299 299 label_string: Text
300 300 label_text: Long text
301 301 label_attribute: Attribute
302 302 label_attribute_plural: Attributes
303 303 label_download: %d Download
304 304 label_download_plural: %d Downloads
305 305 label_no_data: No data to display
306 306 label_change_status: Change status
307 307 label_history: History
308 308 label_attachment: File
309 309 label_attachment_new: New file
310 310 label_attachment_delete: Delete file
311 311 label_attachment_plural: Files
312 312 label_file_added: File added
313 313 label_report: Report
314 314 label_report_plural: Reports
315 315 label_news: News
316 316 label_news_new: Add news
317 317 label_news_plural: News
318 318 label_news_latest: Latest news
319 319 label_news_view_all: View all news
320 320 label_news_added: News added
321 321 label_change_log: Change log
322 322 label_settings: Settings
323 323 label_overview: Overview
324 324 label_version: Version
325 325 label_version_new: New version
326 326 label_version_plural: Versions
327 327 label_confirmation: Confirmation
328 328 label_export_to: 'Also available in:'
329 329 label_read: Read...
330 330 label_public_projects: Public projects
331 331 label_open_issues: open
332 332 label_open_issues_plural: open
333 333 label_closed_issues: closed
334 334 label_closed_issues_plural: closed
335 335 label_total: Total
336 336 label_permissions: Permissions
337 337 label_current_status: Current status
338 338 label_new_statuses_allowed: New statuses allowed
339 339 label_all: all
340 340 label_none: none
341 341 label_nobody: nobody
342 342 label_next: Next
343 343 label_previous: Previous
344 344 label_used_by: Used by
345 345 label_details: Details
346 346 label_add_note: Add a note
347 347 label_per_page: Per page
348 348 label_calendar: Calendar
349 349 label_months_from: months from
350 350 label_gantt: Gantt
351 351 label_internal: Internal
352 352 label_last_changes: last %d changes
353 353 label_change_view_all: View all changes
354 354 label_personalize_page: Personalize this page
355 355 label_comment: Comment
356 356 label_comment_plural: Comments
357 357 label_comment_add: Add a comment
358 358 label_comment_added: Comment added
359 359 label_comment_delete: Delete comments
360 360 label_query: Custom query
361 361 label_query_plural: Custom queries
362 362 label_query_new: New query
363 363 label_filter_add: Add filter
364 364 label_filter_plural: Filters
365 365 label_equals: is
366 366 label_not_equals: is not
367 367 label_in_less_than: in less than
368 368 label_in_more_than: in more than
369 369 label_in: in
370 370 label_today: today
371 371 label_all_time: all time
372 372 label_yesterday: yesterday
373 373 label_this_week: this week
374 374 label_last_week: last week
375 375 label_last_n_days: last %d days
376 376 label_this_month: this month
377 377 label_last_month: last month
378 378 label_this_year: this year
379 379 label_date_range: Date range
380 380 label_less_than_ago: less than days ago
381 381 label_more_than_ago: more than days ago
382 382 label_ago: days ago
383 383 label_contains: contains
384 384 label_not_contains: doesn't contain
385 385 label_day_plural: days
386 386 label_repository: Repository
387 387 label_repository_plural: Repositories
388 388 label_browse: Browse
389 389 label_modification: %d change
390 390 label_modification_plural: %d changes
391 391 label_revision: Revision
392 392 label_revision_plural: Revisions
393 393 label_associated_revisions: Associated revisions
394 394 label_added: added
395 395 label_modified: modified
396 396 label_deleted: deleted
397 397 label_latest_revision: Latest revision
398 398 label_latest_revision_plural: Latest revisions
399 399 label_view_revisions: View revisions
400 400 label_max_size: Maximum size
401 401 label_on: 'on'
402 402 label_sort_highest: Move to top
403 403 label_sort_higher: Move up
404 404 label_sort_lower: Move down
405 405 label_sort_lowest: Move to bottom
406 406 label_roadmap: Roadmap
407 407 label_roadmap_due_in: Due in
408 408 label_roadmap_overdue: %s late
409 409 label_roadmap_no_issues: No issues for this version
410 410 label_search: Search
411 411 label_result_plural: Results
412 412 label_all_words: All words
413 413 label_wiki: Wiki
414 414 label_wiki_edit: Wiki edit
415 415 label_wiki_edit_plural: Wiki edits
416 416 label_wiki_page: Wiki page
417 417 label_wiki_page_plural: Wiki pages
418 418 label_index_by_title: Index by title
419 419 label_index_by_date: Index by date
420 420 label_current_version: Current version
421 421 label_preview: Preview
422 422 label_feed_plural: Feeds
423 423 label_changes_details: Details of all changes
424 424 label_issue_tracking: Issue tracking
425 425 label_spent_time: Spent time
426 426 label_f_hour: %.2f hour
427 427 label_f_hour_plural: %.2f hours
428 428 label_time_tracking: Time tracking
429 429 label_change_plural: Changes
430 430 label_statistics: Statistics
431 431 label_commits_per_month: Commits per month
432 432 label_commits_per_author: Commits per author
433 433 label_view_diff: View differences
434 434 label_diff_inline: inline
435 435 label_diff_side_by_side: side by side
436 436 label_options: Options
437 437 label_copy_workflow_from: Copy workflow from
438 438 label_permissions_report: Permissions report
439 439 label_watched_issues: Watched issues
440 440 label_related_issues: Related issues
441 441 label_applied_status: Applied status
442 442 label_loading: Loading...
443 443 label_relation_new: New relation
444 444 label_relation_delete: Delete relation
445 445 label_relates_to: related to
446 446 label_duplicates: duplicates
447 447 label_blocks: blocks
448 448 label_blocked_by: blocked by
449 449 label_precedes: precedes
450 450 label_follows: follows
451 451 label_end_to_start: end to start
452 452 label_end_to_end: end to end
453 453 label_start_to_start: start to start
454 454 label_start_to_end: start to end
455 455 label_stay_logged_in: Stay logged in
456 456 label_disabled: disabled
457 457 label_show_completed_versions: Show completed versions
458 458 label_me: me
459 459 label_board: Forum
460 460 label_board_new: New forum
461 461 label_board_plural: Forums
462 462 label_topic_plural: Topics
463 463 label_message_plural: Messages
464 464 label_message_last: Last message
465 465 label_message_new: New message
466 466 label_message_posted: Message added
467 467 label_reply_plural: Replies
468 468 label_send_information: Send account information to the user
469 469 label_year: Year
470 470 label_month: Month
471 471 label_week: Week
472 472 label_date_from: From
473 473 label_date_to: To
474 474 label_language_based: Based on user's language
475 475 label_sort_by: Sort by %s
476 476 label_send_test_email: Send a test email
477 477 label_feeds_access_key_created_on: RSS access key created %s ago
478 478 label_module_plural: Modules
479 479 label_added_time_by: Added by %s %s ago
480 480 label_updated_time: Updated %s ago
481 481 label_jump_to_a_project: Jump to a project...
482 482 label_file_plural: Files
483 483 label_changeset_plural: Changesets
484 484 label_default_columns: Default columns
485 485 label_no_change_option: (No change)
486 486 label_bulk_edit_selected_issues: Bulk edit selected issues
487 487 label_theme: Theme
488 488 label_default: Default
489 489 label_search_titles_only: Search titles only
490 490 label_user_mail_option_all: "For any event on all my projects"
491 491 label_user_mail_option_selected: "For any event on the selected projects only..."
492 492 label_user_mail_option_none: "Only for things I watch or I'm involved in"
493 493 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
494 494 label_registration_activation_by_email: account activation by email
495 495 label_registration_manual_activation: manual account activation
496 496 label_registration_automatic_activation: automatic account activation
497 497 label_display_per_page: 'Per page: %s'
498 498 label_age: Age
499 499 label_change_properties: Change properties
500 500 label_general: General
501 501 label_more: More
502 502 label_scm: SCM
503 503 label_plugins: Plugins
504 504 label_ldap_authentication: LDAP authentication
505 505 label_downloads_abbr: D/L
506 506 label_optional_description: Optional description
507 507 label_add_another_file: Add another file
508 508 label_preferences: Preferences
509 509 label_chronological_order: In chronological order
510 510 label_reverse_chronological_order: In reverse chronological order
511 511
512 512 button_login: Login
513 513 button_submit: Submit
514 514 button_save: Save
515 515 button_check_all: Check all
516 516 button_uncheck_all: Uncheck all
517 517 button_delete: Delete
518 518 button_create: Create
519 519 button_test: Test
520 520 button_edit: Edit
521 521 button_add: Add
522 522 button_change: Change
523 523 button_apply: Apply
524 524 button_clear: Clear
525 525 button_lock: Lock
526 526 button_unlock: Unlock
527 527 button_download: Download
528 528 button_list: List
529 529 button_view: View
530 530 button_move: Move
531 531 button_back: Back
532 532 button_cancel: Cancel
533 533 button_activate: Activate
534 534 button_sort: Sort
535 535 button_log_time: Log time
536 536 button_rollback: Rollback to this version
537 537 button_watch: Watch
538 538 button_unwatch: Unwatch
539 539 button_reply: Reply
540 540 button_archive: Archive
541 541 button_unarchive: Unarchive
542 542 button_reset: Reset
543 543 button_rename: Rename
544 544 button_change_password: Change password
545 545 button_copy: Copy
546 546 button_annotate: Annotate
547 547 button_update: Update
548 548 button_configure: Configure
549 549
550 550 status_active: active
551 551 status_registered: registered
552 552 status_locked: locked
553 553
554 554 text_select_mail_notifications: Select actions for which email notifications should be sent.
555 555 text_regexp_info: eg. ^[A-Z0-9]+$
556 556 text_min_max_length_info: 0 means no restriction
557 557 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
558 558 text_workflow_edit: Select a role and a tracker to edit the workflow
559 559 text_are_you_sure: Are you sure ?
560 560 text_journal_changed: changed from %s to %s
561 561 text_journal_set_to: set to %s
562 562 text_journal_deleted: deleted
563 563 text_tip_task_begin_day: task beginning this day
564 564 text_tip_task_end_day: task ending this day
565 565 text_tip_task_begin_end_day: task beginning and ending this day
566 566 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
567 567 text_caracters_maximum: %d characters maximum.
568 568 text_caracters_minimum: Must be at least %d characters long.
569 569 text_length_between: Length between %d and %d characters.
570 570 text_tracker_no_workflow: No workflow defined for this tracker
571 571 text_unallowed_characters: Unallowed characters
572 572 text_comma_separated: Multiple values allowed (comma separated).
573 573 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
574 574 text_issue_added: Issue %s has been reported by %s.
575 575 text_issue_updated: Issue %s has been updated by %s.
576 576 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
577 577 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
578 578 text_issue_category_destroy_assignments: Remove category assignments
579 579 text_issue_category_reassign_to: Reassign issues to this category
580 580 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
581 581 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
582 582 text_load_default_configuration: Load the default configuration
583 583 text_status_changed_by_changeset: Applied in changeset %s.
584 584 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
585 585 text_select_project_modules: 'Select modules to enable for this project:'
586 586 text_default_administrator_account_changed: Default administrator account changed
587 587 text_file_repository_writable: File repository writable
588 588 text_rmagick_available: RMagick available (optional)
589 589 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
590 590 text_destroy_time_entries: Delete reported hours
591 591 text_assign_time_entries_to_project: Assign reported hours to the project
592 592 text_reassign_time_entries: 'Reassign reported hours to this issue:'
593 593
594 594 default_role_manager: Manager
595 595 default_role_developper: Developer
596 596 default_role_reporter: Reporter
597 597 default_tracker_bug: Bug
598 598 default_tracker_feature: Feature
599 599 default_tracker_support: Support
600 600 default_issue_status_new: New
601 601 default_issue_status_assigned: Assigned
602 602 default_issue_status_resolved: Resolved
603 603 default_issue_status_feedback: Feedback
604 604 default_issue_status_closed: Closed
605 605 default_issue_status_rejected: Rejected
606 606 default_doc_category_user: User documentation
607 607 default_doc_category_tech: Technical documentation
608 608 default_priority_low: Low
609 609 default_priority_normal: Normal
610 610 default_priority_high: High
611 611 default_priority_urgent: Urgent
612 612 default_priority_immediate: Immediate
613 613 default_activity_design: Design
614 614 default_activity_development: Development
615 615
616 616 enumeration_issue_priorities: Issue priorities
617 617 enumeration_doc_categories: Document categories
618 618 enumeration_activities: Activities (time tracking)
@@ -1,620 +1,620
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 día
9 9 actionview_datehelper_time_in_words_day_plural: %d días
10 10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
11 11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: medio minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 20 actionview_instancetag_blank_option: Por favor seleccione
21 21
22 22 activerecord_error_inclusion: no está incluído en la lista
23 23 activerecord_error_exclusion: está reservado
24 24 activerecord_error_invalid: no es válido
25 25 activerecord_error_confirmation: la confirmación no coincide
26 26 activerecord_error_accepted: debe ser aceptado
27 27 activerecord_error_empty: no puede estar vacío
28 28 activerecord_error_blank: no puede estar en blanco
29 29 activerecord_error_too_long: es demasiado largo
30 30 activerecord_error_too_short: es demasiado corto
31 31 activerecord_error_wrong_length: la longitud es incorrecta
32 32 activerecord_error_taken: ya está siendo usado
33 33 activerecord_error_not_a_number: no es un número
34 34 activerecord_error_not_a_date: no es una fecha válida
35 35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 36 activerecord_error_not_same_project: no pertenece al mismo proyecto
37 37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
38 38
39 39 general_fmt_age: %d año
40 40 general_fmt_age_plural: %d años
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Sí'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'sí'
49 49 general_lang_name: 'Español'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-15
52 52 general_pdf_encoding: ISO-8859-15
53 53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Cuenta actualizada correctamente.
57 57 notice_account_invalid_creditentials: Usuario o contraseña inválido.
58 58 notice_account_password_updated: Contraseña modificada correctamente.
59 59 notice_account_wrong_password: Contraseña incorrecta.
60 60 notice_account_register_done: Cuenta creada correctamente.
61 61 notice_account_unknown_email: Usuario desconocido.
62 62 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
63 63 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
64 64 notice_account_activated: Su cuenta ha sido activada. Ahora se encuentra conectado.
65 65 notice_successful_create: Creación correcta.
66 66 notice_successful_update: Modificación correcta.
67 67 notice_successful_delete: Borrado correcto.
68 68 notice_successful_connection: Conexión correcta.
69 69 notice_file_not_found: La página a la que intentas acceder no existe.
70 70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
71 71 notice_not_authorized: No tiene autorización para acceder a esta página.
72 72
73 73 error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio."
74 74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
75 75
76 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
77 mail_body_lost_password: 'Para cambiar su contraseña de Redmine, haga click en el siguiente enlace:'
78 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
79 mail_body_register: 'Para activar su cuenta Redmine, haga click en el siguiente enlace:'
76 mail_subject_lost_password: Tu contraseña del %s
77 mail_body_lost_password: 'Para cambiar su contraseña, haga click en el siguiente enlace:'
78 mail_subject_register: Activación de la cuenta del %s
79 mail_body_register: 'Para activar su cuenta, haga click en el siguiente enlace:'
80 80
81 81 gui_validation_error: 1 error
82 82 gui_validation_error_plural: %d errores
83 83
84 84 field_name: Nombre
85 85 field_description: Descripción
86 86 field_summary: Resumen
87 87 field_is_required: Obligatorio
88 88 field_firstname: Nombre
89 89 field_lastname: Apellido
90 90 field_mail: Correo electrónico
91 91 field_filename: Fichero
92 92 field_filesize: Tamaño
93 93 field_downloads: Descargas
94 94 field_author: Autor
95 95 field_created_on: Creado
96 96 field_updated_on: Actualizado
97 97 field_field_format: Formato
98 98 field_is_for_all: Para todos los proyectos
99 99 field_possible_values: Valores posibles
100 100 field_regexp: Expresión regular
101 101 field_min_length: Longitud mínima
102 102 field_max_length: Longitud máxima
103 103 field_value: Valor
104 104 field_category: Categoría
105 105 field_title: Título
106 106 field_project: Proyecto
107 107 field_issue: Petición
108 108 field_status: Estado
109 109 field_notes: Notas
110 110 field_is_closed: Petición resuelta
111 111 field_is_default: Estado por defecto
112 112 field_tracker: Tracker
113 113 field_subject: Tema
114 114 field_due_date: Fecha fin
115 115 field_assigned_to: Asignado a
116 116 field_priority: Prioridad
117 117 field_fixed_version: Target version
118 118 field_user: Usuario
119 119 field_role: Perfil
120 120 field_homepage: Sitio web
121 121 field_is_public: Público
122 122 field_parent: Proyecto padre
123 123 field_is_in_chlog: Consultar las peticiones en el histórico
124 124 field_is_in_roadmap: Consultar las peticiones en el roadmap
125 125 field_login: Identificador
126 126 field_mail_notification: Notificaciones por correo
127 127 field_admin: Administrador
128 128 field_last_login_on: Última conexión
129 129 field_language: Idioma
130 130 field_effective_date: Fecha
131 131 field_password: Contraseña
132 132 field_new_password: Nueva contraseña
133 133 field_password_confirmation: Confirmación
134 134 field_version: Versión
135 135 field_type: Tipo
136 136 field_host: Anfitrión
137 137 field_port: Puerto
138 138 field_account: Cuenta
139 139 field_base_dn: DN base
140 140 field_attr_login: Cualidad del identificador
141 141 field_attr_firstname: Cualidad del nombre
142 142 field_attr_lastname: Cualidad del apellido
143 143 field_attr_mail: Cualidad del Email
144 144 field_onthefly: Creación del usuario "al vuelo"
145 145 field_start_date: Fecha de inicio
146 146 field_done_ratio: %% Realizado
147 147 field_auth_source: Modo de identificación
148 148 field_hide_mail: Ocultar mi dirección de correo
149 149 field_comment: Comentario
150 150 field_url: URL
151 151 field_start_page: Página principal
152 152 field_subproject: Proyecto secundario
153 153 field_hours: Horas
154 154 field_activity: Actividad
155 155 field_spent_on: Fecha
156 156 field_identifier: Identificador
157 157 field_is_filter: Usado como filtro
158 158 field_issue_to_id: Petición Relacionada
159 159 field_delay: Retraso
160 160 field_default_value: Estado por defecto
161 161
162 162 setting_app_title: Título de la aplicación
163 163 setting_app_subtitle: Subtítulo de la aplicación
164 164 setting_welcome_text: Texto de bienvenida
165 165 setting_default_language: Idioma por defecto
166 166 setting_login_required: Se requiere identificación
167 167 setting_self_registration: Registro permitido
168 168 setting_attachment_max_size: Tamaño máximo del fichero
169 169 setting_issues_export_limit: Límite de exportación de peticiones
170 170 setting_mail_from: Correo desde el que enviar mensajes
171 171 setting_host_name: Nombre de host
172 172 setting_text_formatting: Formato de texto
173 173 setting_wiki_compression: Compresión del historial de Wiki
174 174 setting_feeds_limit: Límite de contenido para sindicación
175 175 setting_autofetch_changesets: Autorellenar los commits del repositorio
176 176 setting_sys_api_enabled: Habilitar WS para la gestión del repositorio
177 177 setting_commit_ref_keywords: Palabras clave para la referencia
178 178 setting_commit_fix_keywords: Palabras clave para la corrección
179 179 setting_autologin: Conexión automática
180 180 setting_date_format: Formato de la fecha
181 181
182 182 label_user: Usuario
183 183 label_user_plural: Usuarios
184 184 label_user_new: Nuevo usuario
185 185 label_project: Proyecto
186 186 label_project_new: Nuevo proyecto
187 187 label_project_plural: Proyectos
188 188 label_project_all: Todos los proyectos
189 189 label_project_latest: Últimos proyectos
190 190 label_issue: Petición
191 191 label_issue_new: Nueva petición
192 192 label_issue_plural: Peticiones
193 193 label_issue_view_all: Ver todas las peticiones
194 194 label_document: Documento
195 195 label_document_new: Nuevo documento
196 196 label_document_plural: Documentos
197 197 label_role: Perfil
198 198 label_role_plural: Perfiles
199 199 label_role_new: Nuevo perfil
200 200 label_role_and_permissions: Perfiles y permisos
201 201 label_member: Miembro
202 202 label_member_new: Nuevo miembro
203 203 label_member_plural: Miembros
204 204 label_tracker: Tracker
205 205 label_tracker_plural: Trackers
206 206 label_tracker_new: Nuevo tracker
207 207 label_workflow: Flujo de trabajo
208 208 label_issue_status: Estado de petición
209 209 label_issue_status_plural: Estados de las peticiones
210 210 label_issue_status_new: Nuevo estado
211 211 label_issue_category: Categoría de las peticiones
212 212 label_issue_category_plural: Categorías de las peticiones
213 213 label_issue_category_new: Nueva categoría
214 214 label_custom_field: Campo personalizado
215 215 label_custom_field_plural: Campos personalizados
216 216 label_custom_field_new: Nuevo campo personalizado
217 217 label_enumerations: Listas de valores
218 218 label_enumeration_new: Nuevo valor
219 219 label_information: Información
220 220 label_information_plural: Información
221 221 label_please_login: Conexión
222 222 label_register: Registrar
223 223 label_password_lost: ¿Olvidaste la contraseña?
224 224 label_home: Inicio
225 225 label_my_page: Mi página
226 226 label_my_account: Mi cuenta
227 227 label_my_projects: Mis proyectos
228 228 label_administration: Administración
229 229 label_login: Conexión
230 230 label_logout: Desconexión
231 231 label_help: Ayuda
232 232 label_reported_issues: Peticiones registradas por mí
233 233 label_assigned_to_me_issues: Peticiones que me están asignadas
234 234 label_last_login: Última conexión
235 235 label_last_updates: Actualizado
236 236 label_last_updates_plural: %d Actualizados
237 237 label_registered_on: Inscrito el
238 238 label_activity: Actividad
239 239 label_new: Nuevo
240 240 label_logged_as: Conectado como
241 241 label_environment: Entorno
242 242 label_authentication: Autenticación
243 243 label_auth_source: Modo de autenticación
244 244 label_auth_source_new: Nuevo modo de autenticación
245 245 label_auth_source_plural: Modos de autenticación
246 246 label_subproject_plural: Proyectos secundarios
247 247 label_min_max_length: Longitud mín - máx
248 248 label_list: Lista
249 249 label_date: Fecha
250 250 label_integer: Número
251 251 label_boolean: Boleano
252 252 label_string: Texto
253 253 label_text: Texto largo
254 254 label_attribute: Cualidad
255 255 label_attribute_plural: Cualidades
256 256 label_download: %d Descarga
257 257 label_download_plural: %d Descargas
258 258 label_no_data: Ningun dato a mostrar
259 259 label_change_status: Cambiar el estado
260 260 label_history: Histórico
261 261 label_attachment: Fichero
262 262 label_attachment_new: Nuevo fichero
263 263 label_attachment_delete: Borrar el fichero
264 264 label_attachment_plural: Ficheros
265 265 label_report: Informe
266 266 label_report_plural: Informes
267 267 label_news: Noticia
268 268 label_news_new: Nueva noticia
269 269 label_news_plural: Noticias
270 270 label_news_latest: Últimas noticias
271 271 label_news_view_all: Ver todas las noticias
272 272 label_change_log: Cambios
273 273 label_settings: Configuración
274 274 label_overview: Vistazo
275 275 label_version: Versión
276 276 label_version_new: Nueva versión
277 277 label_version_plural: Versiones
278 278 label_confirmation: Confirmación
279 279 label_export_to: Exportar a
280 280 label_read: Leer...
281 281 label_public_projects: Proyectos públicos
282 282 label_open_issues: abierta
283 283 label_open_issues_plural: abiertas
284 284 label_closed_issues: cerrada
285 285 label_closed_issues_plural: cerradas
286 286 label_total: Total
287 287 label_permissions: Permisos
288 288 label_current_status: Estado actual
289 289 label_new_statuses_allowed: Nuevos estados autorizados
290 290 label_all: todos
291 291 label_none: ninguno
292 292 label_next: Próximo
293 293 label_previous: Anterior
294 294 label_used_by: Utilizado por
295 295 label_details: Detalles
296 296 label_add_note: Añadir una nota
297 297 label_per_page: Por la página
298 298 label_calendar: Calendario
299 299 label_months_from: meses de
300 300 label_gantt: Gantt
301 301 label_internal: Interno
302 302 label_last_changes: %d cambios del último
303 303 label_change_view_all: Ver todos los cambios
304 304 label_personalize_page: Personalizar esta página
305 305 label_comment: Comentario
306 306 label_comment_plural: Comentarios
307 307 label_comment_add: Añadir un comentario
308 308 label_comment_added: Comentario añadido
309 309 label_comment_delete: Borrar comentarios
310 310 label_query: Consulta personalizada
311 311 label_query_plural: Consultas personalizadas
312 312 label_query_new: Nueva consulta
313 313 label_filter_add: Añadir el filtro
314 314 label_filter_plural: Filtros
315 315 label_equals: igual
316 316 label_not_equals: no igual
317 317 label_in_less_than: en menos que
318 318 label_in_more_than: en más que
319 319 label_in: en
320 320 label_today: hoy
321 321 label_less_than_ago: hace menos de
322 322 label_more_than_ago: hace más de
323 323 label_ago: hace
324 324 label_contains: contiene
325 325 label_not_contains: no contiene
326 326 label_day_plural: días
327 327 label_repository: Repositorio
328 328 label_browse: Hojear
329 329 label_modification: %d modificación
330 330 label_modification_plural: %d modificaciones
331 331 label_revision: Revisión
332 332 label_revision_plural: Revisiones
333 333 label_added: añadido
334 334 label_modified: modificado
335 335 label_deleted: suprimido
336 336 label_latest_revision: La revisión más actual
337 337 label_latest_revision_plural: Las revisiones más actuales
338 338 label_view_revisions: Ver las revisiones
339 339 label_max_size: Tamaño máximo
340 340 label_on: de
341 341 label_sort_highest: Primero
342 342 label_sort_higher: Subir
343 343 label_sort_lower: Bajar
344 344 label_sort_lowest: Último
345 345 label_roadmap: Roadmap
346 346 label_roadmap_due_in: Finaliza en
347 347 label_roadmap_no_issues: No hay peticiones para esta versión
348 348 label_search: Búsqueda
349 349 label_result: %d resultado
350 350 label_result_plural: Resultados
351 351 label_all_words: Todas las palabras
352 352 label_wiki: Wiki
353 353 label_wiki_edit: Wiki edicción
354 354 label_wiki_edit_plural: Wiki edicciones
355 355 label_wiki_page: Wiki página
356 356 label_wiki_page_plural: Wiki páginas
357 357 label_page_index: Índice
358 358 label_current_version: Versión actual
359 359 label_preview: Previsualizar
360 360 label_feed_plural: Feeds
361 361 label_changes_details: Detalles de todos los cambios
362 362 label_issue_tracking: Peticiones
363 363 label_spent_time: Tiempo dedicado
364 364 label_f_hour: %.2f hora
365 365 label_f_hour_plural: %.2f horas
366 366 label_time_tracking: Tiempo tracking
367 367 label_change_plural: Cambios
368 368 label_statistics: Estadísticas
369 369 label_commits_per_month: Commits por mes
370 370 label_commits_per_author: Commits por autor
371 371 label_view_diff: Ver diferencias
372 372 label_diff_inline: en línea
373 373 label_diff_side_by_side: cara a cara
374 374 label_options: Opciones
375 375 label_copy_workflow_from: Copiar workflow desde
376 376 label_permissions_report: Informe de permisos
377 377 label_watched_issues: Peticiones monitorizadas
378 378 label_related_issues: Peticiones relacionadas
379 379 label_applied_status: Aplicar estado
380 380 label_loading: Cargando...
381 381 label_relation_new: Nueva relación
382 382 label_relation_delete: Eliminar relación
383 383 label_relates_to: relacionada con
384 384 label_duplicates: duplicada de
385 385 label_blocks: bloquea a
386 386 label_blocked_by: bloqueado por
387 387 label_precedes: anterior a
388 388 label_follows: posterior a
389 389 label_end_to_start: fin a principio
390 390 label_end_to_end: fin a fin
391 391 label_start_to_start: principio a principio
392 392 label_start_to_end: principio a fin
393 393 label_stay_logged_in: Recordar conexión
394 394 label_disabled: deshabilitado
395 395 label_show_completed_versions: Muestra las versiones completas
396 396 label_me: yo mismo
397 397 label_board: Foro
398 398 label_board_new: Nuevo foro
399 399 label_board_plural: Foros
400 400 label_topic_plural: Temas
401 401 label_message_plural: Mensajes
402 402 label_message_last: Último mensaje
403 403 label_message_new: Nuevo mensaje
404 404 label_reply_plural: Respuestas
405 405 label_send_information: Enviar información de la cuenta al usuario
406 406 label_year: Año
407 407 label_month: Mes
408 408 label_week: Semana
409 409 label_date_from: Desde
410 410 label_date_to: Hasta
411 411 label_language_based: Badado en el idioma
412 412
413 413 button_login: Conexión
414 414 button_submit: Aceptar
415 415 button_save: Guardar
416 416 button_check_all: Seleccionar todo
417 417 button_uncheck_all: No seleccionar nada
418 418 button_delete: Borrar
419 419 button_create: Crear
420 420 button_test: Probar
421 421 button_edit: Modificar
422 422 button_add: Añadir
423 423 button_change: Cambiar
424 424 button_apply: Aceptar
425 425 button_clear: Anular
426 426 button_lock: Bloquear
427 427 button_unlock: Desbloquear
428 428 button_download: Descargar
429 429 button_list: Listar
430 430 button_view: Ver
431 431 button_move: Mover
432 432 button_back: Atrás
433 433 button_cancel: Cancelar
434 434 button_activate: Activar
435 435 button_sort: Clasificar
436 436 button_log_time: Tiempo dedicado
437 437 button_rollback: Volver a esta versión
438 438 button_watch: Monitorizar
439 439 button_unwatch: No monitorizar
440 440 button_reply: Responder
441 441 button_archive: Archivar
442 442 button_unarchive: Desarchivar
443 443
444 444 status_active: activo
445 445 status_registered: registrado
446 446 status_locked: bloqueado
447 447
448 448 text_select_mail_notifications: Seleccionar los eventos a notificar
449 449 text_regexp_info: eg. ^[A-Z0-9]+$
450 450 text_min_max_length_info: 0 para ninguna restricción
451 451 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
452 452 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
453 453 text_are_you_sure: ¿ Estás seguro ?
454 454 text_journal_changed: cambiado de %s a %s
455 455 text_journal_set_to: fijado a %s
456 456 text_journal_deleted: suprimido
457 457 text_tip_task_begin_day: tarea que comienza este día
458 458 text_tip_task_end_day: tarea que termina este día
459 459 text_tip_task_begin_end_day: tarea que comienza y termina este día
460 460 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
461 461 text_caracters_maximum: %d carácteres como máximo.
462 462 text_length_between: Longitud entre %d y %d carácteres.
463 463 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
464 464 text_unallowed_characters: Carácteres no permitidos
465 465 text_comma_separated: Múltiples valores permitidos (separados por coma).
466 466 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
467 467
468 468 default_role_manager: Jefe de proyecto
469 469 default_role_developper: Desarrollador
470 470 default_role_reporter: Informador
471 471 default_tracker_bug: Errores
472 472 default_tracker_feature: Tareas
473 473 default_tracker_support: Soporte
474 474 default_issue_status_new: Nueva
475 475 default_issue_status_assigned: Asignada
476 476 default_issue_status_resolved: Resuelta
477 477 default_issue_status_feedback: Comentarios
478 478 default_issue_status_closed: Cerrada
479 479 default_issue_status_rejected: Rechazada
480 480 default_doc_category_user: Documentación de usuario
481 481 default_doc_category_tech: Documentación técnica
482 482 default_priority_low: Baja
483 483 default_priority_normal: Normal
484 484 default_priority_high: Alta
485 485 default_priority_urgent: Urgente
486 486 default_priority_immediate: Inmediata
487 487 default_activity_design: Diseño
488 488 default_activity_development: Desarrollo
489 489
490 490 enumeration_issue_priorities: Prioridad de las peticiones
491 491 enumeration_doc_categories: Categorías del documento
492 492 enumeration_activities: Actividades (tiempo dedicado)
493 493 label_index_by_date: Índice por fecha
494 494 field_column_names: Columnas
495 495 button_rename: Renombrar
496 496 text_issue_category_destroy_question: Algunas peticiones (%d) están asignadas a esta categoría. ¿Qué desea hacer?
497 497 label_feeds_access_key_created_on: Clave de acceso por RSS creada hace %s
498 498 label_default_columns: Columnas por defecto
499 499 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
500 500 label_roadmap_overdue: %s tarde
501 501 label_module_plural: Módulos
502 502 label_this_week: esta semana
503 503 label_index_by_title: Índice por título
504 504 label_jump_to_a_project: Ir al proyecto...
505 505 field_assignable: Se pueden asignar peticiones a este perfil
506 506 label_sort_by: Ordenar por %s
507 507 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
508 508 text_issue_updated: La petición %s ha sido actualizada por %s.
509 509 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada
510 510 field_redirect_existing_links: Redireccionar enlaces existentes
511 511 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
512 512 notice_email_sent: Se ha enviado un correo a %s
513 513 text_issue_added: Petición añadida por %s.
514 514 field_comments: Comentario
515 515 label_file_plural: Archivos
516 516 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
517 517 notice_email_error: Ha ocurrido un error mientras enviando el correo (%s)
518 518 label_updated_time: Actualizado hace %s
519 519 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
520 520 label_send_test_email: Enviar un correo de prueba
521 521 button_reset: Reestablecer
522 522 label_added_time_by: Añadido por %s hace %s
523 523 field_estimated_hours: Tiempo estimado
524 524 label_changeset_plural: Cambios
525 525 setting_repositories_encodings: Codificaciones del repositorio
526 526 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
527 527 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
528 528 label_no_change_option: (Sin cambios)
529 529 notice_failed_to_save_issues: "Imposible salvar %s peticion(es) en %d seleccionado: %s."
530 530 label_theme: Tema
531 531 label_default: Por defecto
532 532 label_search_titles_only: Buscar sólo en títulos
533 533 label_nobody: nadie
534 534 button_change_password: Cambiar contraseña
535 535 text_user_mail_option: "En los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, peticiones de las que usted sea autor o asignadas a usted)."
536 536 label_user_mail_option_selected: "Para cualquier evento del proyecto seleccionado..."
537 537 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
538 538 label_user_mail_option_none: "Sólo para elementos monitorizados o relacionados conmigo"
539 539 setting_emails_footer: Pie de mensajes
540 540 label_float: Flotante
541 541 button_copy: Copiar
542 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse a Redmine.
543 mail_body_account_information: Información sobre su cuenta de Redmine
542 mail_body_account_information_external: Puede usar su cuenta "%s" para conectarse.
543 mail_body_account_information: Información sobre su cuenta
544 544 setting_protocol: Protocolo
545 545 text_caracters_minimum: %d carácteres como mínimo
546 546 field_time_zone: Zona horaria
547 547 label_registration_activation_by_email: activación de cuenta por correo
548 548 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
549 mail_subject_account_activation_request: Petición de activación de cuenta Redmine
549 mail_subject_account_activation_request: Petición de activación de cuenta %s
550 550 mail_body_account_activation_request: "Un nuevo usuario (%s) ha sido registrado. Esta cuenta está pendiende de aprobación"
551 551 label_registration_automatic_activation: activación automática de cuenta
552 552 label_registration_manual_activation: activación manual de cuenta
553 553 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte de administrador"
554 554 setting_time_format: Formato de hora
555 555 setting_bcc_recipients: Ocultar las copias de carbon (bcc)
556 556 button_annotate: Anotar
557 557 label_issues_by: Peticiones por %s
558 558 field_searchable: Incluir en las búsquedas
559 559 label_display_per_page: 'Por página: %s'
560 560 setting_per_page_options: Objetos por página
561 561 label_age: Edad
562 562 notice_default_data_loaded: Default configuration successfully loaded.
563 563 text_load_default_configuration: Load the default configuration
564 564 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
565 565 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
566 566 button_update: Update
567 567 label_change_properties: Change properties
568 568 label_general: General
569 569 label_repository_plural: Repositories
570 570 label_associated_revisions: Associated revisions
571 571 setting_user_format: Users display format
572 572 text_status_changed_by_changeset: Applied in changeset %s.
573 573 label_more: More
574 574 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
575 575 label_scm: SCM
576 576 text_select_project_modules: 'Select modules to enable for this project:'
577 577 label_issue_added: Issue added
578 578 label_issue_updated: Issue updated
579 579 label_document_added: Document added
580 580 label_message_posted: Message added
581 581 label_file_added: File added
582 582 label_news_added: News added
583 583 project_module_boards: Boards
584 584 project_module_issue_tracking: Issue tracking
585 585 project_module_wiki: Wiki
586 586 project_module_files: Files
587 587 project_module_documents: Documents
588 588 project_module_repository: Repository
589 589 project_module_news: News
590 590 project_module_time_tracking: Time tracking
591 591 text_file_repository_writable: File repository writable
592 592 text_default_administrator_account_changed: Default administrator account changed
593 593 text_rmagick_available: RMagick available (optional)
594 594 button_configure: Configure
595 595 label_plugins: Plugins
596 596 label_ldap_authentication: LDAP authentication
597 597 label_downloads_abbr: D/L
598 598 label_this_month: this month
599 599 label_last_n_days: last %d days
600 600 label_all_time: all time
601 601 label_this_year: this year
602 602 label_date_range: Date range
603 603 label_last_week: last week
604 604 label_yesterday: yesterday
605 605 label_last_month: last month
606 606 label_add_another_file: Add another file
607 607 label_optional_description: Optional description
608 608 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
609 609 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
610 610 text_assign_time_entries_to_project: Assign reported hours to the project
611 611 text_destroy_time_entries: Delete reported hours
612 612 text_reassign_time_entries: 'Reassign reported hours to this issue:'
613 613 setting_activity_days_default: Days displayed on project activity
614 614 label_chronological_order: In chronological order
615 615 field_comments_sorting: Display comments
616 616 label_reverse_chronological_order: In reverse chronological order
617 617 label_preferences: Preferences
618 618 setting_display_subprojects_issues: Display subprojects issues on main projects by default
619 619 label_overall_activity: Overall activity
620 620 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kesäkuu,Heinäkuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu
5 5 actionview_datehelper_select_month_names_abbr: Tammi,Helmi,Maalis,Huhti,Touko,Kesä,Heinä,Elo,Syys,Loka,Marras,Joulu
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 päivä
9 9 actionview_datehelper_time_in_words_day_plural: %d päivää
10 10 actionview_datehelper_time_in_words_hour_about: noin tunti
11 11 actionview_datehelper_time_in_words_hour_about_plural: noin %d tuntia
12 12 actionview_datehelper_time_in_words_hour_about_single: noin tunnin
13 13 actionview_datehelper_time_in_words_minute: 1 minuutti
14 14 actionview_datehelper_time_in_words_minute_half: puoli minuuttia
15 15 actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuuttia
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuutti
18 18 actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin
19 19 actionview_datehelper_time_in_words_second_less_than_plural: vähemmän kuin %d sekunttia
20 20 actionview_instancetag_blank_option: Valitse, ole hyvä
21 21
22 22 activerecord_error_inclusion: ei ole listalla
23 23 activerecord_error_exclusion: on varattu
24 24 activerecord_error_invalid: ei ole kelpaava
25 25 activerecord_error_confirmation: ei vastaa vahvistusta
26 26 activerecord_error_accepted: tulee hyväksyä
27 27 activerecord_error_empty: ei voi olla tyhjä
28 28 activerecord_error_blank: ei voi olla tyhjä
29 29 activerecord_error_too_long: on liian pitkä
30 30 activerecord_error_too_short: on liian lyhyt
31 31 activerecord_error_wrong_length: on väärän pituinen
32 32 activerecord_error_taken: on jo varattu
33 33 activerecord_error_not_a_number: ei ole numero
34 34 activerecord_error_not_a_date: ei ole oikea päivä
35 35 activerecord_error_greater_than_start_date: tulee olla aloituspäivän jälkeinen
36 36 activerecord_error_not_same_project: ei kuulu samaan projektiin
37 37 activerecord_error_circular_dependency: Tämä suhde loisi kiertävän suhteen.
38 38
39 39 general_fmt_age: %d v.
40 40 general_fmt_age_plural: %d vuotta
41 41 general_fmt_date: %%d.%%m.%%Y
42 42 general_fmt_datetime: %%d.%%m.%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Ei'
46 46 general_text_Yes: 'Kyllä'
47 47 general_text_no: 'ei'
48 48 general_text_yes: 'kyllä'
49 49 general_lang_name: 'Finnish (Suomi)'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Maanantai,Tiistai,Keskiviikko,Torstai,Perjantai,Lauantai,Sunnuntai
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Tilin päivitys onnistui.
57 57 notice_account_invalid_creditentials: Väärä käyttäjä tai salasana
58 58 notice_account_password_updated: Salasanan päivitys onnistui.
59 59 notice_account_wrong_password: Väärä salasana
60 60 notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi.
61 61 notice_account_unknown_email: Tuntematon käyttäjä.
62 62 notice_can_t_change_password: Tämä tili käyttää ulkoista autentikointi järjestelmää. Mahdotonta muuttaa salasanaa.
63 63 notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje miten vaihdat salasanasi.
64 64 notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle.
65 65 notice_successful_create: Luonti onnistui.
66 66 notice_successful_update: Päivitys onnistui.
67 67 notice_successful_delete: Poisto onnistui.
68 68 notice_successful_connection: Yhteyden muodostus onnistui.
69 69 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
70 70 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
71 71 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
72 72 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
73 73 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
74 74 notice_feeds_access_key_reseted: RSS pääsy avaimesi on nollaantunut.
75 75 notice_failed_to_save_issues: "%d Tapahtum(an/ien) tallennus epäonnistui %d valitut: %s."
76 76 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
77 77 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
78 78 notice_default_data_loaded: Vakio asetusten palautus onnistui.
79 79
80 80 error_can_t_load_default_data: "Vakio asetuksia ei voitu ladata: %s"
81 81 error_scm_not_found: "Syötettä ja/tai versiota ei löydy säiliöstä."
82 82 error_scm_command_failed: "Säiliöön pääsyssä tapahtui virhe: %s"
83 83
84 mail_subject_lost_password: Sinun Redmine salasanasi
85 mail_body_lost_password: 'Vaihtaaksesi Redmine salasanasi, paina seuraavaa linkkiä:'
86 mail_subject_register: Redmine tilin aktivointi
87 mail_body_register: 'Aktivoidaksesi Redmine tilisi, paina seuraavaa linkkiä:'
88 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi Redmine järjestelmään.
89 mail_body_account_information: Sinun Redmine tilin tiedot
90 mail_subject_account_activation_request: Redmine tilin aktivointi pyyntö
84 mail_subject_lost_password: Sinun %s salasanasi
85 mail_body_lost_password: 'Vaihtaaksesi salasanasi, paina seuraavaa linkkiä:'
86 mail_subject_register: %s tilin aktivointi
87 mail_body_register: 'Aktivoidaksesi tilisi, paina seuraavaa linkkiä:'
88 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi järjestelmään.
89 mail_body_account_information: Sinun tilin tiedot
90 mail_subject_account_activation_request: %s tilin aktivointi pyyntö
91 91 mail_body_account_activation_request: 'Uusi käyttäjä (%s) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'
92 92
93 93 gui_validation_error: 1 virhe
94 94 gui_validation_error_plural: %d virhettä
95 95
96 96 field_name: Nimi
97 97 field_description: Kuvaus
98 98 field_summary: Yhteenveto
99 99 field_is_required: Vaaditaan
100 100 field_firstname: Etu nimi
101 101 field_lastname: Suku nimi
102 102 field_mail: Sähköposti
103 103 field_filename: Tiedosto
104 104 field_filesize: Koko
105 105 field_downloads: Latausta
106 106 field_author: Tekijä
107 107 field_created_on: Luotu
108 108 field_updated_on: Päivitetty
109 109 field_field_format: Muoto
110 110 field_is_for_all: Kaikille projekteille
111 111 field_possible_values: Mahdolliset arvot
112 112 field_regexp: Säännönmukainen ilmentymä (reg exp)
113 113 field_min_length: Minimi pituus
114 114 field_max_length: Maksimi pituus
115 115 field_value: Arvo
116 116 field_category: Luokka
117 117 field_title: Otsikko
118 118 field_project: Projekti
119 119 field_issue: Tapahtuma
120 120 field_status: Tila
121 121 field_notes: Muistiinpanot
122 122 field_is_closed: Tapahtuma suljettu
123 123 field_is_default: Vakio arvo
124 124 field_tracker: Tapahtuma
125 125 field_subject: Aihe
126 126 field_due_date: Määräaika
127 127 field_assigned_to: Nimetty
128 128 field_priority: Prioriteetti
129 129 field_fixed_version: Kohde versio
130 130 field_user: Käyttäjä
131 131 field_role: Rooli
132 132 field_homepage: Kotisivu
133 133 field_is_public: Julkinen
134 134 field_parent: Alaprojekti
135 135 field_is_in_chlog: Tapahtumat näytetään muutoslokissa
136 136 field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä
137 137 field_login: Kirjautuminen
138 138 field_mail_notification: Sähköposti muistutukset
139 139 field_admin: Ylläpitäjä
140 140 field_last_login_on: Viimeinen yhteys
141 141 field_language: Kieli
142 142 field_effective_date: Päivä
143 143 field_password: Salasana
144 144 field_new_password: Uusi salasana
145 145 field_password_confirmation: Vahvistus
146 146 field_version: Versio
147 147 field_type: Tyyppi
148 148 field_host: Isäntä
149 149 field_port: Portti
150 150 field_account: Tili
151 151 field_base_dn: Base DN
152 152 field_attr_login: Kirjautumis määre
153 153 field_attr_firstname: Etuminen määre
154 154 field_attr_lastname: Sukunimen määre
155 155 field_attr_mail: Sähköpostin määre
156 156 field_onthefly: Automaattinen käyttäjien luonti
157 157 field_start_date: Alku
158 158 field_done_ratio: %% Tehty
159 159 field_auth_source: Autentikointi muoto
160 160 field_hide_mail: Piiloita sähköpostiosoitteeni
161 161 field_comments: Kommentti
162 162 field_url: URL
163 163 field_start_page: Aloitus sivu
164 164 field_subproject: Alaprojekti
165 165 field_hours: Tuntia
166 166 field_activity: Historia
167 167 field_spent_on: Päivä
168 168 field_identifier: Tunniste
169 169 field_is_filter: Käytetään suodattimena
170 170 field_issue_to_id: Liittyvä tapahtuma
171 171 field_delay: Viive
172 172 field_assignable: Tapahtumia voidaan nimetä tälle roolille
173 173 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
174 174 field_estimated_hours: Arvioitu aika
175 175 field_column_names: Saraketta
176 176 field_time_zone: Aikavyöhyke
177 177 field_searchable: Haettava
178 178 field_default_value: Vakio arvo
179 179
180 180 setting_app_title: Ohjelman otsikko
181 181 setting_app_subtitle: Ohjelman alaotsikko
182 182 setting_welcome_text: Tervetulo teksti
183 183 setting_default_language: Vakio kieli
184 184 setting_login_required: Pakollinen autentikointi
185 185 setting_self_registration: Tee-Se-Itse rekisteröinti
186 186 setting_attachment_max_size: Liitteen maksimi koko
187 187 setting_issues_export_limit: Tapahtumien vienti rajoite
188 188 setting_mail_from: Lähettäjän sähköpostiosoite
189 189 setting_bcc_recipients: Blind carbon copy vastaanottajat (bcc)
190 190 setting_host_name: Isännän nimi
191 191 setting_text_formatting: Tekstin muotoilu
192 192 setting_wiki_compression: Wiki historian pakkaus
193 193 setting_feeds_limit: Syötteen sisällön raja
194 194 setting_autofetch_changesets: Automaatisen haun souritukset
195 195 setting_sys_api_enabled: Salli WS säiliön hallintaan
196 196 setting_commit_ref_keywords: Viittaavat hakusanat
197 197 setting_commit_fix_keywords: Korjaavat hakusanat
198 198 setting_autologin: Automaatinen kirjautuminen
199 199 setting_date_format: Päivän muoto
200 200 setting_time_format: Ajan muoto
201 201 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
202 202 setting_issue_list_default_columns: Vakio sarakkeiden näyttö tapahtuma listauksessa
203 203 setting_repositories_encodings: Säiliön koodaus
204 204 setting_emails_footer: Sähköpostin alatunniste
205 205 setting_protocol: Protokolla
206 206 setting_per_page_options: Sivun objektien määrän asetukset
207 207
208 208 label_user: Käyttäjä
209 209 label_user_plural: Käyttäjät
210 210 label_user_new: Uusi käyttäjä
211 211 label_project: Projekti
212 212 label_project_new: Uusi projekti
213 213 label_project_plural: Projektit
214 214 label_project_all: Kaikki projektit
215 215 label_project_latest: Uusimmat projektit
216 216 label_issue: Tapahtuma
217 217 label_issue_new: Uusi tapahtuma
218 218 label_issue_plural: Tapahtumat
219 219 label_issue_view_all: Näytä kaikki tapahtumat
220 220 label_issues_by: Tapahtumat %s
221 221 label_document: Dokumentti
222 222 label_document_new: Uusi dokumentti
223 223 label_document_plural: Dokumentit
224 224 label_role: Rooli
225 225 label_role_plural: Roolit
226 226 label_role_new: Uusi rooli
227 227 label_role_and_permissions: Roolit ja oikeudet
228 228 label_member: Jäsen
229 229 label_member_new: Uusi jäsen
230 230 label_member_plural: Jäsenet
231 231 label_tracker: Tapahtuma
232 232 label_tracker_plural: Tapahtumat
233 233 label_tracker_new: Uusi tapahtuma
234 234 label_workflow: Työnkulku
235 235 label_issue_status: Tapahtuman tila
236 236 label_issue_status_plural: Tapahtumien tilat
237 237 label_issue_status_new: Uusi tila
238 238 label_issue_category: Tapahtuma luokka
239 239 label_issue_category_plural: Tapahtuma luokat
240 240 label_issue_category_new: Uusi luokka
241 241 label_custom_field: Räätälöity kenttä
242 242 label_custom_field_plural: Räätälöidyt kentät
243 243 label_custom_field_new: Uusi räätälöity kenttä
244 244 label_enumerations: Lista
245 245 label_enumeration_new: Uusi arvo
246 246 label_information: Tieto
247 247 label_information_plural: Tiedot
248 248 label_please_login: Kirjaudu ole hyvä
249 249 label_register: Rekisteröidy
250 250 label_password_lost: Hukattu salasana
251 251 label_home: Koti
252 252 label_my_page: Minun sivu
253 253 label_my_account: Minun tili
254 254 label_my_projects: Minun projektit
255 255 label_administration: Ylläpito
256 256 label_login: Kirjaudu sisään
257 257 label_logout: Kirjaudu ulos
258 258 label_help: Ohjeet
259 259 label_reported_issues: Raportoidut tapahtumat
260 260 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
261 261 label_last_login: Viimeinen yhteys
262 262 label_last_updates: Viimeinen päivitys
263 263 label_last_updates_plural: %d päivitetty viimeksi
264 264 label_registered_on: Rekisteröity
265 265 label_activity: Historia
266 266 label_new: Uusi
267 267 label_logged_as: Kirjauduttu nimellä
268 268 label_environment: Ympäristö
269 269 label_authentication: Autentikointi
270 270 label_auth_source: Autentikointi tapa
271 271 label_auth_source_new: Uusi autentikointi tapa
272 272 label_auth_source_plural: Autentikointi tavat
273 273 label_subproject_plural: Alaprojektit
274 274 label_min_max_length: Min - Max pituudet
275 275 label_list: Lista
276 276 label_date: Päivä
277 277 label_integer: Kokonaisluku
278 278 label_float: Liukuluku
279 279 label_boolean: Totuusarvomuuttuja
280 280 label_string: Merkkijono
281 281 label_text: Pitkä merkkijono
282 282 label_attribute: Määre
283 283 label_attribute_plural: Määreet
284 284 label_download: %d Lataus
285 285 label_download_plural: %d Lataukset
286 286 label_no_data: Ei tietoa näytettäväksi
287 287 label_change_status: Muutos tila
288 288 label_history: Historia
289 289 label_attachment: Tiedosto
290 290 label_attachment_new: Uusi tiedosto
291 291 label_attachment_delete: Poista tiedosto
292 292 label_attachment_plural: Tiedostot
293 293 label_report: Raportti
294 294 label_report_plural: Raportit
295 295 label_news: Uutinen
296 296 label_news_new: Lisää uutinen
297 297 label_news_plural: Uutiset
298 298 label_news_latest: Viimeisimmät uutiset
299 299 label_news_view_all: Näytä kaikki uutiset
300 300 label_change_log: Muutosloki
301 301 label_settings: Asetukset
302 302 label_overview: Yleiskatsaus
303 303 label_version: Versio
304 304 label_version_new: Uusi versio
305 305 label_version_plural: Versiot
306 306 label_confirmation: Vahvistus
307 307 label_export_to: Vie
308 308 label_read: Lukee...
309 309 label_public_projects: Julkiset projektit
310 310 label_open_issues: avoin
311 311 label_open_issues_plural: avointa
312 312 label_closed_issues: suljettu
313 313 label_closed_issues_plural: suljettua
314 314 label_total: Yhteensä
315 315 label_permissions: Oikeudet
316 316 label_current_status: Nykyinen tila
317 317 label_new_statuses_allowed: Uudet tilat sallittu
318 318 label_all: kaikki
319 319 label_none: ei mitään
320 320 label_nobody: ei kukaan
321 321 label_next: Seuraava
322 322 label_previous: Edellinen
323 323 label_used_by: Käytetty
324 324 label_details: Yksityiskohdat
325 325 label_add_note: Lisää muistiinpano
326 326 label_per_page: Per sivu
327 327 label_calendar: Kalenteri
328 328 label_months_from: kuukauden päässä
329 329 label_gantt: Gantt
330 330 label_internal: Sisäinen
331 331 label_last_changes: viimeiset %d muutokset
332 332 label_change_view_all: Näytä kaikki muutokset
333 333 label_personalize_page: Personoi tämä sivu
334 334 label_comment: Kommentti
335 335 label_comment_plural: Kommentit
336 336 label_comment_add: Lisää kommentti
337 337 label_comment_added: Kommentti lisätty
338 338 label_comment_delete: Poista kommentti
339 339 label_query: Räätälöity haku
340 340 label_query_plural: Räätälöidyt haut
341 341 label_query_new: Uusi haku
342 342 label_filter_add: Lisää suodatin
343 343 label_filter_plural: Suodattimet
344 344 label_equals: yhtä kuin
345 345 label_not_equals: epäsuuri kuin
346 346 label_in_less_than: pienempi kuin
347 347 label_in_more_than: suurempi kuin
348 348 label_today: tänään
349 349 label_this_week: tällä viikolla
350 350 label_less_than_ago: vähemmän kuin päivää sitten
351 351 label_more_than_ago: enemän kuin päivää sitten
352 352 label_ago: päiviä sitten
353 353 label_contains: sisältää
354 354 label_not_contains: ei sisällä
355 355 label_day_plural: päivää
356 356 label_repository: Säiliö
357 357 label_repository_plural: Säiliöt
358 358 label_browse: Selaus
359 359 label_modification: %d muutos
360 360 label_modification_plural: %d muutettu
361 361 label_revision: Versio
362 362 label_revision_plural: Versiot
363 363 label_added: lisätty
364 364 label_modified: muokattu
365 365 label_deleted: poistettu
366 366 label_latest_revision: Viimeisin versio
367 367 label_latest_revision_plural: Viimeisimmät versiot
368 368 label_view_revisions: Näytä versiot
369 369 label_max_size: Maksimi koko
370 370 label_sort_highest: Siirrä ylimmäiseksi
371 371 label_sort_higher: Siirrä ylös
372 372 label_sort_lower: Siirrä alas
373 373 label_sort_lowest: Siirrä alimmaiseksi
374 374 label_roadmap: Roadmap
375 375 label_roadmap_due_in: Määräaika
376 376 label_roadmap_overdue: %s myöhässä
377 377 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
378 378 label_search: Haku
379 379 label_result_plural: Tulokset
380 380 label_all_words: kaikki sanat
381 381 label_wiki: Wiki
382 382 label_wiki_edit: Wiki muokkaus
383 383 label_wiki_edit_plural: Wiki muokkaukset
384 384 label_wiki_page: Wiki sivu
385 385 label_wiki_page_plural: Wiki sivut
386 386 label_index_by_title: Hakemisto otsikoittain
387 387 label_index_by_date: Hakemisto päivittäin
388 388 label_current_version: Nykyinen versio
389 389 label_preview: Esikatselu
390 390 label_feed_plural: Syötteet
391 391 label_changes_details: Kaikkien muutosten yksityiskohdat
392 392 label_issue_tracking: Tapahtumien seuranta
393 393 label_spent_time: Käytetty aika
394 394 label_f_hour: %.2f tunti
395 395 label_f_hour_plural: %.2f tuntia
396 396 label_time_tracking: Ajan seuranta
397 397 label_change_plural: Muutokset
398 398 label_statistics: Tilastot
399 399 label_commits_per_month: Tapahtumaa per kuukausi
400 400 label_commits_per_author: Tapahtumaa per tekijä
401 401 label_view_diff: Näytä erot
402 402 label_diff_inline: sisällössä
403 403 label_diff_side_by_side: vierekkäin
404 404 label_options: Valinnat
405 405 label_copy_workflow_from: Kopioi työnkulku
406 406 label_permissions_report: Oikeuksien raportti
407 407 label_watched_issues: Seurattavat tapahtumat
408 408 label_related_issues: Liittyvät tapahtumat
409 409 label_applied_status: Lisätty tila
410 410 label_loading: Lataa...
411 411 label_relation_new: Uusi suhde
412 412 label_relation_delete: Poista suhde
413 413 label_relates_to: liittyy
414 414 label_duplicates: kaksoiskappale
415 415 label_blocks: estää
416 416 label_blocked_by: estetty
417 417 label_precedes: edeltää
418 418 label_follows: seuraa
419 419 label_end_to_start: loppu alkuun
420 420 label_end_to_end: loppu loppuun
421 421 label_start_to_start: alku alkuun
422 422 label_start_to_end: alku loppuun
423 423 label_stay_logged_in: Pysy kirjautuneena
424 424 label_disabled: poistettu käytöstä
425 425 label_show_completed_versions: Näytä valmiit versiot
426 426 label_me: minä
427 427 label_board: Keskustelupalsta
428 428 label_board_new: Uusi keskustelupalsta
429 429 label_board_plural: Keskustelupalstat
430 430 label_topic_plural: Aiheet
431 431 label_message_plural: Viestit
432 432 label_message_last: Viimeisin viesti
433 433 label_message_new: Uusi viesti
434 434 label_reply_plural: Vastaukset
435 435 label_send_information: Lähetä tilin tiedot käyttäjälle
436 436 label_year: Vuosi
437 437 label_month: Kuukausi
438 438 label_week: Viikko
439 439 label_language_based: Pohjautuen käyttäjän kieleen
440 440 label_sort_by: Lajittele %s
441 441 label_send_test_email: Lähetä testi sähköposti
442 442 label_feeds_access_key_created_on: RSS pääsy avain luotiin %s sitten
443 443 label_module_plural: Moduulit
444 444 label_added_time_by: Lisännyt %s %s sitten
445 445 label_updated_time: Päivitetty %s sitten
446 446 label_jump_to_a_project: Siirry projektiin...
447 447 label_file_plural: Tiedostot
448 448 label_changeset_plural: Muutosryhmät
449 449 label_default_columns: Vakio sarakkeet
450 450 label_no_change_option: (Ei muutosta)
451 451 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
452 452 label_theme: Teema
453 453 label_default: Vakio
454 454 label_search_titles_only: Hae vain otsikot
455 455 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
456 456 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
457 457 label_user_mail_option_none: "Vain tapahtumista joita valvon tai olen mukana"
458 458 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
459 459 label_registration_activation_by_email: tilin aktivointi sähköpostitse
460 460 label_registration_manual_activation: manuaalinen tilin aktivointi
461 461 label_registration_automatic_activation: automaattinen tilin aktivointi
462 462 label_display_per_page: 'Per sivu: %s'
463 463 label_age: Ikä
464 464 label_change_properties: Vaihda asetuksia
465 465 label_general: Yleinen
466 466
467 467 button_login: Kirjaudu
468 468 button_submit: Lähetä
469 469 button_save: Tallenna
470 470 button_check_all: Valitse kaikki
471 471 button_uncheck_all: Poista valinnat
472 472 button_delete: Poista
473 473 button_create: Luo
474 474 button_test: Testaa
475 475 button_edit: Muokkaa
476 476 button_add: Lisää
477 477 button_change: Muuta
478 478 button_apply: Ota käyttöön
479 479 button_clear: Tyhjää
480 480 button_lock: Lukitse
481 481 button_unlock: Vapauta
482 482 button_download: Lataa
483 483 button_list: Lista
484 484 button_view: Näytä
485 485 button_move: Siirrä
486 486 button_back: Takaisin
487 487 button_cancel: Peruuta
488 488 button_activate: Aktivoi
489 489 button_sort: Järjestä
490 490 button_log_time: Seuraa aikaa
491 491 button_rollback: Siirry takaisin tähän versioon
492 492 button_watch: Seuraa
493 493 button_unwatch: Älä seuraa
494 494 button_reply: Vastaa
495 495 button_archive: Arkistoi
496 496 button_unarchive: Palauta
497 497 button_reset: Nollaus
498 498 button_rename: Uudelleen nimeä
499 499 button_change_password: Vaihda salasana
500 500 button_copy: Kopioi
501 501 button_annotate: Lisää selitys
502 502 button_update: Päivitä
503 503
504 504 status_active: aktiivinen
505 505 status_registered: rekisteröity
506 506 status_locked: lukittu
507 507
508 508 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
509 509 text_regexp_info: esim. ^[A-Z0-9]+$
510 510 text_min_max_length_info: 0 tarkoitta, ei rajoitusta
511 511 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
512 512 text_workflow_edit: Valitse rooli ja tapahtuma muokataksesi työnkulkua
513 513 text_are_you_sure: Oletko varma?
514 514 text_journal_changed: %s muutettu arvoksi %s
515 515 text_journal_set_to: muutettu %s
516 516 text_journal_deleted: poistettu
517 517 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
518 518 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
519 519 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
520 520 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
521 521 text_caracters_maximum: %d merkkiä enintään.
522 522 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
523 523 text_length_between: Pituus välillä %d ja %d merkkiä.
524 524 text_tracker_no_workflow: Ei työnkulkua määritelty tälle tapahtumalle
525 525 text_unallowed_characters: Kiellettyjä merkkejä
526 526 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
527 527 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
528 528 text_issue_added: Tapahtuma %s on kirjattu.
529 529 text_issue_updated: Tapahtuma %s on päivitetty.
530 530 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
531 531 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
532 532 text_issue_category_destroy_assignments: Poista luokan tehtävät
533 533 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
534 534 text_user_mail_option: "Valitesemattomille projekteille, saat vain muistutuksen asioista joita seuraat tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
535 535 text_no_configuration_data: "Rooleja, tikettejä, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen."
536 536 text_load_default_configuration: Lataa vakioasetukset
537 537
538 538 default_role_manager: Päälikkö
539 539 default_role_developper: Kehittäjä
540 540 default_role_reporter: Tarkastelija
541 541 default_tracker_bug: Ohjelmointivirhe
542 542 default_tracker_feature: Ominaisuus
543 543 default_tracker_support: Tuki
544 544 default_issue_status_new: Uusi
545 545 default_issue_status_assigned: Nimetty
546 546 default_issue_status_resolved: Hyväksytty
547 547 default_issue_status_feedback: Palaute
548 548 default_issue_status_closed: Suljettu
549 549 default_issue_status_rejected: Hylätty
550 550 default_doc_category_user: Käyttäjä dokumentaatio
551 551 default_doc_category_tech: Tekninen dokumentaatio
552 552 default_priority_low: Matala
553 553 default_priority_normal: Normaali
554 554 default_priority_high: Korkea
555 555 default_priority_urgent: Kiireellinen
556 556 default_priority_immediate: Valitön
557 557 default_activity_design: Suunnittelu
558 558 default_activity_development: Kehitys
559 559
560 560 enumeration_issue_priorities: Tapahtuman prioriteetit
561 561 enumeration_doc_categories: Dokumentin luokat
562 562 enumeration_activities: Historia (ajan seuranta)
563 563 label_associated_revisions: Liittyvät versiot
564 564 setting_user_format: Käyttäjien esitysmuoto
565 565 text_status_changed_by_changeset: Päivitetty muutosversioon %s.
566 566 text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?'
567 567 label_more: Lisää
568 568 label_issue_added: Tapahtuma lisätty
569 569 label_issue_updated: Tapahtuma päivitetty
570 570 label_document_added: Dokumentti lisätty
571 571 label_message_posted: Viesti lisätty
572 572 label_file_added: Tiedosto lisätty
573 573 label_scm: SCM
574 574 text_select_project_modules: 'Valitse modulit jotka haluat käyttöön tähän projektiin:'
575 575 label_news_added: Uutinen lisätty
576 576 project_module_boards: Keskustelupalsta
577 577 project_module_issue_tracking: Tapahtuman seuranta
578 578 project_module_wiki: Wiki
579 579 project_module_files: Tiedostot
580 580 project_module_documents: Dokumentit
581 581 project_module_repository: Säiliö
582 582 project_module_news: Uutiset
583 583 project_module_time_tracking: Ajan seuranta
584 584 text_file_repository_writable: Kirjoitettava tiedosto säiliö
585 585 text_default_administrator_account_changed: Vakio hallinoijan tunnus muutettu
586 586 text_rmagick_available: RMagick saatavilla (valinnainen)
587 587 button_configure: Asetukset
588 588 label_plugins: Lisäosat
589 589 label_ldap_authentication: LDAP autentikointi
590 590 label_downloads_abbr: D/L
591 591 label_add_another_file: Lisää uusi tiedosto
592 592 label_this_month: tässä kuussa
593 593 text_destroy_time_entries_question: %.02f tuntia on raportoitu tapahtumasta jonka aiot poistaa. Mitä haluat tehdä ?
594 594 label_last_n_days: viimeiset %d päivää
595 595 label_all_time: koko ajalta
596 596 error_issue_not_found_in_project: 'Tapahtumaa ei löytynyt tai se ei kuulu tähän projektiin'
597 597 label_this_year: tänä vuonna
598 598 text_assign_time_entries_to_project: Määritä tunnit projektille
599 599 label_date_range: Aikaväli
600 600 label_last_week: viime viikolla
601 601 label_yesterday: eilen
602 602 label_optional_description: Lisäkuvaus
603 603 label_last_month: viime kuussa
604 604 text_destroy_time_entries: Poista raportoidut tunnit
605 605 text_reassign_time_entries: 'Siirrä raportoidut tunnit tälle tapahtumalle:'
606 606 label_on: ''
607 607 label_chronological_order: Aikajärjestyksessä
608 608 label_date_to: ''
609 609 setting_activity_days_default: Päivien esittäminen projektien historiassa
610 610 label_date_from: ''
611 611 label_in: ''
612 612 setting_display_subprojects_issues: Näytä alaprojektien tapahtumat pääprojektissa oletusarvoisesti
613 613 field_comments_sorting: Näytä kommentit
614 614 label_reverse_chronological_order: Käänteisessä aikajärjestyksessä
615 615 label_preferences: Asetukset
616 616 setting_default_projects_public: New projects are public by default
617 617 label_overall_activity: Overall activity
@@ -1,618 +1,618
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 jour
9 9 actionview_datehelper_time_in_words_day_plural: %d jours
10 10 actionview_datehelper_time_in_words_hour_about: environ une heure
11 11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 20 actionview_instancetag_blank_option: Choisir
21 21
22 22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 23 activerecord_error_exclusion: est reservé
24 24 activerecord_error_invalid: est invalide
25 25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 26 activerecord_error_accepted: doit être accepté
27 27 activerecord_error_empty: doit être renseigné
28 28 activerecord_error_blank: doit être renseigné
29 29 activerecord_error_too_long: est trop long
30 30 activerecord_error_too_short: est trop court
31 31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 32 activerecord_error_taken: est déjà utilisé
33 33 activerecord_error_not_a_number: n'est pas un nombre
34 34 activerecord_error_not_a_date: n'est pas une date valide
35 35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 36 activerecord_error_not_same_project: n'appartient pas au même projet
37 37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38 38
39 39 general_fmt_age: %d an
40 40 general_fmt_age_plural: %d ans
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Non'
46 46 general_text_Yes: 'Oui'
47 47 general_text_no: 'non'
48 48 general_text_yes: 'oui'
49 49 general_lang_name: 'Français'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Le compte a été mis à jour avec succès.
57 57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
58 58 notice_account_password_updated: Mot de passe mis à jour avec succès.
59 59 notice_account_wrong_password: Mot de passe incorrect
60 60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
61 61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
62 62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
63 63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
64 64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
65 65 notice_successful_create: Création effectuée avec succès.
66 66 notice_successful_update: Mise à jour effectuée avec succès.
67 67 notice_successful_delete: Suppression effectuée avec succès.
68 68 notice_successful_connection: Connection réussie.
69 69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
70 70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
71 71 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 72 notice_email_sent: "Un email a été envoyé à %s"
73 73 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74 74 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
75 75 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
76 76 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
77 77 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
78 78 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
79 79
80 80 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
81 81 error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
82 82 error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s"
83 83 error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet"
84 84
85 mail_subject_lost_password: Votre mot de passe redMine
86 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
87 mail_subject_register: Activation de votre compte redMine
88 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
89 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter à Redmine.
90 mail_body_account_information: Paramètres de connexion de votre compte Redmine
91 mail_subject_account_activation_request: "Demande d'activation d'un compte Redmine"
85 mail_subject_lost_password: Votre mot de passe %s
86 mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant:'
87 mail_subject_register: Activation de votre compte %s
88 mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant:'
89 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter.
90 mail_body_account_information: Paramètres de connexion de votre compte
91 mail_subject_account_activation_request: "Demande d'activation d'un compte %s"
92 92 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
93 93
94 94 gui_validation_error: 1 erreur
95 95 gui_validation_error_plural: %d erreurs
96 96
97 97 field_name: Nom
98 98 field_description: Description
99 99 field_summary: Résumé
100 100 field_is_required: Obligatoire
101 101 field_firstname: Prénom
102 102 field_lastname: Nom
103 103 field_mail: Email
104 104 field_filename: Fichier
105 105 field_filesize: Taille
106 106 field_downloads: Téléchargements
107 107 field_author: Auteur
108 108 field_created_on: Créé
109 109 field_updated_on: Mis à jour
110 110 field_field_format: Format
111 111 field_is_for_all: Pour tous les projets
112 112 field_possible_values: Valeurs possibles
113 113 field_regexp: Expression régulière
114 114 field_min_length: Longueur minimum
115 115 field_max_length: Longueur maximum
116 116 field_value: Valeur
117 117 field_category: Catégorie
118 118 field_title: Titre
119 119 field_project: Projet
120 120 field_issue: Demande
121 121 field_status: Statut
122 122 field_notes: Notes
123 123 field_is_closed: Demande fermée
124 124 field_is_default: Valeur par défaut
125 125 field_tracker: Tracker
126 126 field_subject: Sujet
127 127 field_due_date: Date d'échéance
128 128 field_assigned_to: Assigné à
129 129 field_priority: Priorité
130 130 field_fixed_version: Version cible
131 131 field_user: Utilisateur
132 132 field_role: Rôle
133 133 field_homepage: Site web
134 134 field_is_public: Public
135 135 field_parent: Sous-projet de
136 136 field_is_in_chlog: Demandes affichées dans l'historique
137 137 field_is_in_roadmap: Demandes affichées dans la roadmap
138 138 field_login: Identifiant
139 139 field_mail_notification: Notifications par mail
140 140 field_admin: Administrateur
141 141 field_last_login_on: Dernière connexion
142 142 field_language: Langue
143 143 field_effective_date: Date
144 144 field_password: Mot de passe
145 145 field_new_password: Nouveau mot de passe
146 146 field_password_confirmation: Confirmation
147 147 field_version: Version
148 148 field_type: Type
149 149 field_host: Hôte
150 150 field_port: Port
151 151 field_account: Compte
152 152 field_base_dn: Base DN
153 153 field_attr_login: Attribut Identifiant
154 154 field_attr_firstname: Attribut Prénom
155 155 field_attr_lastname: Attribut Nom
156 156 field_attr_mail: Attribut Email
157 157 field_onthefly: Création des utilisateurs à la volée
158 158 field_start_date: Début
159 159 field_done_ratio: %% Réalisé
160 160 field_auth_source: Mode d'authentification
161 161 field_hide_mail: Cacher mon adresse mail
162 162 field_comments: Commentaire
163 163 field_url: URL
164 164 field_start_page: Page de démarrage
165 165 field_subproject: Sous-projet
166 166 field_hours: Heures
167 167 field_activity: Activité
168 168 label_overall_activity: Activité globale
169 169 field_spent_on: Date
170 170 field_identifier: Identifiant
171 171 field_is_filter: Utilisé comme filtre
172 172 field_issue_to_id: Demande liée
173 173 field_delay: Retard
174 174 field_assignable: Demandes assignables à ce rôle
175 175 field_redirect_existing_links: Rediriger les liens existants
176 176 field_estimated_hours: Temps estimé
177 177 field_column_names: Colonnes
178 178 field_time_zone: Fuseau horaire
179 179 field_searchable: Utilisé pour les recherches
180 180 field_default_value: Valeur par défaut
181 181 field_comments_sorting: Afficher les commentaires
182 182
183 183 setting_app_title: Titre de l'application
184 184 setting_app_subtitle: Sous-titre de l'application
185 185 setting_welcome_text: Texte d'accueil
186 186 setting_default_language: Langue par défaut
187 187 setting_login_required: Authentification obligatoire
188 188 setting_self_registration: Inscription des nouveaux utilisateurs
189 189 setting_attachment_max_size: Taille max des fichiers
190 190 setting_issues_export_limit: Limite export demandes
191 191 setting_mail_from: Adresse d'émission
192 192 setting_bcc_recipients: Destinataires en copie cachée (cci)
193 193 setting_host_name: Nom d'hôte
194 194 setting_text_formatting: Formatage du texte
195 195 setting_wiki_compression: Compression historique wiki
196 196 setting_feeds_limit: Limite du contenu des flux RSS
197 197 setting_default_projects_public: Définir les nouveaux projects comme publics par défaut
198 198 setting_autofetch_changesets: Récupération auto. des commits
199 199 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
200 200 setting_commit_ref_keywords: Mot-clés de référencement
201 201 setting_commit_fix_keywords: Mot-clés de résolution
202 202 setting_autologin: Autologin
203 203 setting_date_format: Format de date
204 204 setting_time_format: Format d'heure
205 205 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
206 206 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
207 207 setting_repositories_encodings: Encodages des dépôts
208 208 setting_emails_footer: Pied-de-page des emails
209 209 setting_protocol: Protocole
210 210 setting_per_page_options: Options d'objets affichés par page
211 211 setting_user_format: Format d'affichage des utilisateurs
212 212 setting_activity_days_default: Nombre de jours affichés sur l'activité des projets
213 213 setting_display_subprojects_issues: Afficher par défaut les demandes des sous-projets sur les projets principaux
214 214
215 215 project_module_issue_tracking: Suivi des demandes
216 216 project_module_time_tracking: Suivi du temps passé
217 217 project_module_news: Publication d'annonces
218 218 project_module_documents: Publication de documents
219 219 project_module_files: Publication de fichiers
220 220 project_module_wiki: Wiki
221 221 project_module_repository: Dépôt de sources
222 222 project_module_boards: Forums de discussion
223 223
224 224 label_user: Utilisateur
225 225 label_user_plural: Utilisateurs
226 226 label_user_new: Nouvel utilisateur
227 227 label_project: Projet
228 228 label_project_new: Nouveau projet
229 229 label_project_plural: Projets
230 230 label_project_all: Tous les projets
231 231 label_project_latest: Derniers projets
232 232 label_issue: Demande
233 233 label_issue_new: Nouvelle demande
234 234 label_issue_plural: Demandes
235 235 label_issue_view_all: Voir toutes les demandes
236 236 label_issue_added: Demande ajoutée
237 237 label_issue_updated: Demande mise à jour
238 238 label_issues_by: Demandes par %s
239 239 label_document: Document
240 240 label_document_new: Nouveau document
241 241 label_document_plural: Documents
242 242 label_document_added: Document ajouté
243 243 label_role: Rôle
244 244 label_role_plural: Rôles
245 245 label_role_new: Nouveau rôle
246 246 label_role_and_permissions: Rôles et permissions
247 247 label_member: Membre
248 248 label_member_new: Nouveau membre
249 249 label_member_plural: Membres
250 250 label_tracker: Tracker
251 251 label_tracker_plural: Trackers
252 252 label_tracker_new: Nouveau tracker
253 253 label_workflow: Workflow
254 254 label_issue_status: Statut de demandes
255 255 label_issue_status_plural: Statuts de demandes
256 256 label_issue_status_new: Nouveau statut
257 257 label_issue_category: Catégorie de demandes
258 258 label_issue_category_plural: Catégories de demandes
259 259 label_issue_category_new: Nouvelle catégorie
260 260 label_custom_field: Champ personnalisé
261 261 label_custom_field_plural: Champs personnalisés
262 262 label_custom_field_new: Nouveau champ personnalisé
263 263 label_enumerations: Listes de valeurs
264 264 label_enumeration_new: Nouvelle valeur
265 265 label_information: Information
266 266 label_information_plural: Informations
267 267 label_please_login: Identification
268 268 label_register: S'enregistrer
269 269 label_password_lost: Mot de passe perdu
270 270 label_home: Accueil
271 271 label_my_page: Ma page
272 272 label_my_account: Mon compte
273 273 label_my_projects: Mes projets
274 274 label_administration: Administration
275 275 label_login: Connexion
276 276 label_logout: Déconnexion
277 277 label_help: Aide
278 278 label_reported_issues: Demandes soumises
279 279 label_assigned_to_me_issues: Demandes qui me sont assignées
280 280 label_last_login: Dernière connexion
281 281 label_last_updates: Dernière mise à jour
282 282 label_last_updates_plural: %d dernières mises à jour
283 283 label_registered_on: Inscrit le
284 284 label_activity: Activité
285 285 label_new: Nouveau
286 286 label_logged_as: Connecté en tant que
287 287 label_environment: Environnement
288 288 label_authentication: Authentification
289 289 label_auth_source: Mode d'authentification
290 290 label_auth_source_new: Nouveau mode d'authentification
291 291 label_auth_source_plural: Modes d'authentification
292 292 label_subproject_plural: Sous-projets
293 293 label_min_max_length: Longueurs mini - maxi
294 294 label_list: Liste
295 295 label_date: Date
296 296 label_integer: Entier
297 297 label_float: Nombre décimal
298 298 label_boolean: Booléen
299 299 label_string: Texte
300 300 label_text: Texte long
301 301 label_attribute: Attribut
302 302 label_attribute_plural: Attributs
303 303 label_download: %d Téléchargement
304 304 label_download_plural: %d Téléchargements
305 305 label_no_data: Aucune donnée à afficher
306 306 label_change_status: Changer le statut
307 307 label_history: Historique
308 308 label_attachment: Fichier
309 309 label_attachment_new: Nouveau fichier
310 310 label_attachment_delete: Supprimer le fichier
311 311 label_attachment_plural: Fichiers
312 312 label_file_added: Fichier ajouté
313 313 label_report: Rapport
314 314 label_report_plural: Rapports
315 315 label_news: Annonce
316 316 label_news_new: Nouvelle annonce
317 317 label_news_plural: Annonces
318 318 label_news_latest: Dernières annonces
319 319 label_news_view_all: Voir toutes les annonces
320 320 label_news_added: Annonce ajoutée
321 321 label_change_log: Historique
322 322 label_settings: Configuration
323 323 label_overview: Aperçu
324 324 label_version: Version
325 325 label_version_new: Nouvelle version
326 326 label_version_plural: Versions
327 327 label_confirmation: Confirmation
328 328 label_export_to: 'Formats disponibles:'
329 329 label_read: Lire...
330 330 label_public_projects: Projets publics
331 331 label_open_issues: ouvert
332 332 label_open_issues_plural: ouverts
333 333 label_closed_issues: fermé
334 334 label_closed_issues_plural: fermés
335 335 label_total: Total
336 336 label_permissions: Permissions
337 337 label_current_status: Statut actuel
338 338 label_new_statuses_allowed: Nouveaux statuts autorisés
339 339 label_all: tous
340 340 label_none: aucun
341 341 label_nobody: personne
342 342 label_next: Suivant
343 343 label_previous: Précédent
344 344 label_used_by: Utilisé par
345 345 label_details: Détails
346 346 label_add_note: Ajouter une note
347 347 label_per_page: Par page
348 348 label_calendar: Calendrier
349 349 label_months_from: mois depuis
350 350 label_gantt: Gantt
351 351 label_internal: Interne
352 352 label_last_changes: %d derniers changements
353 353 label_change_view_all: Voir tous les changements
354 354 label_personalize_page: Personnaliser cette page
355 355 label_comment: Commentaire
356 356 label_comment_plural: Commentaires
357 357 label_comment_add: Ajouter un commentaire
358 358 label_comment_added: Commentaire ajouté
359 359 label_comment_delete: Supprimer les commentaires
360 360 label_query: Rapport personnalisé
361 361 label_query_plural: Rapports personnalisés
362 362 label_query_new: Nouveau rapport
363 363 label_filter_add: Ajouter le filtre
364 364 label_filter_plural: Filtres
365 365 label_equals: égal
366 366 label_not_equals: différent
367 367 label_in_less_than: dans moins de
368 368 label_in_more_than: dans plus de
369 369 label_in: dans
370 370 label_today: aujourd'hui
371 371 label_all_time: toute la période
372 372 label_yesterday: hier
373 373 label_this_week: cette semaine
374 374 label_last_week: la semaine dernière
375 375 label_last_n_days: les %d derniers jours
376 376 label_this_month: ce mois-ci
377 377 label_last_month: le mois dernier
378 378 label_this_year: cette année
379 379 label_date_range: Période
380 380 label_less_than_ago: il y a moins de
381 381 label_more_than_ago: il y a plus de
382 382 label_ago: il y a
383 383 label_contains: contient
384 384 label_not_contains: ne contient pas
385 385 label_day_plural: jours
386 386 label_repository: Dépôt
387 387 label_repository_plural: Dépôts
388 388 label_browse: Parcourir
389 389 label_modification: %d modification
390 390 label_modification_plural: %d modifications
391 391 label_revision: Révision
392 392 label_revision_plural: Révisions
393 393 label_associated_revisions: Révisions associées
394 394 label_added: ajouté
395 395 label_modified: modifié
396 396 label_deleted: supprimé
397 397 label_latest_revision: Dernière révision
398 398 label_latest_revision_plural: Dernières révisions
399 399 label_view_revisions: Voir les révisions
400 400 label_max_size: Taille maximale
401 401 label_on: sur
402 402 label_sort_highest: Remonter en premier
403 403 label_sort_higher: Remonter
404 404 label_sort_lower: Descendre
405 405 label_sort_lowest: Descendre en dernier
406 406 label_roadmap: Roadmap
407 407 label_roadmap_due_in: Echéance dans
408 408 label_roadmap_overdue: En retard de %s
409 409 label_roadmap_no_issues: Aucune demande pour cette version
410 410 label_search: Recherche
411 411 label_result_plural: Résultats
412 412 label_all_words: Tous les mots
413 413 label_wiki: Wiki
414 414 label_wiki_edit: Révision wiki
415 415 label_wiki_edit_plural: Révisions wiki
416 416 label_wiki_page: Page wiki
417 417 label_wiki_page_plural: Pages wiki
418 418 label_index_by_title: Index par titre
419 419 label_index_by_date: Index par date
420 420 label_current_version: Version actuelle
421 421 label_preview: Prévisualisation
422 422 label_feed_plural: Flux RSS
423 423 label_changes_details: Détails de tous les changements
424 424 label_issue_tracking: Suivi des demandes
425 425 label_spent_time: Temps passé
426 426 label_f_hour: %.2f heure
427 427 label_f_hour_plural: %.2f heures
428 428 label_time_tracking: Suivi du temps
429 429 label_change_plural: Changements
430 430 label_statistics: Statistiques
431 431 label_commits_per_month: Commits par mois
432 432 label_commits_per_author: Commits par auteur
433 433 label_view_diff: Voir les différences
434 434 label_diff_inline: en ligne
435 435 label_diff_side_by_side: côte à côte
436 436 label_options: Options
437 437 label_copy_workflow_from: Copier le workflow de
438 438 label_permissions_report: Synthèse des permissions
439 439 label_watched_issues: Demandes surveillées
440 440 label_related_issues: Demandes liées
441 441 label_applied_status: Statut appliqué
442 442 label_loading: Chargement...
443 443 label_relation_new: Nouvelle relation
444 444 label_relation_delete: Supprimer la relation
445 445 label_relates_to: lié à
446 446 label_duplicates: doublon de
447 447 label_blocks: bloque
448 448 label_blocked_by: bloqué par
449 449 label_precedes: précède
450 450 label_follows: suit
451 451 label_end_to_start: fin à début
452 452 label_end_to_end: fin à fin
453 453 label_start_to_start: début à début
454 454 label_start_to_end: début à fin
455 455 label_stay_logged_in: Rester connecté
456 456 label_disabled: désactivé
457 457 label_show_completed_versions: Voir les versions passées
458 458 label_me: moi
459 459 label_board: Forum
460 460 label_board_new: Nouveau forum
461 461 label_board_plural: Forums
462 462 label_topic_plural: Discussions
463 463 label_message_plural: Messages
464 464 label_message_last: Dernier message
465 465 label_message_new: Nouveau message
466 466 label_message_posted: Message ajouté
467 467 label_reply_plural: Réponses
468 468 label_send_information: Envoyer les informations à l'utilisateur
469 469 label_year: Année
470 470 label_month: Mois
471 471 label_week: Semaine
472 472 label_date_from: Du
473 473 label_date_to: Au
474 474 label_language_based: Basé sur la langue de l'utilisateur
475 475 label_sort_by: Trier par %s
476 476 label_send_test_email: Envoyer un email de test
477 477 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
478 478 label_module_plural: Modules
479 479 label_added_time_by: Ajouté par %s il y a %s
480 480 label_updated_time: Mis à jour il y a %s
481 481 label_jump_to_a_project: Aller à un projet...
482 482 label_file_plural: Fichiers
483 483 label_changeset_plural: Révisions
484 484 label_default_columns: Colonnes par défaut
485 485 label_no_change_option: (Pas de changement)
486 486 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
487 487 label_theme: Thème
488 488 label_default: Défaut
489 489 label_search_titles_only: Uniquement dans les titres
490 490 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
491 491 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
492 492 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
493 493 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements que j'effectue"
494 494 label_registration_activation_by_email: activation du compte par email
495 495 label_registration_manual_activation: activation manuelle du compte
496 496 label_registration_automatic_activation: activation automatique du compte
497 497 label_display_per_page: 'Par page: %s'
498 498 label_age: Age
499 499 label_change_properties: Changer les propriétés
500 500 label_general: Général
501 501 label_more: Plus
502 502 label_scm: SCM
503 503 label_plugins: Plugins
504 504 label_ldap_authentication: Authentification LDAP
505 505 label_downloads_abbr: D/L
506 506 label_optional_description: Description facultative
507 507 label_add_another_file: Ajouter un autre fichier
508 508 label_preferences: Préférences
509 509 label_chronological_order: Dans l'ordre chronologique
510 510 label_reverse_chronological_order: Dans l'ordre chronologique inverse
511 511
512 512 button_login: Connexion
513 513 button_submit: Soumettre
514 514 button_save: Sauvegarder
515 515 button_check_all: Tout cocher
516 516 button_uncheck_all: Tout décocher
517 517 button_delete: Supprimer
518 518 button_create: Créer
519 519 button_test: Tester
520 520 button_edit: Modifier
521 521 button_add: Ajouter
522 522 button_change: Changer
523 523 button_apply: Appliquer
524 524 button_clear: Effacer
525 525 button_lock: Verrouiller
526 526 button_unlock: Déverrouiller
527 527 button_download: Télécharger
528 528 button_list: Lister
529 529 button_view: Voir
530 530 button_move: Déplacer
531 531 button_back: Retour
532 532 button_cancel: Annuler
533 533 button_activate: Activer
534 534 button_sort: Trier
535 535 button_log_time: Saisir temps
536 536 button_rollback: Revenir à cette version
537 537 button_watch: Surveiller
538 538 button_unwatch: Ne plus surveiller
539 539 button_reply: Répondre
540 540 button_archive: Archiver
541 541 button_unarchive: Désarchiver
542 542 button_reset: Réinitialiser
543 543 button_rename: Renommer
544 544 button_change_password: Changer de mot de passe
545 545 button_copy: Copier
546 546 button_annotate: Annoter
547 547 button_update: Mettre à jour
548 548 button_configure: Configurer
549 549
550 550 status_active: actif
551 551 status_registered: enregistré
552 552 status_locked: vérouillé
553 553
554 554 text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyée
555 555 text_regexp_info: ex. ^[A-Z0-9]+$
556 556 text_min_max_length_info: 0 pour aucune restriction
557 557 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
558 558 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
559 559 text_are_you_sure: Etes-vous sûr ?
560 560 text_journal_changed: changé de %s à %s
561 561 text_journal_set_to: mis à %s
562 562 text_journal_deleted: supprimé
563 563 text_tip_task_begin_day: tâche commençant ce jour
564 564 text_tip_task_end_day: tâche finissant ce jour
565 565 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
566 566 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
567 567 text_caracters_maximum: %d caractères maximum.
568 568 text_caracters_minimum: %d caractères minimum.
569 569 text_length_between: Longueur comprise entre %d et %d caractères.
570 570 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
571 571 text_unallowed_characters: Caractères non autorisés
572 572 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
573 573 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
574 574 text_issue_added: La demande %s a été soumise par %s.
575 575 text_issue_updated: La demande %s a été mise à jour par %s.
576 576 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
577 577 text_issue_category_destroy_question: %d demandes sont affectées à cette catégories. Que voulez-vous faire ?
578 578 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
579 579 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
580 580 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
581 581 text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
582 582 text_load_default_configuration: Charger le paramétrage par défaut
583 583 text_status_changed_by_changeset: Appliqué par commit %s.
584 584 text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?'
585 585 text_select_project_modules: 'Selectionner les modules à activer pour ce project:'
586 586 text_default_administrator_account_changed: Compte administrateur par défaut changé
587 587 text_file_repository_writable: Répertoire de stockage des fichiers accessible en écriture
588 588 text_rmagick_available: Bibliothèque RMagick présente (optionnelle)
589 589 text_destroy_time_entries_question: %.02f heures ont été enregistrées sur les demandes à supprimer. Que voulez-vous faire ?
590 590 text_destroy_time_entries: Supprimer les heures
591 591 text_assign_time_entries_to_project: Reporter les heures sur le projet
592 592 text_reassign_time_entries: 'Reporter les heures sur cette demande:'
593 593
594 594 default_role_manager: Manager
595 595 default_role_developper: Développeur
596 596 default_role_reporter: Rapporteur
597 597 default_tracker_bug: Anomalie
598 598 default_tracker_feature: Evolution
599 599 default_tracker_support: Assistance
600 600 default_issue_status_new: Nouveau
601 601 default_issue_status_assigned: Assigné
602 602 default_issue_status_resolved: Résolu
603 603 default_issue_status_feedback: Commentaire
604 604 default_issue_status_closed: Fermé
605 605 default_issue_status_rejected: Rejeté
606 606 default_doc_category_user: Documentation utilisateur
607 607 default_doc_category_tech: Documentation technique
608 608 default_priority_low: Bas
609 609 default_priority_normal: Normal
610 610 default_priority_high: Haut
611 611 default_priority_urgent: Urgent
612 612 default_priority_immediate: Immédiat
613 613 default_activity_design: Conception
614 614 default_activity_development: Développement
615 615
616 616 enumeration_issue_priorities: Priorités des demandes
617 617 enumeration_doc_categories: Catégories des documents
618 618 enumeration_activities: Activités (suivi du temps)
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
5 5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: יום 1
9 9 actionview_datehelper_time_in_words_day_plural: %d ימים
10 10 actionview_datehelper_time_in_words_hour_about: כשעה
11 11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
12 12 actionview_datehelper_time_in_words_hour_about_single: כשעה
13 13 actionview_datehelper_time_in_words_minute: דקה 1
14 14 actionview_datehelper_time_in_words_minute_half: חצי דקה
15 15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
16 16 actionview_datehelper_time_in_words_minute_plural: %d דקות
17 17 actionview_datehelper_time_in_words_minute_single: דקה 1
18 18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
19 19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
20 20 actionview_instancetag_blank_option: בחר בבקשה
21 21
22 22 activerecord_error_inclusion: לא כלול ברשימה
23 23 activerecord_error_exclusion: שמור
24 24 activerecord_error_invalid: לא קביל
25 25 activerecord_error_confirmation: לא מתאים לאישור
26 26 activerecord_error_accepted: חייב להסכים
27 27 activerecord_error_empty: לא יכול להיות ריק
28 28 activerecord_error_blank: לא יכול להיות חסר
29 29 activerecord_error_too_long: ארוך מדי
30 30 activerecord_error_too_short: קצר מדי
31 31 activerecord_error_wrong_length: בארוך שגוי
32 32 activerecord_error_taken: כבר נלקח
33 33 activerecord_error_not_a_number: אינו מספר
34 34 activerecord_error_not_a_date: אינו תאריך קביל
35 35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
36 36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
37 37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
38 38
39 39 general_fmt_age: שנה %d
40 40 general_fmt_age_plural: %d שנים
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'לא'
46 46 general_text_Yes: 'כן'
47 47 general_text_no: 'לא'
48 48 general_text_yes: 'כן'
49 49 general_lang_name: 'Hebrew (עברית)'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-8-I
52 52 general_pdf_encoding: ISO-8859-8-I
53 53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: החשבון עודכן בהצלחה!
57 57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
58 58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
59 59 notice_account_wrong_password: סיסמה שגויה
60 60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
61 61 notice_account_unknown_email: משתמש לא מוכר.
62 62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
63 63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
64 64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
65 65 notice_successful_create: יצירה מוצלחת.
66 66 notice_successful_update: עידכון מוצלח.
67 67 notice_successful_delete: מחיקה מוצלחת.
68 68 notice_successful_connection: חיבור מוצלח.
69 69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
70 70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
71 71 notice_not_authorized: אינך מורשה לראות דף זה.
72 72 notice_email_sent: דוא"ל נשלח לכתובת %s
73 73 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
74 74 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
75 75 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
76 76 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
77 77
78 78 error_scm_not_found: כניסה ו\או גירסא אינם קיימים במאגר.
79 79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80 80
81 mail_subject_lost_password: סיסמת ה-Redmine שלך
81 mail_subject_lost_password: סיסמת ה-%s שלך
82 82 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
83 mail_subject_register: הפעלת חשבון Redmine
83 mail_subject_register: הפעלת חשבון %s
84 84 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
85 85
86 86 gui_validation_error: שגיאה 1
87 87 gui_validation_error_plural: %d שגיאות
88 88
89 89 field_name: שם
90 90 field_description: תיאור
91 91 field_summary: תקציר
92 92 field_is_required: נדרש
93 93 field_firstname: שם פרטי
94 94 field_lastname: שם משפחה
95 95 field_mail: דוא"ל
96 96 field_filename: קובץ
97 97 field_filesize: גודל
98 98 field_downloads: הורדות
99 99 field_author: כותב
100 100 field_created_on: נוצר
101 101 field_updated_on: עודגן
102 102 field_field_format: פורמט
103 103 field_is_for_all: לכל הפרויקטים
104 104 field_possible_values: ערכים אפשריים
105 105 field_regexp: ביטוי רגיל
106 106 field_min_length: אורך מינימאלי
107 107 field_max_length: אורך מקסימאלי
108 108 field_value: ערך
109 109 field_category: קטגוריה
110 110 field_title: כותרת
111 111 field_project: פרויקט
112 112 field_issue: נושא
113 113 field_status: מצב
114 114 field_notes: הערות
115 115 field_is_closed: נושא סגור
116 116 field_is_default: ערך ברירת מחדל
117 117 field_tracker: עוקב
118 118 field_subject: שם נושא
119 119 field_due_date: תאריך סיום
120 120 field_assigned_to: מוצב ל
121 121 field_priority: עדיפות
122 122 field_fixed_version: Target version
123 123 field_user: מתשמש
124 124 field_role: תפקיד
125 125 field_homepage: דף הבית
126 126 field_is_public: פומבי
127 127 field_parent: תת פרויקט של
128 128 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
129 129 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
130 130 field_login: שם משתמש
131 131 field_mail_notification: הודעות דוא"ל
132 132 field_admin: אדמיניסטרציה
133 133 field_last_login_on: חיבור אחרון
134 134 field_language: שפה
135 135 field_effective_date: תאריך
136 136 field_password: סיסמה
137 137 field_new_password: סיסמה חדשה
138 138 field_password_confirmation: אישור
139 139 field_version: גירסא
140 140 field_type: סוג
141 141 field_host: שרת
142 142 field_port: פורט
143 143 field_account: חשבום
144 144 field_base_dn: בסיס DN
145 145 field_attr_login: תכונת התחברות
146 146 field_attr_firstname: תכונת שם פרטים
147 147 field_attr_lastname: תכונת שם משפחה
148 148 field_attr_mail: תכונת דוא"ל
149 149 field_onthefly: יצירת משתמשים זריזה
150 150 field_start_date: התחל
151 151 field_done_ratio: %% גמור
152 152 field_auth_source: מצב אימות
153 153 field_hide_mail: החבא את כתובת הדוא"ל שלי
154 154 field_comments: הערות
155 155 field_url: URL
156 156 field_start_page: דף התחלתי
157 157 field_subproject: תת פרויקט
158 158 field_hours: שעות
159 159 field_activity: פעילות
160 160 field_spent_on: תאריך
161 161 field_identifier: מזהה
162 162 field_is_filter: משמש כמסנן
163 163 field_issue_to_id: נושאים קשורים
164 164 field_delay: עיקוב
165 165 field_assignable: ניתן להקצות נושאים לתפקיד זה
166 166 field_redirect_existing_links: העבר קישורים קיימים
167 167 field_estimated_hours: זמן משוער
168 168 field_column_names: עמודות
169 169 field_default_value: ערך ברירת מחדל
170 170
171 171 setting_app_title: כותרת ישום
172 172 setting_app_subtitle: תת-כותרת ישום
173 173 setting_welcome_text: טקסט "ברוך הבא"
174 174 setting_default_language: שפת ברירת מחדל
175 175 setting_login_required: דרוש אימות
176 176 setting_self_registration: אפשר הרשמות עצמית
177 177 setting_attachment_max_size: גודל דבוקה מקסימאלי
178 178 setting_issues_export_limit: גבול יצוא נושאים
179 179 setting_mail_from: כתובת שליחת דוא"ל
180 180 setting_host_name: שם שרת
181 181 setting_text_formatting: עיצוב טקסט
182 182 setting_wiki_compression: כיווץ היסטורית WIKI
183 183 setting_feeds_limit: גבול תוכן הזנות
184 184 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
185 185 setting_sys_api_enabled: Enable WS for repository management
186 186 setting_commit_ref_keywords: מילות מפתח מקשרות
187 187 setting_commit_fix_keywords: מילות מפתח מתקנות
188 188 setting_autologin: חיבור אוטומטי
189 189 setting_date_format: פורמט תאריך
190 190 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
191 191 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
192 192 setting_repositories_encodings: קידוד המאגרים
193 193
194 194 label_user: משתמש
195 195 label_user_plural: משתמשים
196 196 label_user_new: משתמש חדש
197 197 label_project: פרויקט
198 198 label_project_new: פרויקט חדש
199 199 label_project_plural: פרויקטים
200 200 label_project_all: כל הפרויקטים
201 201 label_project_latest: הפרויקטים החדשים ביותר
202 202 label_issue: נושא
203 203 label_issue_new: נושא חדש
204 204 label_issue_plural: נושאים
205 205 label_issue_view_all: צפה בכל הנושאים
206 206 label_document: מסמך
207 207 label_document_new: מסמך חדש
208 208 label_document_plural: מסמכים
209 209 label_role: תפקיד
210 210 label_role_plural: תפקידים
211 211 label_role_new: תפקיד חדש
212 212 label_role_and_permissions: תפקידים והרשאות
213 213 label_member: חבר
214 214 label_member_new: חבר חדש
215 215 label_member_plural: חברים
216 216 label_tracker: עוקב
217 217 label_tracker_plural: עוקבים
218 218 label_tracker_new: עוקב חדש
219 219 label_workflow: זרימת עבודה
220 220 label_issue_status: מצב נושא
221 221 label_issue_status_plural: מצבי נושא
222 222 label_issue_status_new: מצב חדש
223 223 label_issue_category: קטגורית נושא
224 224 label_issue_category_plural: קטגוריות נושא
225 225 label_issue_category_new: קטגוריה חדשה
226 226 label_custom_field: שדה אישי
227 227 label_custom_field_plural: שדות אישיים
228 228 label_custom_field_new: שדה אישי חדש
229 229 label_enumerations: אינומרציות
230 230 label_enumeration_new: ערך חדש
231 231 label_information: מידע
232 232 label_information_plural: מידע
233 233 label_please_login: התחבר בבקשה
234 234 label_register: הרשמה
235 235 label_password_lost: אבדה הסיסמה?
236 236 label_home: דך הבית
237 237 label_my_page: הדף שלי
238 238 label_my_account: השבון שלי
239 239 label_my_projects: הפרויקטים שלי
240 240 label_administration: אדמיניסטרציה
241 241 label_login: התחבר
242 242 label_logout: התנתק
243 243 label_help: עזרה
244 244 label_reported_issues: נושאים שדווחו
245 245 label_assigned_to_me_issues: נושאים שהוצבו לי
246 246 label_last_login: חיבור אחרון
247 247 label_last_updates: עידכון אחרון
248 248 label_last_updates_plural: %d עידכונים אחרונים
249 249 label_registered_on: נרשם בתאריך
250 250 label_activity: פעילות
251 251 label_new: חדש
252 252 label_logged_as: מחובר כ
253 253 label_environment: סביבה
254 254 label_authentication: אישור
255 255 label_auth_source: מצב אישור
256 256 label_auth_source_new: מצב אישור חדש
257 257 label_auth_source_plural: מצבי אישור
258 258 label_subproject_plural: תת-פרויקטים
259 259 label_min_max_length: אורך מינימאלי - מקסימאלי
260 260 label_list: רשימה
261 261 label_date: תאריך
262 262 label_integer: מספר שלים
263 263 label_boolean: ערך בוליאני
264 264 label_string: טקסט
265 265 label_text: טקסט ארוך
266 266 label_attribute: תכונה
267 267 label_attribute_plural: תכונות
268 268 label_download: הורדה %d
269 269 label_download_plural: %d הורדות
270 270 label_no_data: אין מידע להציג
271 271 label_change_status: שנה מצב
272 272 label_history: הידטוריה
273 273 label_attachment: קובץ
274 274 label_attachment_new: קובץ חדש
275 275 label_attachment_delete: מחק קובץ
276 276 label_attachment_plural: קבצים
277 277 label_report: דו"ח
278 278 label_report_plural: דו"חות
279 279 label_news: חדשות
280 280 label_news_new: הוסף חדשות
281 281 label_news_plural: חדשות
282 282 label_news_latest: חדשות חדשות
283 283 label_news_view_all: צפה בכל החדשות
284 284 label_change_log: דו"ח שינויים
285 285 label_settings: הגדרות
286 286 label_overview: מבט רחב
287 287 label_version: גירסא
288 288 label_version_new: גירסא חדשה
289 289 label_version_plural: גירסאות
290 290 label_confirmation: אישור
291 291 label_export_to: יצא ל
292 292 label_read: קרא...
293 293 label_public_projects: פרויקטים פומביים
294 294 label_open_issues: פותח
295 295 label_open_issues_plural: פתוחים
296 296 label_closed_issues: סגור
297 297 label_closed_issues_plural: סגורים
298 298 label_total: סה"כ
299 299 label_permissions: הרשאות
300 300 label_current_status: מצב נוכחי
301 301 label_new_statuses_allowed: מצבים חדשים אפשריים
302 302 label_all: הכל
303 303 label_none: כלום
304 304 label_next: הבא
305 305 label_previous: הקודם
306 306 label_used_by: בשימוש ע"י
307 307 label_details: פרטים
308 308 label_add_note: הוסף הערה
309 309 label_per_page: לכל דף
310 310 label_calendar: לו"ח שנה
311 311 label_months_from: חודשים מ
312 312 label_gantt: גאנט
313 313 label_internal: פנימי
314 314 label_last_changes: %d שינוים אחרונים
315 315 label_change_view_all: צפה בכל השינוים
316 316 label_personalize_page: הפוך דף זה לשלך
317 317 label_comment: תגובה
318 318 label_comment_plural: תגובות
319 319 label_comment_add: הוסף תגובה
320 320 label_comment_added: תגובה הוספה
321 321 label_comment_delete: מחק תגובות
322 322 label_query: שאילתה אישית
323 323 label_query_plural: שאילתות אישיות
324 324 label_query_new: שאילתה חדשה
325 325 label_filter_add: הוסף מסנן
326 326 label_filter_plural: מסננים
327 327 label_equals: הוא
328 328 label_not_equals: הוא לא
329 329 label_in_less_than: בפחות מ
330 330 label_in_more_than: ביותר מ
331 331 label_in: ב
332 332 label_today: היום
333 333 label_this_week: השבוע
334 334 label_less_than_ago: פחות ממספר ימים
335 335 label_more_than_ago: יותר ממספר ימים
336 336 label_ago: מספר ימים
337 337 label_contains: מכיל
338 338 label_not_contains: לא מכיל
339 339 label_day_plural: ימים
340 340 label_repository: מאגר
341 341 label_browse: סייר
342 342 label_modification: שינוי %d
343 343 label_modification_plural: %d שינויים
344 344 label_revision: גירסא
345 345 label_revision_plural: גירסאות
346 346 label_added: הוסף
347 347 label_modified: שונה
348 348 label_deleted: נמחק
349 349 label_latest_revision: גירסא אחרונה
350 350 label_latest_revision_plural: גירסאות אחרונות
351 351 label_view_revisions: צפה בגירסאות
352 352 label_max_size: גודל מקסימאלי
353 353 label_on: 'ב'
354 354 label_sort_highest: הזז לראשית
355 355 label_sort_higher: הזז למעלה
356 356 label_sort_lower: הזז למטה
357 357 label_sort_lowest: הזז לתחתית
358 358 label_roadmap: מפת הדרכים
359 359 label_roadmap_due_in: נגמר בעוד
360 360 label_roadmap_overdue: %s מאחר
361 361 label_roadmap_no_issues: אין נושאים לגירסא זו
362 362 label_search: חפש
363 363 label_result_plural: תוצאות
364 364 label_all_words: כל המילים
365 365 label_wiki: Wiki
366 366 label_wiki_edit: ערוך Wiki
367 367 label_wiki_edit_plural: עריכות Wiki
368 368 label_wiki_page: דף Wiki
369 369 label_wiki_page_plural: דפי Wiki
370 370 label_index_by_title: סדר עך פי כותרת
371 371 label_index_by_date: סדר על פי תאריך
372 372 label_current_version: גירסא נוכאית
373 373 label_preview: תצוגה מקדימה
374 374 label_feed_plural: הזנות
375 375 label_changes_details: פירוט כל השינויים
376 376 label_issue_tracking: מעקב אחר נושאים
377 377 label_spent_time: זמן שבוזבז
378 378 label_f_hour: %.2f שעה
379 379 label_f_hour_plural: %.2f שעות
380 380 label_time_tracking: מעקב זמנים
381 381 label_change_plural: שינויים
382 382 label_statistics: סטטיסטיקות
383 383 label_commits_per_month: הפקדות לפי חודש
384 384 label_commits_per_author: הפקדות לפי כותב
385 385 label_view_diff: צפה בהבדלים
386 386 label_diff_inline: בתוך השורה
387 387 label_diff_side_by_side: צד לצד
388 388 label_options: אפשרויות
389 389 label_copy_workflow_from: העתק זירמת עבודה מ
390 390 label_permissions_report: דו"ח הרשאות
391 391 label_watched_issues: נושאים שנצפו
392 392 label_related_issues: נושאים קשורים
393 393 label_applied_status: מוצב מוחל
394 394 label_loading: טוען...
395 395 label_relation_new: קשר חדש
396 396 label_relation_delete: מחק קשר
397 397 label_relates_to: קשור ל
398 398 label_duplicates: מכפיל את
399 399 label_blocks: חוסם את
400 400 label_blocked_by: חסום ע"י
401 401 label_precedes: מקדים את
402 402 label_follows: עוקב אחרי
403 403 label_end_to_start: מהתחלה לסוף
404 404 label_end_to_end: מהסוף לסוף
405 405 label_start_to_start: מהתחלה להתחלה
406 406 label_start_to_end: מהתחלה לסוף
407 407 label_stay_logged_in: השאר מחובר
408 408 label_disabled: מבוטל
409 409 label_show_completed_versions: הצג גירזאות גמורות
410 410 label_me: אני
411 411 label_board: פורום
412 412 label_board_new: פורום חדש
413 413 label_board_plural: פורומים
414 414 label_topic_plural: נושאים
415 415 label_message_plural: הודעות
416 416 label_message_last: הודעה אחרונה
417 417 label_message_new: הודעה חדשה
418 418 label_reply_plural: השבות
419 419 label_send_information: שלח מידע על חשבון למשתמש
420 420 label_year: שנה
421 421 label_month: חודש
422 422 label_week: שבו
423 423 label_date_from: מאת
424 424 label_date_to: אל
425 425 label_language_based: מבוסס שפה
426 426 label_sort_by: מין לפי %s
427 427 label_send_test_email: שלח דו"ל בדיקה
428 428 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
429 429 label_module_plural: מודולים
430 430 label_added_time_by: הוסף על ידי %s לפני %s
431 431 label_updated_time: עודכן לפני %s
432 432 label_jump_to_a_project: קפוץ לפרויקט...
433 433 label_file_plural: קבצים
434 434 label_changeset_plural: אוסף שינוים
435 435 label_default_columns: עמודת ברירת מחדל
436 436 label_no_change_option: (אין שינוים)
437 437 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
438 438 label_theme: ערכת נושא
439 439 label_default: ברירת מחדש
440 440
441 441 button_login: התחבר
442 442 button_submit: הגש
443 443 button_save: שמור
444 444 button_check_all: בחר הכל
445 445 button_uncheck_all: בחר כלום
446 446 button_delete: מחק
447 447 button_create: צוק
448 448 button_test: בדוק
449 449 button_edit: ערוך
450 450 button_add: הוסף
451 451 button_change: שנה
452 452 button_apply: הוצא לפועל
453 453 button_clear: נקה
454 454 button_lock: נעל
455 455 button_unlock: בטל נעילה
456 456 button_download: הורד
457 457 button_list: קשימה
458 458 button_view: צפה
459 459 button_move: הזז
460 460 button_back: הקודם
461 461 button_cancel: בטח
462 462 button_activate: הפעל
463 463 button_sort: מין
464 464 button_log_time: זמן לוג
465 465 button_rollback: חזור לגירסא זו
466 466 button_watch: צפה
467 467 button_unwatch: בטל צפיה
468 468 button_reply: השב
469 469 button_archive: ארכיון
470 470 button_unarchive: הוצא מהארכיון
471 471 button_reset: אפס
472 472 button_rename: שנה שם
473 473
474 474 status_active: פעיל
475 475 status_registered: רשום
476 476 status_locked: נעול
477 477
478 478 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
479 479 text_regexp_info: כגון. ^[A-Z0-9]+$
480 480 text_min_max_length_info: 0 משמעו ללא הגבלות
481 481 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
482 482 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
483 483 text_are_you_sure: האם אתה בטוח ?
484 484 text_journal_changed: שונה מ %s ל %s
485 485 text_journal_set_to: שונה ל %s
486 486 text_journal_deleted: נמחק
487 487 text_tip_task_begin_day: מטלה המתחילה היום
488 488 text_tip_task_end_day: מטלה המסתיימת היום
489 489 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
490 490 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
491 491 text_caracters_maximum: מקסימום %d תווים.
492 492 text_length_between: אורך בין %d ל %d תווים.
493 493 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
494 494 text_unallowed_characters: תווים לא מורשים
495 495 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
496 496 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
497 497 text_issue_added: הנושא %s דווח (by %s).
498 498 text_issue_updated: הנושא %s עודכן (by %s).
499 499 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
500 500 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
501 501 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
502 502 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
503 503
504 504 default_role_manager: מנהל
505 505 default_role_developper: מפתח
506 506 default_role_reporter: מדווח
507 507 default_tracker_bug: באג
508 508 default_tracker_feature: פיצ'ר
509 509 default_tracker_support: תמיכה
510 510 default_issue_status_new: חדש
511 511 default_issue_status_assigned: מוצב
512 512 default_issue_status_resolved: פתור
513 513 default_issue_status_feedback: משוב
514 514 default_issue_status_closed: סגור
515 515 default_issue_status_rejected: דחוי
516 516 default_doc_category_user: תיעוד משתמש
517 517 default_doc_category_tech: תיעוד טכני
518 518 default_priority_low: נמוכה
519 519 default_priority_normal: רגילה
520 520 default_priority_high: גהבוה
521 521 default_priority_urgent: דחופה
522 522 default_priority_immediate: מידית
523 523 default_activity_design: עיצוב
524 524 default_activity_development: פיתוח
525 525
526 526 enumeration_issue_priorities: עדיפות נושאים
527 527 enumeration_doc_categories: קטגוריות מסמכים
528 528 enumeration_activities: פעילויות (מעקב אחר זמנים)
529 529 label_search_titles_only: Search titles only
530 530 label_nobody: nobody
531 531 button_change_password: Change password
532 532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 533 label_user_mail_option_selected: "For any event on the selected projects only..."
534 534 label_user_mail_option_all: "For any event on all my projects"
535 535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 536 setting_emails_footer: Emails footer
537 537 label_float: Float
538 538 button_copy: Copy
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information: Your Redmine account information
539 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information: Your account information
541 541 setting_protocol: Protocol
542 542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 543 setting_time_format: Time format
544 544 label_registration_activation_by_email: account activation by email
545 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: %s account activation request
546 546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 547 label_registration_automatic_activation: automatic account activation
548 548 label_registration_manual_activation: manual account activation
549 549 notice_account_pending: "Your account was created and is now pending administrator approval."
550 550 field_time_zone: Time zone
551 551 text_caracters_minimum: Must be at least %d characters long.
552 552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 553 button_annotate: Annotate
554 554 label_issues_by: Issues by %s
555 555 field_searchable: Searchable
556 556 label_display_per_page: 'Per page: %s'
557 557 setting_per_page_options: Objects per page options
558 558 label_age: Age
559 559 notice_default_data_loaded: Default configuration successfully loaded.
560 560 text_load_default_configuration: Load the default configuration
561 561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 563 button_update: Update
564 564 label_change_properties: Change properties
565 565 label_general: General
566 566 label_repository_plural: Repositories
567 567 label_associated_revisions: Associated revisions
568 568 setting_user_format: Users display format
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Select modules to enable for this project:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: Boards
581 581 project_module_issue_tracking: Issue tracking
582 582 project_module_wiki: Wiki
583 583 project_module_files: Files
584 584 project_module_documents: Documents
585 585 project_module_repository: Repository
586 586 project_module_news: News
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: Default administrator account changed
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: Configure
592 592 label_plugins: Plugins
593 593 label_ldap_authentication: LDAP authentication
594 594 label_downloads_abbr: D/L
595 595 label_this_month: this month
596 596 label_last_n_days: last %d days
597 597 label_all_time: all time
598 598 label_this_year: this year
599 599 label_date_range: Date range
600 600 label_last_week: last week
601 601 label_yesterday: yesterday
602 602 label_last_month: last month
603 603 label_add_another_file: Add another file
604 604 label_optional_description: Optional description
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 giorno
9 9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 20 actionview_instancetag_blank_option: Scegli
21 21
22 22 activerecord_error_inclusion: non è incluso nella lista
23 23 activerecord_error_exclusion: e' riservato
24 24 activerecord_error_invalid: non e' valido
25 25 activerecord_error_confirmation: non coincide con la conferma
26 26 activerecord_error_accepted: deve essere accettato
27 27 activerecord_error_empty: non puo' essere vuoto
28 28 activerecord_error_blank: non puo' essere blank
29 29 activerecord_error_too_long: e' troppo lungo/a
30 30 activerecord_error_too_short: e' troppo corto/a
31 31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 32 activerecord_error_taken: e' gia' stato/a preso/a
33 33 activerecord_error_not_a_number: non e' un numero
34 34 activerecord_error_not_a_date: non e' una data valida
35 35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Si'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'si'
49 49 general_lang_name: 'Italiano'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: L'utenza è stata aggiornata.
57 57 notice_account_invalid_creditentials: Nome utente o password non validi.
58 58 notice_account_password_updated: La password è stata aggiornata.
59 59 notice_account_wrong_password: Password errata
60 60 notice_account_register_done: L'utenza è stata creata.
61 61 notice_account_unknown_email: Utente sconosciuto.
62 62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
63 63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
64 64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
65 65 notice_successful_create: Creazione effettuata.
66 66 notice_successful_update: Modifica effettuata.
67 67 notice_successful_delete: Eliminazione effettuata.
68 68 notice_successful_connection: Connessione effettuata.
69 69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
70 70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 error_scm_not_found: "La risorsa e/o la versione non esistono nel repository."
77 77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78 78
79 mail_subject_lost_password: Password redMine
79 mail_subject_lost_password: Password %s
80 80 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
81 mail_subject_register: Attivazione utenza redMine
82 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
81 mail_subject_register: Attivazione utenza %s
82 mail_body_register: 'Per attivare la vostra utenza, usate il seguente collegamento:'
83 83
84 84 gui_validation_error: 1 errore
85 85 gui_validation_error_plural: %d errori
86 86
87 87 field_name: Nome
88 88 field_description: Descrizione
89 89 field_summary: Sommario
90 90 field_is_required: Richiesto
91 91 field_firstname: Nome
92 92 field_lastname: Cognome
93 93 field_mail: Email
94 94 field_filename: File
95 95 field_filesize: Dimensione
96 96 field_downloads: Download
97 97 field_author: Autore
98 98 field_created_on: Creato
99 99 field_updated_on: Aggiornato
100 100 field_field_format: Formato
101 101 field_is_for_all: Per tutti i progetti
102 102 field_possible_values: Valori possibili
103 103 field_regexp: Espressione regolare
104 104 field_min_length: Lunghezza minima
105 105 field_max_length: Lunghezza massima
106 106 field_value: Valore
107 107 field_category: Categoria
108 108 field_title: Titolo
109 109 field_project: Progetto
110 110 field_issue: Issue
111 111 field_status: Stato
112 112 field_notes: Note
113 113 field_is_closed: Chiude il contesto
114 114 field_is_default: Stato predefinito
115 115 field_tracker: Tracker
116 116 field_subject: Oggetto
117 117 field_due_date: Data ultima
118 118 field_assigned_to: Assegnato a
119 119 field_priority: Priorita'
120 120 field_fixed_version: Target version
121 121 field_user: Utente
122 122 field_role: Ruolo
123 123 field_homepage: Homepage
124 124 field_is_public: Pubblico
125 125 field_parent: Sottoprogetto di
126 126 field_is_in_chlog: Contesti mostrati nel changelog
127 127 field_is_in_roadmap: Contesti mostrati nel roadmap
128 128 field_login: Login
129 129 field_mail_notification: Notifiche via e-mail
130 130 field_admin: Amministratore
131 131 field_last_login_on: Ultima connessione
132 132 field_language: Lingua
133 133 field_effective_date: Data
134 134 field_password: Password
135 135 field_new_password: Nuova password
136 136 field_password_confirmation: Conferma
137 137 field_version: Versione
138 138 field_type: Tipo
139 139 field_host: Host
140 140 field_port: Porta
141 141 field_account: Utenza
142 142 field_base_dn: DN base
143 143 field_attr_login: Attributo login
144 144 field_attr_firstname: Attributo nome
145 145 field_attr_lastname: Attributo cognome
146 146 field_attr_mail: Attributo e-mail
147 147 field_onthefly: Creazione utenza "al volo"
148 148 field_start_date: Inizio
149 149 field_done_ratio: %% completo
150 150 field_auth_source: Modalità di autenticazione
151 151 field_hide_mail: Nascondi il mio indirizzo di e-mail
152 152 field_comments: Commento
153 153 field_url: URL
154 154 field_start_page: Pagina principale
155 155 field_subproject: Sottoprogetto
156 156 field_hours: Hours
157 157 field_activity: Activity
158 158 field_spent_on: Data
159 159 field_identifier: Identifier
160 160 field_is_filter: Used as a filter
161 161 field_issue_to_id: Related issue
162 162 field_delay: Delay
163 163 field_assignable: Issues can be assigned to this role
164 164 field_redirect_existing_links: Redirect existing links
165 165 field_estimated_hours: Estimated time
166 166 field_default_value: Stato predefinito
167 167
168 168 setting_app_title: Titolo applicazione
169 169 setting_app_subtitle: Sottotitolo applicazione
170 170 setting_welcome_text: Testo di benvenuto
171 171 setting_default_language: Lingua di default
172 172 setting_login_required: Autenticazione richiesta
173 173 setting_self_registration: Auto-registrazione abilitata
174 174 setting_attachment_max_size: Massima dimensione allegati
175 175 setting_issues_export_limit: Limite esportazione contesti
176 176 setting_mail_from: Indirizzo sorgente e-mail
177 177 setting_host_name: Nome host
178 178 setting_text_formatting: Formattazione testo
179 179 setting_wiki_compression: Compressione di storia di Wiki
180 180 setting_feeds_limit: Limite contenuti del feed
181 181 setting_autofetch_changesets: Acquisisci automaticamente le commit
182 182 setting_sys_api_enabled: Abilita WS per la gestione del repository
183 183 setting_commit_ref_keywords: Referencing keywords
184 184 setting_commit_fix_keywords: Fixing keywords
185 185 setting_autologin: Autologin
186 186 setting_date_format: Date format
187 187 setting_cross_project_issue_relations: Allow cross-project issue relations
188 188
189 189 label_user: Utente
190 190 label_user_plural: Utenti
191 191 label_user_new: Nuovo utente
192 192 label_project: Progetto
193 193 label_project_new: Nuovo progetto
194 194 label_project_plural: Progetti
195 195 label_project_all: All Projects
196 196 label_project_latest: Ultimi progetti registrati
197 197 label_issue: Contesto
198 198 label_issue_new: Nuovo contesto
199 199 label_issue_plural: Contesti
200 200 label_issue_view_all: Mostra tutti i contesti
201 201 label_document: Documento
202 202 label_document_new: Nuovo documento
203 203 label_document_plural: Documenti
204 204 label_role: Ruolo
205 205 label_role_plural: Ruoli
206 206 label_role_new: Nuovo ruolo
207 207 label_role_and_permissions: Ruoli e permessi
208 208 label_member: Membro
209 209 label_member_new: Nuovo membro
210 210 label_member_plural: Membri
211 211 label_tracker: Tracker
212 212 label_tracker_plural: Tracker
213 213 label_tracker_new: Nuovo tracker
214 214 label_workflow: Workflow
215 215 label_issue_status: Stato contesti
216 216 label_issue_status_plural: Stati contesto
217 217 label_issue_status_new: Nuovo stato
218 218 label_issue_category: Categorie contesti
219 219 label_issue_category_plural: Categorie contesto
220 220 label_issue_category_new: Nuova categoria
221 221 label_custom_field: Campo personalizzato
222 222 label_custom_field_plural: Campi personalizzati
223 223 label_custom_field_new: Nuovo campo personalizzato
224 224 label_enumerations: Enumerazioni
225 225 label_enumeration_new: Nuovo valore
226 226 label_information: Informazione
227 227 label_information_plural: Informazioni
228 228 label_please_login: Autenticarsi
229 229 label_register: Registrati
230 230 label_password_lost: Password dimenticata
231 231 label_home: Home
232 232 label_my_page: Pagina personale
233 233 label_my_account: La mia utenza
234 234 label_my_projects: I miei progetti
235 235 label_administration: Amministrazione
236 236 label_login: Login
237 237 label_logout: Logout
238 238 label_help: Aiuto
239 239 label_reported_issues: Contesti segnalati
240 240 label_assigned_to_me_issues: I miei contesti
241 241 label_last_login: Ultimo collegamento
242 242 label_last_updates: Ultimo aggiornamento
243 243 label_last_updates_plural: %d ultimo aggiornamento
244 244 label_registered_on: Registrato il
245 245 label_activity: Attività
246 246 label_new: Nuovo
247 247 label_logged_as: Autenticato come
248 248 label_environment: Ambiente
249 249 label_authentication: Autenticazione
250 250 label_auth_source: Modalità di autenticazione
251 251 label_auth_source_new: Nuova modalità di autenticazione
252 252 label_auth_source_plural: Modalità di autenticazione
253 253 label_subproject_plural: Sottoprogetti
254 254 label_min_max_length: Lunghezza minima - massima
255 255 label_list: Elenco
256 256 label_date: Data
257 257 label_integer: Intero
258 258 label_boolean: Booleano
259 259 label_string: Testo
260 260 label_text: Testo esteso
261 261 label_attribute: Attributo
262 262 label_attribute_plural: Attributi
263 263 label_download: %d Download
264 264 label_download_plural: %d Download
265 265 label_no_data: Nessun dato disponibile
266 266 label_change_status: Cambia stato
267 267 label_history: Cronologia
268 268 label_attachment: File
269 269 label_attachment_new: Nuovo file
270 270 label_attachment_delete: Elimina file
271 271 label_attachment_plural: File
272 272 label_report: Report
273 273 label_report_plural: Report
274 274 label_news: Notizia
275 275 label_news_new: Aggiungi notizia
276 276 label_news_plural: Notizie
277 277 label_news_latest: Utime notizie
278 278 label_news_view_all: Tutte le notizie
279 279 label_change_log: Change log
280 280 label_settings: Impostazioni
281 281 label_overview: Panoramica
282 282 label_version: Versione
283 283 label_version_new: Nuova versione
284 284 label_version_plural: Versioni
285 285 label_confirmation: Conferma
286 286 label_export_to: Esporta su
287 287 label_read: Leggi...
288 288 label_public_projects: Progetti pubblici
289 289 label_open_issues: aperta
290 290 label_open_issues_plural: aperte
291 291 label_closed_issues: chiusa
292 292 label_closed_issues_plural: chiuse
293 293 label_total: Totale
294 294 label_permissions: Permessi
295 295 label_current_status: Stato attuale
296 296 label_new_statuses_allowed: Nuovi stati possibili
297 297 label_all: tutti
298 298 label_none: nessuno
299 299 label_next: Successivo
300 300 label_previous: Precedente
301 301 label_used_by: Usato da
302 302 label_details: Dettagli
303 303 label_add_note: Aggiungi una nota
304 304 label_per_page: Per pagina
305 305 label_calendar: Calendario
306 306 label_months_from: mesi da
307 307 label_gantt: Gantt
308 308 label_internal: Interno
309 309 label_last_changes: ultime %d modifiche
310 310 label_change_view_all: Tutte le modifiche
311 311 label_personalize_page: Personalizza la pagina
312 312 label_comment: Commento
313 313 label_comment_plural: Commenti
314 314 label_comment_add: Aggiungi un commento
315 315 label_comment_added: Commento aggiunto
316 316 label_comment_delete: Elimina commenti
317 317 label_query: Custom query
318 318 label_query_plural: Query personalizzate
319 319 label_query_new: Nuova query
320 320 label_filter_add: Aggiungi filtro
321 321 label_filter_plural: Filtri
322 322 label_equals: è
323 323 label_not_equals: non è
324 324 label_in_less_than: è minore di
325 325 label_in_more_than: è maggiore di
326 326 label_in: in
327 327 label_today: oggi
328 328 label_this_week: this week
329 329 label_less_than_ago: meno di giorni fa
330 330 label_more_than_ago: più di giorni fa
331 331 label_ago: giorni fa
332 332 label_contains: contiene
333 333 label_not_contains: non contiene
334 334 label_day_plural: giorni
335 335 label_repository: Repository
336 336 label_browse: Browse
337 337 label_modification: %d modifica
338 338 label_modification_plural: %d modifiche
339 339 label_revision: Versione
340 340 label_revision_plural: Versioni
341 341 label_added: aggiunto
342 342 label_modified: modificato
343 343 label_deleted: eliminato
344 344 label_latest_revision: Ultima versione
345 345 label_latest_revision_plural: Ultime versioni
346 346 label_view_revisions: Mostra versioni
347 347 label_max_size: Dimensione massima
348 348 label_on: 'on'
349 349 label_sort_highest: Sposta in cima
350 350 label_sort_higher: Su
351 351 label_sort_lower: Giù
352 352 label_sort_lowest: Sposta in fondo
353 353 label_roadmap: Roadmap
354 354 label_roadmap_due_in: Da ultimare in
355 355 label_roadmap_overdue: %s late
356 356 label_roadmap_no_issues: Nessun contesto per questa versione
357 357 label_search: Ricerca
358 358 label_result_plural: Risultati
359 359 label_all_words: Tutte le parole
360 360 label_wiki: Wiki
361 361 label_wiki_edit: Modifica Wiki
362 362 label_wiki_edit_plural: Modfiche wiki
363 363 label_wiki_page: Wiki page
364 364 label_wiki_page_plural: Wiki pages
365 365 label_index_by_title: Index by title
366 366 label_index_by_date: Index by date
367 367 label_current_version: Versione corrente
368 368 label_preview: Anteprima
369 369 label_feed_plural: Feed
370 370 label_changes_details: Particolari di tutti i cambiamenti
371 371 label_issue_tracking: tracking dei contesti
372 372 label_spent_time: Tempo impiegato
373 373 label_f_hour: %.2f ora
374 374 label_f_hour_plural: %.2f ore
375 375 label_time_tracking: Tracking del tempo
376 376 label_change_plural: Modifiche
377 377 label_statistics: Statistiche
378 378 label_commits_per_month: Commit per mese
379 379 label_commits_per_author: Commit per autore
380 380 label_view_diff: mostra differenze
381 381 label_diff_inline: inline
382 382 label_diff_side_by_side: side by side
383 383 label_options: Opzioni
384 384 label_copy_workflow_from: Copia workflow da
385 385 label_permissions_report: Report permessi
386 386 label_watched_issues: Watched issues
387 387 label_related_issues: Related issues
388 388 label_applied_status: Applied status
389 389 label_loading: Loading...
390 390 label_relation_new: New relation
391 391 label_relation_delete: Delete relation
392 392 label_relates_to: related to
393 393 label_duplicates: duplicates
394 394 label_blocks: blocks
395 395 label_blocked_by: blocked by
396 396 label_precedes: precedes
397 397 label_follows: follows
398 398 label_end_to_start: end to start
399 399 label_end_to_end: end to end
400 400 label_start_to_start: start to start
401 401 label_start_to_end: start to end
402 402 label_stay_logged_in: Stay logged in
403 403 label_disabled: disabled
404 404 label_show_completed_versions: Show completed versions
405 405 label_me: me
406 406 label_board: Forum
407 407 label_board_new: New forum
408 408 label_board_plural: Forums
409 409 label_topic_plural: Topics
410 410 label_message_plural: Messages
411 411 label_message_last: Last message
412 412 label_message_new: New message
413 413 label_reply_plural: Replies
414 414 label_send_information: Send account information to the user
415 415 label_year: Year
416 416 label_month: Month
417 417 label_week: Week
418 418 label_date_from: From
419 419 label_date_to: To
420 420 label_language_based: Language based
421 421 label_sort_by: Sort by %s
422 422 label_send_test_email: Send a test email
423 423 label_feeds_access_key_created_on: RSS access key created %s ago
424 424 label_module_plural: Modules
425 425 label_added_time_by: Added by %s %s ago
426 426 label_updated_time: Updated %s ago
427 427 label_jump_to_a_project: Jump to a project...
428 428
429 429 button_login: Login
430 430 button_submit: Invia
431 431 button_save: Salva
432 432 button_check_all: Seleziona tutti
433 433 button_uncheck_all: Deseleziona tutti
434 434 button_delete: Elimina
435 435 button_create: Crea
436 436 button_test: Test
437 437 button_edit: Modifica
438 438 button_add: Aggiungi
439 439 button_change: Modifica
440 440 button_apply: Applica
441 441 button_clear: Pulisci
442 442 button_lock: Blocca
443 443 button_unlock: Sblocca
444 444 button_download: Scarica
445 445 button_list: Elenca
446 446 button_view: Mostra
447 447 button_move: Sposta
448 448 button_back: Indietro
449 449 button_cancel: Annulla
450 450 button_activate: Attiva
451 451 button_sort: Ordina
452 452 button_log_time: Registra tempo
453 453 button_rollback: Ripristina questa versione
454 454 button_watch: Watch
455 455 button_unwatch: Unwatch
456 456 button_reply: Reply
457 457 button_archive: Archive
458 458 button_unarchive: Unarchive
459 459 button_reset: Reset
460 460 button_rename: Rename
461 461
462 462 status_active: attivo
463 463 status_registered: registrato
464 464 status_locked: bloccato
465 465
466 466 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
467 467 text_regexp_info: eg. ^[A-Z0-9]+$
468 468 text_min_max_length_info: 0 significa nessuna restrizione
469 469 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
470 470 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
471 471 text_are_you_sure: Sei sicuro ?
472 472 text_journal_changed: cambiato da %s a %s
473 473 text_journal_set_to: impostato a %s
474 474 text_journal_deleted: cancellato
475 475 text_tip_task_begin_day: attività che iniziano in questa giornata
476 476 text_tip_task_end_day: attività che terminano in questa giornata
477 477 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
478 478 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
479 479 text_caracters_maximum: massimo %d caratteri.
480 480 text_length_between: Lunghezza compresa tra %d e %d caratteri.
481 481 text_tracker_no_workflow: Nessun workflow definito per questo tracker
482 482 text_unallowed_characters: Unallowed characters
483 483 text_comma_separated: Multiple values allowed (comma separated).
484 484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
485 485 text_issue_added: "E' stata segnalata l'anomalia %s da %s."
486 486 text_issue_updated: "L'anomalia %s e' stata aggiornata da %s."
487 487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 489 text_issue_category_destroy_assignments: Remove category assignments
490 490 text_issue_category_reassign_to: Reassing issues to this category
491 491
492 492 default_role_manager: Manager
493 493 default_role_developper: Sviluppatore
494 494 default_role_reporter: Reporter
495 495 default_tracker_bug: Contesto
496 496 default_tracker_feature: Funzione
497 497 default_tracker_support: Supporto
498 498 default_issue_status_new: Nuovo/a
499 499 default_issue_status_assigned: Assegnato/a
500 500 default_issue_status_resolved: Risolto/a
501 501 default_issue_status_feedback: Feedback
502 502 default_issue_status_closed: Chiuso/a
503 503 default_issue_status_rejected: Rifiutato/a
504 504 default_doc_category_user: Documentazione utente
505 505 default_doc_category_tech: Documentazione tecnica
506 506 default_priority_low: Bassa
507 507 default_priority_normal: Normale
508 508 default_priority_high: Alta
509 509 default_priority_urgent: Urgente
510 510 default_priority_immediate: Immediata
511 511 default_activity_design: Design
512 512 default_activity_development: Development
513 513
514 514 enumeration_issue_priorities: Priorità contesti
515 515 enumeration_doc_categories: Categorie di documenti
516 516 enumeration_activities: Attività (time tracking)
517 517 label_file_plural: Files
518 518 label_changeset_plural: Changesets
519 519 field_column_names: Columns
520 520 label_default_columns: Default columns
521 521 setting_issue_list_default_columns: Default columns displayed on the issue list
522 522 setting_repositories_encodings: Repositories encodings
523 523 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 524 label_bulk_edit_selected_issues: Bulk edit selected issues
525 525 label_no_change_option: (No change)
526 526 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 527 label_theme: Theme
528 528 label_default: Default
529 529 label_search_titles_only: Search titles only
530 530 label_nobody: nobody
531 531 button_change_password: Change password
532 532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 533 label_user_mail_option_selected: "For any event on the selected projects only..."
534 534 label_user_mail_option_all: "For any event on all my projects"
535 535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 536 setting_emails_footer: Emails footer
537 537 label_float: Float
538 538 button_copy: Copy
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information: Your Redmine account information
539 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information: Your account information
541 541 setting_protocol: Protocol
542 542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 543 setting_time_format: Time format
544 544 label_registration_activation_by_email: account activation by email
545 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: %s account activation request
546 546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 547 label_registration_automatic_activation: automatic account activation
548 548 label_registration_manual_activation: manual account activation
549 549 notice_account_pending: "Your account was created and is now pending administrator approval."
550 550 field_time_zone: Time zone
551 551 text_caracters_minimum: Must be at least %d characters long.
552 552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 553 button_annotate: Annotate
554 554 label_issues_by: Issues by %s
555 555 field_searchable: Searchable
556 556 label_display_per_page: 'Per page: %s'
557 557 setting_per_page_options: Objects per page options
558 558 label_age: Age
559 559 notice_default_data_loaded: Default configuration successfully loaded.
560 560 text_load_default_configuration: Load the default configuration
561 561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 563 button_update: Update
564 564 label_change_properties: Change properties
565 565 label_general: General
566 566 label_repository_plural: Repositories
567 567 label_associated_revisions: Associated revisions
568 568 setting_user_format: Users display format
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Select modules to enable for this project:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: Boards
581 581 project_module_issue_tracking: Issue tracking
582 582 project_module_wiki: Wiki
583 583 project_module_files: Files
584 584 project_module_documents: Documents
585 585 project_module_repository: Repository
586 586 project_module_news: News
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: Default administrator account changed
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: Configure
592 592 label_plugins: Plugins
593 593 label_ldap_authentication: LDAP authentication
594 594 label_downloads_abbr: D/L
595 595 label_this_month: this month
596 596 label_last_n_days: last %d days
597 597 label_all_time: all time
598 598 label_this_year: this year
599 599 label_date_range: Date range
600 600 label_last_week: last week
601 601 label_yesterday: yesterday
602 602 label_last_month: last month
603 603 label_add_another_file: Add another file
604 604 label_optional_description: Optional description
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,618 +1,618
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_select_year_suffix:
9 9 actionview_datehelper_time_in_words_day: 1日
10 10 actionview_datehelper_time_in_words_day_plural: %d日
11 11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 14 actionview_datehelper_time_in_words_minute: 1分
15 15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 17 actionview_datehelper_time_in_words_minute_plural: %d分
18 18 actionview_datehelper_time_in_words_minute_single: 1分
19 19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 21 actionview_instancetag_blank_option: 選んでください
22 22
23 23 activerecord_error_inclusion: がリストに含まれていません
24 24 activerecord_error_exclusion: が予約されています
25 25 activerecord_error_invalid: が無効です
26 26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 27 activerecord_error_accepted: を承諾してください
28 28 activerecord_error_empty: が空です
29 29 activerecord_error_blank: が空白です
30 30 activerecord_error_too_long: が長すぎます
31 31 activerecord_error_too_short: が短かすぎます
32 32 activerecord_error_wrong_length: の長さが間違っています
33 33 activerecord_error_taken: はすでに登録されています
34 34 activerecord_error_not_a_number: が数字ではありません
35 35 activerecord_error_not_a_date: の日付が間違っています
36 36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 37 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 38 activerecord_error_circular_dependency: この関係では、循環依存になります
39 39
40 40 general_fmt_age: %d歳
41 41 general_fmt_age_plural: %d歳
42 42 general_fmt_date: %%Y年%%m月%%d日
43 43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 45 general_fmt_time: %%H:%%M %%p
46 46 general_text_No: 'いいえ'
47 47 general_text_Yes: 'はい'
48 48 general_text_no: 'いいえ'
49 49 general_text_yes: 'はい'
50 50 general_lang_name: 'Japanese (日本語)'
51 51 general_csv_separator: ','
52 52 general_csv_encoding: SJIS
53 53 general_pdf_encoding: SJIS
54 54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
55 55 general_first_day_of_week: '7'
56 56
57 57 notice_account_updated: アカウントが更新されました。
58 58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
59 59 notice_account_password_updated: パスワードが更新されました。
60 60 notice_account_wrong_password: パスワードが違います
61 61 notice_account_register_done: アカウントが作成されました。
62 62 notice_account_unknown_email: ユーザが存在しません。
63 63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
64 64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
65 65 notice_account_activated: アカウントが有効になりました。ログインできます。
66 66 notice_successful_create: 作成しました。
67 67 notice_successful_update: 更新しました。
68 68 notice_successful_delete: 削除しました。
69 69 notice_successful_connection: 接続しました。
70 70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
71 71 notice_locking_conflict: 別のユーザがデータを更新しています。
72 72 notice_not_authorized: このページにアクセスするには認証が必要です。
73 73 notice_email_sent: %s宛にメールを送信しました。
74 74 notice_email_error: メール送信中にエラーが発生しました(%s)
75 75 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
76 76
77 77 error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。
78 78 error_scm_command_failed: "リポジトリへアクセスしようとしてエラーになりました: %s"
79 79
80 mail_subject_lost_password: Redmineパスワード
80 mail_subject_lost_password: %sパスワード
81 81 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
82 mail_subject_register: Redmineアカウントが有効になりました
83 mail_body_register: 'Redmineアカウントをアクティブにするには、以下のリンクをたどってください:'
82 mail_subject_register: %sアカウントが有効になりました
83 mail_body_register: 'アカウントをアクティブにするには、以下のリンクをたどってください:'
84 84
85 85 gui_validation_error: 1件のエラー
86 86 gui_validation_error_plural: %d件のエラー
87 87
88 88 field_name: 名前
89 89 field_description: 説明
90 90 field_summary: サマリ
91 91 field_is_required: 必須
92 92 field_firstname: 名前
93 93 field_lastname: 苗字
94 94 field_mail: メールアドレス
95 95 field_filename: ファイル
96 96 field_filesize: サイズ
97 97 field_downloads: ダウンロード
98 98 field_author: 起票者
99 99 field_created_on: 作成日
100 100 field_updated_on: 更新日
101 101 field_field_format: 書式
102 102 field_is_for_all: 全プロジェクト向け
103 103 field_possible_values: 選択肢
104 104 field_regexp: 正規表現
105 105 field_min_length: 最小値
106 106 field_max_length: 最大値
107 107 field_value:
108 108 field_category: カテゴリ
109 109 field_title: タイトル
110 110 field_project: プロジェクト
111 111 field_issue: チケット
112 112 field_status: ステータス
113 113 field_notes: 注記
114 114 field_is_closed: 終了したチケット
115 115 field_is_default: デフォルトのステータス
116 116 field_tracker: トラッカー
117 117 field_subject: 題名
118 118 field_due_date: 期限日
119 119 field_assigned_to: 担当者
120 120 field_priority: 優先度
121 121 field_fixed_version: Target version
122 122 field_user: ユーザ
123 123 field_role: 役割
124 124 field_homepage: ホームページ
125 125 field_is_public: 公開
126 126 field_parent: 親プロジェクト名
127 127 field_is_in_chlog: 変更記録に表示されているチケット
128 128 field_is_in_roadmap: ロードマップに表示されているチケット
129 129 field_login: ログイン
130 130 field_mail_notification: メール通知
131 131 field_admin: 管理者
132 132 field_last_login_on: 最終接続日
133 133 field_language: 言語
134 134 field_effective_date: 日付
135 135 field_password: パスワード
136 136 field_new_password: 新しいパスワード
137 137 field_password_confirmation: パスワードの確認
138 138 field_version: バージョン
139 139 field_type: タイプ
140 140 field_host: ホスト
141 141 field_port: ポート
142 142 field_account: アカウント
143 143 field_base_dn: Base DN
144 144 field_attr_login: ログイン名属性
145 145 field_attr_firstname: 名前属性
146 146 field_attr_lastname: 苗字属性
147 147 field_attr_mail: メール属性
148 148 field_onthefly: あわせてユーザを作成
149 149 field_start_date: 開始日
150 150 field_done_ratio: 進捗 %%
151 151 field_auth_source: 認証モード
152 152 field_hide_mail: メールアドレスを隠す
153 153 field_comments: コメント
154 154 field_url: URL
155 155 field_start_page: メインページ
156 156 field_subproject: サブプロジェクト
157 157 field_hours: 時間
158 158 field_activity: 活動
159 159 field_spent_on: 日付
160 160 field_identifier: 識別子
161 161 field_is_filter: フィルタとして使う
162 162 field_issue_to_id: 関連するチケット
163 163 field_delay: 遅延
164 164 field_assignable: チケットはこのロールに割り当てることができます
165 165 field_redirect_existing_links: 既存のリンクをリダイレクトする
166 166 field_estimated_hours: 予定工数
167 167 field_default_value: デフォルトのステータス
168 168
169 169 setting_app_title: アプリケーションのタイトル
170 170 setting_app_subtitle: アプリケーションのサブタイトル
171 171 setting_welcome_text: ウェルカムメッセージ
172 172 setting_default_language: 既定の言語
173 173 setting_login_required: 認証が必要
174 174 setting_self_registration: ユーザは自分で登録できる
175 175 setting_attachment_max_size: 添付の最大サイズ
176 176 setting_issues_export_limit: 出力するチケット数の上限
177 177 setting_mail_from: 送信元メールアドレス
178 178 setting_host_name: ホスト名
179 179 setting_text_formatting: テキストの書式
180 180 setting_wiki_compression: Wiki履歴を圧縮する
181 181 setting_feeds_limit: フィード内容の上限
182 182 setting_autofetch_changesets: コミットを自動取得する
183 183 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
184 184 setting_commit_ref_keywords: 参照用キーワード
185 185 setting_commit_fix_keywords: 修正用キーワード
186 186 setting_autologin: 自動ログイン
187 187 setting_date_format: 日付の形式
188 188 setting_cross_project_issue_relations: 異なるプロジェクトのチケット間で関係の設定を許可
189 189
190 190 label_user: ユーザ
191 191 label_user_plural: ユーザ
192 192 label_user_new: 新しいユーザ
193 193 label_project: プロジェクト
194 194 label_project_new: 新しいプロジェクト
195 195 label_project_plural: プロジェクト
196 196 label_project_all: 全プロジェクト
197 197 label_project_latest: 最近のプロジェクト
198 198 label_issue: チケット
199 199 label_issue_new: 新しいチケット
200 200 label_issue_plural: チケット
201 201 label_issue_view_all: チケットを全て見る
202 202 label_document: 文書
203 203 label_document_new: 新しい文書
204 204 label_document_plural: 文書
205 205 label_role: ロール
206 206 label_role_plural: ロール
207 207 label_role_new: 新しいロール
208 208 label_role_and_permissions: ロールと権限
209 209 label_member: メンバー
210 210 label_member_new: 新しいメンバー
211 211 label_member_plural: メンバー
212 212 label_tracker: トラッカー
213 213 label_tracker_plural: トラッカー
214 214 label_tracker_new: 新しいトラッカーを作成
215 215 label_workflow: ワークフロー
216 216 label_issue_status: チケットのステータス
217 217 label_issue_status_plural: チケットのステータス
218 218 label_issue_status_new: 新しいステータス
219 219 label_issue_category: チケットのカテゴリ
220 220 label_issue_category_plural: チケットのカテゴリ
221 221 label_issue_category_new: 新しいカテゴリ
222 222 label_custom_field: カスタムフィールド
223 223 label_custom_field_plural: カスタムフィールド
224 224 label_custom_field_new: 新しいカスタムフィールドを作成
225 225 label_enumerations: 列挙項目
226 226 label_enumeration_new: 新しい値
227 227 label_information: 情報
228 228 label_information_plural: 情報
229 229 label_please_login: ログインしてください
230 230 label_register: 登録する
231 231 label_password_lost: パスワードの再発行
232 232 label_home: ホーム
233 233 label_my_page: マイページ
234 234 label_my_account: マイアカウント
235 235 label_my_projects: マイプロジェクト
236 236 label_administration: 管理
237 237 label_login: ログイン
238 238 label_logout: ログアウト
239 239 label_help: ヘルプ
240 240 label_reported_issues: 報告したチケット
241 241 label_assigned_to_me_issues: 担当しているチケット
242 242 label_last_login: 最近の接続
243 243 label_last_updates: 最近の更新1件
244 244 label_last_updates_plural: 最近の更新%d件
245 245 label_registered_on: 登録日
246 246 label_activity: 活動
247 247 label_new: 新しく作成
248 248 label_logged_as: ログイン中:
249 249 label_environment: 環境
250 250 label_authentication: 認証
251 251 label_auth_source: 認証モード
252 252 label_auth_source_new: 新しい認証モード
253 253 label_auth_source_plural: 認証モード
254 254 label_subproject_plural: サブプロジェクト
255 255 label_min_max_length: 最小値 - 最大値の長さ
256 256 label_list: リストから選択
257 257 label_date: 日付
258 258 label_integer: 整数
259 259 label_boolean: 真偽値
260 260 label_string: テキスト
261 261 label_text: 長いテキスト
262 262 label_attribute: 属性
263 263 label_attribute_plural: 属性
264 264 label_download: %d ダウンロード
265 265 label_download_plural: %d ダウンロード
266 266 label_no_data: 表示するデータがありません
267 267 label_change_status: ステータスの変更
268 268 label_history: 履歴
269 269 label_attachment: ファイル
270 270 label_attachment_new: 新しいファイル
271 271 label_attachment_delete: ファイルを削除
272 272 label_attachment_plural: ファイル
273 273 label_report: レポート
274 274 label_report_plural: レポート
275 275 label_news: ニュース
276 276 label_news_new: ニュースを追加
277 277 label_news_plural: ニュース
278 278 label_news_latest: 最新ニュース
279 279 label_news_view_all: 全てのニュースを見る
280 280 label_change_log: 変更記録
281 281 label_settings: 設定
282 282 label_overview: 概要
283 283 label_version: バージョン
284 284 label_version_new: 新しいバージョン
285 285 label_version_plural: バージョン
286 286 label_confirmation: 確認
287 287 label_export_to: 他の形式に出力
288 288 label_read: 読む...
289 289 label_public_projects: 公開プロジェクト
290 290 label_open_issues: 未完了
291 291 label_open_issues_plural: 未完了
292 292 label_closed_issues: 終了
293 293 label_closed_issues_plural: 終了
294 294 label_total: 合計
295 295 label_permissions: 権限
296 296 label_current_status: 現在のステータス
297 297 label_new_statuses_allowed: ステータスの移行先
298 298 label_all: 全て
299 299 label_none: なし
300 300 label_next:
301 301 label_previous:
302 302 label_used_by: 使用中
303 303 label_details: 詳細
304 304 label_add_note: 注記を追加
305 305 label_per_page: ページ毎
306 306 label_calendar: カレンダー
307 307 label_months_from: ヶ月 from
308 308 label_gantt: ガントチャート
309 309 label_internal: Internal
310 310 label_last_changes: 最新の変更%d件
311 311 label_change_view_all: 全ての変更を見る
312 312 label_personalize_page: このページをパーソナライズする
313 313 label_comment: コメント
314 314 label_comment_plural: コメント
315 315 label_comment_add: コメント追加
316 316 label_comment_added: 追加されたコメント
317 317 label_comment_delete: コメント削除
318 318 label_query: カスタムクエリ
319 319 label_query_plural: カスタムクエリ
320 320 label_query_new: 新しいクエリ
321 321 label_filter_add: フィルタ追加
322 322 label_filter_plural: フィルタ
323 323 label_equals: 等しい
324 324 label_not_equals: 等しくない
325 325 label_in_less_than: 残日数がこれより多い
326 326 label_in_more_than: 残日数がこれより少ない
327 327 label_in: 残日数
328 328 label_today: 今日
329 329 label_this_week: この週
330 330 label_less_than_ago: 経過日数がこれより少ない
331 331 label_more_than_ago: 経過日数がこれより多い
332 332 label_ago: 日前
333 333 label_contains: 含む
334 334 label_not_contains: 含まない
335 335 label_day_plural:
336 336 label_repository: リポジトリ
337 337 label_browse: ブラウズ
338 338 label_modification: %d点の変更
339 339 label_modification_plural: %d点の変更
340 340 label_revision: リビジョン
341 341 label_revision_plural: リビジョン
342 342 label_added: 追加
343 343 label_modified: 変更
344 344 label_deleted: 削除
345 345 label_latest_revision: 最新リビジョン
346 346 label_latest_revision_plural: 最新リビジョン
347 347 label_view_revisions: リビジョンを見る
348 348 label_max_size: 最大サイズ
349 349 label_on: 合計
350 350 label_sort_highest: 一番上へ
351 351 label_sort_higher: 上へ
352 352 label_sort_lower: 下へ
353 353 label_sort_lowest: 一番下へ
354 354 label_roadmap: ロードマップ
355 355 label_roadmap_due_in: 期日まで
356 356 label_roadmap_overdue: %s late
357 357 label_roadmap_no_issues: このバージョンに向けてのチケットはありません
358 358 label_search: 検索
359 359 label_result_plural: 結果
360 360 label_all_words: すべての単語
361 361 label_wiki: Wiki
362 362 label_wiki_edit: Wiki編集
363 363 label_wiki_edit_plural: Wiki編集
364 364 label_wiki_page: Wiki page
365 365 label_wiki_page_plural: Wikiページ
366 366 label_index_by_title: 索引(名前順)
367 367 label_index_by_date: 索引(日付順)
368 368 label_current_version: 最新版
369 369 label_preview: プレビュー
370 370 label_feed_plural: フィード
371 371 label_changes_details: 全変更の詳細
372 372 label_issue_tracking: チケットトラッキング
373 373 label_spent_time: 経過時間
374 374 label_f_hour: %.2f 時間
375 375 label_f_hour_plural: %.2f 時間
376 376 label_time_tracking: 時間トラッキング
377 377 label_change_plural: 変更
378 378 label_statistics: 統計
379 379 label_commits_per_month: 月別のコミット
380 380 label_commits_per_author: 起票者別のコミット
381 381 label_view_diff: 差分を見る
382 382 label_diff_inline: インライン
383 383 label_diff_side_by_side: 横に並べる
384 384 label_options: オプション
385 385 label_copy_workflow_from: ワークフローをここからコピー
386 386 label_permissions_report: 権限レポート
387 387 label_watched_issues: ウォッチ中のチケット
388 388 label_related_issues: 関連するチケット
389 389 label_applied_status: 適用されたステータス
390 390 label_loading: ロード中...
391 391 label_relation_new: 新しい関連
392 392 label_relation_delete: 関連の削除
393 393 label_relates_to: 関係している
394 394 label_duplicates: 重複している
395 395 label_blocks: ブロックしている
396 396 label_blocked_by: ブロックされている
397 397 label_precedes: 先行する
398 398 label_follows: 後続する
399 399 label_end_to_start: end to start
400 400 label_end_to_end: end to end
401 401 label_start_to_start: start to start
402 402 label_start_to_end: start to end
403 403 label_stay_logged_in: ログインを維持
404 404 label_disabled: 無効
405 405 label_show_completed_versions: 完了したバージョンを表示
406 406 label_me: 自分
407 407 label_board: フォーラム
408 408 label_board_new: 新しいフォーラム
409 409 label_board_plural: フォーラム
410 410 label_topic_plural: トピック
411 411 label_message_plural: メッセージ
412 412 label_message_last: 最新のメッセージ
413 413 label_message_new: 新しいメッセージ
414 414 label_reply_plural: 返答
415 415 label_send_information: アカウント情報をユーザに送信
416 416 label_year:
417 417 label_month:
418 418 label_week:
419 419 label_date_from: "日付指定: "
420 420 label_date_to: から
421 421 label_language_based: 既定の言語の設定に従う
422 422 label_sort_by: %sで並び替え
423 423 label_send_test_email: テストメールを送信
424 424 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
425 425 label_module_plural: モジュール
426 426 label_added_time_by: %sが%s前に追加しました
427 427 label_updated_time: %s前に更新されました
428 428 label_jump_to_a_project: プロジェクトへ移動...
429 429
430 430 button_login: ログイン
431 431 button_submit: 変更
432 432 button_save: 保存
433 433 button_check_all: チェックを全部つける
434 434 button_uncheck_all: チェックを全部外す
435 435 button_delete: 削除
436 436 button_create: 作成
437 437 button_test: テスト
438 438 button_edit: 編集
439 439 button_add: 追加
440 440 button_change: 変更
441 441 button_apply: 適用
442 442 button_clear: クリア
443 443 button_lock: ロック
444 444 button_unlock: アンロック
445 445 button_download: ダウンロード
446 446 button_list: 一覧
447 447 button_view: 見る
448 448 button_move: 移動
449 449 button_back: 戻る
450 450 button_cancel: キャンセル
451 451 button_activate: 有効にする
452 452 button_sort: ソート
453 453 button_log_time: 時間を記録
454 454 button_rollback: このバージョンにロールバック
455 455 button_watch: ウォッチ
456 456 button_unwatch: ウォッチをやめる
457 457 button_reply: 返答
458 458 button_archive: 書庫に保存
459 459 button_unarchive: 書庫から戻す
460 460 button_reset: リセット
461 461 button_rename: 名前変更
462 462
463 463 status_active: 有効
464 464 status_registered: 登録
465 465 status_locked: ロック
466 466
467 467 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
468 468 text_regexp_info: 例) ^[A-Z0-9]+$
469 469 text_min_max_length_info: 0だと無制限になります
470 470 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
471 471 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
472 472 text_are_you_sure: よろしいですか?
473 473 text_journal_changed: %sから%sに変更
474 474 text_journal_set_to: %sにセット
475 475 text_journal_deleted: 削除
476 476 text_tip_task_begin_day: この日に開始するタスク
477 477 text_tip_task_end_day: この日に終了するタスク
478 478 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
479 479 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
480 480 text_caracters_maximum: 最大 %d 文字です。
481 481 text_length_between: 長さは %d から %d 文字までです。
482 482 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
483 483 text_unallowed_characters: 使えない文字です
484 484 text_comma_separated: (カンマで区切った)複数の値が使えます
485 485 text_issues_ref_in_commit_messages: コミットメッセージ内でチケットの参照/修正
486 486 text_issue_added: チケット %s が報告されました。 (by %s)
487 487 text_issue_updated: チケット %s が更新されました。 (by %s)
488 488 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
489 489 text_issue_category_destroy_question: このカテゴリに割り当て済みのチケット(%d)があります。何をしようとしていますか?
490 490 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
491 491 text_issue_category_reassign_to: チケットをこのカテゴリに再割り当てする
492 492
493 493 default_role_manager: 管理者
494 494 default_role_developper: 開発者
495 495 default_role_reporter: 報告者
496 496 default_tracker_bug: バグ
497 497 default_tracker_feature: 機能
498 498 default_tracker_support: サポート
499 499 default_issue_status_new: 新規
500 500 default_issue_status_assigned: 担当
501 501 default_issue_status_resolved: 解決
502 502 default_issue_status_feedback: フィードバック
503 503 default_issue_status_closed: 終了
504 504 default_issue_status_rejected: 却下
505 505 default_doc_category_user: ユーザ文書
506 506 default_doc_category_tech: 技術文書
507 507 default_priority_low: 低め
508 508 default_priority_normal: 通常
509 509 default_priority_high: 高め
510 510 default_priority_urgent: 急いで
511 511 default_priority_immediate: 今すぐ
512 512 default_activity_design: デザイン作業
513 513 default_activity_development: 開発作業
514 514
515 515 enumeration_issue_priorities: チケットの優先度
516 516 enumeration_doc_categories: 文書カテゴリ
517 517 enumeration_activities: 作業分類 (時間トラッキング)
518 518 label_file_plural: ファイル
519 519 label_changeset_plural: チェンジセット
520 520 field_column_names: 項目
521 521 label_default_columns: 既定の項目
522 522 setting_issue_list_default_columns: チケットの一覧で表示する項目
523 523 setting_repositories_encodings: リポジトリのエンコーディング
524 524 notice_no_issue_selected: "チケットが選択されていません! 更新対象のチケットを選択してください。"
525 525 label_bulk_edit_selected_issues: チケットの一括編集
526 526 label_no_change_option: (変更無し)
527 527 notice_failed_to_save_issues: "%d件のチケットが保存できませんでした(%d件選択のうち) : %s."
528 528 label_theme: テーマ
529 529 label_default: 既定
530 530 label_search_titles_only: タイトルのみ
531 531 label_nobody: nobody
532 532 button_change_password: パスワード変更
533 533 text_user_mail_option: "未選択のプロジェクトでは、ウォッチまたは関係しているチケット(例: 自分が報告者もしくは担当者であるチケット)のみメールが送信されます。"
534 534 label_user_mail_option_selected: "選択したプロジェクト..."
535 535 label_user_mail_option_all: "参加しているプロジェクトの全てのチケット"
536 536 label_user_mail_option_none: "ウォッチまたは関係しているチケットのみ"
537 537 setting_emails_footer: メールのフッタ
538 538 label_float: 小数
539 539 button_copy: コピー
540 mail_body_account_information_external: 「%s」アカウントを使ってRedmineにログインできます。
541 mail_body_account_information: Redmineアカウント情報
540 mail_body_account_information_external: 「%s」アカウントを使ってにログインできます。
541 mail_body_account_information: アカウント情報
542 542 setting_protocol: プロトコル
543 543 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
544 544 setting_time_format: 時刻の形式
545 545 label_registration_activation_by_email: メールでアカウントを有効化
546 mail_subject_account_activation_request: Redminアカウントの有効化要求
546 mail_subject_account_activation_request: %sアカウントの有効化要求
547 547 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
548 548 label_registration_automatic_activation: 自動でアカウントを有効化
549 549 label_registration_manual_activation: 手動でアカウントを有効化
550 550 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
551 551 field_time_zone: タイムゾーン
552 552 text_caracters_minimum: 最低%d文字の長さが必要です
553 553 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
554 554 button_annotate: 注釈
555 555 label_issues_by: %s別のチケット
556 556 field_searchable: Searchable
557 557 label_display_per_page: '1ページに: %s'
558 558 setting_per_page_options: ページ毎の表示件数
559 559 label_age: 年齢
560 560 notice_default_data_loaded: デフォルト設定をロードしました。
561 561 text_load_default_configuration: デフォルト設定をロード
562 562 text_no_configuration_data: "ロール、トラッカー、チケットのステータス、ワークフローがまだ設定されていません。\nデフォルト設定のロードを強くお勧めします。ロードした後、それを修正することができます。"
563 563 error_can_t_load_default_data: "デフォルト設定がロードできませんでした: %s"
564 564 button_update: 更新
565 565 label_change_properties: プロパティの変更
566 566 label_general: 全般
567 567 label_repository_plural: リポジトリ
568 568 label_associated_revisions: 関係しているリビジョン
569 569 setting_user_format: ユーザ名の表示書式
570 570 text_status_changed_by_changeset: チェンジセット%sで適用されました。
571 571 label_more: 続き
572 572 text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?'
573 573 label_scm: SCM
574 574 text_select_project_modules: 'このプロジェクトで使用するモジュールを選択してください:'
575 575 label_issue_added: チケットが追加されました
576 576 label_issue_updated: チケットが更新されました
577 577 label_document_added: 文書が追加されました
578 578 label_message_posted: メッセージが追加されました
579 579 label_file_added: ファイルが追加されました
580 580 label_news_added: ニュースが追加されました
581 581 project_module_boards: フォーラム
582 582 project_module_issue_tracking: チケットトラッキング
583 583 project_module_wiki: Wiki
584 584 project_module_files: ファイル
585 585 project_module_documents: 文書
586 586 project_module_repository: リポジトリ
587 587 project_module_news: ニュース
588 588 project_module_time_tracking: 時間トラッキング
589 589 text_file_repository_writable: ファイルリポジトリに書き込み可能
590 590 text_default_administrator_account_changed: デフォルト管理アカウントが変更済
591 591 text_rmagick_available: RMagickが使用可能 (オプション)
592 592 button_configure: 設定
593 593 label_plugins: プラグイン
594 594 label_ldap_authentication: LDAP認証
595 595 label_downloads_abbr: DL
596 596 label_this_month: 今月
597 597 label_last_n_days: 最後の%d日間
598 598 label_all_time: 全期間
599 599 label_this_year: 今年
600 600 label_date_range: 日付の範囲
601 601 label_last_week: 先週
602 602 label_yesterday: 昨日
603 603 label_last_month: 先月
604 604 label_add_another_file: Add another file
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 label_optional_description: Optional description
609 609 text_destroy_time_entries: Delete reported hours
610 610 text_reassign_time_entries: 'Reassign reported hours to this issue:'
611 611 setting_activity_days_default: Days displayed on project activity
612 612 label_chronological_order: In chronological order
613 613 field_comments_sorting: Display comments
614 614 label_reverse_chronological_order: In reverse chronological order
615 615 label_preferences: Preferences
616 616 setting_display_subprojects_issues: Display subprojects issues on main projects by default
617 617 label_overall_activity: Overall activity
618 618 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
5 5 actionview_datehelper_select_month_names_abbr: 1월,2월,3월,4월,5월,6월,7월,8월,9월,10월,11월,12월
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 하루
9 9 actionview_datehelper_time_in_words_day_plural: %d 일
10 10 actionview_datehelper_time_in_words_hour_about: 약 한 시간
11 11 actionview_datehelper_time_in_words_hour_about_plural: 약 %d 시간
12 12 actionview_datehelper_time_in_words_hour_about_single: 약 한 시간
13 13 actionview_datehelper_time_in_words_minute: 1 분
14 14 actionview_datehelper_time_in_words_minute_half: 30초
15 15 actionview_datehelper_time_in_words_minute_less_than: 1분 이내
16 16 actionview_datehelper_time_in_words_minute_plural: %d 분
17 17 actionview_datehelper_time_in_words_minute_single: 1 분
18 18 actionview_datehelper_time_in_words_second_less_than: 1초 이내
19 19 actionview_datehelper_time_in_words_second_less_than_plural: %d 초 이전
20 20 actionview_instancetag_blank_option: 선택하세요
21 21
22 22 activerecord_error_inclusion: 은(는) 목록에 포함되어 있지 않습니다.
23 23 activerecord_error_exclusion: 은(는) 예약되어 있습니다.
24 24 activerecord_error_invalid: 은(는) 유효하지 않습니다.
25 25 activerecord_error_confirmation: 는 제약조건(confirmation)에 맞지 않습니다.
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: 는 길이가 0일 수가 없습니다.
28 28 activerecord_error_blank: 는 빈 값이어서는 안됩니다.
29 29 activerecord_error_too_long: 는 너무 깁니다.
30 30 activerecord_error_too_short: 는 너무 짧습니다.
31 31 activerecord_error_wrong_length: 는 잘못된 길이입니다.
32 32 activerecord_error_taken: 가 이미 값을 가지고 있습니다.
33 33 activerecord_error_not_a_number: 는 숫자가 아닙니다.
34 34 activerecord_error_not_a_date: 는 잘못된 날짜 값입니다.
35 35 activerecord_error_greater_than_start_date: 는 시작날짜보다 커야 합니다.
36 36 activerecord_error_not_same_project: 는 같은 프로젝트에 속해 있지 않습니다.
37 37 activerecord_error_circular_dependency: 이 관계는 순환 의존관계를 만들 수있습니다.
38 38
39 39 general_fmt_age: %d 년
40 40 general_fmt_age_plural: %d 년
41 41 general_fmt_date: %%Y-%%m-%%d
42 42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: '아니오'
46 46 general_text_Yes: '예'
47 47 general_text_no: '아니오'
48 48 general_text_yes: '예'
49 49 general_lang_name: 'Korean (한국어)'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: CP949
52 52 general_pdf_encoding: CP949
53 53 general_day_names: 월요일,화요일,수요일,목요일,금요일,토요일,일요일
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: 계정이 성공적으로 변경 되었습니다.
57 57 notice_account_invalid_creditentials: 잘못된 계정 또는 패스워드
58 58 notice_account_password_updated: 비밀번호가 잘 변경되었습니다.
59 59 notice_account_wrong_password: 잘못된 패스워드
60 60 notice_account_register_done: 계정이 성공적으로 생성되었습니다. 계정을 활성화 하기 위해서 수신한 Email의 링크를 클릭해주세요.
61 61 notice_account_unknown_email: 알려지지 않은 사용자.
62 62 notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호 변경이 불가능 합니다.
63 63 notice_account_lost_email_sent: 새로운 패스워드를 위한 Email이 발송되었습니다.
64 64 notice_account_activated: 계정이 활성화 되었습니다. 이제 로그인 하실수 있습니다.
65 65 notice_successful_create: 생성 성공.
66 66 notice_successful_update: 변경 성공.
67 67 notice_successful_delete: 삭제 성공.
68 68 notice_successful_connection: 연결 성공.
69 69 notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다.
70 70 notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다.
71 71 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
72 72 notice_email_sent: %s 님에게 Email이 발송되었습니다.
73 73 notice_email_error: 메일을 전송하는 과정에 오류가 발생했습니다. (%s)
74 74 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
75 75 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 76 notice_no_issue_selected: "이슈가 선택되지 않았습니다. 수정하기 원하는 이슈를 선택하세요"
77 77
78 78 error_scm_not_found: 소스 저장소에 해당 내용이 존재하지 않습니다.
79 79 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
80 80
81 mail_subject_lost_password: 당신의 비밀번호
81 mail_subject_lost_password: 당신의 비밀번호 (%s)
82 82 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
83 mail_subject_register: 당신의 계정 활성화
83 mail_subject_register: 당신의 계정 활성화 (%s)
84 84 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
85 85
86 86 gui_validation_error: 1 에러
87 87 gui_validation_error_plural: %d 에러
88 88
89 89 field_name: 이름
90 90 field_description: 설명
91 91 field_summary: 요약
92 92 field_is_required: 필수
93 93 field_firstname: 이름
94 94 field_lastname:
95 95 field_mail: 메일
96 96 field_filename: 파일
97 97 field_filesize: 크기
98 98 field_downloads: 다운로드
99 99 field_author: 보고자
100 100 field_created_on: 보고시간
101 101 field_updated_on: 변경시간
102 102 field_field_format: 포맷
103 103 field_is_for_all: 모든 프로젝트
104 104 field_possible_values: 가능한 값들
105 105 field_regexp: 정규식
106 106 field_min_length: 최소 길이
107 107 field_max_length: 최대 길이
108 108 field_value:
109 109 field_category: 카테고리
110 110 field_title: 제목
111 111 field_project: 프로젝트
112 112 field_issue: 이슈
113 113 field_status: 상태
114 114 field_notes: 노트
115 115 field_is_closed: 완료된 이슈
116 116 field_is_default: 기본값
117 117 field_tracker: 구분
118 118 field_subject: 제목
119 119 field_due_date: 완료 기한
120 120 field_assigned_to: 담당자
121 121 field_priority: 우선순위
122 122 field_fixed_version: Target version
123 123 field_user: 유저
124 124 field_role: 역할
125 125 field_homepage: 홈페이지
126 126 field_is_public: 공개
127 127 field_parent: 상위 프로젝트
128 128 field_is_in_chlog: 변경이력(changelog)에서 보여지는 이슈들
129 129 field_is_in_roadmap: 로드맵에서 보여지는 이슈들
130 130 field_login: 로그인
131 131 field_mail_notification: 메일 알림
132 132 field_admin: 관리자
133 133 field_last_login_on: 최종 접속
134 134 field_language: 언어
135 135 field_effective_date: 일자
136 136 field_password: 비밀번호
137 137 field_new_password: 신규 비밀번호
138 138 field_password_confirmation: 비밀번호 확인
139 139 field_version: 버전
140 140 field_type: 타입
141 141 field_host: 호스트
142 142 field_port: 포트
143 143 field_account: 계정
144 144 field_base_dn: Base DN
145 145 field_attr_login: 로그인 속성
146 146 field_attr_firstname: 이름 속성
147 147 field_attr_lastname: 성 속성
148 148 field_attr_mail: 메일 속성
149 149 field_onthefly: On-the-fly user creation
150 150 field_start_date: 시작시간
151 151 field_done_ratio: 완료 %%
152 152 field_auth_source: 인증 방법
153 153 field_hide_mail: 내 메일 주소 숨기기
154 154 field_comments: 코멘트
155 155 field_url: URL
156 156 field_start_page: 시작 페이지
157 157 field_subproject: 서브 프로젝트
158 158 field_hours: 시간
159 159 field_activity: 작업종류
160 160 field_spent_on: 작업시간
161 161 field_identifier: 식별자
162 162 field_is_filter: 필터로 사용됨
163 163 field_issue_to_id: 연관된 이슈
164 164 field_delay: 지연
165 165 field_assignable: 이 역할에 할당될수 있는 이슈
166 166 field_redirect_existing_links: Redirect existing links
167 167 field_estimated_hours: 추정시간
168 168 field_column_names: 컬럼
169 169 field_default_value: 기본값
170 170
171 171 setting_app_title: 레드마인 제목
172 172 setting_app_subtitle: 레드마인 부제목
173 173 setting_welcome_text: 환영 메시지
174 174 setting_default_language: 기본 언어
175 175 setting_login_required: 인증이 필요함.
176 176 setting_self_registration: Self-registration
177 177 setting_attachment_max_size: 최대 첨부파일 크기
178 178 setting_issues_export_limit: Issues export limit
179 179 setting_mail_from: Emission mail address
180 180 setting_host_name: 호스트 이름
181 181 setting_text_formatting: 텍스트 형식
182 182 setting_wiki_compression: 위키 기록(history) 압축
183 183 setting_feeds_limit: Feed content limit
184 184 setting_autofetch_changesets: Autofetch commits
185 185 setting_sys_api_enabled: Enable WS for repository management
186 186 setting_commit_ref_keywords: 이슈 참조에 사용할 키워드들
187 187 setting_commit_fix_keywords: 이슈 해결에 사용할 키워드들
188 188 setting_autologin: 자동 로그인
189 189 setting_date_format: 날짜 형식
190 190 setting_cross_project_issue_relations: 프로젝트간 이슈에 관련을 맺는 것을 허용
191 191 setting_issue_list_default_columns: 이슈 목록에 보여줄 기본 컬럼들
192 192 setting_repositories_encodings: 저장소 인코딩
193 193 setting_emails_footer: 메일 꼬리
194 194
195 195 label_user: 사용자
196 196 label_user_plural: 사용자관리
197 197 label_user_new: 신규 유저
198 198 label_project: 프로젝트
199 199 label_project_new: 신규 프로젝트
200 200 label_project_plural: 프로젝트
201 201 label_project_all: 모든 프로젝트
202 202 label_project_latest: 최근 프로젝트
203 203 label_issue: 이슈 보기
204 204 label_issue_new: 새 이슈만들기
205 205 label_issue_plural: 이슈 보기
206 206 label_issue_view_all: 모든 이슈 보기
207 207 label_document: 문서
208 208 label_document_new: 새로운 문서
209 209 label_document_plural: 문서
210 210 label_role: 역할
211 211 label_role_plural: 역할
212 212 label_role_new: 새로운 역할
213 213 label_role_and_permissions: 권한관리
214 214 label_member: 담당자
215 215 label_member_new: 새로운 담당자
216 216 label_member_plural: 담당자
217 217 label_tracker: 이슈 유형
218 218 label_tracker_plural: 이슈 유형
219 219 label_tracker_new: 새로운 이슈 유형
220 220 label_workflow: 워크플로(Workflow)
221 221 label_issue_status: 이슈 상태
222 222 label_issue_status_plural: 이슈 상태
223 223 label_issue_status_new: 새로운 이슈 상태
224 224 label_issue_category: 카테고리
225 225 label_issue_category_plural: 카테고리
226 226 label_issue_category_new: 새 카테고리
227 227 label_custom_field: 사용자 정의 항목
228 228 label_custom_field_plural: 사용자 정의 항목
229 229 label_custom_field_new: 새로운 사용자 정의 항목
230 230 label_enumerations: 코드값 설정
231 231 label_enumeration_new: 새로운 코드값
232 232 label_information: 정보
233 233 label_information_plural: 정보
234 234 label_please_login: 로그인하세요.
235 235 label_register: 등록
236 236 label_password_lost: 비밀번호 찾기
237 237 label_home: 초기화면
238 238 label_my_page: 내페이지
239 239 label_my_account: 내계정
240 240 label_my_projects: 나의 프로젝트
241 241 label_administration: 관리자
242 242 label_login: 로그인
243 243 label_logout: 로그아웃
244 244 label_help: 도움말
245 245 label_reported_issues: 보고된 이슈
246 246 label_assigned_to_me_issues: 나에게 할당된 이슈
247 247 label_last_login: 최종 접속
248 248 label_last_updates: 최종 변경 내역
249 249 label_last_updates_plural: 최종변경 %d
250 250 label_registered_on: Registered on
251 251 label_activity: 진행중인 작업
252 252 label_new: 신규
253 253 label_logged_as:
254 254 label_environment: 환경
255 255 label_authentication: 인증설정
256 256 label_auth_source: 인증 모드
257 257 label_auth_source_new: 신규 인증 모드
258 258 label_auth_source_plural: 인증 모드
259 259 label_subproject_plural: 서브 프로젝트
260 260 label_min_max_length: 최소 - 최대 길이
261 261 label_list: 리스트
262 262 label_date: 날짜
263 263 label_integer: 정수
264 264 label_float: 부동상수
265 265 label_boolean: 부울린
266 266 label_string: 문자열
267 267 label_text: 텍스트
268 268 label_attribute: 속성
269 269 label_attribute_plural: 속성
270 270 label_download: %d 다운로드
271 271 label_download_plural: %d 다운로드
272 272 label_no_data: 데이터가 없습니다.
273 273 label_change_status: 상태 변경
274 274 label_history: 히스토리
275 275 label_attachment: 파일
276 276 label_attachment_new: 파일추가
277 277 label_attachment_delete: 파일삭제
278 278 label_attachment_plural: 관련파일
279 279 label_report: 보고서
280 280 label_report_plural: 보고서
281 281 label_news: 뉴스
282 282 label_news_new: 뉴스추가
283 283 label_news_plural: 뉴스
284 284 label_news_latest: 최근 뉴스
285 285 label_news_view_all: 모든 뉴스
286 286 label_change_log: 변경 로그
287 287 label_settings: 설정
288 288 label_overview: 개요
289 289 label_version: 버전
290 290 label_version_new: 새로운 버전
291 291 label_version_plural: 버전
292 292 label_confirmation: 확인
293 293 label_export_to: 내보내기
294 294 label_read: 읽기...
295 295 label_public_projects: 공개된 프로젝트
296 296 label_open_issues: 진행중
297 297 label_open_issues_plural: 진행중
298 298 label_closed_issues: 완료됨
299 299 label_closed_issues_plural: 완료됨
300 300 label_total: Total
301 301 label_permissions: 허가권한
302 302 label_current_status: 이슈 상태
303 303 label_new_statuses_allowed: 허용되는 이슈 상태
304 304 label_all: 모두
305 305 label_none: 없음
306 306 label_next: 다음
307 307 label_previous: 이전
308 308 label_used_by: 사용됨
309 309 label_details: 상세
310 310 label_add_note: 이슈노트 추가
311 311 label_per_page: 페이지별
312 312 label_calendar: 달력
313 313 label_months_from: 개월 동안 | 다음부터
314 314 label_gantt: Gantt 챠트
315 315 label_internal: Internal
316 316 label_last_changes: 지난 변경사항 %d 건
317 317 label_change_view_all: 모든 변경 내역 보기
318 318 label_personalize_page: 입맛대로 구성하기(Drag & Drop)
319 319 label_comment: 댓글
320 320 label_comment_plural: 댓글
321 321 label_comment_add: 댓글 추가
322 322 label_comment_added: 댓글이 추가되었습니다.
323 323 label_comment_delete: 댓글 삭제
324 324 label_query: 사용자 검색조건
325 325 label_query_plural: 사용자 검색조건
326 326 label_query_new: 새로운 사용자 검색조건
327 327 label_filter_add: 필터 추가
328 328 label_filter_plural: 필터
329 329 label_equals: 이다
330 330 label_not_equals: 아니다
331 331 label_in_less_than: 이내
332 332 label_in_more_than: 이후
333 333 label_in: 이내
334 334 label_today: 오늘
335 335 label_this_week: 이번주
336 336 label_less_than_ago: 이전
337 337 label_more_than_ago: 이후
338 338 label_ago: 일 전
339 339 label_contains: 포함되는 키워드
340 340 label_not_contains: 포함하지 않는 키워드
341 341 label_day_plural:
342 342 label_repository: 저장소
343 343 label_browse: 저장소 살피기
344 344 label_modification: %d 변경
345 345 label_modification_plural: %d 변경
346 346 label_revision: 개정판(Revision)
347 347 label_revision_plural: 개정판(Revisions)
348 348 label_added: added
349 349 label_modified: modified
350 350 label_deleted: deleted
351 351 label_latest_revision: 최근 개정판
352 352 label_latest_revision_plural: 최근 개정판
353 353 label_view_revisions: 개정판 보기
354 354 label_max_size: 최대 크기
355 355 label_on: 'on'
356 356 label_sort_highest: 최상단으로
357 357 label_sort_higher: 위로
358 358 label_sort_lower: 아래로
359 359 label_sort_lowest: 최하단으로
360 360 label_roadmap: 로드맵
361 361 label_roadmap_due_in: 기한
362 362 label_roadmap_overdue: %s 지연
363 363 label_roadmap_no_issues: 이버전에 해당하는 이슈 없음
364 364 label_search: 검색
365 365 label_result_plural: 결과
366 366 label_all_words: 모든 단어
367 367 label_wiki: 위키
368 368 label_wiki_edit: 위키 편집
369 369 label_wiki_edit_plural: 위키 편집
370 370 label_wiki_page: 위키
371 371 label_wiki_page_plural: 위키
372 372 label_index_by_title: 제목별 색인
373 373 label_index_by_date: 날짜별 색인
374 374 label_current_version: 현재 버전
375 375 label_preview: 미리보기
376 376 label_feed_plural: 피드(Feeds)
377 377 label_changes_details: 모든 상세 변경 내역
378 378 label_issue_tracking: 이슈 추적
379 379 label_spent_time: 작업 시간
380 380 label_f_hour: %.2f 시간
381 381 label_f_hour_plural: %.2f 시간
382 382 label_time_tracking: 시간추적
383 383 label_change_plural: 변경사항들
384 384 label_statistics: 통계
385 385 label_commits_per_month: 월별 커밋 내역
386 386 label_commits_per_author: 아이디별 커밋 내역
387 387 label_view_diff: diff 보기
388 388 label_diff_inline: 한줄로
389 389 label_diff_side_by_side: 두줄로
390 390 label_options: Options
391 391 label_copy_workflow_from: Copy workflow from
392 392 label_permissions_report: 권한 보고서
393 393 label_watched_issues: 감시중인 이슈
394 394 label_related_issues: 연결된 이슈
395 395 label_applied_status: Applied status
396 396 label_loading: 읽는 중...
397 397 label_relation_new: New relation
398 398 label_relation_delete: Delete relation
399 399 label_relates_to: 다음 이슈와 관련되어 있음
400 400 label_duplicates: 다음 이슈와 중복됨.
401 401 label_blocks: 다음 이슈가 해결을 막고 있음.
402 402 label_blocked_by: 막고 있는 이슈
403 403 label_precedes: 다음 이슈보다 앞서서 처리해야 함.
404 404 label_follows: 선처리 이슈
405 405 label_end_to_start: end to start
406 406 label_end_to_end: end to end
407 407 label_start_to_start: start to start
408 408 label_start_to_end: start to end
409 409 label_stay_logged_in: 로그인 유지
410 410 label_disabled: 비활성화
411 411 label_show_completed_versions: 완료된 버전 보기
412 412 label_me:
413 413 label_board: 게시판
414 414 label_board_new: 신규 게시판
415 415 label_board_plural: 게시판
416 416 label_topic_plural: 주제
417 417 label_message_plural: 관련글
418 418 label_message_last: 최종 글
419 419 label_message_new: 새글쓰기
420 420 label_reply_plural: 답글
421 421 label_send_information: 사용자에게 계정정보를 보냄
422 422 label_year:
423 423 label_month:
424 424 label_week:
425 425 label_date_from: 에서
426 426 label_date_to: (으)로
427 427 label_language_based: Language based
428 428 label_sort_by: 정렬방법(%s)
429 429 label_send_test_email: 테스트 메일 보내기
430 430 label_feeds_access_key_created_on: RSS access key created %s ago
431 431 label_module_plural: 모듈
432 432 label_added_time_by: %s이(가) %s 전에 추가함
433 433 label_updated_time: %s 전에 수정됨
434 434 label_jump_to_a_project: 다른 프로젝트로 이동하기
435 435 label_file_plural: 파일
436 436 label_changeset_plural: 변경사항
437 437 label_default_columns: 기본 컬럼
438 438 label_no_change_option: (수정 안함)
439 439 label_bulk_edit_selected_issues: 선택된 이슈들을 한꺼번에 수정하기
440 440 label_theme: 테마
441 441 label_default: 기본
442 442 label_search_titles_only: 제목에서만 찾기
443 443 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
444 444 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
445 445 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
446 446
447 447 button_login: 로그인
448 448 button_submit: 확인
449 449 button_save: 저장
450 450 button_check_all: 모두선택
451 451 button_uncheck_all: 선택해제
452 452 button_delete: 삭제
453 453 button_create: 완료
454 454 button_test: 테스트
455 455 button_edit: 편집
456 456 button_add: 추가
457 457 button_change: 변경
458 458 button_apply: 적용
459 459 button_clear: 초기화
460 460 button_lock: 잠금
461 461 button_unlock: 잠금해제
462 462 button_download: 다운로드
463 463 button_list: 목록
464 464 button_view: 보기
465 465 button_move: 이동
466 466 button_back: 뒤로
467 467 button_cancel: 취소
468 468 button_activate: 활성화
469 469 button_sort: 정렬
470 470 button_log_time: 작업시간 기록
471 471 button_rollback: 이 버전으로 롤백
472 472 button_watch: 감시하기
473 473 button_unwatch: 감시해제
474 474 button_reply: 답글
475 475 button_archive: 잠금보관
476 476 button_unarchive: 잠금보관해제
477 477 button_reset: 리셋
478 478 button_rename: 이름 변경
479 479
480 480 status_active: 사용중
481 481 status_registered: 등록대기
482 482 status_locked: 잠김
483 483
484 484 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
485 485 text_regexp_info: 예) ^[A-Z0-9]+$
486 486 text_min_max_length_info: 0 는 제한이 없음을 의미함
487 487 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
488 488 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 이슈유형을 선택하세요.
489 489 text_are_you_sure: 계속 진행 하시겠습니까?
490 490 text_journal_changed: %s에서 %s(으)로 변경
491 491 text_journal_set_to: %s로 설정
492 492 text_journal_deleted: 삭제됨
493 493 text_tip_task_begin_day: 오늘 시작하는 업무(task)
494 494 text_tip_task_end_day: 오늘 종료하는 업무(task)
495 495 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
496 496 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
497 497 text_caracters_maximum: 최대 %d 글자 가능.
498 498 text_length_between: %d 에서 %d 글자
499 499 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
500 500 text_unallowed_characters: 허용되지 않는 문자열
501 501 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
502 502 text_issues_ref_in_commit_messages: 커밋메시지에서 이슈를 참조하거나 해결하기
503 503 text_issue_added: 이슈[%s]가 보고되었습니다.
504 504 text_issue_updated: 이슈[%s]가 수정되었습니다.
505 505 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
506 506 text_issue_category_destroy_question: 일부 이슈들(%d개)이 이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?
507 507 text_issue_category_destroy_assignments: 카테고리 할당 지우기
508 508 text_issue_category_reassign_to: 이슈를 이 카테고리에 다시 할당하기
509 509 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(이슈를 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
510 510
511 511 default_role_manager: 관리자
512 512 default_role_developper: 개발자
513 513 default_role_reporter: 보고자
514 514 default_tracker_bug: 버그
515 515 default_tracker_feature: 새기능
516 516 default_tracker_support: 지원
517 517 default_issue_status_new: 신규
518 518 default_issue_status_assigned: 확인
519 519 default_issue_status_resolved: 해결
520 520 default_issue_status_feedback: 피드백
521 521 default_issue_status_closed: 완료
522 522 default_issue_status_rejected: 재처리
523 523 default_doc_category_user: 사용자 문서
524 524 default_doc_category_tech: 기술 문서
525 525 default_priority_low: 낮음
526 526 default_priority_normal: 보통
527 527 default_priority_high: 높음
528 528 default_priority_urgent: 긴급
529 529 default_priority_immediate: 즉시
530 530 default_activity_design: 설계
531 531 default_activity_development: 개발
532 532
533 533 enumeration_issue_priorities: 이슈 우선순위
534 534 enumeration_doc_categories: 문서 카테고리
535 535 enumeration_activities: 진행활동(시간 추적)
536 536 button_copy: 복사
537 537 mail_body_account_information_external: 레드마인에 로그인할 때 "%s" 계정을 사용하실 수 있습니다.
538 538 button_change_password: 비밀번호 변경
539 539 label_nobody: nobody
540 540 setting_protocol: 프로토콜
541 mail_body_account_information: Redmine 계정 정보
541 mail_body_account_information: 계정 정보
542 542 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
543 543 setting_time_format: 시간 형식
544 544 label_registration_activation_by_email: 메일로 계정을 활성화하기
545 mail_subject_account_activation_request: 레드마인 계정 활성화 요청
545 mail_subject_account_activation_request: 레드마인 계정 활성화 요청 (%s)
546 546 mail_body_account_activation_request: '새 계정(%s)이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'
547 547 label_registration_automatic_activation: 자동 계정 활성화
548 548 label_registration_manual_activation: 수동 계정 활성화
549 549 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
550 550 field_time_zone: 타임존
551 551 text_caracters_minimum: 최소한 %d 글자 이상이어야 합니다.
552 552 setting_bcc_recipients: 참조자들을 bcc로 숨기기
553 553 button_annotate: Annotate
554 554 label_issues_by: Issues by %s
555 555 field_searchable: 검색가능
556 556 label_display_per_page: 'Per page: %s'
557 557 setting_per_page_options: Objects per page options
558 558 label_age: Age
559 559 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
560 560 text_load_default_configuration: 기본 설정을 로딩하기
561 561 text_no_configuration_data: "역할, 이슈 타입, 이슈 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
562 562 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: %s"
563 563 button_update: 변경사항기록
564 564 label_change_properties: 속성 변경
565 565 label_general: 일반
566 566 label_repository_plural: 저장소들
567 567 label_associated_revisions: Associated revisions
568 568 setting_user_format: Users display format
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: '선택한 이슈를 정말로 삭제하시겠습니까?'
572 572 label_scm: SCM
573 573 text_select_project_modules: '이 프로젝트에서 활성화시킬 모듈을 선택하세요:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: 게시판
581 581 project_module_issue_tracking: 이슈관리
582 582 project_module_wiki: 위키
583 583 project_module_files: 관련파일
584 584 project_module_documents: 문서
585 585 project_module_repository: 저장소
586 586 project_module_news: 뉴스
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: 기본 관리자 계정이 변경되었습니다.
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: 설정
592 592 label_plugins: 플러그인
593 593 label_ldap_authentication: LDAP 인증
594 594 label_downloads_abbr: D/L
595 595 label_add_another_file: Add another file
596 596 label_this_month: this month
597 597 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
598 598 label_last_n_days: last %d days
599 599 label_all_time: all time
600 600 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
601 601 label_this_year: this year
602 602 text_assign_time_entries_to_project: Assign reported hours to the project
603 603 label_date_range: Date range
604 604 label_last_week: last week
605 605 label_yesterday: yesterday
606 606 label_optional_description: Optional description
607 607 label_last_month: last month
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,618 +1,618
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
5 5 actionview_datehelper_select_month_names_abbr: Sau,Vas,Kov,Bal,Geg,Brž,Lie,Rgp,Rgs,Spl,Lap,Grd
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 diena
9 9 actionview_datehelper_time_in_words_day_plural: %d dienų
10 10 actionview_datehelper_time_in_words_hour_about: apytiksliai valanda
11 11 actionview_datehelper_time_in_words_hour_about_plural: apie %d valandas
12 12 actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda
13 13 actionview_datehelper_time_in_words_minute: 1 minutė
14 14 actionview_datehelper_time_in_words_minute_half: pusė minutės
15 15 actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutės
17 17 actionview_datehelper_time_in_words_minute_single: 1 minutė
18 18 actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mažiau, negu %d sekundės
20 20 actionview_instancetag_blank_option: prašom išrinkti
21 21
22 22 activerecord_error_inclusion: nėra įtrauktas į sąrašą
23 23 activerecord_error_exclusion: yra rezervuota(as)
24 24 activerecord_error_invalid: yra negaliojanti(is)
25 25 activerecord_error_confirmation: neatitinka patvirtinimo
26 26 activerecord_error_accepted: turi būti priimtas
27 27 activerecord_error_empty: negali būti tuščiu
28 28 activerecord_error_blank: negali būti tuščiu
29 29 activerecord_error_too_long: yra per ilgas
30 30 activerecord_error_too_short: yra per trumpas
31 31 activerecord_error_wrong_length: neteisingas ilgis
32 32 activerecord_error_taken: buvo jau paimtas
33 33 activerecord_error_not_a_number: nėra skaičius
34 34 activerecord_error_not_a_date: data nėra galiojanti
35 35 activerecord_error_greater_than_start_date: turi būti didesnė negu pradžios data
36 36 activerecord_error_not_same_project: nepriklauso tam pačiam projektui
37 37 activerecord_error_circular_dependency: Šis ryšys sukurtų ciklinę priklausomybę
38 38
39 39 general_fmt_age: %d m.
40 40 general_fmt_age_plural: %d metų(ai)
41 41 general_fmt_date: %%Y-%%m-%%d
42 42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Ne'
46 46 general_text_Yes: 'Taip'
47 47 general_text_no: 'ne'
48 48 general_text_yes: 'taip'
49 49 general_lang_name: 'Lithuanian (lietuvių)'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: UTF-8
52 52 general_pdf_encoding: UTF-8
53 53 general_day_names: pirmadienis,antradienis,trečiadienis,ketvirtadienis,penktadienis,šeštadienis,sekmadienis
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Paskyra buvo sėkmingai atnaujinta.
57 57 notice_account_invalid_creditentials: Negaliojantis vartotojo vardas ar slaptažodis
58 58 notice_account_password_updated: Slaptažodis buvo sėkmingai atnaujintas.
59 59 notice_account_wrong_password: Neteisingas slaptažodis
60 60 notice_account_register_done: Paskyra buvo sėkmingai sukurta. Kad aktyvintumėte savo paskyrą, paspauskite sąsają, kuri jums buvo siųsta elektroniniu paštu.
61 61 notice_account_unknown_email: Nežinomas vartotojas.
62 62 notice_can_t_change_password: Šis pranešimas naudoja išorinį autentiškumo nustatymo šaltinį. Neįmanoma pakeisti slaptažodį.
63 63 notice_account_lost_email_sent: Į Jūsų pašą išsiūstas laiškas su naujo slaptažodžio pasirinkimo instrukcija.
64 64 notice_account_activated: Jūsų paskyra aktyvuota. Galite prisijungti.
65 65 notice_successful_create: Sėkmingas sukūrimas.
66 66 notice_successful_update: Sėkmingas atnaujinimas.
67 67 notice_successful_delete: Sėkmingas panaikinimas.
68 68 notice_successful_connection: Sėkmingas susijungimas.
69 69 notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas.
70 70 notice_locking_conflict: Duomenys atnaujinti kito vartotojo.
71 71 notice_scm_error: Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja.
72 72 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
73 73 notice_email_sent: Laiškas išsiųstas %s
74 74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
75 75 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
76 76 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) %d pasirinkto: %s."
77 77 notice_no_issue_selected: "Nepasirinkta viena problema! Prašom pažymėti problemą, kurią norite redaguoti."
78 78 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
79 79
80 80 error_scm_not_found: "Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja."
81 81 error_scm_command_failed: "Įvyko klaida jungiantis prie saugyklos: %s"
82 82
83 mail_subject_lost_password: Jūsų Redmine slaptažodis
84 mail_body_lost_password: 'Norėdami pakeisti Redmine slaptažodį, spauskite nuorodą:'
85 mail_subject_register: 'Redmine paskyros aktyvavymas'
86 mail_body_register: 'Norėdami aktyvuoti Redmine paskyrą, spauskite nuorodą:'
87 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti prie Redmine.
88 mail_body_account_information: Informacija apie Jūsų Redmine paskyrą
89 mail_subject_account_activation_request: Redmine paskyros aktyvavimo prašymas
83 mail_subject_lost_password: Jūsų %s slaptažodis
84 mail_body_lost_password: 'Norėdami pakeisti slaptažodį, spauskite nuorodą:'
85 mail_subject_register: '%s paskyros aktyvavymas'
86 mail_body_register: 'Norėdami aktyvuoti paskyrą, spauskite nuorodą:'
87 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti.
88 mail_body_account_information: Informacija apie Jūsų paskyrą
89 mail_subject_account_activation_request: %s paskyros aktyvavimo prašymas
90 90 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
91 91
92 92 gui_validation_error: 1 klaida
93 93 gui_validation_error_plural: %d klaidų(os)
94 94
95 95 field_name: Pavadinimas
96 96 field_description: Aprašas
97 97 field_summary: Santrauka
98 98 field_is_required: Reikalaujama
99 99 field_firstname: Vardas
100 100 field_lastname: Pavardė
101 101 field_mail: Email
102 102 field_filename: Byla
103 103 field_filesize: Dydis
104 104 field_downloads: Atsiuntimai
105 105 field_author: Autorius
106 106 field_created_on: Sukūrta
107 107 field_updated_on: Atnaujinta
108 108 field_field_format: Formatas
109 109 field_is_for_all: Visiems projektams
110 110 field_possible_values: Galimos reikšmės
111 111 field_regexp: Pastovi išraiška
112 112 field_min_length: Minimalus ilgis
113 113 field_max_length: Maksimalus ilgis
114 114 field_value: Vertė
115 115 field_category: Kategorija
116 116 field_title: Pavadinimas
117 117 field_project: Projektas
118 118 field_issue: Darbas
119 119 field_status: Būsena
120 120 field_notes: Pastabos
121 121 field_is_closed: Darbas uždarytas
122 122 field_is_default: Numatytoji vertė
123 123 field_tracker: Pėdsekys
124 124 field_subject: Tema
125 125 field_due_date: Užbaigimo data
126 126 field_assigned_to: Paskirtas
127 127 field_priority: Prioritetas
128 128 field_fixed_version: Target version
129 129 field_user: Vartotojas
130 130 field_role: Vaidmuo
131 131 field_homepage: Pagrindinis puslapis
132 132 field_is_public: Viešas
133 133 field_parent: Priklauso projektui
134 134 field_is_in_chlog: Darbai rodomi pokyčių žurnale
135 135 field_is_in_roadmap: Darbai rodomi veiklos grafike
136 136 field_login: Registracijos vardas
137 137 field_mail_notification: Elektroninio pašto pranešimai
138 138 field_admin: Administratorius
139 139 field_last_login_on: Paskutinis ryšys
140 140 field_language: Kalba
141 141 field_effective_date: Data
142 142 field_password: Slaptažodis
143 143 field_new_password: Naujas slaptažodis
144 144 field_password_confirmation: Patvirtinimas
145 145 field_version: Versija
146 146 field_type: Tipas
147 147 field_host: Pagrindinis kompiuteris
148 148 field_port: Jungtis
149 149 field_account: Paskyra
150 150 field_base_dn: Bazinis skiriamasis vardas
151 151 field_attr_login: Registracijos vardo požymis
152 152 field_attr_firstname: Vardo priskiria
153 153 field_attr_lastname: Pavardės priskiria
154 154 field_attr_mail: Elektroninio pašto požymis
155 155 field_onthefly: Vartotojų sukūrimas paskubomis
156 156 field_start_date: Pradėti
157 157 field_done_ratio: %% Atlikta
158 158 field_auth_source: Autentiškumo nustatymo būdas
159 159 field_hide_mail: Paslėpkite mano elektroninio pašto adresą
160 160 field_comments: Komentaras
161 161 field_url: URL
162 162 field_start_page: Pradžios puslapis
163 163 field_subproject: Subprojektas
164 164 field_hours: Valandos
165 165 field_activity: Veikla
166 166 field_spent_on: Data
167 167 field_identifier: Identifikuotojas
168 168 field_is_filter: Panaudotas kaip filtras
169 169 field_issue_to_id: Susijęs darbas
170 170 field_delay: Užlaikymas
171 171 field_assignable: Darbai gali būti paskirti šiam vaidmeniui
172 172 field_redirect_existing_links: Peradresuokite egzistuojančias sąsajas
173 173 field_estimated_hours: Numatyta trukmė
174 174 field_column_names: Skiltys
175 175 field_time_zone: Laiko juosta
176 176 field_searchable: Randamas
177 177 field_default_value: Numatytoji vertė
178 178 setting_app_title: Programos pavadinimas
179 179 setting_app_subtitle: Programos paantraštė
180 180 setting_welcome_text: Pasveikinimas
181 181 setting_default_language: Numatytoji kalba
182 182 setting_login_required: Reikalingas autentiškumo nustatymas
183 183 setting_self_registration: Saviregistracija
184 184 setting_attachment_max_size: Priedo maks. dydis
185 185 setting_issues_export_limit pagal dydį: Darbų eksportavimo riba
186 186 setting_mail_from: Emisijos elektroninio pašto adresas
187 187 setting_bcc_recipients: Akli tikslios kopijos gavėjai (bcc)
188 188 setting_host_name: Pagrindinio kompiuterio vardas
189 189 setting_text_formatting: Teksto apipavidalinimas
190 190 setting_wiki_compression: Wiki istorijos suspaudimas
191 191 setting_feeds_limit: Perdavimo turinio riba
192 192 setting_autofetch_changesets: Automatinis pakeitimų siuntimas
193 193 setting_sys_api_enabled: Įgalinkite WS sandėlio vadybai
194 194 setting_commit_ref_keywords: Nurodymo reikšminiai žodžiai
195 195 setting_commit_fix_keywords: Fiksavimo reikšminiai žodžiai
196 196 setting_autologin: Autoregistracija
197 197 setting_date_format: Datos formatas
198 198 setting_time_format: Laiko formatas
199 199 setting_cross_project_issue_relations: Leisti tarprojektinius darbų ryšius
200 200 setting_issue_list_default_columns: Numatytosios skiltys darbų sąraše
201 201 setting_repositories_encodings: Saugyklos enkodingas
202 202 setting_emails_footer: elektroninio pašto puslapinė poraštė
203 203 setting_protocol: Protokolas
204 204
205 205 label_user: Vartotojas
206 206 label_user_plural: Vartotojai
207 207 label_user_new: Naujas vartotojas
208 208 label_project: Projektas
209 209 label_project_new: Naujas projektas
210 210 label_project_plural: Projektai
211 211 label_project_all: Visi Projektai
212 212 label_project_latest: Paskutiniai projektai
213 213 label_issue: Darbas
214 214 label_issue_new: Naujas darbas
215 215 label_issue_plural: Darbai
216 216 label_issue_view_all: Peržiūrėti visus darbus
217 217 label_issues_by: Darbai pagal %s
218 218 label_document: Dokumentas
219 219 label_document_new: Naujas dokumentas
220 220 label_document_plural: Dokumentai
221 221 label_role: Vaidmuo
222 222 label_role_plural: Vaidmenys
223 223 label_role_new: Naujas vaidmuo
224 224 label_role_and_permissions: Vaidmenys ir leidimai
225 225 label_member: Narys
226 226 label_member_new: Naujas narys
227 227 label_member_plural: Nariai
228 228 label_tracker: Pėdsekys
229 229 label_tracker_plural: Pėdsekiai
230 230 label_tracker_new: Naujas pėdsekys
231 231 label_workflow: Darbų eiga
232 232 label_issue_status: Darbo padėtis
233 233 label_issue_status_plural: Darbų padėtys
234 234 label_issue_status_new: Nauja padėtis
235 235 label_issue_category: Darbo kategorija
236 236 label_issue_category_plural: Darbo kategorijos
237 237 label_issue_category_new: Nauja kategorija
238 238 label_custom_field: Kliento laukas
239 239 label_custom_field_plural: Kliento laukai
240 240 label_custom_field_new: Naujas kliento laukas
241 241 label_enumerations: Išvardinimai
242 242 label_enumeration_new: Nauja vertė
243 243 label_information: Informacija
244 244 label_information_plural: Informacija
245 245 label_please_login: Prašom prisijungti
246 246 label_register: Užsiregistruoti
247 247 label_password_lost: Prarastas slaptažodis
248 248 label_home: Pagrindinis
249 249 label_my_page: Mano puslapis
250 250 label_my_account: Mano paskyra
251 251 label_my_projects: Mano projektai
252 252 label_administration: Administravimas
253 253 label_login: Prisijungti
254 254 label_logout: Atsijungti
255 255 label_help: Pagalba
256 256 label_reported_issues: Pranešti darbai
257 257 label_assigned_to_me_issues: Darbai, priskirti man
258 258 label_last_login: Paskutinis ryšys
259 259 label_last_updates: Paskutinis atnaujinimas
260 260 label_last_updates_plural: %d paskutinis atnaujinimas
261 261 label_registered_on: Užregistruota
262 262 label_activity: Veikla
263 263 label_new: Naujas
264 264 label_logged_as: Prisijungęs kaip
265 265 label_environment: Aplinka
266 266 label_authentication: Autentiškumo nustatymas
267 267 label_auth_source: Autentiškumo nustatymo būdas
268 268 label_auth_source_new: Naujas autentiškumo nustatymo būdas
269 269 label_auth_source_plural: Autentiškumo nustatymo būdai
270 270 label_subproject_plural: Subprojektai
271 271 label_min_max_length: Min - Maks ilgis
272 272 label_list: Sąrašas
273 273 label_date: Data
274 274 label_integer: Sveikasis skaičius
275 275 label_float: Float
276 276 label_boolean: Boolean
277 277 label_string: Tekstas
278 278 label_text: Ilgas tekstas
279 279 label_attribute: Požymis
280 280 label_attribute_plural: Požymiai
281 281 label_download: %d Persiuntimas
282 282 label_download_plural: %d Persiuntimai
283 283 label_no_data: Nėra ką atvaizduoti
284 284 label_change_status: Pakeitimo padėtis
285 285 label_history: Istorija
286 286 label_attachment: Rinkmena
287 287 label_attachment_new: Nauja rinkmena
288 288 label_attachment_delete: Pašalinkite rinkmeną
289 289 label_attachment_plural: Rinkmenos
290 290 label_report: Ataskaita
291 291 label_report_plural: Ataskaitos
292 292 label_news: Žinia
293 293 label_news_new: Pridėkite žinią
294 294 label_news_plural: Žinios
295 295 label_news_latest: Paskutinės naujienos
296 296 label_news_view_all: Peržiūrėti visas žinias
297 297 label_change_log: Pakeitimų žurnalas
298 298 label_settings: Nustatymai
299 299 label_overview: Apžvalga
300 300 label_version: Versija
301 301 label_version_new: Nauja versija
302 302 label_version_plural: Versijos
303 303 label_confirmation: Patvirtinimas
304 304 label_export_to: Eksportuoti į
305 305 label_read: Skaitykite...
306 306 label_public_projects: Vieši projektai
307 307 label_open_issues: atidaryta
308 308 label_open_issues_plural: atidarytos
309 309 label_closed_issues: uždaryta
310 310 label_closed_issues_plural: uždarytos
311 311 label_total: Bendra suma
312 312 label_permissions: Leidimai
313 313 label_current_status: Einamoji padėtis
314 314 label_new_statuses_allowed: Naujos padėtys galimos
315 315 label_all: visi
316 316 label_none: niekas
317 317 label_nobody: niekas
318 318 label_next: Kitas
319 319 label_previous: Ankstesnis
320 320 label_used_by: Naudotas
321 321 label_details: Detalės
322 322 label_add_note: Pridėkite pastabą
323 323 label_per_page: Per puslapį
324 324 label_calendar: Kalendorius
325 325 label_months_from: mėnesiai nuo
326 326 label_gantt: Gantt
327 327 label_internal: Vidinis
328 328 label_last_changes: paskutiniai %d, pokyčiai
329 329 label_change_view_all: Peržiūrėti visus pakeitimus
330 330 label_personalize_page: Suasmeninti šį puslapį
331 331 label_comment: Komentaras
332 332 label_comment_plural: Komentarai
333 333 label_comment_add: Pridėkite komentarą
334 334 label_comment_added: Komentaras pridėtas
335 335 label_comment_delete: Pašalinkite komentarus
336 336 label_query: Užklausa
337 337 label_query_plural: Užklausos
338 338 label_query_new: Nauja užklausa
339 339 label_filter_add: Pridėti filtrą
340 340 label_filter_plural: Filtrai
341 341 label_equals: yra
342 342 label_not_equals: nėra
343 343 label_in_less_than: mažiau negu
344 344 label_in_more_than: daugiau negu
345 345 label_in: in
346 346 label_today: šiandien
347 347 label_this_week: šią savaitę
348 348 label_less_than_ago: mažiau negu dienomis prieš
349 349 label_more_than_ago: daugiau negu dienomis prieš
350 350 label_ago: dienomis prieš
351 351 label_contains: turi savyje
352 352 label_not_contains: neturi savyje
353 353 label_day_plural: dienos
354 354 label_repository: Saugykla
355 355 label_browse: Naršyti
356 356 label_modification: %d pakeitimas
357 357 label_modification_plural: %d pakeitimai
358 358 label_revision: Revizija
359 359 label_revision_plural: Revizijos
360 360 label_added: pridėtas
361 361 label_modified: pakeistas
362 362 label_deleted: pašalintas
363 363 label_latest_revision: Paskutinė revizija
364 364 label_latest_revision_plural: Paskutinės revizijos
365 365 label_view_revisions: Pežiūrėti revizijas
366 366 label_max_size: Maksimalus dydis
367 367 label_on: 'iš'
368 368 label_sort_highest: Perkelti į viršūnę
369 369 label_sort_higher: Perkelti į viršų
370 370 label_sort_lower: Perkelti žemyn
371 371 label_sort_lowest: Perkelti į apačią
372 372 label_roadmap: Veiklos grafikas
373 373 label_roadmap_due_in: Baigiasi po
374 374 label_roadmap_overdue: %s vėluojama
375 375 label_roadmap_no_issues: Jokio darbo šiai versijai nėra
376 376 label_search: Ieškoti
377 377 label_result_plural: Rezultatai
378 378 label_all_words: Visi žodžiai
379 379 label_wiki: Wiki
380 380 label_wiki_edit: Wiki redakcija
381 381 label_wiki_edit_plural: Wiki redakcijos
382 382 label_wiki_page: Wiki puslapis
383 383 label_wiki_page_plural: Wiki puslapiai
384 384 label_index_by_title: Indeksas prie pavadinimo
385 385 label_index_by_date: Indeksas prie datos
386 386 label_current_version: Einamoji versija
387 387 label_preview: Peržiūra
388 388 label_feed_plural: Įeitys(Feeds)
389 389 label_changes_details: Visų pakeitimų detalės
390 390 label_issue_tracking: Darbų sekimas
391 391 label_spent_time: Sugaištas laikas
392 392 label_f_hour: %.2f valanda
393 393 label_f_hour_plural: %.2f valandų
394 394 label_time_tracking: Laiko sekimas
395 395 label_change_plural: Pakeitimai
396 396 label_statistics: Statistika
397 397 label_commits_per_month: Paveda(commit) per mėnesį
398 398 label_commits_per_author: Autoriaus pavedos(commit)
399 399 label_view_diff: Skirtumų peržiūra
400 400 label_diff_inline: įterptas
401 401 label_diff_side_by_side: šalia
402 402 label_options: Pasirinkimai
403 403 label_copy_workflow_from: Kopijuoti darbų eiga iš
404 404 label_permissions_report: Leidimų pranešimas
405 405 label_watched_issues: Stebimi darbai
406 406 label_related_issues: Susiję darbai
407 407 label_applied_status: Taikomoji padėtis
408 408 label_loading: Kraunama...
409 409 label_relation_new: Naujas ryšys
410 410 label_relation_delete: Pašalinkite ryšį
411 411 label_relates_to: susietas su
412 412 label_duplicates: dublikatai
413 413 label_blocks: blokai
414 414 label_blocked_by: blokuotas
415 415 label_precedes: įvyksta pirma
416 416 label_follows: seka
417 417 label_end_to_start: užbaigti, kad pradėti
418 418 label_end_to_end: užbaigti, kad pabaigti
419 419 label_start_to_start: pradėkite pradėti
420 420 label_start_to_end: pradėkite užbaigti
421 421 label_stay_logged_in: Likti prisijungus
422 422 label_disabled: išjungta(as)
423 423 label_show_completed_versions: Parodyti užbaigtas versijas
424 424 label_me:
425 425 label_board: Forumas
426 426 label_board_new: Naujas forumas
427 427 label_board_plural: Forumai
428 428 label_topic_plural: Temos
429 429 label_message_plural: Pranešimai
430 430 label_message_last: Paskutinis pranešimas
431 431 label_message_new: Naujas pranešimas
432 432 label_reply_plural: Atsakymai
433 433 label_send_information: Nusiųsti paskyros informaciją vartotojui
434 434 label_year: Metai
435 435 label_month: Mėnuo
436 436 label_week: Savaitė
437 437 label_date_from: Nuo
438 438 label_date_to: Iki
439 439 label_language_based: Pagrįsta vartotojo kalba
440 440 label_sort_by: Rūšiuoti pagal %s
441 441 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
442 442 label_feeds_access_key_created_on: RSS prieigos raktas sukūrtas prieš %s
443 443 label_module_plural: Moduliai
444 444 label_added_time_by: Pridėjo %s prieš %s
445 445 label_updated_time: Atnaujinta prieš %s
446 446 label_jump_to_a_project: Šuolis į projektą...
447 447 label_file_plural: Bylos
448 448 label_changeset_plural: Changesets
449 449 label_default_columns: Numatytosios skiltys
450 450 label_no_change_option: (Jokio pakeitimo)
451 451 label_bulk_edit_selected_issues: Masinis pasirinktų darbų(issues) redagavimas
452 452 label_theme: Tema
453 453 label_default: Numatyta(as)
454 454 label_search_titles_only: Ieškoti pavadinimų tiktai
455 455 label_user_mail_option_all: "Bet kokiam įvykiui visuose mano projektuose"
456 456 label_user_mail_option_selected: "Bet kokiam įvykiui tiktai pasirinktuose projektuose ..."
457 457 label_user_mail_option_none: "Tiktai dalykai kuriuos stebiu ar esu įtrauktas į"
458 458 label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, kuriuos pats atlieku"
459 459 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
460 460 label_registration_manual_activation: "rankinė paskyros aktyvacija"
461 461 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
462 462
463 463 button_login: Registruotis
464 464 button_submit: Pateikti
465 465 button_save: Išsaugoti
466 466 button_check_all: Žymėti visus
467 467 button_uncheck_all: Atžymėti visus
468 468 button_delete: Trinti
469 469 button_create: Sukurti
470 470 button_test: Testas
471 471 button_edit: Redaguoti
472 472 button_add: Pridėti
473 473 button_change: Keisti
474 474 button_apply: Pritaikyti
475 475 button_clear: Išvalyti
476 476 button_lock: Rakinti
477 477 button_unlock: Atrakinti
478 478 button_download: Atsisiųsti
479 479 button_list: Sąrašas
480 480 button_view: Žiūrėti
481 481 button_move: Perkelti
482 482 button_back: Atgal
483 483 button_cancel: Atšaukti
484 484 button_activate: Aktyvinti
485 485 button_sort: Rūšiuoti
486 486 button_log_time: Praleistas laikas
487 487 button_rollback: Grįžti į šią versiją
488 488 button_watch: Stebėti
489 489 button_unwatch: Nestebėti
490 490 button_reply: Atsakyti
491 491 button_archive: Archyvuoti
492 492 button_unarchive: Išpakuoti
493 493 button_reset: Reset
494 494 button_rename: Pervadinti
495 495 button_change_password: Pakeisti slaptažodį
496 496 button_copy: Kopijuoti
497 497 button_annotate: Rašyti pastabą
498 498
499 499 status_active: aktyvus
500 500 status_registered: užregistruotas
501 501 status_locked: užrakintas
502 502
503 503 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų pranešta elektroniniu paštu.
504 504 text_regexp_info: pvz. ^[A-Z0-9]+$
505 505 text_min_max_length_info: 0 reiškia jokių apribojimų
506 506 text_project_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti šį projektą ir visus susijusius duomenis?
507 507 text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą
508 508 text_are_you_sure: Ar esate įsitikinęs?
509 509 text_journal_changed: pakeistas iš %s į %s
510 510 text_journal_set_to: nustatyta į %s
511 511 text_journal_deleted: ištrintas
512 512 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
513 513 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
514 514 text_tip_task_begin_end_day: užduotis, prasidedanti ir pasibaigianti šią dieną
515 515 text_project_identifier_info: 'Mažosios raidės (a-z), skaičiai ir brūkšniai galimi.<br/>Išsaugojus, identifikuotojas negali būti keičiamas.'
516 516 text_caracters_maximum: %d simbolių maksimumas.
517 517 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
518 518 text_length_between: Ilgis tarp %d ir %d simbolių.
519 519 text_tracker_no_workflow: Jokia darbų eiga neapibrėžta šiam pėdsekiui
520 520 text_unallowed_characters: Neleistini simboliai
521 521 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
522 522 text_issues_ref_in_commit_messages: Darbų pavedimų(commit) nurodymas ir fiksavimas pranešimuose
523 523 text_issue_added: Darbas %s buvo praneštas (by %s).
524 524 text_issue_updated: Darbas %s buvo atnaujintas (by %s).
525 525 text_wiki_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti wiki ir visą jos turinį?
526 526 text_issue_category_destroy_question: Kai kurie darbai (%d) yra paskirti šiai kategorijai. Ką jūs norite daryti?
527 527 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
528 528 text_issue_category_reassign_to: Iš naujo priskirti darbus šiai kategorijai
529 529 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie įvykius, kuriuos jūs stebite, arba į kuriuos esate įtrauktas (pvz. darbai, jūs esate autorius ar įgaliotinis)."
530 530
531 531 default_role_manager: Vadovas
532 532 default_role_developper: Projektuotojas
533 533 default_role_reporter: Pranešėjas
534 534 default_tracker_bug: Klaida
535 535 default_tracker_feature: Ypatybė
536 536 default_tracker_support: Palaikymas
537 537 default_issue_status_new: Nauja
538 538 default_issue_status_assigned: Priskirta
539 539 default_issue_status_resolved: Išspręsta
540 540 default_issue_status_feedback: Grįžtamasis ryšys
541 541 default_issue_status_closed: Uždaryta
542 542 default_issue_status_rejected: Atmesta
543 543 default_doc_category_user: Vartotojo dokumentacija
544 544 default_doc_category_tech: Techniniai dokumentacija
545 545 default_priority_low: Žemas
546 546 default_priority_normal: Normalus
547 547 default_priority_high: Aukštas
548 548 default_priority_urgent: Skubus
549 549 default_priority_immediate: Neatidėliotinas
550 550 default_activity_design: Projektavimas
551 551 default_activity_development: Vystymas
552 552
553 553 enumeration_issue_priorities: Darbo prioritetai
554 554 enumeration_doc_categories: Dokumento kategorijos
555 555 enumeration_activities: Veiklos (laiko sekimas)
556 556 label_display_per_page: '%s įrašų puslapyje'
557 557 setting_per_page_options: Objects per page options
558 558 notice_default_data_loaded: Numatytoji konfiguracija sėkmingai užkrauta.
559 559 label_age: Amžius
560 560 label_general: Bendri
561 561 button_update: Atnaujinti
562 562 setting_issues_export_limit: Darbų eksportavimo limitas
563 563 label_change_properties: Pakeisti nustatymus
564 564 text_load_default_configuration: Užkrauti numatytąj konfiguraciją
565 565 text_no_configuration_data: "Vaidmenys, pėdsekiai, darbų būsenos ir darbų eiga dar nebuvo konfigūruoti.\nGriežtai rekomenduojam užkrauti numatytąją(default)konfiguraciją. Užkrovus, galėsite modifikuoti."
566 566 label_repository_plural: Saugiklos
567 567 error_can_t_load_default_data: "Numatytoji konfiguracija negali būti užkrauta: %s"
568 568 label_associated_revisions: susijusios revizijos
569 569 setting_user_format: Vartotojo atvaizdavimo formatas
570 570 text_status_changed_by_changeset: Pakeista %s revizijoi.
571 571 label_more: Daugiau
572 572 text_issues_destroy_confirmation: 'Ar jūs tikrai norite panaikinti pažimėtą(us) darbą(us)?'
573 573 label_scm: SCM
574 574 text_select_project_modules: 'Parinkite modulius, kuriuos norite naudoti šiame projekte:'
575 575 label_issue_added: Darbas pridėtas
576 576 label_issue_updated: Darbas atnaujintas
577 577 label_document_added: Dokumentas pridėtas
578 578 label_message_posted: Pranešimas pridėtas
579 579 label_file_added: Byla pridėta
580 580 label_news_added: Naujiena pridėta
581 581 project_module_boards: Boards
582 582 project_module_issue_tracking: Issue tracking
583 583 project_module_wiki: Wiki
584 584 project_module_files: Files
585 585 project_module_documents: Documents
586 586 project_module_repository: Repository
587 587 project_module_news: News
588 588 project_module_time_tracking: Time tracking
589 589 text_file_repository_writable: File repository writable
590 590 text_default_administrator_account_changed: Default administrator account changed
591 591 text_rmagick_available: RMagick available (optional)
592 592 button_configure: Configure
593 593 label_plugins: Plugins
594 594 label_ldap_authentication: LDAP authentication
595 595 label_downloads_abbr: D/L
596 596 label_this_month: this month
597 597 label_last_n_days: last %d days
598 598 label_all_time: all time
599 599 label_this_year: this year
600 600 label_date_range: Date range
601 601 label_last_week: last week
602 602 label_yesterday: yesterday
603 603 label_last_month: last month
604 604 label_add_another_file: Add another file
605 605 label_optional_description: Optional description
606 606 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
607 607 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
608 608 text_assign_time_entries_to_project: Assign reported hours to the project
609 609 text_destroy_time_entries: Delete reported hours
610 610 text_reassign_time_entries: 'Reassign reported hours to this issue:'
611 611 setting_activity_days_default: Days displayed on project activity
612 612 label_chronological_order: In chronological order
613 613 field_comments_sorting: Display comments
614 614 label_reverse_chronological_order: In reverse chronological order
615 615 label_preferences: Preferences
616 616 setting_display_subprojects_issues: Display subprojects issues on main projects by default
617 617 label_overall_activity: Overall activity
618 618 setting_default_projects_public: New projects are public by default
@@ -1,618 +1,618
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dag
9 9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 13 actionview_datehelper_time_in_words_minute: 1 minuut
14 14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 20 actionview_instancetag_blank_option: Selecteer
21 21
22 22 activerecord_error_inclusion: staat niet in de lijst
23 23 activerecord_error_exclusion: is gereserveerd
24 24 activerecord_error_invalid: is ongeldig
25 25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 26 activerecord_error_accepted: moet geaccepteerd worden
27 27 activerecord_error_empty: mag niet leeg zijn
28 28 activerecord_error_blank: mag niet blanco zijn
29 29 activerecord_error_too_long: is te lang
30 30 activerecord_error_too_short: is te kort
31 31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 32 activerecord_error_taken: is al in gebruik
33 33 activerecord_error_not_a_number: is geen getal
34 34 activerecord_error_not_a_date: is geen valide datum
35 35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38 38
39 39 general_fmt_age: %d jr
40 40 general_fmt_age_plural: %d jr
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nee'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nee'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Nederlands'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Account is met succes gewijzigd
57 57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
58 58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
59 59 notice_account_wrong_password: Incorrect wachtwoord
60 60 notice_account_register_done: Account is met succes aangemaakt.
61 61 notice_account_unknown_email: Onbekende gebruiker.
62 62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
63 63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
64 64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
65 65 notice_successful_create: Maken succesvol.
66 66 notice_successful_update: Wijzigen succesvol.
67 67 notice_successful_delete: Verwijderen succesvol.
68 68 notice_successful_connection: Verbinding succesvol.
69 69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
70 70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
71 71 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 error_scm_not_found: "Deze ingang of revisie bestaat niet in de repository."
77 77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78 78
79 mail_subject_lost_password: Uw redMine wachtwoord
79 mail_subject_lost_password: Uw %s wachtwoord
80 80 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
81 mail_subject_register: redMine account activatie
82 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
81 mail_subject_register: Uw %s account activatie
82 mail_body_register: 'Gebruik de volgende link om Uw account te activeren:'
83 83
84 84 gui_validation_error: 1 fout
85 85 gui_validation_error_plural: %d fouten
86 86
87 87 field_name: Naam
88 88 field_description: Beschrijving
89 89 field_summary: Samenvatting
90 90 field_is_required: Verplicht
91 91 field_firstname: Voornaam
92 92 field_lastname: Achternaam
93 93 field_mail: Email
94 94 field_filename: Bestand
95 95 field_filesize: Grootte
96 96 field_downloads: Downloads
97 97 field_author: Auteur
98 98 field_created_on: Aangemaakt
99 99 field_updated_on: Gewijzigd
100 100 field_field_format: Formaat
101 101 field_is_for_all: Voor alle projecten
102 102 field_possible_values: Mogelijke waarden
103 103 field_regexp: Reguliere expressie
104 104 field_min_length: Minimale lengte
105 105 field_max_length: Maximale lengte
106 106 field_value: Waarde
107 107 field_category: Categorie
108 108 field_title: Titel
109 109 field_project: Project
110 110 field_issue: Issue
111 111 field_status: Status
112 112 field_notes: Notities
113 113 field_is_closed: Issue gesloten
114 114 field_is_default: Default
115 115 field_tracker: Tracker
116 116 field_subject: Onderwerp
117 117 field_due_date: Verwachte datum gereed
118 118 field_assigned_to: Toegewezen aan
119 119 field_priority: Prioriteit
120 120 field_fixed_version: Target version
121 121 field_user: Gebruiker
122 122 field_role: Rol
123 123 field_homepage: Homepage
124 124 field_is_public: Publiek
125 125 field_parent: Subproject van
126 126 field_is_in_chlog: Issues weergegeven in wijzigingslog
127 127 field_is_in_roadmap: Issues weergegeven in roadmap
128 128 field_login: Inloggen
129 129 field_mail_notification: Mail mededelingen
130 130 field_admin: Administrateur
131 131 field_last_login_on: Laatste bezoek
132 132 field_language: Taal
133 133 field_effective_date: Datum
134 134 field_password: Wachtwoord
135 135 field_new_password: Nieuw wachtwoord
136 136 field_password_confirmation: Bevestigen
137 137 field_version: Versie
138 138 field_type: Type
139 139 field_host: Host
140 140 field_port: Port
141 141 field_account: Account
142 142 field_base_dn: Base DN
143 143 field_attr_login: Login attribuut
144 144 field_attr_firstname: Voornaam attribuut
145 145 field_attr_lastname: Achternaam attribuut
146 146 field_attr_mail: Email attribuut
147 147 field_onthefly: On-the-fly aanmaken van een gebruiker
148 148 field_start_date: Start
149 149 field_done_ratio: %% Gereed
150 150 field_auth_source: Authenticatiemethode
151 151 field_hide_mail: Verberg mijn emailadres
152 152 field_comments: Commentaar
153 153 field_url: URL
154 154 field_start_page: Startpagina
155 155 field_subproject: Subproject
156 156 field_hours: Uren
157 157 field_activity: Activiteit
158 158 field_spent_on: Datum
159 159 field_identifier: Identificatiecode
160 160 field_is_filter: Gebruikt als een filter
161 161 field_issue_to_id: Gerelateerd issue
162 162 field_delay: Vertraging
163 163 field_assignable: Issues can be assigned to this role
164 164 field_redirect_existing_links: Redirect existing links
165 165 field_estimated_hours: Estimated time
166 166 field_default_value: Default value
167 167
168 168 setting_app_title: Applicatie titel
169 169 setting_app_subtitle: Applicatie ondertitel
170 170 setting_welcome_text: Welkomsttekst
171 171 setting_default_language: Default taal
172 172 setting_login_required: Authent. nodig
173 173 setting_self_registration: Zelf-registratie toegestaan
174 174 setting_attachment_max_size: Attachment max. grootte
175 175 setting_issues_export_limit: Limiet export issues
176 176 setting_mail_from: Afzender mail adres
177 177 setting_host_name: Host naam
178 178 setting_text_formatting: Tekst formaat
179 179 setting_wiki_compression: Wiki geschiedenis comprimeren
180 180 setting_feeds_limit: Feed inhoud limiet
181 181 setting_autofetch_changesets: Haal commits automatisch op
182 182 setting_sys_api_enabled: Gebruik WS voor repository beheer
183 183 setting_commit_ref_keywords: Referencing keywords
184 184 setting_commit_fix_keywords: Fixing keywords
185 185 setting_autologin: Autologin
186 186 setting_date_format: Date format
187 187 setting_cross_project_issue_relations: Allow cross-project issue relations
188 188
189 189 label_user: Gebruiker
190 190 label_user_plural: Gebruikers
191 191 label_user_new: Nieuwe gebruiker
192 192 label_project: Project
193 193 label_project_new: Nieuw project
194 194 label_project_plural: Projecten
195 195 label_project_all: Alle Projecten
196 196 label_project_latest: Nieuwste projecten
197 197 label_issue: Issue
198 198 label_issue_new: Nieuw issue
199 199 label_issue_plural: Issues
200 200 label_issue_view_all: Bekijk alle issues
201 201 label_document: Document
202 202 label_document_new: Nieuw document
203 203 label_document_plural: Documenten
204 204 label_role: Rol
205 205 label_role_plural: Rollen
206 206 label_role_new: Nieuwe rol
207 207 label_role_and_permissions: Rollen en permissies
208 208 label_member: Lid
209 209 label_member_new: Nieuw lid
210 210 label_member_plural: Leden
211 211 label_tracker: Tracker
212 212 label_tracker_plural: Trackers
213 213 label_tracker_new: Nieuwe tracker
214 214 label_workflow: Workflow
215 215 label_issue_status: Issue status
216 216 label_issue_status_plural: Issue statussen
217 217 label_issue_status_new: Nieuwe status
218 218 label_issue_category: Issue categorie
219 219 label_issue_category_plural: Issue categorieën
220 220 label_issue_category_new: Nieuwe categorie
221 221 label_custom_field: Custom veld
222 222 label_custom_field_plural: Custom velden
223 223 label_custom_field_new: Nieuw custom veld
224 224 label_enumerations: Enumeraties
225 225 label_enumeration_new: Nieuwe waarde
226 226 label_information: Informatie
227 227 label_information_plural: Informatie
228 228 label_please_login: Gaarne inloggen
229 229 label_register: Registreer
230 230 label_password_lost: Wachtwoord verloren
231 231 label_home: Home
232 232 label_my_page: Mijn pagina
233 233 label_my_account: Mijn account
234 234 label_my_projects: Mijn projecten
235 235 label_administration: Administratie
236 236 label_login: Inloggen
237 237 label_logout: Uitloggen
238 238 label_help: Help
239 239 label_reported_issues: Gemelde issues
240 240 label_assigned_to_me_issues: Aan mij toegewezen issues
241 241 label_last_login: Laatste bezoek
242 242 label_last_updates: Laatste wijziging
243 243 label_last_updates_plural: %d laatste wijziging
244 244 label_registered_on: Geregistreerd op
245 245 label_activity: Activiteit
246 246 label_new: Nieuw
247 247 label_logged_as: Ingelogd als
248 248 label_environment: Omgeving
249 249 label_authentication: Authenticatie
250 250 label_auth_source: Authenticatie modus
251 251 label_auth_source_new: Nieuwe authenticatie modus
252 252 label_auth_source_plural: Authenticatie modi
253 253 label_subproject_plural: Subprojecten
254 254 label_min_max_length: Min - Max lengte
255 255 label_list: Lijst
256 256 label_date: Datum
257 257 label_integer: Integer
258 258 label_boolean: Boolean
259 259 label_string: Tekst
260 260 label_text: Lange tekst
261 261 label_attribute: Attribuut
262 262 label_attribute_plural: Attributen
263 263 label_download: %d Download
264 264 label_download_plural: %d Downloads
265 265 label_no_data: Geen gegevens om te tonen
266 266 label_change_status: Wijzig status
267 267 label_history: Geschiedenis
268 268 label_attachment: Bestand
269 269 label_attachment_new: Nieuw bestand
270 270 label_attachment_delete: Verwijder bestand
271 271 label_attachment_plural: Bestanden
272 272 label_report: Rapport
273 273 label_report_plural: Rapporten
274 274 label_news: Nieuws
275 275 label_news_new: Voeg nieuws toe
276 276 label_news_plural: Nieuws
277 277 label_news_latest: Laatste nieuws
278 278 label_news_view_all: Bekijk al het nieuws
279 279 label_change_log: Wijzigingslog
280 280 label_settings: Instellingen
281 281 label_overview: Overzicht
282 282 label_version: Versie
283 283 label_version_new: Nieuwe versie
284 284 label_version_plural: Versies
285 285 label_confirmation: Bevestiging
286 286 label_export_to: Exporteer naar
287 287 label_read: Lees...
288 288 label_public_projects: Publieke projecten
289 289 label_open_issues: open
290 290 label_open_issues_plural: open
291 291 label_closed_issues: gesloten
292 292 label_closed_issues_plural: gesloten
293 293 label_total: Totaal
294 294 label_permissions: Permissies
295 295 label_current_status: Huidige status
296 296 label_new_statuses_allowed: Nieuwe statuses toegestaan
297 297 label_all: alle
298 298 label_none: geen
299 299 label_next: Volgende
300 300 label_previous: Vorige
301 301 label_used_by: Gebruikt door
302 302 label_details: Details
303 303 label_add_note: Voeg een notitie toe
304 304 label_per_page: Per pagina
305 305 label_calendar: Kalender
306 306 label_months_from: maanden vanaf
307 307 label_gantt: Gantt
308 308 label_internal: Intern
309 309 label_last_changes: laatste %d wijzigingen
310 310 label_change_view_all: Bekijk alle wijzigingen
311 311 label_personalize_page: Personaliseer deze pagina
312 312 label_comment: Commentaar
313 313 label_comment_plural: Commentaar
314 314 label_comment_add: Voeg commentaar toe
315 315 label_comment_added: Commentaar toegevoegd
316 316 label_comment_delete: Verwijder commentaar
317 317 label_query: Eigen zoekvraag
318 318 label_query_plural: Eigen zoekvragen
319 319 label_query_new: Nieuwe zoekvraag
320 320 label_filter_add: Voeg filter toe
321 321 label_filter_plural: Filters
322 322 label_equals: is gelijk
323 323 label_not_equals: is niet gelijk
324 324 label_in_less_than: in minder dan
325 325 label_in_more_than: in meer dan
326 326 label_in: in
327 327 label_today: vandaag
328 328 label_this_week: this week
329 329 label_less_than_ago: minder dan dagen geleden
330 330 label_more_than_ago: meer dan dagen geleden
331 331 label_ago: dagen geleden
332 332 label_contains: bevat
333 333 label_not_contains: bevat niet
334 334 label_day_plural: dagen
335 335 label_repository: Repository
336 336 label_browse: Blader
337 337 label_modification: %d wijziging
338 338 label_modification_plural: %d wijzigingen
339 339 label_revision: Revisie
340 340 label_revision_plural: Revisies
341 341 label_added: toegevoegd
342 342 label_modified: gewijzigd
343 343 label_deleted: verwijderd
344 344 label_latest_revision: Meest recente revisie
345 345 label_latest_revision_plural: Meest recente revisies
346 346 label_view_revisions: Bekijk revisies
347 347 label_max_size: Maximum grootte
348 348 label_on: 'van'
349 349 label_sort_highest: Verplaats naar begin
350 350 label_sort_higher: Verplaats naar boven
351 351 label_sort_lower: Verplaats naar beneden
352 352 label_sort_lowest: Verplaats naar eind
353 353 label_roadmap: Roadmap
354 354 label_roadmap_due_in: Due in
355 355 label_roadmap_overdue: %s late
356 356 label_roadmap_no_issues: Geen issues voor deze versie
357 357 label_search: Zoeken
358 358 label_result_plural: Resultaten
359 359 label_all_words: Alle woorden
360 360 label_wiki: Wiki
361 361 label_wiki_edit: Wiki edit
362 362 label_wiki_edit_plural: Wiki edits
363 363 label_wiki_page: Wiki page
364 364 label_wiki_page_plural: Wiki pages
365 365 label_index_by_title: Index by title
366 366 label_index_by_date: Index by date
367 367 label_current_version: Huidige versie
368 368 label_preview: Testweergave
369 369 label_feed_plural: Feeds
370 370 label_changes_details: Details van alle wijzigingen
371 371 label_issue_tracking: Issue tracking
372 372 label_spent_time: Gespendeerde tijd
373 373 label_f_hour: %.2f uur
374 374 label_f_hour_plural: %.2f uren
375 375 label_time_tracking: Tijd tracking
376 376 label_change_plural: Wijzigingen
377 377 label_statistics: Statistieken
378 378 label_commits_per_month: Commits per maand
379 379 label_commits_per_author: Commits per auteur
380 380 label_view_diff: Bekijk verschillen
381 381 label_diff_inline: inline
382 382 label_diff_side_by_side: naast elkaar
383 383 label_options: Opties
384 384 label_copy_workflow_from: Kopieer workflow van
385 385 label_permissions_report: Permissies rapport
386 386 label_watched_issues: Gemonitorde issues
387 387 label_related_issues: Gerelateerde issues
388 388 label_applied_status: Toegekende status
389 389 label_loading: Laden...
390 390 label_relation_new: Nieuwe relatie
391 391 label_relation_delete: Verwijder relatie
392 392 label_relates_to: gerelateerd aan
393 393 label_duplicates: dupliceert
394 394 label_blocks: blokkeert
395 395 label_blocked_by: geblokkeerd door
396 396 label_precedes: gaat vooraf aan
397 397 label_follows: volgt op
398 398 label_end_to_start: eind tot start
399 399 label_end_to_end: eind tot eind
400 400 label_start_to_start: start tot start
401 401 label_start_to_end: start tot eind
402 402 label_stay_logged_in: Blijf ingelogd
403 403 label_disabled: uitgeschakeld
404 404 label_show_completed_versions: Toon afgeronde versies
405 405 label_me: ik
406 406 label_board: Forum
407 407 label_board_new: Nieuw forum
408 408 label_board_plural: Forums
409 409 label_topic_plural: Onderwerpen
410 410 label_message_plural: Berichten
411 411 label_message_last: Laatste bericht
412 412 label_message_new: Nieuw bericht
413 413 label_reply_plural: Antwoorden
414 414 label_send_information: Send account information to the user
415 415 label_year: Year
416 416 label_month: Month
417 417 label_week: Week
418 418 label_date_from: From
419 419 label_date_to: To
420 420 label_language_based: Language based
421 421 label_sort_by: Sort by %s
422 422 label_send_test_email: Send a test email
423 423 label_feeds_access_key_created_on: RSS access key created %s ago
424 424 label_module_plural: Modules
425 425 label_added_time_by: Added by %s %s ago
426 426 label_updated_time: Updated %s ago
427 427 label_jump_to_a_project: Jump to a project...
428 428
429 429 button_login: Inloggen
430 430 button_submit: Toevoegen
431 431 button_save: Bewaren
432 432 button_check_all: Selecteer alle
433 433 button_uncheck_all: Deselecteer alle
434 434 button_delete: Verwijder
435 435 button_create: Maak
436 436 button_test: Test
437 437 button_edit: Bewerk
438 438 button_add: Voeg toe
439 439 button_change: Wijzig
440 440 button_apply: Pas toe
441 441 button_clear: Leeg maken
442 442 button_lock: Lock
443 443 button_unlock: Unlock
444 444 button_download: Download
445 445 button_list: Lijst
446 446 button_view: Bekijken
447 447 button_move: Verplaatsen
448 448 button_back: Terug
449 449 button_cancel: Annuleer
450 450 button_activate: Activeer
451 451 button_sort: Sorteer
452 452 button_log_time: Log tijd
453 453 button_rollback: Rollback naar deze versie
454 454 button_watch: Monitor
455 455 button_unwatch: Niet meer monitoren
456 456 button_reply: Antwoord
457 457 button_archive: Archive
458 458 button_unarchive: Unarchive
459 459 button_reset: Reset
460 460 button_rename: Rename
461 461
462 462 status_active: Actief
463 463 status_registered: geregistreerd
464 464 status_locked: gelockt
465 465
466 466 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
467 467 text_regexp_info: bv. ^[A-Z0-9]+$
468 468 text_min_max_length_info: 0 betekent geen restrictie
469 469 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
470 470 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
471 471 text_are_you_sure: Weet U het zeker ?
472 472 text_journal_changed: gewijzigd van %s naar %s
473 473 text_journal_set_to: ingesteld op %s
474 474 text_journal_deleted: verwijderd
475 475 text_tip_task_begin_day: taak die op deze dag begint
476 476 text_tip_task_end_day: taak die op deze dag eindigt
477 477 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
478 478 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
479 479 text_caracters_maximum: %d van maximum aantal tekens.
480 480 text_length_between: Lengte tussen %d en %d tekens.
481 481 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
482 482 text_unallowed_characters: Niet toegestane tekens
483 483 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
484 484 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
485 485 text_issue_added: Issue %s is gerapporteerd (by %s).
486 486 text_issue_updated: Issue %s is gewijzigd (by %s).
487 487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 489 text_issue_category_destroy_assignments: Remove category assignments
490 490 text_issue_category_reassign_to: Reassing issues to this category
491 491
492 492 default_role_manager: Manager
493 493 default_role_developper: Ontwikkelaar
494 494 default_role_reporter: Rapporteur
495 495 default_tracker_bug: Bug
496 496 default_tracker_feature: Feature
497 497 default_tracker_support: Support
498 498 default_issue_status_new: Nieuw
499 499 default_issue_status_assigned: Toegewezen
500 500 default_issue_status_resolved: Opgelost
501 501 default_issue_status_feedback: Terugkoppeling
502 502 default_issue_status_closed: Gesloten
503 503 default_issue_status_rejected: Afgewezen
504 504 default_doc_category_user: Gebruikersdocumentatie
505 505 default_doc_category_tech: Technische documentatie
506 506 default_priority_low: Laag
507 507 default_priority_normal: Normaal
508 508 default_priority_high: Hoog
509 509 default_priority_urgent: Spoed
510 510 default_priority_immediate: Onmiddellijk
511 511 default_activity_design: Design
512 512 default_activity_development: Development
513 513
514 514 enumeration_issue_priorities: Issue prioriteiten
515 515 enumeration_doc_categories: Document categorieën
516 516 enumeration_activities: Activiteiten (tijd tracking)
517 517 text_comma_separated: Multiple values allowed (comma separated).
518 518 label_file_plural: Files
519 519 label_changeset_plural: Changesets
520 520 field_column_names: Columns
521 521 label_default_columns: Default columns
522 522 setting_issue_list_default_columns: Default columns displayed on the issue list
523 523 setting_repositories_encodings: Repositories encodings
524 524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
525 525 label_bulk_edit_selected_issues: Bulk edit selected issues
526 526 label_no_change_option: (No change)
527 527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
528 528 label_theme: Theme
529 529 label_default: Default
530 530 label_search_titles_only: Search titles only
531 531 label_nobody: nobody
532 532 button_change_password: Change password
533 533 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
534 534 label_user_mail_option_selected: "For any event on the selected projects only..."
535 535 label_user_mail_option_all: "For any event on all my projects"
536 536 label_user_mail_option_none: "Only for things I watch or I'm involved in"
537 537 setting_emails_footer: Emails footer
538 538 label_float: Float
539 539 button_copy: Copy
540 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
541 mail_body_account_information: Your Redmine account information
540 mail_body_account_information_external: You can use your "%s" account to log in.
541 mail_body_account_information: Your account information
542 542 setting_protocol: Protocol
543 543 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
544 544 setting_time_format: Time format
545 545 label_registration_activation_by_email: account activation by email
546 mail_subject_account_activation_request: Redmine account activation request
546 mail_subject_account_activation_request: %s account activation request
547 547 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
548 548 label_registration_automatic_activation: automatic account activation
549 549 label_registration_manual_activation: manual account activation
550 550 notice_account_pending: "Your account was created and is now pending administrator approval."
551 551 field_time_zone: Time zone
552 552 text_caracters_minimum: Must be at least %d characters long.
553 553 setting_bcc_recipients: Blind carbon copy recipients (bcc)
554 554 button_annotate: Annotate
555 555 label_issues_by: Issues by %s
556 556 field_searchable: Searchable
557 557 label_display_per_page: 'Per page: %s'
558 558 setting_per_page_options: Objects per page options
559 559 label_age: Age
560 560 notice_default_data_loaded: Default configuration successfully loaded.
561 561 text_load_default_configuration: Load the default configuration
562 562 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
563 563 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
564 564 button_update: Update
565 565 label_change_properties: Change properties
566 566 label_general: General
567 567 label_repository_plural: Repositories
568 568 label_associated_revisions: Associated revisions
569 569 setting_user_format: Users display format
570 570 text_status_changed_by_changeset: Applied in changeset %s.
571 571 label_more: More
572 572 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
573 573 label_scm: SCM
574 574 text_select_project_modules: 'Select modules to enable for this project:'
575 575 label_issue_added: Issue added
576 576 label_issue_updated: Issue updated
577 577 label_document_added: Document added
578 578 label_message_posted: Message added
579 579 label_file_added: File added
580 580 label_news_added: News added
581 581 project_module_boards: Boards
582 582 project_module_issue_tracking: Issue tracking
583 583 project_module_wiki: Wiki
584 584 project_module_files: Files
585 585 project_module_documents: Documents
586 586 project_module_repository: Repository
587 587 project_module_news: News
588 588 project_module_time_tracking: Time tracking
589 589 text_file_repository_writable: File repository writable
590 590 text_default_administrator_account_changed: Default administrator account changed
591 591 text_rmagick_available: RMagick available (optional)
592 592 button_configure: Configure
593 593 label_plugins: Plugins
594 594 label_ldap_authentication: LDAP authentication
595 595 label_downloads_abbr: D/L
596 596 label_this_month: this month
597 597 label_last_n_days: last %d days
598 598 label_all_time: all time
599 599 label_this_year: this year
600 600 label_date_range: Date range
601 601 label_last_week: last week
602 602 label_yesterday: yesterday
603 603 label_last_month: last month
604 604 label_add_another_file: Add another file
605 605 label_optional_description: Optional description
606 606 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
607 607 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
608 608 text_assign_time_entries_to_project: Assign reported hours to the project
609 609 text_destroy_time_entries: Delete reported hours
610 610 text_reassign_time_entries: 'Reassign reported hours to this issue:'
611 611 setting_activity_days_default: Days displayed on project activity
612 612 label_chronological_order: In chronological order
613 613 field_comments_sorting: Display comments
614 614 label_reverse_chronological_order: In reverse chronological order
615 615 label_preferences: Preferences
616 616 setting_display_subprojects_issues: Display subprojects issues on main projects by default
617 617 label_overall_activity: Overall activity
618 618 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
5 5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dzień
9 9 actionview_datehelper_time_in_words_day_plural: %d dni
10 10 actionview_datehelper_time_in_words_hour_about: około godziny
11 11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
12 12 actionview_datehelper_time_in_words_hour_about_single: około godziny
13 13 actionview_datehelper_time_in_words_minute: 1 minuta
14 14 actionview_datehelper_time_in_words_minute_half: pół minuty
15 15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
16 16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
20 20 actionview_instancetag_blank_option: Proszę wybierz
21 21
22 22 activerecord_error_inclusion: nie jest zawarte na liście
23 23 activerecord_error_exclusion: jest zarezerwowane
24 24 activerecord_error_invalid: jest nieprawidłowe
25 25 activerecord_error_confirmation: nie pasuje do potwierdzenia
26 26 activerecord_error_accepted: musi być zaakceptowane
27 27 activerecord_error_empty: nie może być puste
28 28 activerecord_error_blank: nie może być czyste
29 29 activerecord_error_too_long: jest za długie
30 30 activerecord_error_too_short: jest za krótkie
31 31 activerecord_error_wrong_length: ma złą długość
32 32 activerecord_error_taken: jest już wybrane
33 33 activerecord_error_not_a_number: nie jest numerem
34 34 activerecord_error_not_a_date: nie jest prawidłową datą
35 35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
36 36 activerecord_error_not_same_project: nie należy do tego samego projektu
37 37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
38 38
39 39 general_fmt_age: %d lat
40 40 general_fmt_age_plural: %d lat
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nie'
46 46 general_text_Yes: 'Tak'
47 47 general_text_no: 'nie'
48 48 general_text_yes: 'tak'
49 49 general_lang_name: 'Polski'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-2
52 52 general_pdf_encoding: ISO-8859-2
53 53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Konto prawidłowo zaktualizowane.
57 57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
58 58 notice_account_password_updated: Hasło prawidłowo zmienione.
59 59 notice_account_wrong_password: Złe hasło
60 60 notice_account_register_done: Konto prawidłowo stworzone.
61 61 notice_account_unknown_email: Nieznany użytkownik.
62 62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
63 63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
64 64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
65 65 notice_successful_create: Udane stworzenie.
66 66 notice_successful_update: Udane poprawienie.
67 67 notice_successful_delete: Udane usunięcie.
68 68 notice_successful_connection: Udane nawiązanie połączenia.
69 69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
70 70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
71 71 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
72 72
73 73 error_scm_not_found: "Wejście i/lub zmiana nie istnieje w repozytorium."
74 74 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
75 75
76 mail_subject_lost_password: Twoje hasło do redMine
76 mail_subject_lost_password: Twoje hasło do %s
77 77 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
78 mail_subject_register: Aktywacja konta w redMine
79 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
78 mail_subject_register: Aktywacja konta w %s
79 mail_body_register: 'W celu aktywacji Twojego konta, użyj poniższego odnośnika:'
80 80
81 81 gui_validation_error: 1 błąd
82 82 gui_validation_error_plural: %d błędów
83 83
84 84 field_name: Nazwa
85 85 field_description: Opis
86 86 field_summary: Podsumowanie
87 87 field_is_required: Wymagane
88 88 field_firstname: Imię
89 89 field_lastname: Nazwisko
90 90 field_mail: Email
91 91 field_filename: Plik
92 92 field_filesize: Rozmiar
93 93 field_downloads: Pobrań
94 94 field_author: Autor
95 95 field_created_on: Stworzone
96 96 field_updated_on: Zmienione
97 97 field_field_format: Format
98 98 field_is_for_all: Dla wszystkich projektów
99 99 field_possible_values: Możliwe wartości
100 100 field_regexp: Wyrażenie regularne
101 101 field_min_length: Minimalna długość
102 102 field_max_length: Maksymalna długość
103 103 field_value: Wartość
104 104 field_category: Kategoria
105 105 field_title: Tytuł
106 106 field_project: Projekt
107 107 field_issue: Zagadnienie
108 108 field_status: Status
109 109 field_notes: Notatki
110 110 field_is_closed: Zagadnienie zamknięte
111 111 field_is_default: Domyślny status
112 112 field_tracker: Typ zagadnienia
113 113 field_subject: Temat
114 114 field_due_date: Data oddania
115 115 field_assigned_to: Przydzielony do
116 116 field_priority: Priorytet
117 117 field_fixed_version: Target version
118 118 field_user: Użytkownik
119 119 field_role: Rola
120 120 field_homepage: Strona www
121 121 field_is_public: Publiczny
122 122 field_parent: Podprojekt
123 123 field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
124 124 field_is_in_roadmap: Zagadnienie pokazywane na mapie
125 125 field_login: Login
126 126 field_mail_notification: Powiadomienia Email
127 127 field_admin: Administrator
128 128 field_last_login_on: Ostatnie połączenie
129 129 field_language: Język
130 130 field_effective_date: Data
131 131 field_password: Hasło
132 132 field_new_password: Nowe hasło
133 133 field_password_confirmation: Potwierdzenie
134 134 field_version: Wersja
135 135 field_type: Typ
136 136 field_host: Host
137 137 field_port: Port
138 138 field_account: Konto
139 139 field_base_dn: Base DN
140 140 field_attr_login: Login atrybut
141 141 field_attr_firstname: Imię atrybut
142 142 field_attr_lastname: Nazwisko atrybut
143 143 field_attr_mail: Email atrybut
144 144 field_onthefly: Tworzenie użytkownika w locie
145 145 field_start_date: Start
146 146 field_done_ratio: %% Wykonane
147 147 field_auth_source: Tryb identyfikacji
148 148 field_hide_mail: Ukryj mój adres email
149 149 field_comments: Komentarz
150 150 field_url: URL
151 151 field_start_page: Strona startowa
152 152 field_subproject: Podprojekt
153 153 field_hours: Godzin
154 154 field_activity: Aktywność
155 155 field_spent_on: Data
156 156 field_identifier: Identifikator
157 157 field_is_filter: Atrybut filtrowania
158 158 field_issue_to_id: Powiązania zagadnienia
159 159 field_delay: Opóźnienie
160 160 field_default_value: Domyślny
161 161
162 162 setting_app_title: Tytuł aplikacji
163 163 setting_app_subtitle: Podtytuł aplikacji
164 164 setting_welcome_text: Tekst powitalny
165 165 setting_default_language: Domyślny język
166 166 setting_login_required: Identyfikacja wymagana
167 167 setting_self_registration: Własna rejestracja umożliwiona
168 168 setting_attachment_max_size: Maks. rozm. załącznika
169 169 setting_issues_export_limit: Limit eksportu zagadnień
170 170 setting_mail_from: Adres email wysyłki
171 171 setting_host_name: Nazwa hosta
172 172 setting_text_formatting: Formatowanie tekstu
173 173 setting_wiki_compression: Kompresja historii Wiki
174 174 setting_feeds_limit: Limit danych RSS
175 175 setting_autofetch_changesets: Auto-odświeżanie CVS
176 176 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
177 177 setting_commit_ref_keywords: Terminy odnoszące (CVS)
178 178 setting_commit_fix_keywords: Terminy ustalające (CVS)
179 179 setting_autologin: Auto logowanie
180 180 setting_date_format: Format daty
181 181
182 182 label_user: Użytkownik
183 183 label_user_plural: Użytkownicy
184 184 label_user_new: Nowy użytkownik
185 185 label_project: Projekt
186 186 label_project_new: Nowy projekt
187 187 label_project_plural: Projekty
188 188 label_project_all: Wszystkie projekty
189 189 label_project_latest: Ostatnie projekty
190 190 label_issue: Zagadnienie
191 191 label_issue_new: Nowe zagadnienie
192 192 label_issue_plural: Zagadnienia
193 193 label_issue_view_all: Zobacz wszystkie zagadnienia
194 194 label_document: Dokument
195 195 label_document_new: Nowy dokument
196 196 label_document_plural: Dokumenty
197 197 label_role: Rola
198 198 label_role_plural: Role
199 199 label_role_new: Nowa rola
200 200 label_role_and_permissions: Role i Uprawnienia
201 201 label_member: Uczestnik
202 202 label_member_new: Nowy uczestnik
203 203 label_member_plural: Uczestnicy
204 204 label_tracker: Typ zagadnienia
205 205 label_tracker_plural: Typy zagadnień
206 206 label_tracker_new: Nowy typ zagadnienia
207 207 label_workflow: Przepływ
208 208 label_issue_status: Status zagadnienia
209 209 label_issue_status_plural: Statusy zagadnień
210 210 label_issue_status_new: Nowy status
211 211 label_issue_category: Kategoria zagadnienia
212 212 label_issue_category_plural: Kategorie zagadnień
213 213 label_issue_category_new: Nowa kategoria
214 214 label_custom_field: Dowolne pole
215 215 label_custom_field_plural: Dowolne pola
216 216 label_custom_field_new: Nowe dowolne pole
217 217 label_enumerations: Wyliczenia
218 218 label_enumeration_new: Nowa wartość
219 219 label_information: Informacja
220 220 label_information_plural: Informacje
221 221 label_please_login: Zaloguj się
222 222 label_register: Rejestracja
223 223 label_password_lost: Zapomniane hasło
224 224 label_home: Główna
225 225 label_my_page: Moja strona
226 226 label_my_account: Moje konto
227 227 label_my_projects: Moje projekty
228 228 label_administration: Administracja
229 229 label_login: Login
230 230 label_logout: Wylogowanie
231 231 label_help: Pomoc
232 232 label_reported_issues: Wprowadzone zagadnienia
233 233 label_assigned_to_me_issues: Zagadnienia przypisane do mnie
234 234 label_last_login: Ostatnie połączenie
235 235 label_last_updates: Ostatnia zmieniana
236 236 label_last_updates_plural: %d ostatnie zmiany
237 237 label_registered_on: Zarejestrowany
238 238 label_activity: Aktywność
239 239 label_new: Nowy
240 240 label_logged_as: Zalogowany jako
241 241 label_environment: Środowisko
242 242 label_authentication: Identyfikacja
243 243 label_auth_source: Tryb identyfikacji
244 244 label_auth_source_new: Nowy tryb identyfikacji
245 245 label_auth_source_plural: Tryby identyfikacji
246 246 label_subproject_plural: Podprojekty
247 247 label_min_max_length: Min - Maks długość
248 248 label_list: Lista
249 249 label_date: Data
250 250 label_integer: Liczba całkowita
251 251 label_boolean: Wartość logiczna
252 252 label_string: Tekst
253 253 label_text: Długi tekst
254 254 label_attribute: Atrybut
255 255 label_attribute_plural: Atrybuty
256 256 label_download: %d Pobranie
257 257 label_download_plural: %d Pobrania
258 258 label_no_data: Brak danych do pokazania
259 259 label_change_status: Status zmian
260 260 label_history: Historia
261 261 label_attachment: Plik
262 262 label_attachment_new: Nowy plik
263 263 label_attachment_delete: Skasuj plik
264 264 label_attachment_plural: Pliki
265 265 label_report: Raport
266 266 label_report_plural: Raporty
267 267 label_news: Wiadomość
268 268 label_news_new: Dodaj wiadomość
269 269 label_news_plural: Wiadomości
270 270 label_news_latest: Ostatnie wiadomości
271 271 label_news_view_all: Pokaż wszystkie wiadomości
272 272 label_change_log: Lista zmian
273 273 label_settings: Ustawienia
274 274 label_overview: Przegląd
275 275 label_version: Wersja
276 276 label_version_new: Nowa wersja
277 277 label_version_plural: Wersje
278 278 label_confirmation: Potwierdzenie
279 279 label_export_to: Eksportuj do
280 280 label_read: Czytanie...
281 281 label_public_projects: Projekty publiczne
282 282 label_open_issues: otwarte
283 283 label_open_issues_plural: otwarte
284 284 label_closed_issues: zamknięte
285 285 label_closed_issues_plural: zamknięte
286 286 label_total: Ogółem
287 287 label_permissions: Uprawnienia
288 288 label_current_status: Obecny status
289 289 label_new_statuses_allowed: Uprawnione nowe statusy
290 290 label_all: wszystko
291 291 label_none: brak
292 292 label_next: Następne
293 293 label_previous: Poprzednie
294 294 label_used_by: Używane przez
295 295 label_details: Szczegóły
296 296 label_add_note: Dodaj notatkę
297 297 label_per_page: Na stronę
298 298 label_calendar: Kalendarz
299 299 label_months_from: miesiące od
300 300 label_gantt: Gantt
301 301 label_internal: Wewnętrzny
302 302 label_last_changes: ostatnie %d zmian
303 303 label_change_view_all: Pokaż wszystkie zmiany
304 304 label_personalize_page: Personalizuj tą stronę
305 305 label_comment: Komentarz
306 306 label_comment_plural: Komentarze
307 307 label_comment_add: Dodaj komentarz
308 308 label_comment_added: Komentarz dodany
309 309 label_comment_delete: Usuń komentarze
310 310 label_query: Dowolne zapytanie
311 311 label_query_plural: Dowolne zapytania
312 312 label_query_new: Nowe zapytanie
313 313 label_filter_add: Dodaj filtr
314 314 label_filter_plural: Filtry
315 315 label_equals: jest
316 316 label_not_equals: nie jest
317 317 label_in_less_than: w mniejszych od
318 318 label_in_more_than: w większych niż
319 319 label_in: w
320 320 label_today: dzisiaj
321 321 label_less_than_ago: dni mniej
322 322 label_more_than_ago: dni więcej
323 323 label_ago: dni temu
324 324 label_contains: zawiera
325 325 label_not_contains: nie zawiera
326 326 label_day_plural: dni
327 327 label_repository: Repozytorium
328 328 label_browse: Przegląd
329 329 label_modification: %d modyfikacja
330 330 label_modification_plural: %d modyfikacja
331 331 label_revision: Zmiana
332 332 label_revision_plural: Zmiany
333 333 label_added: dodane
334 334 label_modified: zmodufikowane
335 335 label_deleted: usunięte
336 336 label_latest_revision: Ostatnia zmiana
337 337 label_latest_revision_plural: Ostatnie zmiany
338 338 label_view_revisions: Pokaż zmiany
339 339 label_max_size: Maksymalny rozmiar
340 340 label_on: 'z'
341 341 label_sort_highest: Przesuń na górę
342 342 label_sort_higher: Do góry
343 343 label_sort_lower: Do dołu
344 344 label_sort_lowest: Przesuń na dół
345 345 label_roadmap: Mapa
346 346 label_roadmap_due_in: W czasie
347 347 label_roadmap_no_issues: Brak zagadnień do tej wersji
348 348 label_search: Szukaj
349 349 label_result_plural: Rezultatów
350 350 label_all_words: Wszystkie słowa
351 351 label_wiki: Wiki
352 352 label_wiki_edit: Edycja wiki
353 353 label_wiki_edit_plural: Edycje wiki
354 354 label_wiki_page: Strona wiki
355 355 label_wiki_page_plural: Strony wiki
356 356 label_index_by_title: Indeks
357 357 label_index_by_date: Index by date
358 358 label_current_version: Obecna wersja
359 359 label_preview: Podgląd
360 360 label_feed_plural: Ilość RSS
361 361 label_changes_details: Szczegóły wszystkich zmian
362 362 label_issue_tracking: Śledzenie zagadnień
363 363 label_spent_time: Spędzony czas
364 364 label_f_hour: %.2f godzina
365 365 label_f_hour_plural: %.2f godzin
366 366 label_time_tracking: Śledzenie czasu
367 367 label_change_plural: Zmiany
368 368 label_statistics: Statystyki
369 369 label_commits_per_month: Wrzutek CVS w miesiącu
370 370 label_commits_per_author: Wrzutek CVS przez autora
371 371 label_view_diff: Pokaż różnice
372 372 label_diff_inline: w linii
373 373 label_diff_side_by_side: obok siebie
374 374 label_options: Opcje
375 375 label_copy_workflow_from: Kopiuj przepływ z
376 376 label_permissions_report: Raport uprawnień
377 377 label_watched_issues: Obserwowane zagadnienia
378 378 label_related_issues: Powiązane zagadnienia
379 379 label_applied_status: Stosowany status
380 380 label_loading: Ładowanie...
381 381 label_relation_new: Nowe powiązanie
382 382 label_relation_delete: Usuń powiązanie
383 383 label_relates_to: powiązane z
384 384 label_duplicates: duplikaty
385 385 label_blocks: blokady
386 386 label_blocked_by: zablokowane przez
387 387 label_precedes: poprzedza
388 388 label_follows: podąża
389 389 label_end_to_start: koniec do początku
390 390 label_end_to_end: koniec do końca
391 391 label_start_to_start: początek do początku
392 392 label_start_to_end: początek do końca
393 393 label_stay_logged_in: Pozostań zalogowany
394 394 label_disabled: zablokowany
395 395 label_show_completed_versions: Pokaż kompletne wersje
396 396 label_me: ja
397 397 label_board: Forum
398 398 label_board_new: Nowe forum
399 399 label_board_plural: Fora
400 400 label_topic_plural: Tematy
401 401 label_message_plural: Wiadomości
402 402 label_message_last: Ostatnia wiadomość
403 403 label_message_new: Nowa wiadomość
404 404 label_reply_plural: Odpowiedzi
405 405 label_send_information: Wyślij informację użytkownikowi
406 406 label_year: Rok
407 407 label_month: Miesiąc
408 408 label_week: Tydzień
409 409 label_date_from: Z
410 410 label_date_to: Do
411 411 label_language_based: Na podstawie języka
412 412
413 413 button_login: Login
414 414 button_submit: Wyślij
415 415 button_save: Zapisz
416 416 button_check_all: Zaznacz wszystko
417 417 button_uncheck_all: Odznacz wszystko
418 418 button_delete: Usuń
419 419 button_create: Stwórz
420 420 button_test: Testuj
421 421 button_edit: Edytuj
422 422 button_add: Dodaj
423 423 button_change: Zmień
424 424 button_apply: Ustaw
425 425 button_clear: Wyczyść
426 426 button_lock: Zablokuj
427 427 button_unlock: Odblokuj
428 428 button_download: Pobierz
429 429 button_list: Lista
430 430 button_view: Pokaż
431 431 button_move: Przenieś
432 432 button_back: Wstecz
433 433 button_cancel: Anuluj
434 434 button_activate: Aktywuj
435 435 button_sort: Sortuj
436 436 button_log_time: Log czasu
437 437 button_rollback: Przywróc do tej wersji
438 438 button_watch: Obserwuj
439 439 button_unwatch: Nie obserwuj
440 440 button_reply: Odpowiedz
441 441 button_archive: Archiwizuj
442 442 button_unarchive: Przywróc z archiwum
443 443
444 444 status_active: aktywny
445 445 status_registered: zarejestrowany
446 446 status_locked: zablokowany
447 447
448 448 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
449 449 text_regexp_info: np. ^[A-Z0-9]+$
450 450 text_min_max_length_info: 0 oznacza brak restrykcji
451 451 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
452 452 text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu
453 453 text_are_you_sure: Jesteś pewien ?
454 454 text_journal_changed: zmienione %s do %s
455 455 text_journal_set_to: ustawione na %s
456 456 text_journal_deleted: usunięte
457 457 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
458 458 text_tip_task_end_day: zadanie kończące się dzisiaj
459 459 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
460 460 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
461 461 text_caracters_maximum: %d znaków maksymalnie.
462 462 text_length_between: Długość pomiędzy %d i %d znaków.
463 463 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zagadnienia
464 464 text_unallowed_characters: Niedozwolone znaki
465 465 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
466 466 text_issues_ref_in_commit_messages: Zagadnienia odnoszące i ustalające we wrzutkach CVS
467 467
468 468 default_role_manager: Kierownik
469 469 default_role_developper: Programista
470 470 default_role_reporter: Wprowadzajacy
471 471 default_tracker_bug: Błąd
472 472 default_tracker_feature: Cecha
473 473 default_tracker_support: Wsparcie
474 474 default_issue_status_new: Nowy
475 475 default_issue_status_assigned: Przypisany
476 476 default_issue_status_resolved: Rozwiązany
477 477 default_issue_status_feedback: Odpowiedź
478 478 default_issue_status_closed: Zamknięty
479 479 default_issue_status_rejected: Odrzucony
480 480 default_doc_category_user: Dokumentacja użytkownika
481 481 default_doc_category_tech: Dokumentacja techniczna
482 482 default_priority_low: Niski
483 483 default_priority_normal: Normalny
484 484 default_priority_high: Wysoki
485 485 default_priority_urgent: Pilny
486 486 default_priority_immediate: Natyczmiastowy
487 487 default_activity_design: Projektowanie
488 488 default_activity_development: Rozwój
489 489
490 490 enumeration_issue_priorities: Priorytety zagadnień
491 491 enumeration_doc_categories: Kategorie dokumentów
492 492 enumeration_activities: Działania (śledzenie czasu)
493 493 button_rename: Zmień nazwę
494 494 text_issue_category_destroy_question: Zagadnienia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
495 495 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
496 496 setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami
497 497 label_roadmap_overdue: %s spóźnienia
498 498 label_module_plural: Moduły
499 499 label_this_week: ten tydzień
500 500 label_jump_to_a_project: Skocz do projektu...
501 501 field_assignable: Zagadnienia mogą być przypisane do tej roli
502 502 label_sort_by: Sortuj po %s
503 503 text_issue_updated: Zagadnienie %s zostało zaktualizowane (by %s).
504 504 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
505 505 field_redirect_existing_links: Przekierowanie istniejących odnośników
506 506 text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
507 507 notice_email_sent: Email został wysłany do %s
508 508 text_issue_added: Zagadnienie %s zostało wprowadzone (by %s).
509 509 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
510 510 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
511 511 label_updated_time: Zaktualizowane %s temu
512 512 text_issue_category_destroy_assignments: Usuń przydziały kategorii
513 513 label_send_test_email: Wyślij próbny email
514 514 button_reset: Resetuj
515 515 label_added_time_by: Dodane przez %s %s temu
516 516 field_estimated_hours: Szacowany czas
517 517 label_file_plural: Pliki
518 518 label_changeset_plural: Zestawienia zmian
519 519 field_column_names: Nazwy kolumn
520 520 label_default_columns: Domyślne kolumny
521 521 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
522 522 setting_repositories_encodings: Kodowanie repozytoriów
523 523 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
524 524 label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
525 525 label_no_change_option: (Bez zmian)
526 526 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
527 527 label_theme: Temat
528 528 label_default: Domyślne
529 529 label_search_titles_only: Przeszukuj tylko tytuły
530 530 label_nobody: nikt
531 531 button_change_password: Zmień hasło
532 532 text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnien, które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)."
533 533 label_user_mail_option_selected: "Tylko dla każdego zdarzenia w wybranych projektach..."
534 534 label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie"
535 535 label_user_mail_option_none: "Tylko to co obserwuje lub w czym biorę udział"
536 536 setting_emails_footer: Stopka e-mail
537 537 label_float: Liczba rzeczywista
538 538 button_copy: Kopia
539 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
540 mail_body_account_information: Twoje konto w Redmine
539 mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania.
540 mail_body_account_information: Twoje konto
541 541 setting_protocol: Protokoł
542 542 label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam."
543 543 setting_time_format: Format czasu
544 544 label_registration_activation_by_email: aktywacja konta przez e-mail
545 mail_subject_account_activation_request: Zapytanie aktywacyjne konta Redmine
545 mail_subject_account_activation_request: Zapytanie aktywacyjne konta %s
546 546 mail_body_account_activation_request: 'Zarejestrowano nowego użytkownika: (%s). Konto oczekuje na twoje zatwierdzenie:'
547 547 label_registration_automatic_activation: automatyczna aktywacja kont
548 548 label_registration_manual_activation: manualna aktywacja kont
549 549 notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora."
550 550 field_time_zone: Strefa czasowa
551 551 text_caracters_minimum: Musi być nie krótsze niż %d znaków.
552 552 setting_bcc_recipients: Odbiorcy kopii tajnej (kt/bcc)
553 553 button_annotate: Adnotuj
554 554 label_issues_by: Zagadnienia wprowadzone przez %s
555 555 field_searchable: Przeszukiwalne
556 556 label_display_per_page: 'Na stronę: %s'
557 557 setting_per_page_options: Opcje ilości obiektów na stronie
558 558 label_age: Wiek
559 559 notice_default_data_loaded: Domyślna konfiguracja została pomyślnie załadowana.
560 560 text_load_default_configuration: Załaduj domyślną konfigurację
561 561 text_no_configuration_data: "Role użytkowników, typy zagadnień, statusy zagadnień oraz przepływ pracy nie zostały jeszcze skonfigurowane.\nJest wysoce rekomendowane by załadować domyślną konfigurację. Po załadowaniu będzie możliwość edycji tych danych."
562 562 error_can_t_load_default_data: "Domyślna konfiguracja nie może być załadowana: %s"
563 563 button_update: Uaktualnij
564 564 label_change_properties: Zmień właściwości
565 565 label_general: Ogólne
566 566 label_repository_plural: Repozytoria
567 567 label_associated_revisions: Skojarzone rewizje
568 568 setting_user_format: Personalny format wyświetlania
569 569 text_status_changed_by_changeset: Zastosowane w zmianach %s.
570 570 label_more: Więcej
571 571 text_issues_destroy_confirmation: 'Czy jestes pewien, że chcesz usunąć wskazane zagadnienia?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Wybierz moduły do aktywacji w tym projekcie:'
574 574 label_issue_added: Dodano zagadnienie
575 575 label_issue_updated: Uaktualniono zagadnienie
576 576 label_document_added: Dodano dokument
577 577 label_message_posted: Dodano wiadomość
578 578 label_file_added: Dodano plik
579 579 label_news_added: Dodano wiadomość
580 580 project_module_boards: Fora
581 581 project_module_issue_tracking: Śledzenie zagadnień
582 582 project_module_wiki: Wiki
583 583 project_module_files: Pliki
584 584 project_module_documents: Dokumenty
585 585 project_module_repository: Repozytorium
586 586 project_module_news: Wiadomości
587 587 project_module_time_tracking: Śledzenie czasu
588 588 text_file_repository_writable: Zapisywalne repozytorium plików
589 589 text_default_administrator_account_changed: Zmieniono domyślne hasło administratora
590 590 text_rmagick_available: RMagick dostępne (opcjonalnie)
591 591 button_configure: Konfiguruj
592 592 label_plugins: Wtyczki
593 593 label_ldap_authentication: Autoryzacja LDAP
594 594 label_downloads_abbr: Pobieranie
595 595 label_this_month: ten miesiąc
596 596 label_last_n_days: ostatnie %d dni
597 597 label_all_time: cały czas
598 598 label_this_year: ten rok
599 599 label_date_range: Zakres datowy
600 600 label_last_week: ostatni tydzień
601 601 label_yesterday: wczoraj
602 602 label_last_month: ostatni miesiąc
603 603 label_add_another_file: Dodaj kolejny plik
604 604 label_optional_description: Opcjonalny opis
605 605 text_destroy_time_entries_question: Zalogowano %.02f godzin przy zagadnieniu, które chcesz usunąć. Co chcesz zrobić?
606 606 error_issue_not_found_in_project: 'Zaganienie nie zostało znalezione lub nie należy do tego projektu'
607 607 text_assign_time_entries_to_project: Przypisz logowany czas do projektu
608 608 text_destroy_time_entries: Usuń zalogowany czas
609 609 text_reassign_time_entries: 'Przepnij zalogowany czas do tego zagadnienia:'
610 610 label_chronological_order: In chronological order
611 611 setting_activity_days_default: Days displayed on project activity
612 612 setting_display_subprojects_issues: Display subprojects issues on main projects by default
613 613 field_comments_sorting: Display comments
614 614 label_reverse_chronological_order: In reverse chronological order
615 615 label_preferences: Preferences
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dia
9 9 actionview_datehelper_time_in_words_day_plural: %d dias
10 10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 20 actionview_instancetag_blank_option: Selecione
21 21
22 22 activerecord_error_inclusion: nao esta incluido na lista
23 23 activerecord_error_exclusion: esta reservado
24 24 activerecord_error_invalid: e invalido
25 25 activerecord_error_confirmation: confirmacao nao confere
26 26 activerecord_error_accepted: deve ser aceito
27 27 activerecord_error_empty: nao pode ser vazio
28 28 activerecord_error_blank: nao pode estar em branco
29 29 activerecord_error_too_long: e muito longo
30 30 activerecord_error_too_short: e muito comprido
31 31 activerecord_error_wrong_length: esta com o comprimento errado
32 32 activerecord_error_taken: ja esta examinado
33 33 activerecord_error_not_a_number: nao e um numero
34 34 activerecord_error_not_a_date: nao e uma data valida
35 35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nao'
46 46 general_text_Yes: 'Sim'
47 47 general_text_no: 'nao'
48 48 general_text_yes: 'sim'
49 49 general_lang_name: 'Portugues Brasileiro'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Conta foi alterada com sucesso.
57 57 notice_account_invalid_creditentials: Usuario ou senha invalido.
58 58 notice_account_password_updated: Senha foi alterada com sucesso.
59 59 notice_account_wrong_password: Senha errada.
60 60 notice_account_register_done: Conta foi criada com sucesso.
61 61 notice_account_unknown_email: Usuario desconhecido.
62 62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
63 63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
64 64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
65 65 notice_successful_create: Criado com sucesso.
66 66 notice_successful_update: Alterado com sucesso.
67 67 notice_successful_delete: Apagado com sucesso.
68 68 notice_successful_connection: Conectado com sucesso.
69 69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
70 70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 error_scm_not_found: "A entrada e/ou a revisao nao existem no repositorio."
77 77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78 78
79 mail_subject_lost_password: Sua senha do redMine.
79 mail_subject_lost_password: Sua senha do %s.
80 80 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
81 mail_subject_register: Ativacao de conta do redMine.
82 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81 mail_subject_register: Ativacao de conta do %s.
82 mail_body_register: 'Para ativar sua conta, clique no link abaixo:'
83 83
84 84 gui_validation_error: 1 erro
85 85 gui_validation_error_plural: %d erros
86 86
87 87 field_name: Nome
88 88 field_description: Descricao
89 89 field_summary: Sumario
90 90 field_is_required: Obrigatorio
91 91 field_firstname: Primeiro nome
92 92 field_lastname: Ultimo nome
93 93 field_mail: Email
94 94 field_filename: Arquivo
95 95 field_filesize: Tamanho
96 96 field_downloads: Downloads
97 97 field_author: Autor
98 98 field_created_on: Criado
99 99 field_updated_on: Alterado
100 100 field_field_format: Formato
101 101 field_is_for_all: Para todos os projetos
102 102 field_possible_values: Possiveis valores
103 103 field_regexp: Expressao regular
104 104 field_min_length: Tamanho minimo
105 105 field_max_length: Tamanho maximo
106 106 field_value: Valor
107 107 field_category: Categoria
108 108 field_title: Titulo
109 109 field_project: Projeto
110 110 field_issue: Tarefa
111 111 field_status: Status
112 112 field_notes: Notas
113 113 field_is_closed: Tarefa fechada
114 114 field_is_default: Status padrao
115 115 field_tracker: Tipo
116 116 field_subject: Titulo
117 117 field_due_date: Data devida
118 118 field_assigned_to: Atribuido para
119 119 field_priority: Prioridade
120 120 field_fixed_version: Target version
121 121 field_user: Usuario
122 122 field_role: Regra
123 123 field_homepage: Pagina inicial
124 124 field_is_public: Publico
125 125 field_parent: Sub-projeto de
126 126 field_is_in_chlog: Tarefas mostradas no changelog
127 127 field_is_in_roadmap: Tarefas mostradas no roadmap
128 128 field_login: Login
129 129 field_mail_notification: Notificacoes por email
130 130 field_admin: Administrador
131 131 field_last_login_on: Ultima conexao
132 132 field_language: Lingua
133 133 field_effective_date: Data
134 134 field_password: Senha
135 135 field_new_password: Nova senha
136 136 field_password_confirmation: Confirmacao
137 137 field_version: Versao
138 138 field_type: Tipo
139 139 field_host: Servidor
140 140 field_port: Porta
141 141 field_account: Conta
142 142 field_base_dn: Base DN
143 143 field_attr_login: Atributo login
144 144 field_attr_firstname: Atributo primeiro nome
145 145 field_attr_lastname: Atributo ultimo nome
146 146 field_attr_mail: Atributo email
147 147 field_onthefly: Criacao de usuario on-the-fly
148 148 field_start_date: Inicio
149 149 field_done_ratio: %% Terminado
150 150 field_auth_source: Modo de autenticacao
151 151 field_hide_mail: Esconder meu email
152 152 field_comments: Comentario
153 153 field_url: URL
154 154 field_start_page: Pagina inicial
155 155 field_subproject: Sub-projeto
156 156 field_hours: Horas
157 157 field_activity: Atividade
158 158 field_spent_on: Data
159 159 field_identifier: Identificador
160 160 field_is_filter: Used as a filter
161 161 field_issue_to_id: Related issue
162 162 field_delay: Delay
163 163 field_assignable: Issues can be assigned to this role
164 164 field_redirect_existing_links: Redirect existing links
165 165 field_estimated_hours: Estimated time
166 166 field_default_value: Padrao
167 167
168 168 setting_app_title: Titulo da aplicacao
169 169 setting_app_subtitle: Sub-titulo da aplicacao
170 170 setting_welcome_text: Texto de boa-vinda
171 171 setting_default_language: Lingua padrao
172 172 setting_login_required: Autenticacao obrigatoria
173 173 setting_self_registration: Registro de si mesmo permitido
174 174 setting_attachment_max_size: Tamanho maximo do anexo
175 175 setting_issues_export_limit: Limite de exportacao das tarefas
176 176 setting_mail_from: Email enviado de
177 177 setting_host_name: Servidor
178 178 setting_text_formatting: Formato do texto
179 179 setting_wiki_compression: Compactacao do historio do Wiki
180 180 setting_feeds_limit: Limite do Feed
181 181 setting_autofetch_changesets: Autofetch commits
182 182 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
183 183 setting_commit_ref_keywords: Referencing keywords
184 184 setting_commit_fix_keywords: Fixing keywords
185 185 setting_autologin: Autologin
186 186 setting_date_format: Date format
187 187 setting_cross_project_issue_relations: Allow cross-project issue relations
188 188
189 189 label_user: Usuario
190 190 label_user_plural: Usuarios
191 191 label_user_new: Novo usuario
192 192 label_project: Projeto
193 193 label_project_new: Novo projeto
194 194 label_project_plural: Projetos
195 195 label_project_all: All Projects
196 196 label_project_latest: Ultimos projetos
197 197 label_issue: Tarefa
198 198 label_issue_new: Nova tarefa
199 199 label_issue_plural: Tarefas
200 200 label_issue_view_all: Ver todas as tarefas
201 201 label_document: Documento
202 202 label_document_new: Novo documento
203 203 label_document_plural: Documentos
204 204 label_role: Regra
205 205 label_role_plural: Regras
206 206 label_role_new: Nova regra
207 207 label_role_and_permissions: Regras e permissoes
208 208 label_member: Membro
209 209 label_member_new: Novo membro
210 210 label_member_plural: Membros
211 211 label_tracker: Tipo
212 212 label_tracker_plural: Tipos
213 213 label_tracker_new: Novo tipo
214 214 label_workflow: Workflow
215 215 label_issue_status: Status da tarefa
216 216 label_issue_status_plural: Status das tarefas
217 217 label_issue_status_new: Novo status
218 218 label_issue_category: Categoria de tarefa
219 219 label_issue_category_plural: Categorias de tarefa
220 220 label_issue_category_new: Nova categoria
221 221 label_custom_field: Campo personalizado
222 222 label_custom_field_plural: Campos personalizado
223 223 label_custom_field_new: Novo campo personalizado
224 224 label_enumerations: Enumeracao
225 225 label_enumeration_new: Novo valor
226 226 label_information: Informacao
227 227 label_information_plural: Informacoes
228 228 label_please_login: Efetue login
229 229 label_register: Registre-se
230 230 label_password_lost: Perdi a senha
231 231 label_home: Pagina inicial
232 232 label_my_page: Minha pagina
233 233 label_my_account: Minha conta
234 234 label_my_projects: Meus projetos
235 235 label_administration: Administracao
236 236 label_login: Login
237 237 label_logout: Logout
238 238 label_help: Ajuda
239 239 label_reported_issues: Tarefas reportadas
240 240 label_assigned_to_me_issues: Tarefas atribuidas a mim
241 241 label_last_login: Utima conexao
242 242 label_last_updates: Ultima alteracao
243 243 label_last_updates_plural: %d Ultimas alteracoes
244 244 label_registered_on: Registrado em
245 245 label_activity: Atividade
246 246 label_new: Novo
247 247 label_logged_as: Logado como
248 248 label_environment: Ambiente
249 249 label_authentication: Autenticacao
250 250 label_auth_source: Modo de autenticacao
251 251 label_auth_source_new: Novo modo de autenticacao
252 252 label_auth_source_plural: Modos de autenticacao
253 253 label_subproject_plural: Sub-projetos
254 254 label_min_max_length: Tamanho min-max
255 255 label_list: Lista
256 256 label_date: Data
257 257 label_integer: Inteiro
258 258 label_boolean: Boleano
259 259 label_string: Texto
260 260 label_text: Texto longo
261 261 label_attribute: Atributo
262 262 label_attribute_plural: Atributos
263 263 label_download: %d Download
264 264 label_download_plural: %d Downloads
265 265 label_no_data: Sem dados para mostrar
266 266 label_change_status: Mudar status
267 267 label_history: Historico
268 268 label_attachment: Arquivo
269 269 label_attachment_new: Novo arquivo
270 270 label_attachment_delete: Apagar arquivo
271 271 label_attachment_plural: Arquivos
272 272 label_report: Relatorio
273 273 label_report_plural: Relatorio
274 274 label_news: Noticias
275 275 label_news_new: Adicionar noticias
276 276 label_news_plural: Noticias
277 277 label_news_latest: Ultimas noticias
278 278 label_news_view_all: Ver todas as noticias
279 279 label_change_log: Change log
280 280 label_settings: Ajustes
281 281 label_overview: Visao geral
282 282 label_version: Versao
283 283 label_version_new: Nova versao
284 284 label_version_plural: Versoes
285 285 label_confirmation: Confirmacao
286 286 label_export_to: Exportar para
287 287 label_read: Ler...
288 288 label_public_projects: Projetos publicos
289 289 label_open_issues: Aberto
290 290 label_open_issues_plural: Abertos
291 291 label_closed_issues: Fechado
292 292 label_closed_issues_plural: Fechados
293 293 label_total: Total
294 294 label_permissions: Permissoes
295 295 label_current_status: Status atual
296 296 label_new_statuses_allowed: Novo status permitido
297 297 label_all: todos
298 298 label_none: nenhum
299 299 label_next: Proximo
300 300 label_previous: Anterior
301 301 label_used_by: Usado por
302 302 label_details: Detalhes
303 303 label_add_note: Adicionar nota
304 304 label_per_page: Por pagina
305 305 label_calendar: Calendario
306 306 label_months_from: Meses de
307 307 label_gantt: Gantt
308 308 label_internal: Interno
309 309 label_last_changes: utlimas %d mudancas
310 310 label_change_view_all: Mostrar todas as mudancas
311 311 label_personalize_page: Personalizar esta pagina
312 312 label_comment: Comentario
313 313 label_comment_plural: Comentarios
314 314 label_comment_add: Adicionar comentario
315 315 label_comment_added: Comentario adicionado
316 316 label_comment_delete: Apagar comentario
317 317 label_query: Consulta personalizada
318 318 label_query_plural: Consultas personalizadas
319 319 label_query_new: Nova consulta
320 320 label_filter_add: Adicionar filtro
321 321 label_filter_plural: Filtros
322 322 label_equals: e
323 323 label_not_equals: nao e
324 324 label_in_less_than: e maior que
325 325 label_in_more_than: e menor que
326 326 label_in: em
327 327 label_today: hoje
328 328 label_this_week: this week
329 329 label_less_than_ago: faz menos de
330 330 label_more_than_ago: faz mais de
331 331 label_ago: dias atras
332 332 label_contains: contem
333 333 label_not_contains: nao contem
334 334 label_day_plural: dias
335 335 label_repository: Repository
336 336 label_browse: Browse
337 337 label_modification: %d change
338 338 label_modification_plural: %d changes
339 339 label_revision: Revision
340 340 label_revision_plural: Revisions
341 341 label_added: added
342 342 label_modified: modified
343 343 label_deleted: deleted
344 344 label_latest_revision: Latest revision
345 345 label_latest_revision_plural: Latest revisions
346 346 label_view_revisions: View revisions
347 347 label_max_size: Maximum size
348 348 label_on: 'em'
349 349 label_sort_highest: Mover para o inicio
350 350 label_sort_higher: Mover para cima
351 351 label_sort_lower: Mover para baixo
352 352 label_sort_lowest: Mover para o fim
353 353 label_roadmap: Roadmap
354 354 label_roadmap_due_in: Due in
355 355 label_roadmap_overdue: %s late
356 356 label_roadmap_no_issues: Sem tarefas para essa versao
357 357 label_search: Busca
358 358 label_result_plural: Resultados
359 359 label_all_words: Todas as palavras
360 360 label_wiki: Wiki
361 361 label_wiki_edit: Wiki edit
362 362 label_wiki_edit_plural: Wiki edits
363 363 label_wiki_page: Wiki page
364 364 label_wiki_page_plural: Wiki pages
365 365 label_index_by_title: Index by title
366 366 label_index_by_date: Index by date
367 367 label_current_version: Versao atual
368 368 label_preview: Previa
369 369 label_feed_plural: Feeds
370 370 label_changes_details: Detalhes de todas as mudancas
371 371 label_issue_tracking: Tarefas
372 372 label_spent_time: Tempo gasto
373 373 label_f_hour: %.2f hora
374 374 label_f_hour_plural: %.2f horas
375 375 label_time_tracking: Tempo trabalhado
376 376 label_change_plural: Mudancas
377 377 label_statistics: Estatisticas
378 378 label_commits_per_month: Commits por mes
379 379 label_commits_per_author: Commits por autor
380 380 label_view_diff: Ver diferencas
381 381 label_diff_inline: inline
382 382 label_diff_side_by_side: side by side
383 383 label_options: Opcoes
384 384 label_copy_workflow_from: Copiar workflow de
385 385 label_permissions_report: Relatorio de permissoes
386 386 label_watched_issues: Watched issues
387 387 label_related_issues: Related issues
388 388 label_applied_status: Applied status
389 389 label_loading: Loading...
390 390 label_relation_new: New relation
391 391 label_relation_delete: Delete relation
392 392 label_relates_to: related to
393 393 label_duplicates: duplicates
394 394 label_blocks: blocks
395 395 label_blocked_by: blocked by
396 396 label_precedes: precedes
397 397 label_follows: follows
398 398 label_end_to_start: end to start
399 399 label_end_to_end: end to end
400 400 label_start_to_start: start to start
401 401 label_start_to_end: start to end
402 402 label_stay_logged_in: Stay logged in
403 403 label_disabled: disabled
404 404 label_show_completed_versions: Show completed versions
405 405 label_me: me
406 406 label_board: Forum
407 407 label_board_new: New forum
408 408 label_board_plural: Forums
409 409 label_topic_plural: Topics
410 410 label_message_plural: Messages
411 411 label_message_last: Last message
412 412 label_message_new: New message
413 413 label_reply_plural: Replies
414 414 label_send_information: Send account information to the user
415 415 label_year: Year
416 416 label_month: Month
417 417 label_week: Week
418 418 label_date_from: From
419 419 label_date_to: To
420 420 label_language_based: Language based
421 421 label_sort_by: Sort by %s
422 422 label_send_test_email: Send a test email
423 423 label_feeds_access_key_created_on: RSS access key created %s ago
424 424 label_module_plural: Modules
425 425 label_added_time_by: Added by %s %s ago
426 426 label_updated_time: Updated %s ago
427 427 label_jump_to_a_project: Jump to a project...
428 428
429 429 button_login: Login
430 430 button_submit: Enviar
431 431 button_save: Salvar
432 432 button_check_all: Marcar todos
433 433 button_uncheck_all: Desmarcar todos
434 434 button_delete: Apagar
435 435 button_create: Criar
436 436 button_test: Testar
437 437 button_edit: Editar
438 438 button_add: Adicionar
439 439 button_change: Mudar
440 440 button_apply: Aplicar
441 441 button_clear: Limpar
442 442 button_lock: Bloquear
443 443 button_unlock: Desbloquear
444 444 button_download: Download
445 445 button_list: Listar
446 446 button_view: Ver
447 447 button_move: Mover
448 448 button_back: Voltar
449 449 button_cancel: Cancelar
450 450 button_activate: Ativar
451 451 button_sort: Ordenar
452 452 button_log_time: Tempo de trabalho
453 453 button_rollback: Voltar para esta versao
454 454 button_watch: Watch
455 455 button_unwatch: Unwatch
456 456 button_reply: Reply
457 457 button_archive: Archive
458 458 button_unarchive: Unarchive
459 459 button_reset: Reset
460 460 button_rename: Rename
461 461
462 462 status_active: ativo
463 463 status_registered: registrado
464 464 status_locked: bloqueado
465 465
466 466 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
467 467 text_regexp_info: eg. ^[A-Z0-9]+$
468 468 text_min_max_length_info: 0 siginifica sem restricao
469 469 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
470 470 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
471 471 text_are_you_sure: Voce tem certeza ?
472 472 text_journal_changed: alterado de %s para %s
473 473 text_journal_set_to: setar para %s
474 474 text_journal_deleted: apagado
475 475 text_tip_task_begin_day: tarefa comeca neste dia
476 476 text_tip_task_end_day: tarefa termina neste dia
477 477 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
478 478 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
479 479 text_caracters_maximum: %d maximo de caracteres
480 480 text_length_between: Tamanho entre %d e %d caracteres.
481 481 text_tracker_no_workflow: Sem workflow definido para este tipo.
482 482 text_unallowed_characters: Unallowed characters
483 483 text_comma_separated: Multiple values allowed (comma separated).
484 484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
485 485 text_issue_added: Tarefa %s foi incluída (by %s).
486 486 text_issue_updated: Tarefa %s foi alterada (by %s).
487 487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 489 text_issue_category_destroy_assignments: Remove category assignments
490 490 text_issue_category_reassign_to: Reassing issues to this category
491 491
492 492 default_role_manager: Analista de Negocio ou Gerente de Projeto
493 493 default_role_developper: Desenvolvedor
494 494 default_role_reporter: Analista de Suporte
495 495 default_tracker_bug: Bug
496 496 default_tracker_feature: Implementacao
497 497 default_tracker_support: Suporte
498 498 default_issue_status_new: Novo
499 499 default_issue_status_assigned: Atribuido
500 500 default_issue_status_resolved: Resolvido
501 501 default_issue_status_feedback: Feedback
502 502 default_issue_status_closed: Fechado
503 503 default_issue_status_rejected: Rejeitado
504 504 default_doc_category_user: Documentacao do usuario
505 505 default_doc_category_tech: Documentacao do tecnica
506 506 default_priority_low: Baixo
507 507 default_priority_normal: Normal
508 508 default_priority_high: Alto
509 509 default_priority_urgent: Urgente
510 510 default_priority_immediate: Imediato
511 511 default_activity_design: Design
512 512 default_activity_development: Desenvolvimento
513 513
514 514 enumeration_issue_priorities: Prioridade das tarefas
515 515 enumeration_doc_categories: Categorias de documento
516 516 enumeration_activities: Atividades (time tracking)
517 517 label_file_plural: Files
518 518 label_changeset_plural: Changesets
519 519 field_column_names: Columns
520 520 label_default_columns: Default columns
521 521 setting_issue_list_default_columns: Default columns displayed on the issue list
522 522 setting_repositories_encodings: Repositories encodings
523 523 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 524 label_bulk_edit_selected_issues: Bulk edit selected issues
525 525 label_no_change_option: (No change)
526 526 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 527 label_theme: Theme
528 528 label_default: Default
529 529 label_search_titles_only: Search titles only
530 530 label_nobody: nobody
531 531 button_change_password: Change password
532 532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 533 label_user_mail_option_selected: "For any event on the selected projects only..."
534 534 label_user_mail_option_all: "For any event on all my projects"
535 535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 536 setting_emails_footer: Emails footer
537 537 label_float: Float
538 538 button_copy: Copy
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information: Your Redmine account information
539 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information: Your account information
541 541 setting_protocol: Protocol
542 542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 543 setting_time_format: Time format
544 544 label_registration_activation_by_email: account activation by email
545 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: %s account activation request
546 546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 547 label_registration_automatic_activation: automatic account activation
548 548 label_registration_manual_activation: manual account activation
549 549 notice_account_pending: "Your account was created and is now pending administrator approval."
550 550 field_time_zone: Time zone
551 551 text_caracters_minimum: Must be at least %d characters long.
552 552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 553 button_annotate: Annotate
554 554 label_issues_by: Issues by %s
555 555 field_searchable: Searchable
556 556 label_display_per_page: 'Per page: %s'
557 557 setting_per_page_options: Objects per page options
558 558 label_age: Age
559 559 notice_default_data_loaded: Default configuration successfully loaded.
560 560 text_load_default_configuration: Load the default configuration
561 561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 563 button_update: Update
564 564 label_change_properties: Change properties
565 565 label_general: General
566 566 label_repository_plural: Repositories
567 567 label_associated_revisions: Associated revisions
568 568 setting_user_format: Users display format
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Select modules to enable for this project:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: Boards
581 581 project_module_issue_tracking: Issue tracking
582 582 project_module_wiki: Wiki
583 583 project_module_files: Files
584 584 project_module_documents: Documents
585 585 project_module_repository: Repository
586 586 project_module_news: News
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: Default administrator account changed
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: Configure
592 592 label_plugins: Plugins
593 593 label_ldap_authentication: LDAP authentication
594 594 label_downloads_abbr: D/L
595 595 label_this_month: this month
596 596 label_last_n_days: last %d days
597 597 label_all_time: all time
598 598 label_this_year: this year
599 599 label_date_range: Date range
600 600 label_last_week: last week
601 601 label_yesterday: yesterday
602 602 label_last_month: last month
603 603 label_add_another_file: Add another file
604 604 label_optional_description: Optional description
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dia
9 9 actionview_datehelper_time_in_words_day_plural: %d dias
10 10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
11 11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 20 actionview_instancetag_blank_option: Selecione
21 21
22 22 activerecord_error_inclusion: não existe na lista
23 23 activerecord_error_exclusion: já existe na lista
24 24 activerecord_error_invalid: é inválido
25 25 activerecord_error_confirmation: não confere com sua confirmação
26 26 activerecord_error_accepted: deve ser aceito
27 27 activerecord_error_empty: não pode ser vazio
28 28 activerecord_error_blank: não pode estar em branco
29 29 activerecord_error_too_long: é muito longo
30 30 activerecord_error_too_short: é muito curto
31 31 activerecord_error_wrong_length: possui o comprimento errado
32 32 activerecord_error_taken: já foi usado em outro registro
33 33 activerecord_error_not_a_number: não é um número
34 34 activerecord_error_not_a_date: não é uma data válida
35 35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
38 38
39 39 general_fmt_age: %d ano
40 40 general_fmt_age_plural: %d anos
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Não'
46 46 general_text_Yes: 'Sim'
47 47 general_text_no: 'não'
48 48 general_text_yes: 'sim'
49 49 general_lang_name: 'Português'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54 54 general_first_day_of_week: '1'
55 55
56 56 notice_account_updated: Conta foi atualizada com sucesso.
57 57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
58 58 notice_account_password_updated: Senha foi alterada com sucesso.
59 59 notice_account_wrong_password: Senha errada.
60 60 notice_account_register_done: Conta foi criada com sucesso.
61 61 notice_account_unknown_email: Usuário desconhecido.
62 62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
63 63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
64 64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
65 65 notice_successful_create: Criado com sucesso.
66 66 notice_successful_update: Alterado com sucesso.
67 67 notice_successful_delete: Apagado com sucesso.
68 68 notice_successful_connection: Conectado com sucesso.
69 69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
70 70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
71 71 notice_not_authorized: Você não está autorizado a acessar esta página.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 error_scm_not_found: "A entrada e/ou a revisão não existem no repositório."
77 77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78 78
79 mail_subject_lost_password: Sua senha do redMine.
79 mail_subject_lost_password: Sua senha do %s.
80 80 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
81 mail_subject_register: Ativação de conta do redMine.
82 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81 mail_subject_register: Ativação de conta do %s.
82 mail_body_register: 'Para ativar sua conta, clique no link abaixo:'
83 83
84 84 gui_validation_error: 1 erro
85 85 gui_validation_error_plural: %d erros
86 86
87 87 field_name: Nome
88 88 field_description: Descrição
89 89 field_summary: Sumário
90 90 field_is_required: Obrigatório
91 91 field_firstname: Primeiro nome
92 92 field_lastname: Último nome
93 93 field_mail: Email
94 94 field_filename: Arquivo
95 95 field_filesize: Tamanho
96 96 field_downloads: Downloads
97 97 field_author: Autor
98 98 field_created_on: Criado
99 99 field_updated_on: Alterado
100 100 field_field_format: Formato
101 101 field_is_for_all: Para todos os projetos
102 102 field_possible_values: Possíveis valores
103 103 field_regexp: Expressão regular
104 104 field_min_length: Tamanho mínimo
105 105 field_max_length: Tamanho máximo
106 106 field_value: Valor
107 107 field_category: Categoria
108 108 field_title: Título
109 109 field_project: Projeto
110 110 field_issue: Tarefa
111 111 field_status: Status
112 112 field_notes: Notas
113 113 field_is_closed: Tarefa fechada
114 114 field_is_default: Status padrão
115 115 field_tracker: Tipo
116 116 field_subject: Assunto
117 117 field_due_date: Data final
118 118 field_assigned_to: Atribuído para
119 119 field_priority: Prioridade
120 120 field_fixed_version: Target version
121 121 field_user: Usuário
122 122 field_role: Regra
123 123 field_homepage: Página inicial
124 124 field_is_public: Público
125 125 field_parent: Sub-projeto de
126 126 field_is_in_chlog: Tarefas mostradas no changelog
127 127 field_is_in_roadmap: Tarefas mostradas no roadmap
128 128 field_login: Login
129 129 field_mail_notification: Notificações por email
130 130 field_admin: Administrador
131 131 field_last_login_on: Última conexão
132 132 field_language: Língua
133 133 field_effective_date: Data
134 134 field_password: Senha
135 135 field_new_password: Nova senha
136 136 field_password_confirmation: Confirmação
137 137 field_version: Versão
138 138 field_type: Tipo
139 139 field_host: Servidor
140 140 field_port: Porta
141 141 field_account: Conta
142 142 field_base_dn: Base DN
143 143 field_attr_login: Atributo login
144 144 field_attr_firstname: Atributo primeiro nome
145 145 field_attr_lastname: Atributo último nome
146 146 field_attr_mail: Atributo email
147 147 field_onthefly: Criação de usuário sob-demanda
148 148 field_start_date: Início
149 149 field_done_ratio: %% Terminado
150 150 field_auth_source: Modo de autenticação
151 151 field_hide_mail: Esconda meu email
152 152 field_comments: Comentário
153 153 field_url: URL
154 154 field_start_page: Página inicial
155 155 field_subproject: Sub-projeto
156 156 field_hours: Horas
157 157 field_activity: Atividade
158 158 field_spent_on: Data
159 159 field_identifier: Identificador
160 160 field_is_filter: Usado como filtro
161 161 field_issue_to_id: Tarefa relacionada
162 162 field_delay: Atraso
163 163 field_assignable: Issues can be assigned to this role
164 164 field_redirect_existing_links: Redirect existing links
165 165 field_estimated_hours: Estimated time
166 166 field_default_value: Padrão
167 167
168 168 setting_app_title: Título da aplicação
169 169 setting_app_subtitle: Sub-título da aplicação
170 170 setting_welcome_text: Texto de boas-vindas
171 171 setting_default_language: Linguagem padrão
172 172 setting_login_required: Autenticação obrigatória
173 173 setting_self_registration: Registro permitido
174 174 setting_attachment_max_size: Tamanho máximo do anexo
175 175 setting_issues_export_limit: Limite de exportação das tarefas
176 176 setting_mail_from: Email enviado de
177 177 setting_host_name: Servidor
178 178 setting_text_formatting: Formato do texto
179 179 setting_wiki_compression: Compactação do histórico do Wiki
180 180 setting_feeds_limit: Limite do Feed
181 181 setting_autofetch_changesets: Buscar automaticamente commits
182 182 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
183 183 setting_commit_ref_keywords: Palavras-chave de referôncia
184 184 setting_commit_fix_keywords: Palavras-chave fixas
185 185 setting_autologin: Autologin
186 186 setting_date_format: Date format
187 187 setting_cross_project_issue_relations: Allow cross-project issue relations
188 188
189 189 label_user: Usuário
190 190 label_user_plural: Usuários
191 191 label_user_new: Novo usuário
192 192 label_project: Projeto
193 193 label_project_new: Novo projeto
194 194 label_project_plural: Projetos
195 195 label_project_all: All Projects
196 196 label_project_latest: Últimos projetos
197 197 label_issue: Tarefa
198 198 label_issue_new: Nova tarefa
199 199 label_issue_plural: Tarefas
200 200 label_issue_view_all: Ver todas as tarefas
201 201 label_document: Documento
202 202 label_document_new: Novo documento
203 203 label_document_plural: Documentos
204 204 label_role: Regra
205 205 label_role_plural: Regras
206 206 label_role_new: Nova regra
207 207 label_role_and_permissions: Regras e permissões
208 208 label_member: Membro
209 209 label_member_new: Novo membro
210 210 label_member_plural: Membros
211 211 label_tracker: Tipo
212 212 label_tracker_plural: Tipos
213 213 label_tracker_new: Novo tipo
214 214 label_workflow: Workflow
215 215 label_issue_status: Status da tarefa
216 216 label_issue_status_plural: Status das tarefas
217 217 label_issue_status_new: Novo status
218 218 label_issue_category: Categoria da tarefa
219 219 label_issue_category_plural: Categorias das tarefas
220 220 label_issue_category_new: Nova categoria
221 221 label_custom_field: Campo personalizado
222 222 label_custom_field_plural: Campos personalizados
223 223 label_custom_field_new: Novo campo personalizado
224 224 label_enumerations: Enumeração
225 225 label_enumeration_new: Novo valor
226 226 label_information: Informação
227 227 label_information_plural: Informações
228 228 label_please_login: Efetue login
229 229 label_register: Registre-se
230 230 label_password_lost: Perdi a senha
231 231 label_home: Página inicial
232 232 label_my_page: Minha página
233 233 label_my_account: Minha conta
234 234 label_my_projects: Meus projetos
235 235 label_administration: Administração
236 236 label_login: Login
237 237 label_logout: Logout
238 238 label_help: Ajuda
239 239 label_reported_issues: Tarefas reportadas
240 240 label_assigned_to_me_issues: Tarefas atribuídas à mim
241 241 label_last_login: Útima conexão
242 242 label_last_updates: Última alteração
243 243 label_last_updates_plural: %d Últimas alterações
244 244 label_registered_on: Registrado em
245 245 label_activity: Atividade
246 246 label_new: Novo
247 247 label_logged_as: Logado como
248 248 label_environment: Ambiente
249 249 label_authentication: Autenticação
250 250 label_auth_source: Modo de autenticação
251 251 label_auth_source_new: Novo modo de autenticação
252 252 label_auth_source_plural: Modos de autenticação
253 253 label_subproject_plural: Sub-projetos
254 254 label_min_max_length: Tamanho min-max
255 255 label_list: Lista
256 256 label_date: Data
257 257 label_integer: Inteiro
258 258 label_boolean: Booleano
259 259 label_string: Texto
260 260 label_text: Texto longo
261 261 label_attribute: Atributo
262 262 label_attribute_plural: Atributos
263 263 label_download: %d Download
264 264 label_download_plural: %d Downloads
265 265 label_no_data: Sem dados para mostrar
266 266 label_change_status: Mudar status
267 267 label_history: Histórico
268 268 label_attachment: Arquivo
269 269 label_attachment_new: Novo arquivo
270 270 label_attachment_delete: Apagar arquivo
271 271 label_attachment_plural: Arquivos
272 272 label_report: Relatório
273 273 label_report_plural: Relatório
274 274 label_news: Notícias
275 275 label_news_new: Adicionar notícias
276 276 label_news_plural: Notícias
277 277 label_news_latest: Últimas notícias
278 278 label_news_view_all: Ver todas as notícias
279 279 label_change_log: Log de mudanças
280 280 label_settings: Configurações
281 281 label_overview: Visão geral
282 282 label_version: Versão
283 283 label_version_new: Nova versão
284 284 label_version_plural: Versões
285 285 label_confirmation: Confirmação
286 286 label_export_to: Exportar para
287 287 label_read: Ler...
288 288 label_public_projects: Projetos públicos
289 289 label_open_issues: Aberto
290 290 label_open_issues_plural: Abertos
291 291 label_closed_issues: Fechado
292 292 label_closed_issues_plural: Fechados
293 293 label_total: Total
294 294 label_permissions: Permissões
295 295 label_current_status: Status atual
296 296 label_new_statuses_allowed: Novo status permitido
297 297 label_all: todos
298 298 label_none: nenhum
299 299 label_next: Próximo
300 300 label_previous: Anterior
301 301 label_used_by: Usado por
302 302 label_details: Detalhes
303 303 label_add_note: Adicionar nota
304 304 label_per_page: Por página
305 305 label_calendar: Calendário
306 306 label_months_from: Meses de
307 307 label_gantt: Gantt
308 308 label_internal: Interno
309 309 label_last_changes: últimas %d mudanças
310 310 label_change_view_all: Mostrar todas as mudanças
311 311 label_personalize_page: Personalizar esta página
312 312 label_comment: Comentário
313 313 label_comment_plural: Comentários
314 314 label_comment_add: Adicionar comentário
315 315 label_comment_added: Comentário adicionado
316 316 label_comment_delete: Apagar comentário
317 317 label_query: Consulta personalizada
318 318 label_query_plural: Consultas personalizadas
319 319 label_query_new: Nova consulta
320 320 label_filter_add: Adicionar filtro
321 321 label_filter_plural: Filtros
322 322 label_equals: é
323 323 label_not_equals: não e
324 324 label_in_less_than: é maior que
325 325 label_in_more_than: é menor que
326 326 label_in: em
327 327 label_today: hoje
328 328 label_this_week: this week
329 329 label_less_than_ago: faz menos de
330 330 label_more_than_ago: faz mais de
331 331 label_ago: dias atrás
332 332 label_contains: contém
333 333 label_not_contains: não contém
334 334 label_day_plural: dias
335 335 label_repository: Repositório
336 336 label_browse: Procurar
337 337 label_modification: %d mudança
338 338 label_modification_plural: %d mudanças
339 339 label_revision: Revisão
340 340 label_revision_plural: Revisões
341 341 label_added: adicionado
342 342 label_modified: modificado
343 343 label_deleted: deletado
344 344 label_latest_revision: Última revisão
345 345 label_latest_revision_plural: Últimas revisões
346 346 label_view_revisions: Ver revisões
347 347 label_max_size: Tamanho máximo
348 348 label_on: em
349 349 label_sort_highest: Mover para o início
350 350 label_sort_higher: Mover para cima
351 351 label_sort_lower: Mover para baixo
352 352 label_sort_lowest: Mover para o fim
353 353 label_roadmap: Roadmap
354 354 label_roadmap_due_in: Termina em
355 355 label_roadmap_overdue: %s late
356 356 label_roadmap_no_issues: Sem tarefas para essa versão
357 357 label_search: Busca
358 358 label_result_plural: Resultados
359 359 label_all_words: Todas as palavras
360 360 label_wiki: Wiki
361 361 label_wiki_edit: Wiki edit
362 362 label_wiki_edit_plural: Wiki edits
363 363 label_wiki_page: Wiki page
364 364 label_wiki_page_plural: Wiki pages
365 365 label_index_by_title: Index by title
366 366 label_index_by_date: Index by date
367 367 label_current_version: Versão atual
368 368 label_preview: Prévia
369 369 label_feed_plural: Feeds
370 370 label_changes_details: Detalhes de todas as mudanças
371 371 label_issue_tracking: Tarefas
372 372 label_spent_time: Tempo gasto
373 373 label_f_hour: %.2f hora
374 374 label_f_hour_plural: %.2f horas
375 375 label_time_tracking: Tempo trabalhado
376 376 label_change_plural: Mudanças
377 377 label_statistics: Estatísticas
378 378 label_commits_per_month: Commits por mês
379 379 label_commits_per_author: Commits por autor
380 380 label_view_diff: Ver diferenças
381 381 label_diff_inline: inline
382 382 label_diff_side_by_side: lado a lado
383 383 label_options: Opções
384 384 label_copy_workflow_from: Copiar workflow de
385 385 label_permissions_report: Relatório de permissões
386 386 label_watched_issues: Tarefas observadas
387 387 label_related_issues: tarefas relacionadas
388 388 label_applied_status: Status aplicado
389 389 label_loading: Carregando...
390 390 label_relation_new: Nova relação
391 391 label_relation_delete: Deletar relação
392 392 label_relates_to: relacionado à
393 393 label_duplicates: duplicadas
394 394 label_blocks: bloqueios
395 395 label_blocked_by: bloqueado por
396 396 label_precedes: procede
397 397 label_follows: segue
398 398 label_end_to_start: fim ao início
399 399 label_end_to_end: fim ao fim
400 400 label_start_to_start: ínícia ao inícia
401 401 label_start_to_end: inícia ao fim
402 402 label_stay_logged_in: Rester connecté
403 403 label_disabled: désactivé
404 404 label_show_completed_versions: Voire les versions passées
405 405 label_me: me
406 406 label_board: Forum
407 407 label_board_new: New forum
408 408 label_board_plural: Forums
409 409 label_topic_plural: Topics
410 410 label_message_plural: Messages
411 411 label_message_last: Last message
412 412 label_message_new: New message
413 413 label_reply_plural: Replies
414 414 label_send_information: Send account information to the user
415 415 label_year: Year
416 416 label_month: Month
417 417 label_week: Week
418 418 label_date_from: From
419 419 label_date_to: To
420 420 label_language_based: Language based
421 421 label_sort_by: Sort by %s
422 422 label_send_test_email: Send a test email
423 423 label_feeds_access_key_created_on: RSS access key created %s ago
424 424 label_module_plural: Modules
425 425 label_added_time_by: Added by %s %s ago
426 426 label_updated_time: Updated %s ago
427 427 label_jump_to_a_project: Jump to a project...
428 428
429 429 button_login: Login
430 430 button_submit: Enviar
431 431 button_save: Salvar
432 432 button_check_all: Marcar todos
433 433 button_uncheck_all: Desmarcar todos
434 434 button_delete: Apagar
435 435 button_create: Criar
436 436 button_test: Testar
437 437 button_edit: Editar
438 438 button_add: Adicionar
439 439 button_change: Mudar
440 440 button_apply: Aplicar
441 441 button_clear: Limpar
442 442 button_lock: Bloquear
443 443 button_unlock: Desbloquear
444 444 button_download: Download
445 445 button_list: Listar
446 446 button_view: Ver
447 447 button_move: Mover
448 448 button_back: Voltar
449 449 button_cancel: Cancelar
450 450 button_activate: Ativar
451 451 button_sort: Ordenar
452 452 button_log_time: Tempo de trabalho
453 453 button_rollback: Voltar para esta versão
454 454 button_watch: Observar
455 455 button_unwatch: Não observar
456 456 button_reply: Reply
457 457 button_archive: Archive
458 458 button_unarchive: Unarchive
459 459 button_reset: Reset
460 460 button_rename: Rename
461 461
462 462 status_active: ativo
463 463 status_registered: registrado
464 464 status_locked: bloqueado
465 465
466 466 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
467 467 text_regexp_info: ex. ^[A-Z0-9]+$
468 468 text_min_max_length_info: 0 siginifica sem restrição
469 469 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
470 470 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
471 471 text_are_you_sure: Você tem certeza ?
472 472 text_journal_changed: alterado de %s para %s
473 473 text_journal_set_to: alterar para %s
474 474 text_journal_deleted: apagado
475 475 text_tip_task_begin_day: tarefa começa neste dia
476 476 text_tip_task_end_day: tarefa termina neste dia
477 477 text_tip_task_begin_end_day: tarefa começa e termina neste dia
478 478 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
479 479 text_caracters_maximum: %d móximo de caracteres
480 480 text_length_between: Tamanho entre %d e %d caracteres.
481 481 text_tracker_no_workflow: Sem workflow definido para este tipo.
482 482 text_unallowed_characters: Caracteres não permitidos
483 483 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
484 484 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
485 485 text_issue_added: Tarefa %s foi incluída (by %s).
486 486 text_issue_updated: Tarefa %s foi alterada (by %s).
487 487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 489 text_issue_category_destroy_assignments: Remove category assignments
490 490 text_issue_category_reassign_to: Reassing issues to this category
491 491
492 492 default_role_manager: Analista de Negócio ou Gerente de Projeto
493 493 default_role_developper: Desenvolvedor
494 494 default_role_reporter: Analista de Suporte
495 495 default_tracker_bug: Bug
496 496 default_tracker_feature: Implementaçõo
497 497 default_tracker_support: Suporte
498 498 default_issue_status_new: Novo
499 499 default_issue_status_assigned: Atribuído
500 500 default_issue_status_resolved: Resolvido
501 501 default_issue_status_feedback: Feedback
502 502 default_issue_status_closed: Fechado
503 503 default_issue_status_rejected: Rejeitado
504 504 default_doc_category_user: Documentação do usuário
505 505 default_doc_category_tech: Documentação técnica
506 506 default_priority_low: Baixo
507 507 default_priority_normal: Normal
508 508 default_priority_high: Alto
509 509 default_priority_urgent: Urgente
510 510 default_priority_immediate: Imediato
511 511 default_activity_design: Design
512 512 default_activity_development: Desenvolvimento
513 513
514 514 enumeration_issue_priorities: Prioridade das tarefas
515 515 enumeration_doc_categories: Categorias de documento
516 516 enumeration_activities: Atividades (time tracking)
517 517 label_file_plural: Files
518 518 label_changeset_plural: Changesets
519 519 field_column_names: Columns
520 520 label_default_columns: Default columns
521 521 setting_issue_list_default_columns: Default columns displayed on the issue list
522 522 setting_repositories_encodings: Repositories encodings
523 523 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 524 label_bulk_edit_selected_issues: Bulk edit selected issues
525 525 label_no_change_option: (No change)
526 526 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 527 label_theme: Theme
528 528 label_default: Default
529 529 label_search_titles_only: Search titles only
530 530 label_nobody: nobody
531 531 button_change_password: Change password
532 532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 533 label_user_mail_option_selected: "For any event on the selected projects only..."
534 534 label_user_mail_option_all: "For any event on all my projects"
535 535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 536 setting_emails_footer: Emails footer
537 537 label_float: Float
538 538 button_copy: Copy
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information: Your Redmine account information
539 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information: Your account information
541 541 setting_protocol: Protocol
542 542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 543 setting_time_format: Time format
544 544 label_registration_activation_by_email: account activation by email
545 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: %s account activation request
546 546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 547 label_registration_automatic_activation: automatic account activation
548 548 label_registration_manual_activation: manual account activation
549 549 notice_account_pending: "Your account was created and is now pending administrator approval."
550 550 field_time_zone: Time zone
551 551 text_caracters_minimum: Must be at least %d characters long.
552 552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 553 button_annotate: Annotate
554 554 label_issues_by: Issues by %s
555 555 field_searchable: Searchable
556 556 label_display_per_page: 'Per page: %s'
557 557 setting_per_page_options: Objects per page options
558 558 label_age: Age
559 559 notice_default_data_loaded: Default configuration successfully loaded.
560 560 text_load_default_configuration: Load the default configuration
561 561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 563 button_update: Update
564 564 label_change_properties: Change properties
565 565 label_general: General
566 566 label_repository_plural: Repositories
567 567 label_associated_revisions: Associated revisions
568 568 setting_user_format: Users display format
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Select modules to enable for this project:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: Boards
581 581 project_module_issue_tracking: Issue tracking
582 582 project_module_wiki: Wiki
583 583 project_module_files: Files
584 584 project_module_documents: Documents
585 585 project_module_repository: Repository
586 586 project_module_news: News
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: Default administrator account changed
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: Configure
592 592 label_plugins: Plugins
593 593 label_ldap_authentication: LDAP authentication
594 594 label_downloads_abbr: D/L
595 595 label_this_month: this month
596 596 label_last_n_days: last %d days
597 597 label_all_time: all time
598 598 label_this_year: this year
599 599 label_date_range: Date range
600 600 label_last_week: last week
601 601 label_yesterday: yesterday
602 602 label_last_month: last month
603 603 label_add_another_file: Add another file
604 604 label_optional_description: Optional description
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
@@ -1,617 +1,617
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
5 5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 zi
9 9 actionview_datehelper_time_in_words_day_plural: %d zile
10 10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
11 11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
12 12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
13 13 actionview_datehelper_time_in_words_minute: 1 minut
14 14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
15 15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minute
17 17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
20 20 actionview_instancetag_blank_option: Va rog selectati
21 21
22 22 activerecord_error_inclusion: nu este inclus in lista
23 23 activerecord_error_exclusion: este rezervat
24 24 activerecord_error_invalid: este invalid
25 25 activerecord_error_confirmation: nu corespunde confirmarii
26 26 activerecord_error_accepted: trebuie acceptat
27 27 activerecord_error_empty: nu poate fi gol
28 28 activerecord_error_blank: nu poate fi gol
29 29 activerecord_error_too_long: este prea lung
30 30 activerecord_error_too_short: este prea scurt
31 31 activerecord_error_wrong_length: are lungimea eronata
32 32 activerecord_error_taken: deja a fost luat/rezervat
33 33 activerecord_error_not_a_number: nu este un numar
34 34 activerecord_error_not_a_date: nu este o data valida
35 35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
36 36 activerecord_error_not_same_project: nu apartine projectului respectiv
37 37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
38 38
39 39 general_fmt_age: %d an
40 40 general_fmt_age_plural: %d ani
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nu'
46 46 general_text_Yes: 'Da'
47 47 general_text_no: 'nu'
48 48 general_text_yes: 'da'
49 49 general_lang_name: 'Română'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
54 54 general_first_day_of_week: '7'
55 55
56 56 notice_account_updated: Contul a fost creat cu succes.
57 57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
58 58 notice_account_password_updated: Parola a fost modificata cu succes.
59 59 notice_account_wrong_password: Parola gresita
60 60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
61 61 notice_account_unknown_email: Utilizator inexistent.
62 62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
63 63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
64 64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
65 65 notice_successful_create: Creat cu succes.
66 66 notice_successful_update: Modificare cu succes.
67 67 notice_successful_delete: Stergere cu succes.
68 68 notice_successful_connection: Conectare cu succes.
69 69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
70 70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
71 71 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
72 72 notice_email_sent: Un e-mail a fost trimis la adresa %s
73 73 notice_email_error: Eroare in trimiterea e-mailului (%s)
74 74 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
75 75
76 76 error_scm_not_found: "Articolul sau reviziunea nu exista in stoc (Repository)."
77 77 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
78 78
79 mail_subject_lost_password: Your Redmine password
80 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
81 mail_subject_register: Redmine account activation
82 mail_body_register: 'To activate your Redmine account, click on the following link:'
79 mail_subject_lost_password: Your %s password
80 mail_body_lost_password: 'To change your password, click on the following link:'
81 mail_subject_register: Your %s account activation
82 mail_body_register: 'To activate your account, click on the following link:'
83 83
84 84 gui_validation_error: 1 eroare
85 85 gui_validation_error_plural: %d erori
86 86
87 87 field_name: Nume
88 88 field_description: Descriere
89 89 field_summary: Sumar
90 90 field_is_required: Obligatoriu
91 91 field_firstname: Nume
92 92 field_lastname: Prenume
93 93 field_mail: Email
94 94 field_filename: Fisier
95 95 field_filesize: Marimea fisierului
96 96 field_downloads: Download
97 97 field_author: Autor
98 98 field_created_on: Creat
99 99 field_updated_on: Modificat
100 100 field_field_format: Format
101 101 field_is_for_all: Pentru toate proiectele
102 102 field_possible_values: Valori posibile
103 103 field_regexp: Expresie regulara
104 104 field_min_length: Lungime minima
105 105 field_max_length: Lungime maxima
106 106 field_value: Valoare
107 107 field_category: Categorie
108 108 field_title: Titlu
109 109 field_project: Proiect
110 110 field_issue: Tichet
111 111 field_status: Statut
112 112 field_notes: Note
113 113 field_is_closed: Tichet rezolvat
114 114 field_is_default: Statut de baza
115 115 field_tracker: Tip tichet
116 116 field_subject: Subiect
117 117 field_due_date: Data finalizarii
118 118 field_assigned_to: Atribuit pentru
119 119 field_priority: Prioritate
120 120 field_fixed_version: Target version
121 121 field_user: Utilizator
122 122 field_role: Rol
123 123 field_homepage: Pagina principala
124 124 field_is_public: Public
125 125 field_parent: Subproiect al
126 126 field_is_in_chlog: Tichetele sunt vizibile in changelog
127 127 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
128 128 field_login: Autentificare
129 129 field_mail_notification: Notificari prin e-mail
130 130 field_admin: Administrator
131 131 field_last_login_on: Ultima conectare
132 132 field_language: Limba
133 133 field_effective_date: Data
134 134 field_password: Parola
135 135 field_new_password: Parola noua
136 136 field_password_confirmation: Confirmare
137 137 field_version: Versiune
138 138 field_type: Tip
139 139 field_host: Host
140 140 field_port: Port
141 141 field_account: Cont
142 142 field_base_dn: Base DN
143 143 field_attr_login: Atribut autentificare
144 144 field_attr_firstname: Atribut nume
145 145 field_attr_lastname: Atribut prenume
146 146 field_attr_mail: Atribut e-mail
147 147 field_onthefly: Creare utilizator on-the-fly (rapid)
148 148 field_start_date: Start
149 149 field_done_ratio: %% rezolvat
150 150 field_auth_source: Mod de autentificare
151 151 field_hide_mail: Ascunde adresa de e-mail
152 152 field_comments: Comentariu
153 153 field_url: URL
154 154 field_start_page: Pagina de start
155 155 field_subproject: Subproiect
156 156 field_hours: Ore
157 157 field_activity: Activitate
158 158 field_spent_on: Data
159 159 field_identifier: Identificator
160 160 field_is_filter: Folosit ca un filtru
161 161 field_issue_to_id: Articole similare
162 162 field_delay: Intarziere
163 163 field_assignable: La acest rol se poate atribui tichete
164 164 field_redirect_existing_links: Redirectare linkuri existente
165 165 field_estimated_hours: Timpul estimat
166 166 field_default_value: Default value
167 167
168 168 setting_app_title: Titlul aplicatiei
169 169 setting_app_subtitle: Subtitlul aplicatiei
170 170 setting_welcome_text: Textul de intampinare
171 171 setting_default_language: Limbajul
172 172 setting_login_required: Autentificare obligatorie
173 173 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
174 174 setting_attachment_max_size: Lungimea maxima al attachmentului
175 175 setting_issues_export_limit: Limita de exportare a tichetelor
176 176 setting_mail_from: Adresa de e-mail al emitatorului
177 177 setting_host_name: Numele hostului
178 178 setting_text_formatting: Formatarea textului
179 179 setting_wiki_compression: Compresie istoric wiki
180 180 setting_feeds_limit: Limita continut feed
181 181 setting_autofetch_changesets: Autofetch commits
182 182 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
183 183 setting_commit_ref_keywords: Cuvinte cheie de referinta
184 184 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
185 185 setting_autologin: Autentificare automata
186 186 setting_date_format: Formatul datelor
187 187 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
188 188
189 189 label_user: Utilizator
190 190 label_user_plural: Utilizatori
191 191 label_user_new: Utilizator nou
192 192 label_project: Proiect
193 193 label_project_new: Proiect nou
194 194 label_project_plural: Proiecte
195 195 label_project_all: Toate proiectele
196 196 label_project_latest: Ultimele proiecte
197 197 label_issue: Tichet
198 198 label_issue_new: Tichet nou
199 199 label_issue_plural: Tichete
200 200 label_issue_view_all: Vizualizare toate tichetele
201 201 label_document: Document
202 202 label_document_new: Document nou
203 203 label_document_plural: Documente
204 204 label_role: Rol
205 205 label_role_plural: Roluri
206 206 label_role_new: Rol nou
207 207 label_role_and_permissions: Roluri si permisiuni
208 208 label_member: Membru
209 209 label_member_new: Membru nou
210 210 label_member_plural: Membrii
211 211 label_tracker: Tip tichet
212 212 label_tracker_plural: Tipuri de tichete
213 213 label_tracker_new: Tip tichet nou
214 214 label_workflow: Workflow
215 215 label_issue_status: Statut tichet
216 216 label_issue_status_plural: Statut tichete
217 217 label_issue_status_new: Statut nou
218 218 label_issue_category: Categorie tichet
219 219 label_issue_category_plural: Categorii tichete
220 220 label_issue_category_new: Categorie noua
221 221 label_custom_field: Camp personalizat
222 222 label_custom_field_plural: Campuri personalizate
223 223 label_custom_field_new: Camp personalizat nou
224 224 label_enumerations: Enumeratii
225 225 label_enumeration_new: Valoare noua
226 226 label_information: Informatie
227 227 label_information_plural: Informatii
228 228 label_please_login: Va rugam sa va autentificati
229 229 label_register: Inregistrare
230 230 label_password_lost: Parola pierduta
231 231 label_home: Prima pagina
232 232 label_my_page: Pagina mea
233 233 label_my_account: Contul meu
234 234 label_my_projects: Proiectele mele
235 235 label_administration: Administrare
236 236 label_login: Autentificare
237 237 label_logout: Iesire din cont
238 238 label_help: Ajutor
239 239 label_reported_issues: Tichete raportate
240 240 label_assigned_to_me_issues: Tichete atribuite pentru mine
241 241 label_last_login: Ultima conectare
242 242 label_last_updates: Ultima modificare
243 243 label_last_updates_plural: ultimele %d modificari
244 244 label_registered_on: Inregistrat la
245 245 label_activity: Activitate
246 246 label_new: Nou
247 247 label_logged_as: Inregistrat ca
248 248 label_environment: Mediu
249 249 label_authentication: Autentificare
250 250 label_auth_source: Modul de autentificare
251 251 label_auth_source_new: Mod de autentificare noua
252 252 label_auth_source_plural: Moduri de autentificare
253 253 label_subproject_plural: Subproiecte
254 254 label_min_max_length: Lungime min-max
255 255 label_list: Lista
256 256 label_date: Data
257 257 label_integer: Numar intreg
258 258 label_boolean: Variabila logica
259 259 label_string: Text
260 260 label_text: text lung
261 261 label_attribute: Atribut
262 262 label_attribute_plural: Attribute
263 263 label_download: %d Download
264 264 label_download_plural: %d Downloads
265 265 label_no_data: Nu exista date de vizualizat
266 266 label_change_status: Schimbare statut
267 267 label_history: Istoric
268 268 label_attachment: Fisier
269 269 label_attachment_new: Fisier nou
270 270 label_attachment_delete: Stergere fisier
271 271 label_attachment_plural: Fisiere
272 272 label_report: Raport
273 273 label_report_plural: Rapoarte
274 274 label_news: Stiri
275 275 label_news_new: Adauga stiri
276 276 label_news_plural: Stiri
277 277 label_news_latest: Ultimele noutati
278 278 label_news_view_all: Vizualizare stiri
279 279 label_change_log: Change log
280 280 label_settings: Setari
281 281 label_overview: Sumar
282 282 label_version: Versiune
283 283 label_version_new: Versiune noua
284 284 label_version_plural: Versiuni
285 285 label_confirmation: Confirmare
286 286 label_export_to: Exportare in
287 287 label_read: Citire...
288 288 label_public_projects: Proiecte publice
289 289 label_open_issues: deschis
290 290 label_open_issues_plural: deschise
291 291 label_closed_issues: rezolvat
292 292 label_closed_issues_plural: rezolvate
293 293 label_total: Total
294 294 label_permissions: Permisiuni
295 295 label_current_status: Statut curent
296 296 label_new_statuses_allowed: Drepturi de a schimba statutul in
297 297 label_all: toate
298 298 label_none: n/a
299 299 label_next: Urmator
300 300 label_previous: Anterior
301 301 label_used_by: Folosit de
302 302 label_details: Detalii
303 303 label_add_note: Adauga o nota
304 304 label_per_page: Per pagina
305 305 label_calendar: Calendar
306 306 label_months_from: luni incepand cu
307 307 label_gantt: Gantt
308 308 label_internal: Internal
309 309 label_last_changes: ultimele %d modificari
310 310 label_change_view_all: Vizualizare toate modificarile
311 311 label_personalize_page: Personalizeaza aceasta pagina
312 312 label_comment: Comentariu
313 313 label_comment_plural: Comentarii
314 314 label_comment_add: Adauga un comentariu
315 315 label_comment_added: Comentariu adaugat
316 316 label_comment_delete: Stergere comentarii
317 317 label_query: Raport personalizat
318 318 label_query_plural: Rapoarte personalizate
319 319 label_query_new: Raport nou
320 320 label_filter_add: Adauga filtru
321 321 label_filter_plural: Filtre
322 322 label_equals: egal cu
323 323 label_not_equals: nu este egal cu
324 324 label_in_less_than: este mai putin decat
325 325 label_in_more_than: este mai mult ca
326 326 label_in: in
327 327 label_today: azi
328 328 label_this_week: saptamana curenta
329 329 label_less_than_ago: recent
330 330 label_more_than_ago: mai multe zile
331 331 label_ago: in ultimele zile
332 332 label_contains: contine
333 333 label_not_contains: nu contine
334 334 label_day_plural: zile
335 335 label_repository: Stoc (Repository)
336 336 label_browse: Navigare
337 337 label_modification: %d modificare
338 338 label_modification_plural: %d modificari
339 339 label_revision: Revizie
340 340 label_revision_plural: Revizii
341 341 label_added: adaugat
342 342 label_modified: modificat
343 343 label_deleted: sters
344 344 label_latest_revision: Ultima revizie
345 345 label_latest_revision_plural: Ultimele revizii
346 346 label_view_revisions: Vizualizare revizii
347 347 label_max_size: Marime maxima
348 348 label_on: 'din'
349 349 label_sort_highest: Muta prima
350 350 label_sort_higher: Muta sus
351 351 label_sort_lower: Mota jos
352 352 label_sort_lowest: Mota ultima
353 353 label_roadmap: Harta activitatiilor
354 354 label_roadmap_due_in: Rezolvat in
355 355 label_roadmap_overdue: %s intarziere
356 356 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
357 357 label_search: Cauta
358 358 label_result_plural: Rezultate
359 359 label_all_words: Toate cuvintele
360 360 label_wiki: Wiki
361 361 label_wiki_edit: Editare wiki
362 362 label_wiki_edit_plural: Editari wiki
363 363 label_wiki_page: Pagina wiki
364 364 label_wiki_page_plural: Pagini wiki
365 365 label_current_version: Versiunea curenta
366 366 label_preview: Pre-vizualizare
367 367 label_feed_plural: Feeduri
368 368 label_changes_details: Detaliile modificarilor
369 369 label_issue_tracking: Urmarire tichete
370 370 label_spent_time: Timp consumat
371 371 label_f_hour: %.2f ora
372 372 label_f_hour_plural: %.2f ore
373 373 label_time_tracking: Urmarire timp
374 374 label_change_plural: Schimbari
375 375 label_statistics: Statistici
376 376 label_commits_per_month: Rezolvari lunare
377 377 label_commits_per_author: Rezolvari
378 378 label_view_diff: Vizualizare diferente
379 379 label_diff_inline: inline
380 380 label_diff_side_by_side: side by side
381 381 label_options: Optiuni
382 382 label_copy_workflow_from: Copiaza workflow de la
383 383 label_permissions_report: Raportul permisiunilor
384 384 label_watched_issues: Tichete urmarite
385 385 label_related_issues: Tichete similare
386 386 label_applied_status: Statut aplicat
387 387 label_loading: Incarcare...
388 388 label_relation_new: Relatie noua
389 389 label_relation_delete: Stergere relatie
390 390 label_relates_to: relatat la
391 391 label_duplicates: duplicate
392 392 label_blocks: blocuri
393 393 label_blocked_by: blocat de
394 394 label_precedes: precedes
395 395 label_follows: follows
396 396 label_end_to_start: de la sfarsit la capat
397 397 label_end_to_end: de la sfarsit la sfarsit
398 398 label_start_to_start: de la capat la capat
399 399 label_start_to_end: de la sfarsit la capat
400 400 label_stay_logged_in: Ramane autenticat
401 401 label_disabled: dezactivata
402 402 label_show_completed_versions: Vizualizare verziuni completate
403 403 label_me: mine
404 404 label_board: Forum
405 405 label_board_new: Forum nou
406 406 label_board_plural: Forumuri
407 407 label_topic_plural: Subiecte
408 408 label_message_plural: Mesaje
409 409 label_message_last: Ultimul mesaj
410 410 label_message_new: Mesaj nou
411 411 label_reply_plural: Raspunsuri
412 412 label_send_information: Trimite informatii despre cont pentru utilizator
413 413 label_year: An
414 414 label_month: Luna
415 415 label_week: Saptamana
416 416 label_date_from: De la
417 417 label_date_to: Pentru
418 418 label_language_based: Bazat pe limbaj
419 419 label_sort_by: Sortare dupa %s
420 420 label_send_test_email: trimite un e-mail de test
421 421 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
422 422 label_module_plural: Module
423 423 label_added_time_by: Adaugat de %s %s mai devreme
424 424 label_updated_time: Modificat %s mai devreme
425 425 label_jump_to_a_project: Alege un proiect ...
426 426
427 427 button_login: Autentificare
428 428 button_submit: Trimite
429 429 button_save: Salveaza
430 430 button_check_all: Bifeaza toate
431 431 button_uncheck_all: Reseteaza toate
432 432 button_delete: Sterge
433 433 button_create: Creare
434 434 button_test: Test
435 435 button_edit: Editare
436 436 button_add: Adauga
437 437 button_change: Modificare
438 438 button_apply: Aplicare
439 439 button_clear: Resetare
440 440 button_lock: Inchide
441 441 button_unlock: Deschide
442 442 button_download: Download
443 443 button_list: Listare
444 444 button_view: Vizualizare
445 445 button_move: Mutare
446 446 button_back: Inapoi
447 447 button_cancel: Anulare
448 448 button_activate: Activare
449 449 button_sort: Sortare
450 450 button_log_time: Log time
451 451 button_rollback: Inapoi la aceasta versiune
452 452 button_watch: Urmarie
453 453 button_unwatch: Terminare urmarire
454 454 button_reply: Raspuns
455 455 button_archive: Arhivare
456 456 button_unarchive: Dezarhivare
457 457 button_reset: Reset
458 458 button_rename: Redenumire
459 459
460 460 status_active: activ
461 461 status_registered: inregistrat
462 462 status_locked: inchis
463 463
464 464 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
465 465 text_regexp_info: de exemplu ^[A-Z0-9]+$
466 466 text_min_max_length_info: 0 inseamna fara restrictii
467 467 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
468 468 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
469 469 text_are_you_sure: Sunteti sigur ?
470 470 text_journal_changed: modificat de la %s la %s
471 471 text_journal_set_to: setat la %s
472 472 text_journal_deleted: sters
473 473 text_tip_task_begin_day: activitate care incepe azi
474 474 text_tip_task_end_day: activitate care se termina azi
475 475 text_tip_task_begin_end_day: activitate care incepe si se termina azi
476 476 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
477 477 text_caracters_maximum: maximum %d caractere.
478 478 text_length_between: Lungimea intre %d si %d caractere.
479 479 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
480 480 text_unallowed_characters: Caractere nepermise
481 481 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
482 482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 483 text_issue_added: Tichetul %s a fost raportat (by %s).
484 484 text_issue_updated: tichetul %s a fost modificat (by %s).
485 485 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
486 486 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
487 487 text_issue_category_destroy_assignments: Remove category assignments
488 488 text_issue_category_reassign_to: Reassing issues to this category
489 489
490 490 default_role_manager: Manager
491 491 default_role_developper: Programator
492 492 default_role_reporter: Creator rapoarte
493 493 default_tracker_bug: Defect
494 494 default_tracker_feature: Functionalitate
495 495 default_tracker_support: Suport
496 496 default_issue_status_new: Nou
497 497 default_issue_status_assigned: Atribuit
498 498 default_issue_status_resolved: Rezolvat
499 499 default_issue_status_feedback: Feedback
500 500 default_issue_status_closed: Rezolvat
501 501 default_issue_status_rejected: Respins
502 502 default_doc_category_user: Documentatie
503 503 default_doc_category_tech: Documentatie tehnica
504 504 default_priority_low: Redusa
505 505 default_priority_normal: Normala
506 506 default_priority_high: Ridicata
507 507 default_priority_urgent: Urgenta
508 508 default_priority_immediate: Imediata
509 509 default_activity_design: Design
510 510 default_activity_development: Programare
511 511
512 512 enumeration_issue_priorities: Prioritati tichet
513 513 enumeration_doc_categories: Categorii documente
514 514 enumeration_activities: Activitati (urmarite in timp)
515 515 label_index_by_date: Index by date
516 516 label_index_by_title: Index by title
517 517 label_file_plural: Files
518 518 label_changeset_plural: Changesets
519 519 field_column_names: Columns
520 520 label_default_columns: Default columns
521 521 setting_issue_list_default_columns: Default columns displayed on the issue list
522 522 setting_repositories_encodings: Repositories encodings
523 523 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 524 label_bulk_edit_selected_issues: Bulk edit selected issues
525 525 label_no_change_option: (No change)
526 526 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 527 label_theme: Theme
528 528 label_default: Default
529 529 label_search_titles_only: Search titles only
530 530 label_nobody: nobody
531 531 button_change_password: Change password
532 532 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
533 533 label_user_mail_option_selected: "For any event on the selected projects only..."
534 534 label_user_mail_option_all: "For any event on all my projects"
535 535 label_user_mail_option_none: "Only for things I watch or I'm involved in"
536 536 setting_emails_footer: Emails footer
537 537 label_float: Float
538 538 button_copy: Copy
539 mail_body_account_information_external: You can use your "%s" account to log into Redmine.
540 mail_body_account_information: Your Redmine account information
539 mail_body_account_information_external: You can use your "%s" account to log in.
540 mail_body_account_information: Your account information
541 541 setting_protocol: Protocol
542 542 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
543 543 setting_time_format: Time format
544 544 label_registration_activation_by_email: account activation by email
545 mail_subject_account_activation_request: Redmine account activation request
545 mail_subject_account_activation_request: %s account activation request
546 546 mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
547 547 label_registration_automatic_activation: automatic account activation
548 548 label_registration_manual_activation: manual account activation
549 549 notice_account_pending: "Your account was created and is now pending administrator approval."
550 550 field_time_zone: Time zone
551 551 text_caracters_minimum: Must be at least %d characters long.
552 552 setting_bcc_recipients: Blind carbon copy recipients (bcc)
553 553 button_annotate: Annotate
554 554 label_issues_by: Issues by %s
555 555 field_searchable: Searchable
556 556 label_display_per_page: 'Per page: %s'
557 557 setting_per_page_options: Objects per page options
558 558 label_age: Age
559 559 notice_default_data_loaded: Default configuration successfully loaded.
560 560 text_load_default_configuration: Load the default configuration
561 561 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
562 562 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
563 563 button_update: Update
564 564 label_change_properties: Change properties
565 565 label_general: General
566 566 label_repository_plural: Repositories
567 567 label_associated_revisions: Associated revisions
568 568 setting_user_format: Users display format
569 569 text_status_changed_by_changeset: Applied in changeset %s.
570 570 label_more: More
571 571 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
572 572 label_scm: SCM
573 573 text_select_project_modules: 'Select modules to enable for this project:'
574 574 label_issue_added: Issue added
575 575 label_issue_updated: Issue updated
576 576 label_document_added: Document added
577 577 label_message_posted: Message added
578 578 label_file_added: File added
579 579 label_news_added: News added
580 580 project_module_boards: Boards
581 581 project_module_issue_tracking: Issue tracking
582 582 project_module_wiki: Wiki
583 583 project_module_files: Files
584 584 project_module_documents: Documents
585 585 project_module_repository: Repository
586 586 project_module_news: News
587 587 project_module_time_tracking: Time tracking
588 588 text_file_repository_writable: File repository writable
589 589 text_default_administrator_account_changed: Default administrator account changed
590 590 text_rmagick_available: RMagick available (optional)
591 591 button_configure: Configure
592 592 label_plugins: Plugins
593 593 label_ldap_authentication: LDAP authentication
594 594 label_downloads_abbr: D/L
595 595 label_this_month: this month
596 596 label_last_n_days: last %d days
597 597 label_all_time: all time
598 598 label_this_year: this year
599 599 label_date_range: Date range
600 600 label_last_week: last week
601 601 label_yesterday: yesterday
602 602 label_last_month: last month
603 603 label_add_another_file: Add another file
604 604 label_optional_description: Optional description
605 605 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
606 606 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
607 607 text_assign_time_entries_to_project: Assign reported hours to the project
608 608 text_destroy_time_entries: Delete reported hours
609 609 text_reassign_time_entries: 'Reassign reported hours to this issue:'
610 610 setting_activity_days_default: Days displayed on project activity
611 611 label_chronological_order: In chronological order
612 612 field_comments_sorting: Display comments
613 613 label_reverse_chronological_order: In reverse chronological order
614 614 label_preferences: Preferences
615 615 setting_display_subprojects_issues: Display subprojects issues on main projects by default
616 616 label_overall_activity: Overall activity
617 617 setting_default_projects_public: New projects are public by default
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now