##// END OF EJS Templates
Added the ability to reset its own RSS access key on "My account"....
Jean-Philippe Lang -
r666:39c9874a4102
parent child
Show More
@@ -1,137 +1,145
1 1 # redMine - project management software
2 2 # Copyright (C) 2006 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 MyController < ApplicationController
19 19 layout 'base'
20 20 before_filter :require_login
21 21
22 22 BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues,
23 23 'issuesreportedbyme' => :label_reported_issues,
24 24 'issueswatched' => :label_watched_issues,
25 25 'news' => :label_news_latest,
26 26 'calendar' => :label_calendar,
27 27 'documents' => :label_document_plural
28 28 }.freeze
29 29
30 30 DEFAULT_LAYOUT = { 'left' => ['issuesassignedtome'],
31 31 'right' => ['issuesreportedbyme']
32 32 }.freeze
33 33
34 34 verify :xhr => true,
35 35 :session => :page_layout,
36 36 :only => [:add_block, :remove_block, :order_blocks]
37 37
38 38 def index
39 39 page
40 40 render :action => 'page'
41 41 end
42 42
43 43 # Show user's page
44 44 def page
45 45 @user = self.logged_in_user
46 46 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT
47 47 end
48 48
49 49 # Edit user's account
50 50 def account
51 51 @user = self.logged_in_user
52 52 @pref = @user.pref
53 53 @user.attributes = params[:user]
54 54 @user.pref.attributes = params[:pref]
55 if request.post? and @user.save and @user.pref.save
56 set_localization
57 flash.now[:notice] = l(:notice_account_updated)
58 self.logged_in_user.reload
55 if request.post? && @user.save && @user.pref.save
56 flash[:notice] = l(:notice_account_updated)
57 redirect_to :action => 'account'
59 58 end
60 59 end
61 60
62 61 # Change user's password
63 62 def change_password
64 63 @user = self.logged_in_user
65 64 flash[:error] = l(:notice_can_t_change_password) and redirect_to :action => 'account' and return if @user.auth_source_id
66 65 if @user.check_password?(params[:password])
67 66 @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation]
68 67 if @user.save
69 68 flash[:notice] = l(:notice_account_password_updated)
70 69 else
71 70 render :action => 'account'
72 71 return
73 72 end
74 73 else
75 74 flash[:error] = l(:notice_account_wrong_password)
76 75 end
77 76 redirect_to :action => 'account'
78 77 end
78
79 # Create a new feeds key
80 def reset_rss_key
81 if request.post? && User.current.rss_token
82 User.current.rss_token.destroy
83 flash[:notice] = l(:notice_feeds_access_key_reseted)
84 end
85 redirect_to :action => 'account'
86 end
79 87
80 88 # User's page layout configuration
81 89 def page_layout
82 90 @user = self.logged_in_user
83 91 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
84 92 session[:page_layout] = @blocks
85 93 %w(top left right).each {|f| session[:page_layout][f] ||= [] }
86 94 @block_options = []
87 95 BLOCKS.each {|k, v| @block_options << [l(v), k]}
88 96 end
89 97
90 98 # Add a block to user's page
91 99 # The block is added on top of the page
92 100 # params[:block] : id of the block to add
93 101 def add_block
94 102 block = params[:block]
95 103 render(:nothing => true) and return unless block && (BLOCKS.keys.include? block)
96 104 @user = self.logged_in_user
97 105 # remove if already present in a group
98 106 %w(top left right).each {|f| (session[:page_layout][f] ||= []).delete block }
99 107 # add it on top
100 108 session[:page_layout]['top'].unshift block
101 109 render :partial => "block", :locals => {:user => @user, :block_name => block}
102 110 end
103 111
104 112 # Remove a block to user's page
105 113 # params[:block] : id of the block to remove
106 114 def remove_block
107 115 block = params[:block]
108 116 # remove block in all groups
109 117 %w(top left right).each {|f| (session[:page_layout][f] ||= []).delete block }
110 118 render :nothing => true
111 119 end
112 120
113 121 # Change blocks order on user's page
114 122 # params[:group] : group to order (top, left or right)
115 123 # params[:list-(top|left|right)] : array of block ids of the group
116 124 def order_blocks
117 125 group = params[:group]
118 126 group_items = params["list-#{group}"]
119 127 if group_items and group_items.is_a? Array
120 128 # remove group blocks if they are presents in other groups
121 129 %w(top left right).each {|f|
122 130 session[:page_layout][f] = (session[:page_layout][f] || []) - group_items
123 131 }
124 132 session[:page_layout][group] = group_items
125 133 end
126 134 render :nothing => true
127 135 end
128 136
129 137 # Save user's page layout
130 138 def page_layout_save
131 139 @user = self.logged_in_user
132 140 @user.pref[:my_page_layout] = session[:page_layout] if session[:page_layout]
133 141 @user.pref.save
134 142 session[:page_layout] = nil
135 143 redirect_to :action => 'page'
136 144 end
137 145 end
@@ -1,47 +1,52
1 1 <h2><%=l(:label_my_account)%></h2>
2 2
3 <p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
4 <%=l(:field_created_on)%>: <%= format_time(@user.created_on) %></p>
3 <p><%=l(:field_login)%>: <strong><%= @user.login %></strong>
4 <br /><%=l(:field_created_on)%>: <%= format_time(@user.created_on) %>
5 <% if @user.rss_token %>
6 <br /><%= l(:label_feeds_access_key_created_on, distance_of_time_in_words(Time.now, @user.rss_token.created_on)) %>
7 (<%= link_to l(:button_reset), {:action => 'reset_rss_key'}, :method => :post %>)
8 <% end %>
9 </p>
5 10
6 11 <%= error_messages_for 'user' %>
7 12
8 13 <div class="box">
9 14 <h3><%=l(:label_information_plural)%></h3>
10 15
11 16 <% labelled_tabular_form_for :user, @user, :url => { :action => "account" } do |f| %>
12 17
13 18 <p><%= f.text_field :firstname, :required => true %></p>
14 19 <p><%= f.text_field :lastname, :required => true %></p>
15 20 <p><%= f.text_field :mail, :required => true, :size => 40 %></p>
16 21 <p><%= f.select :language, lang_options_for_select %></p>
17 22 <p><%= f.check_box :mail_notification %></p>
18 23
19 24 <% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
20 25 <p><%= pref_fields.check_box :hide_mail %></p>
21 26 <% end %>
22 27
23 28 <center><%= submit_tag l(:button_save) %></center>
24 29 <% end %>
25 30 </div>
26 31
27 32
28 33 <% unless @user.auth_source_id %>
29 34 <div class="box">
30 35 <h3><%=l(:field_password)%></h3>
31 36
32 37 <% form_tag({:action => 'change_password'}, :class => "tabular") do %>
33 38
34 39 <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
35 40 <%= password_field_tag 'password', nil, :size => 25 %></p>
36 41
37 42 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
38 43 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
39 44 <em><%= l(:text_length_between, 4, 12) %></em></p>
40 45
41 46 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
42 47 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
43 48
44 49 <center><%= submit_tag l(:button_save) %></center>
45 50 <% end %>
46 51 </div>
47 52 <% end %>
@@ -1,494 +1,497
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: 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 %%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: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 54
55 55 notice_account_updated: Профилът е обновен успешно.
56 56 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 57 notice_account_password_updated: Паролата е успешно променена.
58 58 notice_account_wrong_password: Грешна парола
59 59 notice_account_register_done: Акаунтът е създаден успешно.
60 60 notice_account_unknown_email: Непознат потребител.
61 61 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
62 62 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 63 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
64 64 notice_successful_create: Успешно създаване.
65 65 notice_successful_update: Успешно обновяване.
66 66 notice_successful_delete: Успешно изтриване.
67 67 notice_successful_connection: Успешно свързване.
68 68 notice_file_not_found: Несъществуваща или преместена страница.
69 69 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 70 notice_scm_error: Несъществуващ обект в склада.
71 71 notice_not_authorized: Нямате право на достъп до тази страница.
72 72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Вашата парола
76 77 mail_subject_register: Активация на акаунт
77 78
78 79 gui_validation_error: 1 грешка
79 80 gui_validation_error_plural: %d грешки
80 81
81 82 field_name: Име
82 83 field_description: Описание
83 84 field_summary: Тема
84 85 field_is_required: Задължително
85 86 field_firstname: Име
86 87 field_lastname: Фамилия
87 88 field_mail: Email
88 89 field_filename: Файл
89 90 field_filesize: Големина
90 91 field_downloads: Downloads
91 92 field_author: Автор
92 93 field_created_on: Създадена
93 94 field_updated_on: Обновена
94 95 field_field_format: Формат
95 96 field_is_for_all: За всички проекти
96 97 field_possible_values: Възможни стойности
97 98 field_regexp: Регулярен израз
98 99 field_min_length: Мин. дължина
99 100 field_max_length: Макс. дължина
100 101 field_value: Стойност
101 102 field_category: Категория
102 103 field_title: Заглавие
103 104 field_project: Проект
104 105 field_issue: Задача
105 106 field_status: Статус
106 107 field_notes: Бележка
107 108 field_is_closed: Затворена задача
108 109 field_is_default: Статус по подразбиране
109 110 field_html_color: Цвят
110 111 field_tracker: Тракер
111 112 field_subject: Тема
112 113 field_due_date: Крайна дата
113 114 field_assigned_to: Възложена на
114 115 field_priority: Приоритет
115 116 field_fixed_version: Версия
116 117 field_user: Потребител
117 118 field_role: Роля
118 119 field_homepage: Начална страница
119 120 field_is_public: Публичен
120 121 field_parent: Подпроект на
121 122 field_is_in_chlog: Да се вижда ли в Изменения
122 123 field_is_in_roadmap: Да се вижда ли в Пътна карта
123 124 field_login: Потребител
124 125 field_mail_notification: Известия по пощата
125 126 field_admin: Администратор
126 127 field_last_login_on: Последно свързване
127 128 field_language: Език
128 129 field_effective_date: Дата
129 130 field_password: Парола
130 131 field_new_password: Нова парола
131 132 field_password_confirmation: Потвърждение
132 133 field_version: Версия
133 134 field_type: Type
134 135 field_host: Хост
135 136 field_port: Порт
136 137 field_account: Акаунт
137 138 field_base_dn: Base DN
138 139 field_attr_login: Login attribute
139 140 field_attr_firstname: Firstname attribute
140 141 field_attr_lastname: Lastname attribute
141 142 field_attr_mail: Email attribute
142 143 field_onthefly: Динамично създаване на потребител
143 144 field_start_date: Начална дата
144 145 field_done_ratio: %% Прогрес
145 146 field_auth_source: Начин на оторизация
146 147 field_hide_mail: Скрий e-mail адреса ми
147 148 field_comments: Коментар
148 149 field_url: Адрес
149 150 field_start_page: Начална страница
150 151 field_subproject: Подпроект
151 152 field_hours: Часове
152 153 field_activity: Дейност
153 154 field_spent_on: Дата
154 155 field_identifier: Идентификатор
155 156 field_is_filter: Използва се за филтър
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Заглавие
161 162 setting_app_subtitle: Описание
162 163 setting_welcome_text: Допълнителен текст
163 164 setting_default_language: Език по подразбиране
164 165 setting_login_required: Изискване за вход
165 166 setting_self_registration: Регистрация от потребители
166 167 setting_attachment_max_size: Максимално голям приложен файл
167 168 setting_issues_export_limit: Лимит за експорт на задачи
168 169 setting_mail_from: E-mail адрес за емисии
169 170 setting_host_name: Хост
170 171 setting_text_formatting: Форматиране на текста
171 172 setting_wiki_compression: Wiki компресиране на историята
172 173 setting_feeds_limit: Лимит на Feeds
173 174 setting_autofetch_changesets: Автоматично обработване на commits в склада
174 175 setting_sys_api_enabled: Разрешаване на WS за управление на склада
175 176 setting_commit_ref_keywords: Отбелязващи ключови думи
176 177 setting_commit_fix_keywords: Приключващи ключови думи
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Потребител
182 183 label_user_plural: Потребители
183 184 label_user_new: Нов потребител
184 185 label_project: Проект
185 186 label_project_new: Нов проект
186 187 label_project_plural: Проекти
187 188 label_project_all: All Projects
188 189 label_project_latest: Последни проекти
189 190 label_issue: Задача
190 191 label_issue_new: Нова задача
191 192 label_issue_plural: Задачи
192 193 label_issue_view_all: Всички задачи
193 194 label_document: Документ
194 195 label_document_new: Нов документ
195 196 label_document_plural: Документи
196 197 label_role: Роля
197 198 label_role_plural: Роли
198 199 label_role_new: Нова роля
199 200 label_role_and_permissions: Роли и права
200 201 label_member: Член
201 202 label_member_new: Нов член
202 203 label_member_plural: Членове
203 204 label_tracker: Тракер
204 205 label_tracker_plural: Тракери
205 206 label_tracker_new: Нов тракер
206 207 label_workflow: Workflow
207 208 label_issue_status: Статус на задача
208 209 label_issue_status_plural: Статуси на задачи
209 210 label_issue_status_new: Нов статус
210 211 label_issue_category: Категория задача
211 212 label_issue_category_plural: Категории задачи
212 213 label_issue_category_new: Нова категория
213 214 label_custom_field: Измислено поле
214 215 label_custom_field_plural: Измислени полета
215 216 label_custom_field_new: Ново измислено поле
216 217 label_enumerations: Списъци
217 218 label_enumeration_new: Нова стойност
218 219 label_information: Информация
219 220 label_information_plural: Информация
220 221 label_please_login: Вход
221 222 label_register: Регистрация
222 223 label_password_lost: Забравена парола
223 224 label_home: Начало
224 225 label_my_page: Моята страница
225 226 label_my_account: Моят профил
226 227 label_my_projects: Моите проекти
227 228 label_administration: Администрация
228 229 label_login: Вход
229 230 label_logout: Изход
230 231 label_help: Помощ
231 232 label_reported_issues: Публикувани задачи
232 233 label_assigned_to_me_issues: Назначени на мен
233 234 label_last_login: Последно свързване
234 235 label_last_updates: Последно обновена
235 236 label_last_updates_plural: %d последно обновени
236 237 label_registered_on: Регистрация
237 238 label_activity: Дейност
238 239 label_new: Нов
239 240 label_logged_as: Логнат като
240 241 label_environment: Среда
241 242 label_authentication: Оторизация
242 243 label_auth_source: Начин на оторозация
243 244 label_auth_source_new: Нов начин на оторизация
244 245 label_auth_source_plural: Начини на оторизация
245 246 label_subproject_plural: Подпроекти
246 247 label_min_max_length: Мин. - Макс. дължина
247 248 label_list: Списък
248 249 label_date: Дата
249 250 label_integer: Число
250 251 label_boolean: Чекбокс
251 252 label_string: Текст
252 253 label_text: Дълъг текст
253 254 label_attribute: Атрибут
254 255 label_attribute_plural: Атрибути
255 256 label_download: %d Download
256 257 label_download_plural: %d Downloads
257 258 label_no_data: Няма изходни данни
258 259 label_change_status: Промяна на статуса
259 260 label_history: История
260 261 label_attachment: Файл
261 262 label_attachment_new: Нов файл
262 263 label_attachment_delete: Изтриване
263 264 label_attachment_plural: Файлове
264 265 label_report: Доклад
265 266 label_report_plural: Доклади
266 267 label_news: Новини
267 268 label_news_new: Добави
268 269 label_news_plural: Новини
269 270 label_news_latest: Последни новини
270 271 label_news_view_all: Виж всички
271 272 label_change_log: Изменения
272 273 label_settings: Настройки
273 274 label_overview: Общ изглед
274 275 label_version: Версия
275 276 label_version_new: Нова версия
276 277 label_version_plural: Версии
277 278 label_confirmation: Одобрение
278 279 label_export_to: Експорт към
279 280 label_read: Read...
280 281 label_public_projects: Публични проекти
281 282 label_open_issues: отворена
282 283 label_open_issues_plural: отворени
283 284 label_closed_issues: затворена
284 285 label_closed_issues_plural: затворени
285 286 label_total: Общо
286 287 label_permissions: Права
287 288 label_current_status: Текущ статус
288 289 label_new_statuses_allowed: Позволени статуси
289 290 label_all: всички
290 291 label_none: никакви
291 292 label_next: Следващ
292 293 label_previous: Предишен
293 294 label_used_by: Използва се от
294 295 label_details: Детайли
295 296 label_add_note: Добавяне на бележка
296 297 label_per_page: На страница
297 298 label_calendar: Календар
298 299 label_months_from: месеци от
299 300 label_gantt: Gantt
300 301 label_internal: Вътрешен
301 302 label_last_changes: последни %d промени
302 303 label_change_view_all: Виж всички промени
303 304 label_personalize_page: Персонализиране
304 305 label_comment: Коментар
305 306 label_comment_plural: Коментари
306 307 label_comment_add: Добавяне на коментар
307 308 label_comment_added: Добавен коментар
308 309 label_comment_delete: Изтриване на коментари
309 310 label_query: Измислена заявка
310 311 label_query_plural: Измислени заявки
311 312 label_query_new: Нова заявка
312 313 label_filter_add: Добави филтър
313 314 label_filter_plural: Филтри
314 315 label_equals: е
315 316 label_not_equals: не е
316 317 label_in_less_than: по-малко от
317 318 label_in_more_than: повече от
318 319 label_in: в следващите
319 320 label_today: днес
320 321 label_less_than_ago: преди по-малко от
321 322 label_more_than_ago: преди повече от
322 323 label_ago: преди дни
323 324 label_contains: съдържа
324 325 label_not_contains: не съдържа
325 326 label_day_plural: дни
326 327 label_repository: Склад
327 328 label_browse: Разглеждане
328 329 label_modification: %d промяна
329 330 label_modification_plural: %d промени
330 331 label_revision: Ревизия
331 332 label_revision_plural: Ревизии
332 333 label_added: добавено
333 334 label_modified: променено
334 335 label_deleted: изтрито
335 336 label_latest_revision: Последна ревизия
336 337 label_latest_revision_plural: Последни ревизии
337 338 label_view_revisions: Виж ревизиите
338 339 label_max_size: Максимална големина
339 340 label_on: 'от'
340 341 label_sort_highest: Премести най-горе
341 342 label_sort_higher: Премести по-горе
342 343 label_sort_lower: Премести по-долу
343 344 label_sort_lowest: Премести най-долу
344 345 label_roadmap: Пътна карта
345 346 label_roadmap_due_in: Излиза след
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Няма задачи за тази версия
348 349 label_search: Търсене
349 350 label_result: %d резултат
350 351 label_result_plural: %d резултати
351 352 label_all_words: Всички думи
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki редакция
354 355 label_wiki_edit_plural: Wiki редакции
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Индекс
358 359 label_current_version: Текуща версия
359 360 label_preview: Преглед
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Подробни промени
362 363 label_issue_tracking: Тракинг
363 364 label_spent_time: Отделено време
364 365 label_f_hour: %.2f час
365 366 label_f_hour_plural: %.2f часа
366 367 label_time_tracking: Отделяне на време
367 368 label_change_plural: Промени
368 369 label_statistics: Статистики
369 370 label_commits_per_month: Commits за месец
370 371 label_commits_per_author: Commits за автор
371 372 label_view_diff: Виж разликите
372 373 label_diff_inline: хоризонтално
373 374 label_diff_side_by_side: вертикално
374 375 label_options: Опции
375 376 label_copy_workflow_from: Копирай workflow от
376 377 label_permissions_report: Справка за права
377 378 label_watched_issues: Наблюдавани задачи
378 379 label_related_issues: Свързани задачи
379 380 label_applied_status: Промени статуса на
380 381 label_loading: Зареждане...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Вход
416 418 button_submit: Изпращане
417 419 button_save: Запис
418 420 button_check_all: Маркирай всички
419 421 button_uncheck_all: Изчисти всички
420 422 button_delete: Изтриване
421 423 button_create: Създаване
422 424 button_test: Тест
423 425 button_edit: Редакция
424 426 button_add: Добавяне
425 427 button_change: Промяна
426 428 button_apply: Приложи
427 429 button_clear: Изчисти
428 430 button_lock: Заключване
429 431 button_unlock: Отключване
430 432 button_download: Download
431 433 button_list: Списък
432 434 button_view: Преглед
433 435 button_move: Преместване
434 436 button_back: Назад
435 437 button_cancel: Отказ
436 438 button_activate: Активация
437 439 button_sort: Сортиране
438 440 button_log_time: Отделяне на време
439 441 button_rollback: Върни се към тази ревизия
440 442 button_watch: Наблюдавай
441 443 button_unwatch: Спри наблюдението
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: активен
447 450 status_registered: регистриран
448 451 status_locked: заключен
449 452
450 453 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
451 454 text_regexp_info: пр. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 - без ограничения
453 456 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
454 457 text_workflow_edit: Изберете роля и тракер за да редактирате workflow
455 458 text_are_you_sure: Сигурни ли сте?
456 459 text_journal_changed: промяна от %s на %s
457 460 text_journal_set_to: установено на %s
458 461 text_journal_deleted: изтрито
459 462 text_tip_task_begin_day: задача започваща този ден
460 463 text_tip_task_end_day: задача завършваща този ден
461 464 text_tip_task_begin_end_day: задача започваща и завършваща този ден
462 465 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
463 466 text_caracters_maximum: До %d символа.
464 467 text_length_between: От %d до %d символа.
465 468 text_tracker_no_workflow: Няма дефиниран workflow за този тракер
466 469 text_unallowed_characters: Непозволени символи
467 470 text_comma_separated: Позволено е изброяване (с разделител запетая).
468 471 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
469 472
470 473 default_role_manager: Мениджър
471 474 default_role_developper: Разработчик
472 475 default_role_reporter: Публикуващ
473 476 default_tracker_bug: Бъг
474 477 default_tracker_feature: Функционалност
475 478 default_tracker_support: Поддръжка
476 479 default_issue_status_new: Нова
477 480 default_issue_status_assigned: Възложена
478 481 default_issue_status_resolved: Приключена
479 482 default_issue_status_feedback: Обратна връзка
480 483 default_issue_status_closed: Затворена
481 484 default_issue_status_rejected: Отхвърлена
482 485 default_doc_category_user: Документация за потребителя
483 486 default_doc_category_tech: Техническа документация
484 487 default_priority_low: Нисък
485 488 default_priority_normal: Нормален
486 489 default_priority_high: Висок
487 490 default_priority_urgent: Спешен
488 491 default_priority_immediate: Веднага
489 492 default_activity_design: Дизайн
490 493 default_activity_development: Разработка
491 494
492 495 enumeration_issue_priorities: Приоритети на задачи
493 496 enumeration_doc_categories: Категории документи
494 497 enumeration_activities: Дейности (time tracking)
@@ -1,494 +1,497
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 Tage
10 10 actionview_datehelper_time_in_words_hour_about: ungefähr eine 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 eine Stunde
13 13 actionview_datehelper_time_in_words_minute: 1 Minute
14 14 actionview_datehelper_time_in_words_minute_half: halbe Minute
15 15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine 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 eine 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 Relation 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
55 55 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 56 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 57 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 58 notice_account_wrong_password: Falsches Kennwort
59 59 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 60 notice_account_unknown_email: Unbekannter Benutzer.
61 61 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 62 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 63 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
64 64 notice_successful_create: Erfolgreich angelegt
65 65 notice_successful_update: Erfolgreiche Aktualisierung.
66 66 notice_successful_delete: Erfolgreiche Löschung.
67 67 notice_successful_connection: Verbindung erfolgreich.
68 68 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 69 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 70 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
71 71 notice_not_authorized: Sie sind nicht berechtigt auf diese Seite zuzugreifen.
72 72 notice_email_sent: An email was sent to %s
73 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Ihr redMine Kennwort
76 77 mail_subject_register: redMine Kontoaktivierung
77 78
78 79 gui_validation_error: 1 Fehler
79 80 gui_validation_error_plural: %d Fehler
80 81
81 82 field_name: Name
82 83 field_description: Beschreibung
83 84 field_summary: Zusammenfassung
84 85 field_is_required: Erforderlich
85 86 field_firstname: Vorname
86 87 field_lastname: Nachname
87 88 field_mail: Email
88 89 field_filename: Datei
89 90 field_filesize: Größe
90 91 field_downloads: Downloads
91 92 field_author: Autor
92 93 field_created_on: Angelegt
93 94 field_updated_on: Aktualisiert
94 95 field_field_format: Format
95 96 field_is_for_all: Für alle Projekte
96 97 field_possible_values: Mögliche Werte
97 98 field_regexp: Regulärer Ausdruck
98 99 field_min_length: Minimale Länge
99 100 field_max_length: Maximale Länge
100 101 field_value: Wert
101 102 field_category: Kategorie
102 103 field_title: Titel
103 104 field_project: Projekt
104 105 field_issue: Ticket
105 106 field_status: Status
106 107 field_notes: Kommentare
107 108 field_is_closed: Problem erledigt
108 109 field_is_default: Default
109 110 field_html_color: Farbe
110 111 field_tracker: Tracker
111 112 field_subject: Thema
112 113 field_due_date: Abgabedatum
113 114 field_assigned_to: Zugewiesen an
114 115 field_priority: Priorität
115 116 field_fixed_version: Erledigt in Version
116 117 field_user: Benutzer
117 118 field_role: Rolle
118 119 field_homepage: Startseite
119 120 field_is_public: Öffentlich
120 121 field_parent: Unterprojekt von
121 122 field_is_in_chlog: Ansicht im Change-Log
122 123 field_is_in_roadmap: Ansicht in der Roadmap
123 124 field_login: Mitgliedsname
124 125 field_mail_notification: Mailbenachrichtigung
125 126 field_admin: Administrator
126 127 field_last_login_on: Letzte Anmeldung
127 128 field_language: Sprache
128 129 field_effective_date: Datum
129 130 field_password: Kennwort
130 131 field_new_password: Neues Kennwort
131 132 field_password_confirmation: Bestätigung
132 133 field_version: Version
133 134 field_type: Typ
134 135 field_host: Host
135 136 field_port: Port
136 137 field_account: Konto
137 138 field_base_dn: Base DN
138 139 field_attr_login: Mitgliedsname-Attribut
139 140 field_attr_firstname: Vorname-Attribut
140 141 field_attr_lastname: Name-Attribut
141 142 field_attr_mail: Email-Attribut
142 143 field_onthefly: On-the-fly-Benutzererstellung
143 144 field_start_date: Beginn
144 145 field_done_ratio: %% erledigt
145 146 field_auth_source: Authentifizierungs-Modus
146 147 field_hide_mail: Email-Adresse nicht anzeigen
147 148 field_comments: Kommentar
148 149 field_url: URL
149 150 field_start_page: Hauptseite
150 151 field_subproject: Subprojekt von
151 152 field_hours: Stunden
152 153 field_activity: Aktivität
153 154 field_spent_on: Datum
154 155 field_identifier: Identifier
155 156 field_is_filter: Used as a filter
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Applikation Titel
161 162 setting_app_subtitle: Applikation Untertitel
162 163 setting_welcome_text: Willkommenstext
163 164 setting_default_language: Default Sprache
164 165 setting_login_required: Authent. erfordert
165 166 setting_self_registration: Anmeldung ermöglicht
166 167 setting_attachment_max_size: max. Dateigröße
167 168 setting_issues_export_limit: Limit Export Tickets
168 169 setting_mail_from: Mail Absender
169 170 setting_host_name: Host Name
170 171 setting_text_formatting: Textformatierung
171 172 setting_wiki_compression: Wiki-Historie komprimieren
172 173 setting_feeds_limit: Limit Feed Inhalt
173 174 setting_autofetch_changesets: Autofetch commits
174 175 setting_sys_api_enabled: Enable WS for repository management
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Benutzer
182 183 label_user_plural: Benutzer
183 184 label_user_new: Neuer Benutzer
184 185 label_project: Projekt
185 186 label_project_new: Neues Projekt
186 187 label_project_plural: Projekte
187 188 label_project_all: All Projects
188 189 label_project_latest: Neueste Projekte
189 190 label_issue: Ticket
190 191 label_issue_new: Neues Ticket
191 192 label_issue_plural: Tickets
192 193 label_issue_view_all: Alle Tickets ansehen
193 194 label_document: Dokument
194 195 label_document_new: Neues Dokument
195 196 label_document_plural: Dokumente
196 197 label_role: Rolle
197 198 label_role_plural: Rollen
198 199 label_role_new: Neue Rolle
199 200 label_role_and_permissions: Rollen und Rechte
200 201 label_member: Mitglied
201 202 label_member_new: Neues Mitglied
202 203 label_member_plural: Mitglieder
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Tracker
205 206 label_tracker_new: Neuer Tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Ticket-Status
208 209 label_issue_status_plural: Ticket-Status
209 210 label_issue_status_new: Neuer Status
210 211 label_issue_category: Ticket-Kategorie
211 212 label_issue_category_plural: Ticket-Kategorien
212 213 label_issue_category_new: Neue Kategorie
213 214 label_custom_field: Benutzerdefiniertes Feld
214 215 label_custom_field_plural: Benutzerdefinierte Felder
215 216 label_custom_field_new: Neues Feld
216 217 label_enumerations: Aufzählungen
217 218 label_enumeration_new: Neuer Wert
218 219 label_information: Information
219 220 label_information_plural: Informationen
220 221 label_please_login: Anmelden
221 222 label_register: Anmelden
222 223 label_password_lost: Kennwort vergessen
223 224 label_home: Hauptseite
224 225 label_my_page: Meine Seite
225 226 label_my_account: Mein Konto
226 227 label_my_projects: Meine Projekte
227 228 label_administration: Administration
228 229 label_login: Einloggen
229 230 label_logout: Abmelden
230 231 label_help: Hilfe
231 232 label_reported_issues: Gemeldete Tickets
232 233 label_assigned_to_me_issues: Mir zugewiesen
233 234 label_last_login: Letzte Anmeldung
234 235 label_last_updates: zuletzt aktualisiert
235 236 label_last_updates_plural: %d zuletzt aktualisierten
236 237 label_registered_on: Angemeldet am
237 238 label_activity: Aktivität
238 239 label_new: Neu
239 240 label_logged_as: Angemeldet als
240 241 label_environment: Environment
241 242 label_authentication: Authentifizierung
242 243 label_auth_source: Authentifizierungs-Modus
243 244 label_auth_source_new: Neuer Authentifizierungs-Modus
244 245 label_auth_source_plural: Authentifizierungs-Arten
245 246 label_subproject_plural: Sub Projekte
246 247 label_min_max_length: Min - Max Länge
247 248 label_list: Liste
248 249 label_date: Datum
249 250 label_integer: Zahl
250 251 label_boolean: Boolean
251 252 label_string: Text
252 253 label_text: Langer Text
253 254 label_attribute: Attribut
254 255 label_attribute_plural: Attribute
255 256 label_download: %d Download
256 257 label_download_plural: %d Downloads
257 258 label_no_data: Nichts anzuzeigen
258 259 label_change_status: Statuswechsel
259 260 label_history: Historie
260 261 label_attachment: Datei
261 262 label_attachment_new: Neue Datei
262 263 label_attachment_delete: Anhang löschen
263 264 label_attachment_plural: Dateien
264 265 label_report: Bericht
265 266 label_report_plural: Berichte
266 267 label_news: News
267 268 label_news_new: News hinzufügen
268 269 label_news_plural: News
269 270 label_news_latest: Letzte News
270 271 label_news_view_all: Alle News anzeigen
271 272 label_change_log: Change-Log
272 273 label_settings: Konfiguration
273 274 label_overview: Übersicht
274 275 label_version: Version
275 276 label_version_new: Neue Version
276 277 label_version_plural: Versionen
277 278 label_confirmation: Bestätigung
278 279 label_export_to: Export zu
279 280 label_read: Lesen...
280 281 label_public_projects: Öffentliche Projekte
281 282 label_open_issues: offen
282 283 label_open_issues_plural: offen
283 284 label_closed_issues: geschlossen
284 285 label_closed_issues_plural: geschlossen
285 286 label_total: Gesamtzahl
286 287 label_permissions: Berechtigungen
287 288 label_current_status: Gegenwärtiger Status
288 289 label_new_statuses_allowed: Neue Berechtigungen
289 290 label_all: alle
290 291 label_none: kein
291 292 label_next: Weiter
292 293 label_previous: Zurück
293 294 label_used_by: Benutzt von
294 295 label_details: Details
295 296 label_add_note: Kommentar hinzufügen
296 297 label_per_page: Pro Seite
297 298 label_calendar: Kalender
298 299 label_months_from: Monate ab
299 300 label_gantt: Gantt
300 301 label_internal: Intern
301 302 label_last_changes: %d letzte Änderungen
302 303 label_change_view_all: Alle Änderungen ansehen
303 304 label_personalize_page: Diese Seite anpassen
304 305 label_comment: Kommentar
305 306 label_comment_plural: Kommentare
306 307 label_comment_add: Kommentar hinzufügen
307 308 label_comment_added: Kommentar hinzugefügt
308 309 label_comment_delete: Kommentar löschen
309 310 label_query: Benutzerdefinierte Abfrage
310 311 label_query_plural: Benutzerdefinierte Berichte
311 312 label_query_new: Neuer Bericht
312 313 label_filter_add: Filter hinzufügen
313 314 label_filter_plural: Filter
314 315 label_equals: ist
315 316 label_not_equals: ist nicht
316 317 label_in_less_than: in weniger als
317 318 label_in_more_than: in mehr als
318 319 label_in: an
319 320 label_today: heute
320 321 label_less_than_ago: vor weniger als
321 322 label_more_than_ago: vor mehr als
322 323 label_ago: vor
323 324 label_contains: enthält
324 325 label_not_contains: enthält nicht
325 326 label_day_plural: Tage
326 327 label_repository: Projektarchiv
327 328 label_browse: Codebrowser
328 329 label_modification: %d Änderung
329 330 label_modification_plural: %d Änderungen
330 331 label_revision: Revision
331 332 label_revision_plural: Revisionen
332 333 label_added: hinzugefügt
333 334 label_modified: geändert
334 335 label_deleted: gelöscht
335 336 label_latest_revision: Aktuellste Revision
336 337 label_latest_revision_plural: Aktuellste Revisionen
337 338 label_view_revisions: Revisionen anzeigen
338 339 label_max_size: Maximale Größe
339 340 label_on: von
340 341 label_sort_highest: Anfang
341 342 label_sort_higher: eins höher
342 343 label_sort_lower: eins tiefer
343 344 label_sort_lowest: Ende
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Fällig in
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Keine Tickets für diese Version
348 349 label_search: Suche
349 350 label_result: %d Resultat
350 351 label_result_plural: %d Resultate
351 352 label_all_words: Alle Wörter
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki Bearbeitung
354 355 label_wiki_edit_plural: Wiki Bearbeitungen
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Index
358 359 label_current_version: Gegenwärtige Version
359 360 label_preview: Vorschau
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Details aller Änderungen
362 363 label_issue_tracking: Tickets
363 364 label_spent_time: Aufgewendete Zeit
364 365 label_f_hour: %.2f Stunde
365 366 label_f_hour_plural: %.2f Stunden
366 367 label_time_tracking: Zeiterfassung
367 368 label_change_plural: Änderungen
368 369 label_statistics: Statistiken
369 370 label_commits_per_month: Übertragungen pro Monat
370 371 label_commits_per_author: Übertragungen pro Autor
371 372 label_view_diff: View differences
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: side by side
374 375 label_options: Options
375 376 label_copy_workflow_from: Copy workflow from
376 377 label_permissions_report: Permissions report
377 378 label_watched_issues: Watched issues
378 379 label_related_issues: Related issues
379 380 label_applied_status: Applied status
380 381 label_loading: Loading...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: Neues Forum
399 400 label_board_plural: Foren
400 401 label_topic_plural: Themen
401 402 label_message_plural: Nachrichten
402 403 label_message_last: Letzte Nachricht
403 404 label_message_new: Neue Nachricht
404 405 label_reply_plural: Antworten
405 406 label_send_information: Sende Kontoinformationen zum Benutzer
406 407 label_year: Jahr
407 408 label_month: Monat
408 409 label_week: Woche
409 410 label_date_from: Von
410 411 label_date_to: Bis
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Einloggen
416 418 button_submit: OK
417 419 button_save: Speichern
418 420 button_check_all: Alles auswählen
419 421 button_uncheck_all: Alles abwählen
420 422 button_delete: Löschen
421 423 button_create: Anlegen
422 424 button_test: Testen
423 425 button_edit: Bearbeiten
424 426 button_add: Hinzufügen
425 427 button_change: Wechseln
426 428 button_apply: Anwenden
427 429 button_clear: Zurücksetzen
428 430 button_lock: Sperren
429 431 button_unlock: Entsperren
430 432 button_download: Download
431 433 button_list: Liste
432 434 button_view: Siehe
433 435 button_move: Verschieben
434 436 button_back: Zurück
435 437 button_cancel: Abbrechen
436 438 button_activate: Aktivieren
437 439 button_sort: Sortieren
438 440 button_log_time: Log time
439 441 button_rollback: Rollback to this version
440 442 button_watch: Watch
441 443 button_unwatch: Unwatch
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: aktiv
447 450 status_registered: angemeldet
448 451 status_locked: gesperrt
449 452
450 453 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
451 454 text_regexp_info: eg. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 heißt keine Beschränkung
453 456 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
454 457 text_workflow_edit: Workflow zum Bearbeiten auswählen
455 458 text_are_you_sure: Sind Sie sicher?
456 459 text_journal_changed: geändert von %s zu %s
457 460 text_journal_set_to: gestellt zu %s
458 461 text_journal_deleted: gelöscht
459 462 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
460 463 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
461 464 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
462 465 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
463 466 text_caracters_maximum: %d characters maximum.
464 467 text_length_between: Length between %d and %d characters.
465 468 text_tracker_no_workflow: No workflow defined for this tracker
466 469 text_unallowed_characters: Unallowed characters
467 470 text_comma_separated: Multiple values allowed (comma separated).
468 471 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
469 472
470 473 default_role_manager: Manager
471 474 default_role_developper: Developer
472 475 default_role_reporter: Reporter
473 476 default_tracker_bug: Fehler
474 477 default_tracker_feature: Feature
475 478 default_tracker_support: Support
476 479 default_issue_status_new: Neu
477 480 default_issue_status_assigned: Zugewiesen
478 481 default_issue_status_resolved: Gelöst
479 482 default_issue_status_feedback: Feedback
480 483 default_issue_status_closed: Erledigt
481 484 default_issue_status_rejected: Abgewiesen
482 485 default_doc_category_user: Benutzerdokumentation
483 486 default_doc_category_tech: Technische Dokumentation
484 487 default_priority_low: Niedrig
485 488 default_priority_normal: Normal
486 489 default_priority_high: Hoch
487 490 default_priority_urgent: Dringend
488 491 default_priority_immediate: Sofort
489 492 default_activity_design: Design
490 493 default_activity_development: Development
491 494
492 495 enumeration_issue_priorities: Ticket-Prioritäten
493 496 enumeration_doc_categories: Dokumentenkategorien
494 497 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,494 +1,497
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
55 55 notice_account_updated: Account was successfully updated.
56 56 notice_account_invalid_creditentials: Invalid user or password
57 57 notice_account_password_updated: Password was successfully updated.
58 58 notice_account_wrong_password: Wrong password
59 59 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 60 notice_account_unknown_email: Unknown user.
61 61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 63 notice_account_activated: Your account has been activated. You can now log in.
64 64 notice_successful_create: Successful creation.
65 65 notice_successful_update: Successful update.
66 66 notice_successful_delete: Successful deletion.
67 67 notice_successful_connection: Successful connection.
68 68 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 69 notice_locking_conflict: Data have been updated by another user.
70 70 notice_scm_error: Entry and/or revision doesn't exist in the repository.
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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Your redMine password
76 77 mail_subject_register: redMine account activation
77 78
78 79 gui_validation_error: 1 error
79 80 gui_validation_error_plural: %d errors
80 81
81 82 field_name: Name
82 83 field_description: Description
83 84 field_summary: Summary
84 85 field_is_required: Required
85 86 field_firstname: Firstname
86 87 field_lastname: Lastname
87 88 field_mail: Email
88 89 field_filename: File
89 90 field_filesize: Size
90 91 field_downloads: Downloads
91 92 field_author: Author
92 93 field_created_on: Created
93 94 field_updated_on: Updated
94 95 field_field_format: Format
95 96 field_is_for_all: For all projects
96 97 field_possible_values: Possible values
97 98 field_regexp: Regular expression
98 99 field_min_length: Minimum length
99 100 field_max_length: Maximum length
100 101 field_value: Value
101 102 field_category: Category
102 103 field_title: Title
103 104 field_project: Project
104 105 field_issue: Issue
105 106 field_status: Status
106 107 field_notes: Notes
107 108 field_is_closed: Issue closed
108 109 field_is_default: Default status
109 110 field_html_color: Color
110 111 field_tracker: Tracker
111 112 field_subject: Subject
112 113 field_due_date: Due date
113 114 field_assigned_to: Assigned to
114 115 field_priority: Priority
115 116 field_fixed_version: Fixed version
116 117 field_user: User
117 118 field_role: Role
118 119 field_homepage: Homepage
119 120 field_is_public: Public
120 121 field_parent: Subproject of
121 122 field_is_in_chlog: Issues displayed in changelog
122 123 field_is_in_roadmap: Issues displayed in roadmap
123 124 field_login: Login
124 125 field_mail_notification: Mail notifications
125 126 field_admin: Administrator
126 127 field_last_login_on: Last connection
127 128 field_language: Language
128 129 field_effective_date: Date
129 130 field_password: Password
130 131 field_new_password: New password
131 132 field_password_confirmation: Confirmation
132 133 field_version: Version
133 134 field_type: Type
134 135 field_host: Host
135 136 field_port: Port
136 137 field_account: Account
137 138 field_base_dn: Base DN
138 139 field_attr_login: Login attribute
139 140 field_attr_firstname: Firstname attribute
140 141 field_attr_lastname: Lastname attribute
141 142 field_attr_mail: Email attribute
142 143 field_onthefly: On-the-fly user creation
143 144 field_start_date: Start
144 145 field_done_ratio: %% Done
145 146 field_auth_source: Authentication mode
146 147 field_hide_mail: Hide my email address
147 148 field_comments: Comment
148 149 field_url: URL
149 150 field_start_page: Start page
150 151 field_subproject: Subproject
151 152 field_hours: Hours
152 153 field_activity: Activity
153 154 field_spent_on: Date
154 155 field_identifier: Identifier
155 156 field_is_filter: Used as a filter
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Application title
161 162 setting_app_subtitle: Application subtitle
162 163 setting_welcome_text: Welcome text
163 164 setting_default_language: Default language
164 165 setting_login_required: Authent. required
165 166 setting_self_registration: Self-registration enabled
166 167 setting_attachment_max_size: Attachment max. size
167 168 setting_issues_export_limit: Issues export limit
168 169 setting_mail_from: Emission mail address
169 170 setting_host_name: Host name
170 171 setting_text_formatting: Text formatting
171 172 setting_wiki_compression: Wiki history compression
172 173 setting_feeds_limit: Feed content limit
173 174 setting_autofetch_changesets: Autofetch commits
174 175 setting_sys_api_enabled: Enable WS for repository management
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: User
182 183 label_user_plural: Users
183 184 label_user_new: New user
184 185 label_project: Project
185 186 label_project_new: New project
186 187 label_project_plural: Projects
187 188 label_project_all: All Projects
188 189 label_project_latest: Latest projects
189 190 label_issue: Issue
190 191 label_issue_new: New issue
191 192 label_issue_plural: Issues
192 193 label_issue_view_all: View all issues
193 194 label_document: Document
194 195 label_document_new: New document
195 196 label_document_plural: Documents
196 197 label_role: Role
197 198 label_role_plural: Roles
198 199 label_role_new: New role
199 200 label_role_and_permissions: Roles and permissions
200 201 label_member: Member
201 202 label_member_new: New member
202 203 label_member_plural: Members
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Trackers
205 206 label_tracker_new: New tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Issue status
208 209 label_issue_status_plural: Issue statuses
209 210 label_issue_status_new: New status
210 211 label_issue_category: Issue category
211 212 label_issue_category_plural: Issue categories
212 213 label_issue_category_new: New category
213 214 label_custom_field: Custom field
214 215 label_custom_field_plural: Custom fields
215 216 label_custom_field_new: New custom field
216 217 label_enumerations: Enumerations
217 218 label_enumeration_new: New value
218 219 label_information: Information
219 220 label_information_plural: Information
220 221 label_please_login: Please login
221 222 label_register: Register
222 223 label_password_lost: Lost password
223 224 label_home: Home
224 225 label_my_page: My page
225 226 label_my_account: My account
226 227 label_my_projects: My projects
227 228 label_administration: Administration
228 229 label_login: Login
229 230 label_logout: Logout
230 231 label_help: Help
231 232 label_reported_issues: Reported issues
232 233 label_assigned_to_me_issues: Issues assigned to me
233 234 label_last_login: Last connection
234 235 label_last_updates: Last updated
235 236 label_last_updates_plural: %d last updated
236 237 label_registered_on: Registered on
237 238 label_activity: Activity
238 239 label_new: New
239 240 label_logged_as: Logged as
240 241 label_environment: Environment
241 242 label_authentication: Authentication
242 243 label_auth_source: Authentication mode
243 244 label_auth_source_new: New authentication mode
244 245 label_auth_source_plural: Authentication modes
245 246 label_subproject_plural: Subprojects
246 247 label_min_max_length: Min - Max length
247 248 label_list: List
248 249 label_date: Date
249 250 label_integer: Integer
250 251 label_boolean: Boolean
251 252 label_string: Text
252 253 label_text: Long text
253 254 label_attribute: Attribute
254 255 label_attribute_plural: Attributes
255 256 label_download: %d Download
256 257 label_download_plural: %d Downloads
257 258 label_no_data: No data to display
258 259 label_change_status: Change status
259 260 label_history: History
260 261 label_attachment: File
261 262 label_attachment_new: New file
262 263 label_attachment_delete: Delete file
263 264 label_attachment_plural: Files
264 265 label_report: Report
265 266 label_report_plural: Reports
266 267 label_news: News
267 268 label_news_new: Add news
268 269 label_news_plural: News
269 270 label_news_latest: Latest news
270 271 label_news_view_all: View all news
271 272 label_change_log: Change log
272 273 label_settings: Settings
273 274 label_overview: Overview
274 275 label_version: Version
275 276 label_version_new: New version
276 277 label_version_plural: Versions
277 278 label_confirmation: Confirmation
278 279 label_export_to: Export to
279 280 label_read: Read...
280 281 label_public_projects: Public projects
281 282 label_open_issues: open
282 283 label_open_issues_plural: open
283 284 label_closed_issues: closed
284 285 label_closed_issues_plural: closed
285 286 label_total: Total
286 287 label_permissions: Permissions
287 288 label_current_status: Current status
288 289 label_new_statuses_allowed: New statuses allowed
289 290 label_all: all
290 291 label_none: none
291 292 label_next: Next
292 293 label_previous: Previous
293 294 label_used_by: Used by
294 295 label_details: Details
295 296 label_add_note: Add a note
296 297 label_per_page: Per page
297 298 label_calendar: Calendar
298 299 label_months_from: months from
299 300 label_gantt: Gantt
300 301 label_internal: Internal
301 302 label_last_changes: last %d changes
302 303 label_change_view_all: View all changes
303 304 label_personalize_page: Personalize this page
304 305 label_comment: Comment
305 306 label_comment_plural: Comments
306 307 label_comment_add: Add a comment
307 308 label_comment_added: Comment added
308 309 label_comment_delete: Delete comments
309 310 label_query: Custom query
310 311 label_query_plural: Custom queries
311 312 label_query_new: New query
312 313 label_filter_add: Add filter
313 314 label_filter_plural: Filters
314 315 label_equals: is
315 316 label_not_equals: is not
316 317 label_in_less_than: in less than
317 318 label_in_more_than: in more than
318 319 label_in: in
319 320 label_today: today
320 321 label_less_than_ago: less than days ago
321 322 label_more_than_ago: more than days ago
322 323 label_ago: days ago
323 324 label_contains: contains
324 325 label_not_contains: doesn't contain
325 326 label_day_plural: days
326 327 label_repository: Repository
327 328 label_browse: Browse
328 329 label_modification: %d change
329 330 label_modification_plural: %d changes
330 331 label_revision: Revision
331 332 label_revision_plural: Revisions
332 333 label_added: added
333 334 label_modified: modified
334 335 label_deleted: deleted
335 336 label_latest_revision: Latest revision
336 337 label_latest_revision_plural: Latest revisions
337 338 label_view_revisions: View revisions
338 339 label_max_size: Maximum size
339 340 label_on: 'on'
340 341 label_sort_highest: Move to top
341 342 label_sort_higher: Move up
342 343 label_sort_lower: Move down
343 344 label_sort_lowest: Move to bottom
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Due in
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: No issues for this version
348 349 label_search: Search
349 350 label_result: %d result
350 351 label_result_plural: %d results
351 352 label_all_words: All words
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki edit
354 355 label_wiki_edit_plural: Wiki edits
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Index
358 359 label_current_version: Current version
359 360 label_preview: Preview
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Details of all changes
362 363 label_issue_tracking: Issue tracking
363 364 label_spent_time: Spent time
364 365 label_f_hour: %.2f hour
365 366 label_f_hour_plural: %.2f hours
366 367 label_time_tracking: Time tracking
367 368 label_change_plural: Changes
368 369 label_statistics: Statistics
369 370 label_commits_per_month: Commits per month
370 371 label_commits_per_author: Commits per author
371 372 label_view_diff: View differences
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: side by side
374 375 label_options: Options
375 376 label_copy_workflow_from: Copy workflow from
376 377 label_permissions_report: Permissions report
377 378 label_watched_issues: Watched issues
378 379 label_related_issues: Related issues
379 380 label_applied_status: Applied status
380 381 label_loading: Loading...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Login
416 418 button_submit: Submit
417 419 button_save: Save
418 420 button_check_all: Check all
419 421 button_uncheck_all: Uncheck all
420 422 button_delete: Delete
421 423 button_create: Create
422 424 button_test: Test
423 425 button_edit: Edit
424 426 button_add: Add
425 427 button_change: Change
426 428 button_apply: Apply
427 429 button_clear: Clear
428 430 button_lock: Lock
429 431 button_unlock: Unlock
430 432 button_download: Download
431 433 button_list: List
432 434 button_view: View
433 435 button_move: Move
434 436 button_back: Back
435 437 button_cancel: Cancel
436 438 button_activate: Activate
437 439 button_sort: Sort
438 440 button_log_time: Log time
439 441 button_rollback: Rollback to this version
440 442 button_watch: Watch
441 443 button_unwatch: Unwatch
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: active
447 450 status_registered: registered
448 451 status_locked: locked
449 452
450 453 text_select_mail_notifications: Select actions for which mail notifications should be sent.
451 454 text_regexp_info: eg. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 means no restriction
453 456 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
454 457 text_workflow_edit: Select a role and a tracker to edit the workflow
455 458 text_are_you_sure: Are you sure ?
456 459 text_journal_changed: changed from %s to %s
457 460 text_journal_set_to: set to %s
458 461 text_journal_deleted: deleted
459 462 text_tip_task_begin_day: task beginning this day
460 463 text_tip_task_end_day: task ending this day
461 464 text_tip_task_begin_end_day: task beginning and ending this day
462 465 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
463 466 text_caracters_maximum: %d characters maximum.
464 467 text_length_between: Length between %d and %d characters.
465 468 text_tracker_no_workflow: No workflow defined for this tracker
466 469 text_unallowed_characters: Unallowed characters
467 470 text_comma_separated: Multiple values allowed (comma separated).
468 471 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
469 472
470 473 default_role_manager: Manager
471 474 default_role_developper: Developer
472 475 default_role_reporter: Reporter
473 476 default_tracker_bug: Bug
474 477 default_tracker_feature: Feature
475 478 default_tracker_support: Support
476 479 default_issue_status_new: New
477 480 default_issue_status_assigned: Assigned
478 481 default_issue_status_resolved: Resolved
479 482 default_issue_status_feedback: Feedback
480 483 default_issue_status_closed: Closed
481 484 default_issue_status_rejected: Rejected
482 485 default_doc_category_user: User documentation
483 486 default_doc_category_tech: Technical documentation
484 487 default_priority_low: Low
485 488 default_priority_normal: Normal
486 489 default_priority_high: High
487 490 default_priority_urgent: Urgent
488 491 default_priority_immediate: Immediate
489 492 default_activity_design: Design
490 493 default_activity_development: Development
491 494
492 495 enumeration_issue_priorities: Issue priorities
493 496 enumeration_doc_categories: Document categories
494 497 enumeration_activities: Activities (time tracking)
@@ -1,494 +1,497
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 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: 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: 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 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-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 54
55 55 notice_account_updated: Account was successfully updated.
56 56 notice_account_invalid_creditentials: Invalid user or password
57 57 notice_account_password_updated: Password was successfully updated.
58 58 notice_account_wrong_password: Wrong password
59 59 notice_account_register_done: Account was successfully created.
60 60 notice_account_unknown_email: Unknown user.
61 61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 63 notice_account_activated: Your account has been activated. You can now log in.
64 64 notice_successful_create: Successful creation.
65 65 notice_successful_update: Successful update.
66 66 notice_successful_delete: Successful deletion.
67 67 notice_successful_connection: Successful connection.
68 68 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
69 69 notice_locking_conflict: Data have been updated by another user.
70 70 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Tu contraseña del redMine
76 77 mail_subject_register: Activación de la cuenta del redMine
77 78
78 79 gui_validation_error: 1 error
79 80 gui_validation_error_plural: %d errores
80 81
81 82 field_name: Nombre
82 83 field_description: Descripción
83 84 field_summary: Resumen
84 85 field_is_required: Obligatorio
85 86 field_firstname: Nombre
86 87 field_lastname: Apellido
87 88 field_mail: Email
88 89 field_filename: Fichero
89 90 field_filesize: Tamaño
90 91 field_downloads: Telecargas
91 92 field_author: Autor
92 93 field_created_on: Creado
93 94 field_updated_on: Actualizado
94 95 field_field_format: Formato
95 96 field_is_for_all: Para todos los proyectos
96 97 field_possible_values: Valores posibles
97 98 field_regexp: Expresión regular
98 99 field_min_length: Longitud mínima
99 100 field_max_length: Longitud máxima
100 101 field_value: Valor
101 102 field_category: Categoría
102 103 field_title: Título
103 104 field_project: Proyecto
104 105 field_issue: Petición
105 106 field_status: Estatuto
106 107 field_notes: Notas
107 108 field_is_closed: Petición resuelta
108 109 field_is_default: Estatuto por defecto
109 110 field_html_color: Color
110 111 field_tracker: Tracker
111 112 field_subject: Tema
112 113 field_due_date: Fecha debida
113 114 field_assigned_to: Asignado a
114 115 field_priority: Prioridad
115 116 field_fixed_version: Versión corregida
116 117 field_user: Usuario
117 118 field_role: Papel
118 119 field_homepage: Sitio web
119 120 field_is_public: Público
120 121 field_parent: Proyecto secundario de
121 122 field_is_in_chlog: Consultar las peticiones en el histórico
122 123 field_is_in_roadmap: Consultar las peticiones en el roadmap
123 124 field_login: Identificador
124 125 field_mail_notification: Notificación por mail
125 126 field_admin: Administrador
126 127 field_last_login_on: Última conexión
127 128 field_language: Lengua
128 129 field_effective_date: Fecha
129 130 field_password: Contraseña
130 131 field_new_password: Nueva contraseña
131 132 field_password_confirmation: Confirmación
132 133 field_version: Versión
133 134 field_type: Tipo
134 135 field_host: Anfitrión
135 136 field_port: Puerto
136 137 field_account: Cuenta
137 138 field_base_dn: Base DN
138 139 field_attr_login: Cualidad del identificador
139 140 field_attr_firstname: Cualidad del nombre
140 141 field_attr_lastname: Cualidad del apellido
141 142 field_attr_mail: Cualidad del Email
142 143 field_onthefly: Creación del usuario On-the-fly
143 144 field_start_date: Comienzo
144 145 field_done_ratio: %% Realizado
145 146 field_auth_source: Modo de la autentificación
146 147 field_hide_mail: Ocultar mi email address
147 148 field_comments: Comentario
148 149 field_url: URL
149 150 field_start_page: Página principal
150 151 field_subproject: Proyecto secundario
151 152 field_hours: Hours
152 153 field_activity: Activity
153 154 field_spent_on: Fecha
154 155 field_identifier: Identifier
155 156 field_is_filter: Used as a filter
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Título del aplicación
161 162 setting_app_subtitle: Subtítulo del aplicación
162 163 setting_welcome_text: Texto acogida
163 164 setting_default_language: Lengua del defecto
164 165 setting_login_required: Autentif. requerida
165 166 setting_self_registration: Registro permitido
166 167 setting_attachment_max_size: Tamaño máximo del fichero
167 168 setting_issues_export_limit: Issues export limit
168 169 setting_mail_from: Email de la emisión
169 170 setting_host_name: Nombre de anfitrión
170 171 setting_text_formatting: Formato de texto
171 172 setting_wiki_compression: Compresión de la historia de Wiki
172 173 setting_feeds_limit: Feed content limit
173 174 setting_autofetch_changesets: Autofetch commits
174 175 setting_sys_api_enabled: Enable WS for repository management
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Usuario
182 183 label_user_plural: Usuarios
183 184 label_user_new: Nuevo usuario
184 185 label_project: Proyecto
185 186 label_project_new: Nuevo proyecto
186 187 label_project_plural: Proyectos
187 188 label_project_all: All Projects
188 189 label_project_latest: Los proyectos más últimos
189 190 label_issue: Petición
190 191 label_issue_new: Nueva petición
191 192 label_issue_plural: Peticiones
192 193 label_issue_view_all: Ver todas las peticiones
193 194 label_document: Documento
194 195 label_document_new: Nuevo documento
195 196 label_document_plural: Documentos
196 197 label_role: Papel
197 198 label_role_plural: Papeles
198 199 label_role_new: Nuevo papel
199 200 label_role_and_permissions: Papeles y permisos
200 201 label_member: Miembro
201 202 label_member_new: Nuevo miembro
202 203 label_member_plural: Miembros
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Trackers
205 206 label_tracker_new: Nuevo tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Estatuto de petición
208 209 label_issue_status_plural: Estatutos de las peticiones
209 210 label_issue_status_new: Nuevo estatuto
210 211 label_issue_category: Categoría de las peticiones
211 212 label_issue_category_plural: Categorías de las peticiones
212 213 label_issue_category_new: Nueva categoría
213 214 label_custom_field: Campo personalizado
214 215 label_custom_field_plural: Campos personalizados
215 216 label_custom_field_new: Nuevo campo personalizado
216 217 label_enumerations: Listas de valores
217 218 label_enumeration_new: Nuevo valor
218 219 label_information: Informacion
219 220 label_information_plural: Informaciones
220 221 label_please_login: Conexión
221 222 label_register: Registrar
222 223 label_password_lost: ¿Olvidaste la contraseña?
223 224 label_home: Acogida
224 225 label_my_page: Mi página
225 226 label_my_account: Mi cuenta
226 227 label_my_projects: Mis proyectos
227 228 label_administration: Administración
228 229 label_login: Conexión
229 230 label_logout: Desconexión
230 231 label_help: Ayuda
231 232 label_reported_issues: Peticiones registradas
232 233 label_assigned_to_me_issues: Peticiones que me están asignadas
233 234 label_last_login: Última conexión
234 235 label_last_updates: Actualizado
235 236 label_last_updates_plural: %d Actualizados
236 237 label_registered_on: Inscrito el
237 238 label_activity: Actividad
238 239 label_new: Nuevo
239 240 label_logged_as: Conectado como
240 241 label_environment: Environment
241 242 label_authentication: Autentificación
242 243 label_auth_source: Modo de la autentificación
243 244 label_auth_source_new: Nuevo modo de la autentificación
244 245 label_auth_source_plural: Modos de la autentificación
245 246 label_subproject_plural: Proyectos secundarios
246 247 label_min_max_length: Longitud mín - máx
247 248 label_list: Lista
248 249 label_date: Fecha
249 250 label_integer: Número
250 251 label_boolean: Boleano
251 252 label_string: Texto
252 253 label_text: Texto largo
253 254 label_attribute: Cualidad
254 255 label_attribute_plural: Cualidades
255 256 label_download: %d Telecarga
256 257 label_download_plural: %d Telecargas
257 258 label_no_data: Ningunos datos a exhibir
258 259 label_change_status: Cambiar el estatuto
259 260 label_history: Histórico
260 261 label_attachment: Fichero
261 262 label_attachment_new: Nuevo fichero
262 263 label_attachment_delete: Suprimir el fichero
263 264 label_attachment_plural: Ficheros
264 265 label_report: Informe
265 266 label_report_plural: Informes
266 267 label_news: Noticia
267 268 label_news_new: Nueva noticia
268 269 label_news_plural: Noticias
269 270 label_news_latest: Últimas noticias
270 271 label_news_view_all: Ver todas las noticias
271 272 label_change_log: Cambios
272 273 label_settings: Configuración
273 274 label_overview: Vistazo
274 275 label_version: Versión
275 276 label_version_new: Nueva versión
276 277 label_version_plural: Versiónes
277 278 label_confirmation: Confirmación
278 279 label_export_to: Exportar a
279 280 label_read: Leer...
280 281 label_public_projects: Proyectos publicos
281 282 label_open_issues: abierta
282 283 label_open_issues_plural: abiertas
283 284 label_closed_issues: cerrada
284 285 label_closed_issues_plural: cerradas
285 286 label_total: Total
286 287 label_permissions: Permisos
287 288 label_current_status: Estado actual
288 289 label_new_statuses_allowed: Nuevos estatutos autorizados
289 290 label_all: todos
290 291 label_none: ninguno
291 292 label_next: Próximo
292 293 label_previous: Precedente
293 294 label_used_by: Utilizado por
294 295 label_details: Detalles
295 296 label_add_note: Agregar una nota
296 297 label_per_page: Por la página
297 298 label_calendar: Calendario
298 299 label_months_from: meses de
299 300 label_gantt: Gantt
300 301 label_internal: Interno
301 302 label_last_changes: %d cambios del último
302 303 label_change_view_all: Ver todos los cambios
303 304 label_personalize_page: Personalizar esta página
304 305 label_comment: Comentario
305 306 label_comment_plural: Comentarios
306 307 label_comment_add: Agregar un comentario
307 308 label_comment_added: Comentario agregó
308 309 label_comment_delete: Suprimir comentarios
309 310 label_query: Pregunta personalizada
310 311 label_query_plural: Preguntas personalizadas
311 312 label_query_new: Nueva preguntas
312 313 label_filter_add: Agregar el filtro
313 314 label_filter_plural: Filtros
314 315 label_equals: igual
315 316 label_not_equals: no igual
316 317 label_in_less_than: en menos que
317 318 label_in_more_than: en más que
318 319 label_in: en
319 320 label_today: hoy
320 321 label_less_than_ago: hace menos de
321 322 label_more_than_ago: hace más de
322 323 label_ago: hace
323 324 label_contains: contiene
324 325 label_not_contains: no contiene
325 326 label_day_plural: días
326 327 label_repository: Depósito
327 328 label_browse: Hojear
328 329 label_modification: %d modificación
329 330 label_modification_plural: %d modificaciones
330 331 label_revision: Revisión
331 332 label_revision_plural: Revisiones
332 333 label_added: agregado
333 334 label_modified: modificado
334 335 label_deleted: suprimido
335 336 label_latest_revision: La revisión más última
336 337 label_latest_revision_plural: Latest revisions
337 338 label_view_revisions: Ver las revisiones
338 339 label_max_size: Tamaño máximo
339 340 label_on: en
340 341 label_sort_highest: Primero
341 342 label_sort_higher: Subir
342 343 label_sort_lower: Bajar
343 344 label_sort_lowest: Último
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Due in
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: No issues for this version
348 349 label_search: Búsqueda
349 350 label_result: %d resultado
350 351 label_result_plural: %d resultados
351 352 label_all_words: Todas las palabras
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki edit
354 355 label_wiki_edit_plural: Wiki edits
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Índice
358 359 label_current_version: Versión actual
359 360 label_preview: Previo
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Detalles de todos los cambios
362 363 label_issue_tracking: Issue tracking
363 364 label_spent_time: Spent time
364 365 label_f_hour: %.2f hour
365 366 label_f_hour_plural: %.2f hours
366 367 label_time_tracking: Time tracking
367 368 label_change_plural: Changes
368 369 label_statistics: Statistics
369 370 label_commits_per_month: Commits per month
370 371 label_commits_per_author: Commits per author
371 372 label_view_diff: View differences
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: side by side
374 375 label_options: Options
375 376 label_copy_workflow_from: Copy workflow from
376 377 label_permissions_report: Permissions report
377 378 label_watched_issues: Watched issues
378 379 label_related_issues: Related issues
379 380 label_applied_status: Applied status
380 381 label_loading: Loading...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Conexión
416 418 button_submit: Someter
417 419 button_save: Validar
418 420 button_check_all: Seleccionar todo
419 421 button_uncheck_all: No seleccionar nada
420 422 button_delete: Suprimir
421 423 button_create: Crear
422 424 button_test: Testar
423 425 button_edit: Modificar
424 426 button_add: Añadir
425 427 button_change: Cambiar
426 428 button_apply: Aplicar
427 429 button_clear: Anular
428 430 button_lock: Bloquear
429 431 button_unlock: Desbloquear
430 432 button_download: Telecargar
431 433 button_list: Listar
432 434 button_view: Ver
433 435 button_move: Mover
434 436 button_back: Atrás
435 437 button_cancel: Cancelar
436 438 button_activate: Activar
437 439 button_sort: Clasificar
438 440 button_log_time: Log time
439 441 button_rollback: Rollback to this version
440 442 button_watch: Watch
441 443 button_unwatch: Unwatch
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: active
447 450 status_registered: registered
448 451 status_locked: locked
449 452
450 453 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
451 454 text_regexp_info: eg. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 para ninguna restricción
453 456 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
454 457 text_workflow_edit: Seleccionar un workflow para actualizar
455 458 text_are_you_sure: ¿ Estás seguro ?
456 459 text_journal_changed: cambiado de %s a %s
457 460 text_journal_set_to: fijado a %s
458 461 text_journal_deleted: suprimido
459 462 text_tip_task_begin_day: tarea que comienza este día
460 463 text_tip_task_end_day: tarea que termina este día
461 464 text_tip_task_begin_end_day: tarea que comienza y termina este día
462 465 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
463 466 text_caracters_maximum: %d characters maximum.
464 467 text_length_between: Length between %d and %d characters.
465 468 text_tracker_no_workflow: No workflow defined for this tracker
466 469 text_unallowed_characters: Unallowed characters
467 470 text_comma_separated: Multiple values allowed (comma separated).
468 471 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
469 472
470 473 default_role_manager: Manager
471 474 default_role_developper: Desarrollador
472 475 default_role_reporter: Informador
473 476 default_tracker_bug: Anomalía
474 477 default_tracker_feature: Evolución
475 478 default_tracker_support: Asistencia
476 479 default_issue_status_new: Nuevo
477 480 default_issue_status_assigned: Asignada
478 481 default_issue_status_resolved: Resuelta
479 482 default_issue_status_feedback: Comentario
480 483 default_issue_status_closed: Cerrada
481 484 default_issue_status_rejected: Rechazada
482 485 default_doc_category_user: Documentación del usuario
483 486 default_doc_category_tech: Documentación tecnica
484 487 default_priority_low: Bajo
485 488 default_priority_normal: Normal
486 489 default_priority_high: Alto
487 490 default_priority_urgent: Urgente
488 491 default_priority_immediate: Ahora
489 492 default_activity_design: Design
490 493 default_activity_development: Development
491 494
492 495 enumeration_issue_priorities: Prioridad de las peticiones
493 496 enumeration_doc_categories: Categorías del documento
494 497 enumeration_activities: Activities (time tracking)
@@ -1,494 +1,497
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: 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: 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
55 55 notice_account_updated: Le compte a été mis à jour avec succès.
56 56 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 57 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 58 notice_account_wrong_password: Mot de passe incorrect
59 59 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 60 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 61 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 62 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 63 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 64 notice_successful_create: Création effectuée avec succès.
65 65 notice_successful_update: Mise à jour effectuée avec succès.
66 66 notice_successful_delete: Suppression effectuée avec succès.
67 67 notice_successful_connection: Connection réussie.
68 68 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
69 69 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 70 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
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 notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée.
74 75
75 76 mail_subject_lost_password: Votre mot de passe redMine
76 77 mail_subject_register: Activation de votre compte redMine
77 78
78 79 gui_validation_error: 1 erreur
79 80 gui_validation_error_plural: %d erreurs
80 81
81 82 field_name: Nom
82 83 field_description: Description
83 84 field_summary: Résumé
84 85 field_is_required: Obligatoire
85 86 field_firstname: Prénom
86 87 field_lastname: Nom
87 88 field_mail: Email
88 89 field_filename: Fichier
89 90 field_filesize: Taille
90 91 field_downloads: Téléchargements
91 92 field_author: Auteur
92 93 field_created_on: Créé
93 94 field_updated_on: Mis à jour
94 95 field_field_format: Format
95 96 field_is_for_all: Pour tous les projets
96 97 field_possible_values: Valeurs possibles
97 98 field_regexp: Expression régulière
98 99 field_min_length: Longueur minimum
99 100 field_max_length: Longueur maximum
100 101 field_value: Valeur
101 102 field_category: Catégorie
102 103 field_title: Titre
103 104 field_project: Projet
104 105 field_issue: Demande
105 106 field_status: Statut
106 107 field_notes: Notes
107 108 field_is_closed: Demande fermée
108 109 field_is_default: Statut par défaut
109 110 field_html_color: Couleur
110 111 field_tracker: Tracker
111 112 field_subject: Sujet
112 113 field_due_date: Date d'échéance
113 114 field_assigned_to: Assigné à
114 115 field_priority: Priorité
115 116 field_fixed_version: Version corrigée
116 117 field_user: Utilisateur
117 118 field_role: Rôle
118 119 field_homepage: Site web
119 120 field_is_public: Public
120 121 field_parent: Sous-projet de
121 122 field_is_in_chlog: Demandes affichées dans l'historique
122 123 field_is_in_roadmap: Demandes affichées dans la roadmap
123 124 field_login: Identifiant
124 125 field_mail_notification: Notifications par mail
125 126 field_admin: Administrateur
126 127 field_last_login_on: Dernière connexion
127 128 field_language: Langue
128 129 field_effective_date: Date
129 130 field_password: Mot de passe
130 131 field_new_password: Nouveau mot de passe
131 132 field_password_confirmation: Confirmation
132 133 field_version: Version
133 134 field_type: Type
134 135 field_host: Hôte
135 136 field_port: Port
136 137 field_account: Compte
137 138 field_base_dn: Base DN
138 139 field_attr_login: Attribut Identifiant
139 140 field_attr_firstname: Attribut Prénom
140 141 field_attr_lastname: Attribut Nom
141 142 field_attr_mail: Attribut Email
142 143 field_onthefly: Création des utilisateurs à la volée
143 144 field_start_date: Début
144 145 field_done_ratio: %% Réalisé
145 146 field_auth_source: Mode d'authentification
146 147 field_hide_mail: Cacher mon adresse mail
147 148 field_comments: Commentaire
148 149 field_url: URL
149 150 field_start_page: Page de démarrage
150 151 field_subproject: Sous-projet
151 152 field_hours: Heures
152 153 field_activity: Activité
153 154 field_spent_on: Date
154 155 field_identifier: Identifiant
155 156 field_is_filter: Utilisé comme filtre
156 157 field_issue_to_id: Demande liée
157 158 field_delay: Retard
158 159 field_assignable: Demandes assignables à ce rôle
159 160
160 161 setting_app_title: Titre de l'application
161 162 setting_app_subtitle: Sous-titre de l'application
162 163 setting_welcome_text: Texte d'accueil
163 164 setting_default_language: Langue par défaut
164 165 setting_login_required: Authentif. obligatoire
165 166 setting_self_registration: Enregistrement autorisé
166 167 setting_attachment_max_size: Taille max des fichiers
167 168 setting_issues_export_limit: Limite export demandes
168 169 setting_mail_from: Adresse d'émission
169 170 setting_host_name: Nom d'hôte
170 171 setting_text_formatting: Formatage du texte
171 172 setting_wiki_compression: Compression historique wiki
172 173 setting_feeds_limit: Limite du contenu des flux RSS
173 174 setting_autofetch_changesets: Récupération auto. des commits
174 175 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
175 176 setting_commit_ref_keywords: Mot-clés de référencement
176 177 setting_commit_fix_keywords: Mot-clés de résolution
177 178 setting_autologin: Autologin
178 179 setting_date_format: Format de date
179 180 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
180 181
181 182 label_user: Utilisateur
182 183 label_user_plural: Utilisateurs
183 184 label_user_new: Nouvel utilisateur
184 185 label_project: Projet
185 186 label_project_new: Nouveau projet
186 187 label_project_plural: Projets
187 188 label_project_all: Tous les projets
188 189 label_project_latest: Derniers projets
189 190 label_issue: Demande
190 191 label_issue_new: Nouvelle demande
191 192 label_issue_plural: Demandes
192 193 label_issue_view_all: Voir toutes les demandes
193 194 label_document: Document
194 195 label_document_new: Nouveau document
195 196 label_document_plural: Documents
196 197 label_role: Rôle
197 198 label_role_plural: Rôles
198 199 label_role_new: Nouveau rôle
199 200 label_role_and_permissions: Rôles et permissions
200 201 label_member: Membre
201 202 label_member_new: Nouveau membre
202 203 label_member_plural: Membres
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Trackers
205 206 label_tracker_new: Nouveau tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Statut de demandes
208 209 label_issue_status_plural: Statuts de demandes
209 210 label_issue_status_new: Nouveau statut
210 211 label_issue_category: Catégorie de demandes
211 212 label_issue_category_plural: Catégories de demandes
212 213 label_issue_category_new: Nouvelle catégorie
213 214 label_custom_field: Champ personnalisé
214 215 label_custom_field_plural: Champs personnalisés
215 216 label_custom_field_new: Nouveau champ personnalisé
216 217 label_enumerations: Listes de valeurs
217 218 label_enumeration_new: Nouvelle valeur
218 219 label_information: Information
219 220 label_information_plural: Informations
220 221 label_please_login: Identification
221 222 label_register: S'enregistrer
222 223 label_password_lost: Mot de passe perdu
223 224 label_home: Accueil
224 225 label_my_page: Ma page
225 226 label_my_account: Mon compte
226 227 label_my_projects: Mes projets
227 228 label_administration: Administration
228 229 label_login: Connexion
229 230 label_logout: Déconnexion
230 231 label_help: Aide
231 232 label_reported_issues: Demandes soumises
232 233 label_assigned_to_me_issues: Demandes qui me sont assignées
233 234 label_last_login: Dernière connexion
234 235 label_last_updates: Dernière mise à jour
235 236 label_last_updates_plural: %d dernières mises à jour
236 237 label_registered_on: Inscrit le
237 238 label_activity: Activité
238 239 label_new: Nouveau
239 240 label_logged_as: Connecté en tant que
240 241 label_environment: Environnement
241 242 label_authentication: Authentification
242 243 label_auth_source: Mode d'authentification
243 244 label_auth_source_new: Nouveau mode d'authentification
244 245 label_auth_source_plural: Modes d'authentification
245 246 label_subproject_plural: Sous-projets
246 247 label_min_max_length: Longueurs mini - maxi
247 248 label_list: Liste
248 249 label_date: Date
249 250 label_integer: Entier
250 251 label_boolean: Booléen
251 252 label_string: Texte
252 253 label_text: Texte long
253 254 label_attribute: Attribut
254 255 label_attribute_plural: Attributs
255 256 label_download: %d Téléchargement
256 257 label_download_plural: %d Téléchargements
257 258 label_no_data: Aucune donnée à afficher
258 259 label_change_status: Changer le statut
259 260 label_history: Historique
260 261 label_attachment: Fichier
261 262 label_attachment_new: Nouveau fichier
262 263 label_attachment_delete: Supprimer le fichier
263 264 label_attachment_plural: Fichiers
264 265 label_report: Rapport
265 266 label_report_plural: Rapports
266 267 label_news: Annonce
267 268 label_news_new: Nouvelle annonce
268 269 label_news_plural: Annonces
269 270 label_news_latest: Dernières annonces
270 271 label_news_view_all: Voir toutes les annonces
271 272 label_change_log: Historique
272 273 label_settings: Configuration
273 274 label_overview: Aperçu
274 275 label_version: Version
275 276 label_version_new: Nouvelle version
276 277 label_version_plural: Versions
277 278 label_confirmation: Confirmation
278 279 label_export_to: Exporter en
279 280 label_read: Lire...
280 281 label_public_projects: Projets publics
281 282 label_open_issues: ouvert
282 283 label_open_issues_plural: ouverts
283 284 label_closed_issues: fermé
284 285 label_closed_issues_plural: fermés
285 286 label_total: Total
286 287 label_permissions: Permissions
287 288 label_current_status: Statut actuel
288 289 label_new_statuses_allowed: Nouveaux statuts autorisés
289 290 label_all: tous
290 291 label_none: aucun
291 292 label_next: Suivant
292 293 label_previous: Précédent
293 294 label_used_by: Utilisé par
294 295 label_details: Détails
295 296 label_add_note: Ajouter une note
296 297 label_per_page: Par page
297 298 label_calendar: Calendrier
298 299 label_months_from: mois depuis
299 300 label_gantt: Gantt
300 301 label_internal: Interne
301 302 label_last_changes: %d derniers changements
302 303 label_change_view_all: Voir tous les changements
303 304 label_personalize_page: Personnaliser cette page
304 305 label_comment: Commentaire
305 306 label_comment_plural: Commentaires
306 307 label_comment_add: Ajouter un commentaire
307 308 label_comment_added: Commentaire ajouté
308 309 label_comment_delete: Supprimer les commentaires
309 310 label_query: Rapport personnalisé
310 311 label_query_plural: Rapports personnalisés
311 312 label_query_new: Nouveau rapport
312 313 label_filter_add: Ajouter le filtre
313 314 label_filter_plural: Filtres
314 315 label_equals: égal
315 316 label_not_equals: différent
316 317 label_in_less_than: dans moins de
317 318 label_in_more_than: dans plus de
318 319 label_in: dans
319 320 label_today: aujourd'hui
320 321 label_less_than_ago: il y a moins de
321 322 label_more_than_ago: il y a plus de
322 323 label_ago: il y a
323 324 label_contains: contient
324 325 label_not_contains: ne contient pas
325 326 label_day_plural: jours
326 327 label_repository: Dépôt
327 328 label_browse: Parcourir
328 329 label_modification: %d modification
329 330 label_modification_plural: %d modifications
330 331 label_revision: Révision
331 332 label_revision_plural: Révisions
332 333 label_added: ajouté
333 334 label_modified: modifié
334 335 label_deleted: supprimé
335 336 label_latest_revision: Dernière révision
336 337 label_latest_revision_plural: Dernières révisions
337 338 label_view_revisions: Voir les révisions
338 339 label_max_size: Taille maximale
339 340 label_on: sur
340 341 label_sort_highest: Remonter en premier
341 342 label_sort_higher: Remonter
342 343 label_sort_lower: Descendre
343 344 label_sort_lowest: Descendre en dernier
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Echéance dans
346 347 label_roadmap_overdue: En retard de %s
347 348 label_roadmap_no_issues: Aucune demande pour cette version
348 349 label_search: Recherche
349 350 label_result: %d résultat
350 351 label_result_plural: %d résultats
351 352 label_all_words: Tous les mots
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Révision wiki
354 355 label_wiki_edit_plural: Révisions wiki
355 356 label_wiki_page: Page wiki
356 357 label_wiki_page_plural: Pages wiki
357 358 label_page_index: Index
358 359 label_current_version: Version actuelle
359 360 label_preview: Prévisualisation
360 361 label_feed_plural: Flux RSS
361 362 label_changes_details: Détails de tous les changements
362 363 label_issue_tracking: Suivi des demandes
363 364 label_spent_time: Temps passé
364 365 label_f_hour: %.2f heure
365 366 label_f_hour_plural: %.2f heures
366 367 label_time_tracking: Suivi du temps
367 368 label_change_plural: Changements
368 369 label_statistics: Statistiques
369 370 label_commits_per_month: Commits par mois
370 371 label_commits_per_author: Commits par auteur
371 372 label_view_diff: Voir les différences
372 373 label_diff_inline: en ligne
373 374 label_diff_side_by_side: côte à côte
374 375 label_options: Options
375 376 label_copy_workflow_from: Copier le workflow de
376 377 label_permissions_report: Synthèse des permissions
377 378 label_watched_issues: Demandes surveillées
378 379 label_related_issues: Demandes liées
379 380 label_applied_status: Statut appliqué
380 381 label_loading: Chargement...
381 382 label_relation_new: Nouvelle relation
382 383 label_relation_delete: Supprimer la relation
383 384 label_relates_to: lié à
384 385 label_duplicates: doublon de
385 386 label_blocks: bloque
386 387 label_blocked_by: bloqué par
387 388 label_precedes: précède
388 389 label_follows: suit
389 390 label_end_to_start: début à fin
390 391 label_end_to_end: fin à fin
391 392 label_start_to_start: début à début
392 393 label_start_to_end: début à fin
393 394 label_stay_logged_in: Rester connecté
394 395 label_disabled: désactivé
395 396 label_show_completed_versions: Voire les versions passées
396 397 label_me: moi
397 398 label_board: Forum
398 399 label_board_new: Nouveau forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Discussions
401 402 label_message_plural: Messages
402 403 label_message_last: Dernier message
403 404 label_message_new: Nouveau message
404 405 label_reply_plural: Réponses
405 406 label_send_information: Envoyer les informations à l'utilisateur
406 407 label_year: Année
407 408 label_month: Mois
408 409 label_week: Semaine
409 410 label_date_from: Du
410 411 label_date_to: Au
411 412 label_language_based: Basé sur la langue
412 413 label_sort_by: Trier par "%s"
413 414 label_send_test_email: Envoyer un email de test
415 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
414 416
415 417 button_login: Connexion
416 418 button_submit: Soumettre
417 419 button_save: Sauvegarder
418 420 button_check_all: Tout cocher
419 421 button_uncheck_all: Tout décocher
420 422 button_delete: Supprimer
421 423 button_create: Créer
422 424 button_test: Tester
423 425 button_edit: Modifier
424 426 button_add: Ajouter
425 427 button_change: Changer
426 428 button_apply: Appliquer
427 429 button_clear: Effacer
428 430 button_lock: Verrouiller
429 431 button_unlock: Déverrouiller
430 432 button_download: Télécharger
431 433 button_list: Lister
432 434 button_view: Voir
433 435 button_move: Déplacer
434 436 button_back: Retour
435 437 button_cancel: Annuler
436 438 button_activate: Activer
437 439 button_sort: Trier
438 440 button_log_time: Saisir temps
439 441 button_rollback: Revenir à cette version
440 442 button_watch: Surveiller
441 443 button_unwatch: Ne plus surveiller
442 444 button_reply: Répondre
443 445 button_archive: Archiver
444 446 button_unarchive: Désarchiver
447 button_reset: Réinitialiser
445 448
446 449 status_active: actif
447 450 status_registered: enregistré
448 451 status_locked: vérouillé
449 452
450 453 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
451 454 text_regexp_info: ex. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 pour aucune restriction
453 456 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
454 457 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
455 458 text_are_you_sure: Etes-vous sûr ?
456 459 text_journal_changed: changé de %s à %s
457 460 text_journal_set_to: mis à %s
458 461 text_journal_deleted: supprimé
459 462 text_tip_task_begin_day: tâche commençant ce jour
460 463 text_tip_task_end_day: tâche finissant ce jour
461 464 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
462 465 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
463 466 text_caracters_maximum: %d caractères maximum.
464 467 text_length_between: Longueur comprise entre %d et %d caractères.
465 468 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
466 469 text_unallowed_characters: Caractères non autorisés
467 470 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
468 471 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
469 472
470 473 default_role_manager: Manager
471 474 default_role_developper: Développeur
472 475 default_role_reporter: Rapporteur
473 476 default_tracker_bug: Anomalie
474 477 default_tracker_feature: Evolution
475 478 default_tracker_support: Assistance
476 479 default_issue_status_new: Nouveau
477 480 default_issue_status_assigned: Assigné
478 481 default_issue_status_resolved: Résolu
479 482 default_issue_status_feedback: Commentaire
480 483 default_issue_status_closed: Fermé
481 484 default_issue_status_rejected: Rejeté
482 485 default_doc_category_user: Documentation utilisateur
483 486 default_doc_category_tech: Documentation technique
484 487 default_priority_low: Bas
485 488 default_priority_normal: Normal
486 489 default_priority_high: Haut
487 490 default_priority_urgent: Urgent
488 491 default_priority_immediate: Immédiat
489 492 default_activity_design: Conception
490 493 default_activity_development: Développement
491 494
492 495 enumeration_issue_priorities: Priorités des demandes
493 496 enumeration_doc_categories: Catégories des documents
494 497 enumeration_activities: Activités (suivi du temps)
@@ -1,494 +1,497
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
55 55 notice_account_updated: L'utenza è stata aggiornata.
56 56 notice_account_invalid_creditentials: Nome utente o password non validi.
57 57 notice_account_password_updated: La password è stata aggiornata.
58 58 notice_account_wrong_password: Password errata
59 59 notice_account_register_done: L'utenza è stata creata.
60 60 notice_account_unknown_email: Utente sconosciuto.
61 61 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 62 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 63 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 64 notice_successful_create: Creazione effettuata.
65 65 notice_successful_update: Modifica effettuata.
66 66 notice_successful_delete: Eliminazione effettuata.
67 67 notice_successful_connection: Connessione effettuata.
68 68 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 69 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 70 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Password redMine
76 77 mail_subject_register: Attivazione utenza redMine
77 78
78 79 gui_validation_error: 1 errore
79 80 gui_validation_error_plural: %d errori
80 81
81 82 field_name: Nome
82 83 field_description: Descrizione
83 84 field_summary: Sommario
84 85 field_is_required: Richiesto
85 86 field_firstname: Nome
86 87 field_lastname: Cognome
87 88 field_mail: Email
88 89 field_filename: File
89 90 field_filesize: Dimensione
90 91 field_downloads: Download
91 92 field_author: Autore
92 93 field_created_on: Creato
93 94 field_updated_on: Aggiornato
94 95 field_field_format: Formato
95 96 field_is_for_all: Per tutti i progetti
96 97 field_possible_values: Valori possibili
97 98 field_regexp: Espressione regolare
98 99 field_min_length: Lunghezza minima
99 100 field_max_length: Lunghezza massima
100 101 field_value: Valore
101 102 field_category: Categoria
102 103 field_title: Titolo
103 104 field_project: Progetto
104 105 field_issue: Issue
105 106 field_status: Stato
106 107 field_notes: Note
107 108 field_is_closed: Chiude il contesto
108 109 field_is_default: Stato predefinito
109 110 field_html_color: Colore
110 111 field_tracker: Tracker
111 112 field_subject: Oggetto
112 113 field_due_date: Data ultima
113 114 field_assigned_to: Assegnato a
114 115 field_priority: Priorita'
115 116 field_fixed_version: Versione di fix
116 117 field_user: Utente
117 118 field_role: Ruolo
118 119 field_homepage: Homepage
119 120 field_is_public: Pubblico
120 121 field_parent: Sottoprogetto di
121 122 field_is_in_chlog: Contesti mostrati nel changelog
122 123 field_is_in_roadmap: Contesti mostrati nel roadmap
123 124 field_login: Login
124 125 field_mail_notification: Notifiche via e-mail
125 126 field_admin: Amministratore
126 127 field_last_login_on: Ultima connessione
127 128 field_language: Lingua
128 129 field_effective_date: Data
129 130 field_password: Password
130 131 field_new_password: Nuova password
131 132 field_password_confirmation: Conferma
132 133 field_version: Versione
133 134 field_type: Tipo
134 135 field_host: Host
135 136 field_port: Porta
136 137 field_account: Utenza
137 138 field_base_dn: DN base
138 139 field_attr_login: Attributo login
139 140 field_attr_firstname: Attributo nome
140 141 field_attr_lastname: Attributo cognome
141 142 field_attr_mail: Attributo e-mail
142 143 field_onthefly: Creazione utenza "al volo"
143 144 field_start_date: Inizio
144 145 field_done_ratio: %% completo
145 146 field_auth_source: Modalità di autenticazione
146 147 field_hide_mail: Nascondi il mio indirizzo di e-mail
147 148 field_comments: Commento
148 149 field_url: URL
149 150 field_start_page: Pagina principale
150 151 field_subproject: Sottoprogetto
151 152 field_hours: Hours
152 153 field_activity: Activity
153 154 field_spent_on: Data
154 155 field_identifier: Identifier
155 156 field_is_filter: Used as a filter
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Titolo applicazione
161 162 setting_app_subtitle: Sottotitolo applicazione
162 163 setting_welcome_text: Testo di benvenuto
163 164 setting_default_language: Lingua di default
164 165 setting_login_required: Autenticazione richiesta
165 166 setting_self_registration: Auto-registrazione abilitata
166 167 setting_attachment_max_size: Massima dimensione allegati
167 168 setting_issues_export_limit: Limite esportazione contesti
168 169 setting_mail_from: Indirizzo sorgente e-mail
169 170 setting_host_name: Nome host
170 171 setting_text_formatting: Formattazione testo
171 172 setting_wiki_compression: Compressione di storia di Wiki
172 173 setting_feeds_limit: Limite contenuti del feed
173 174 setting_autofetch_changesets: Acquisisci automaticamente le commit
174 175 setting_sys_api_enabled: Abilita WS per la gestione del repository
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Utente
182 183 label_user_plural: Utenti
183 184 label_user_new: Nuovo utente
184 185 label_project: Progetto
185 186 label_project_new: Nuovo progetto
186 187 label_project_plural: Progetti
187 188 label_project_all: All Projects
188 189 label_project_latest: Ultimi progetti registrati
189 190 label_issue: Contesto
190 191 label_issue_new: Nuovo contesto
191 192 label_issue_plural: Contesti
192 193 label_issue_view_all: Mostra tutti i contesti
193 194 label_document: Documento
194 195 label_document_new: Nuovo documento
195 196 label_document_plural: Documenti
196 197 label_role: Ruolo
197 198 label_role_plural: Ruoli
198 199 label_role_new: Nuovo ruolo
199 200 label_role_and_permissions: Ruoli e permessi
200 201 label_member: Membro
201 202 label_member_new: Nuovo membro
202 203 label_member_plural: Membri
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Tracker
205 206 label_tracker_new: Nuovo tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Stato contesti
208 209 label_issue_status_plural: Stati contesto
209 210 label_issue_status_new: Nuovo stato
210 211 label_issue_category: Categorie contesti
211 212 label_issue_category_plural: Categorie contesto
212 213 label_issue_category_new: Nuova categoria
213 214 label_custom_field: Campo personalizzato
214 215 label_custom_field_plural: Campi personalizzati
215 216 label_custom_field_new: Nuovo campo personalizzato
216 217 label_enumerations: Enumerazioni
217 218 label_enumeration_new: Nuovo valore
218 219 label_information: Informazione
219 220 label_information_plural: Informazioni
220 221 label_please_login: Autenticarsi
221 222 label_register: Registrati
222 223 label_password_lost: Password dimenticata
223 224 label_home: Home
224 225 label_my_page: Pagina personale
225 226 label_my_account: La mia utenza
226 227 label_my_projects: I miei progetti
227 228 label_administration: Amministrazione
228 229 label_login: Login
229 230 label_logout: Logout
230 231 label_help: Aiuto
231 232 label_reported_issues: Contesti segnalati
232 233 label_assigned_to_me_issues: I miei contesti
233 234 label_last_login: Ultimo collegamento
234 235 label_last_updates: Ultimo aggiornamento
235 236 label_last_updates_plural: %d ultimo aggiornamento
236 237 label_registered_on: Registrato il
237 238 label_activity: Attività
238 239 label_new: Nuovo
239 240 label_logged_as: Autenticato come
240 241 label_environment: Ambiente
241 242 label_authentication: Autenticazione
242 243 label_auth_source: Modalità di autenticazione
243 244 label_auth_source_new: Nuova modalità di autenticazione
244 245 label_auth_source_plural: Modalità di autenticazione
245 246 label_subproject_plural: Sottoprogetti
246 247 label_min_max_length: Lunghezza minima - massima
247 248 label_list: Elenco
248 249 label_date: Data
249 250 label_integer: Intero
250 251 label_boolean: Booleano
251 252 label_string: Testo
252 253 label_text: Testo esteso
253 254 label_attribute: Attributo
254 255 label_attribute_plural: Attributi
255 256 label_download: %d Download
256 257 label_download_plural: %d Download
257 258 label_no_data: Nessun dato disponibile
258 259 label_change_status: Cambia stato
259 260 label_history: Cronologia
260 261 label_attachment: File
261 262 label_attachment_new: Nuovo file
262 263 label_attachment_delete: Elimina file
263 264 label_attachment_plural: File
264 265 label_report: Report
265 266 label_report_plural: Report
266 267 label_news: Notizia
267 268 label_news_new: Aggiungi notizia
268 269 label_news_plural: Notizie
269 270 label_news_latest: Utime notizie
270 271 label_news_view_all: Tutte le notizie
271 272 label_change_log: Change log
272 273 label_settings: Impostazioni
273 274 label_overview: Panoramica
274 275 label_version: Versione
275 276 label_version_new: Nuova versione
276 277 label_version_plural: Versioni
277 278 label_confirmation: Conferma
278 279 label_export_to: Esporta su
279 280 label_read: Leggi...
280 281 label_public_projects: Progetti pubblici
281 282 label_open_issues: aperta
282 283 label_open_issues_plural: aperte
283 284 label_closed_issues: chiusa
284 285 label_closed_issues_plural: chiuse
285 286 label_total: Totale
286 287 label_permissions: Permessi
287 288 label_current_status: Stato attuale
288 289 label_new_statuses_allowed: Nuovi stati possibili
289 290 label_all: tutti
290 291 label_none: nessuno
291 292 label_next: Successivo
292 293 label_previous: Precedente
293 294 label_used_by: Usato da
294 295 label_details: Dettagli
295 296 label_add_note: Aggiungi una nota
296 297 label_per_page: Per pagina
297 298 label_calendar: Calendario
298 299 label_months_from: mesi da
299 300 label_gantt: Gantt
300 301 label_internal: Interno
301 302 label_last_changes: ultime %d modifiche
302 303 label_change_view_all: Tutte le modifiche
303 304 label_personalize_page: Personalizza la pagina
304 305 label_comment: Commento
305 306 label_comment_plural: Commenti
306 307 label_comment_add: Aggiungi un commento
307 308 label_comment_added: Commento aggiunto
308 309 label_comment_delete: Elimina commenti
309 310 label_query: Custom query
310 311 label_query_plural: Query personalizzate
311 312 label_query_new: Nuova query
312 313 label_filter_add: Aggiungi filtro
313 314 label_filter_plural: Filtri
314 315 label_equals: è
315 316 label_not_equals: non è
316 317 label_in_less_than: è minore di
317 318 label_in_more_than: è maggiore di
318 319 label_in: in
319 320 label_today: oggi
320 321 label_less_than_ago: meno di giorni fa
321 322 label_more_than_ago: più di giorni fa
322 323 label_ago: giorni fa
323 324 label_contains: contiene
324 325 label_not_contains: non contiene
325 326 label_day_plural: giorni
326 327 label_repository: Repository
327 328 label_browse: Browse
328 329 label_modification: %d modifica
329 330 label_modification_plural: %d modifiche
330 331 label_revision: Versione
331 332 label_revision_plural: Versioni
332 333 label_added: aggiunto
333 334 label_modified: modificato
334 335 label_deleted: eliminato
335 336 label_latest_revision: Ultima versione
336 337 label_latest_revision_plural: Ultime versioni
337 338 label_view_revisions: Mostra versioni
338 339 label_max_size: Dimensione massima
339 340 label_on: 'on'
340 341 label_sort_highest: Sposta in cima
341 342 label_sort_higher: Su
342 343 label_sort_lower: Giù
343 344 label_sort_lowest: Sposta in fondo
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Da ultimare in
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Nessun contesto per questa versione
348 349 label_search: Ricerca
349 350 label_result: %d risultato
350 351 label_result_plural: %d risultati
351 352 label_all_words: Tutte le parole
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Modifica Wiki
354 355 label_wiki_edit_plural: Modfiche wiki
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Indice
358 359 label_current_version: Versione corrente
359 360 label_preview: Anteprima
360 361 label_feed_plural: Feed
361 362 label_changes_details: Particolari di tutti i cambiamenti
362 363 label_issue_tracking: tracking dei contesti
363 364 label_spent_time: Tempo impiegato
364 365 label_f_hour: %.2f ora
365 366 label_f_hour_plural: %.2f ore
366 367 label_time_tracking: Tracking del tempo
367 368 label_change_plural: Modifiche
368 369 label_statistics: Statistiche
369 370 label_commits_per_month: Commit per mese
370 371 label_commits_per_author: Commit per autore
371 372 label_view_diff: mostra differenze
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: side by side
374 375 label_options: Opzioni
375 376 label_copy_workflow_from: Copia workflow da
376 377 label_permissions_report: Report permessi
377 378 label_watched_issues: Watched issues
378 379 label_related_issues: Related issues
379 380 label_applied_status: Applied status
380 381 label_loading: Loading...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Login
416 418 button_submit: Invia
417 419 button_save: Salva
418 420 button_check_all: Seleziona tutti
419 421 button_uncheck_all: Deseleziona tutti
420 422 button_delete: Elimina
421 423 button_create: Crea
422 424 button_test: Test
423 425 button_edit: Modifica
424 426 button_add: Aggiungi
425 427 button_change: Modifica
426 428 button_apply: Applica
427 429 button_clear: Pulisci
428 430 button_lock: Blocca
429 431 button_unlock: Sblocca
430 432 button_download: Scarica
431 433 button_list: Elenca
432 434 button_view: Mostra
433 435 button_move: Sposta
434 436 button_back: Indietro
435 437 button_cancel: Annulla
436 438 button_activate: Attiva
437 439 button_sort: Ordina
438 440 button_log_time: Registra tempo
439 441 button_rollback: Ripristina questa versione
440 442 button_watch: Watch
441 443 button_unwatch: Unwatch
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: attivo
447 450 status_registered: registrato
448 451 status_locked: bloccato
449 452
450 453 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
451 454 text_regexp_info: eg. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 significa nessuna restrizione
453 456 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
454 457 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
455 458 text_are_you_sure: Sei sicuro ?
456 459 text_journal_changed: cambiato da %s a %s
457 460 text_journal_set_to: impostato a %s
458 461 text_journal_deleted: cancellato
459 462 text_tip_task_begin_day: attività che iniziano in questa giornata
460 463 text_tip_task_end_day: attività che terminano in questa giornata
461 464 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
462 465 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
463 466 text_caracters_maximum: massimo %d caratteri.
464 467 text_length_between: Lunghezza compresa tra %d e %d caratteri.
465 468 text_tracker_no_workflow: Nessun workflow definito per questo tracker
466 469 text_unallowed_characters: Unallowed characters
467 470 text_comma_separated: Multiple values allowed (comma separated).
468 471 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
469 472
470 473 default_role_manager: Manager
471 474 default_role_developper: Sviluppatore
472 475 default_role_reporter: Reporter
473 476 default_tracker_bug: Contesto
474 477 default_tracker_feature: Funzione
475 478 default_tracker_support: Supporto
476 479 default_issue_status_new: Nuovo/a
477 480 default_issue_status_assigned: Assegnato/a
478 481 default_issue_status_resolved: Risolto/a
479 482 default_issue_status_feedback: Feedback
480 483 default_issue_status_closed: Chiuso/a
481 484 default_issue_status_rejected: Rifiutato/a
482 485 default_doc_category_user: Documentazione utente
483 486 default_doc_category_tech: Documentazione tecnica
484 487 default_priority_low: Bassa
485 488 default_priority_normal: Normale
486 489 default_priority_high: Alta
487 490 default_priority_urgent: Urgente
488 491 default_priority_immediate: Immediata
489 492 default_activity_design: Design
490 493 default_activity_development: Development
491 494
492 495 enumeration_issue_priorities: Priorità contesti
493 496 enumeration_doc_categories: Categorie di documenti
494 497 enumeration_activities: Attività (time tracking)
@@ -1,495 +1,498
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
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_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
72 72 notice_not_authorized: このページにアクセスするには認証が必要です。
73 73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)"
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 76
76 77 mail_subject_lost_password: redMineパスワード
77 78 mail_subject_register: redMineアカウントが有効になりました
78 79
79 80 gui_validation_error: 1件のエラー
80 81 gui_validation_error_plural: %d件のエラー
81 82
82 83 field_name: 名前
83 84 field_description: 説明
84 85 field_summary: サマリ
85 86 field_is_required: 必須
86 87 field_firstname: 名前
87 88 field_lastname: 苗字
88 89 field_mail: メールアドレス
89 90 field_filename: ファイル
90 91 field_filesize: サイズ
91 92 field_downloads: ダウンロード
92 93 field_author: 起票者
93 94 field_created_on: 作成日
94 95 field_updated_on: 更新日
95 96 field_field_format: 書式
96 97 field_is_for_all: 全プロジェクト向け
97 98 field_possible_values: 選択肢
98 99 field_regexp: 正規表現
99 100 field_min_length: 最小値
100 101 field_max_length: 最大値
101 102 field_value:
102 103 field_category: カテゴリ
103 104 field_title: タイトル
104 105 field_project: プロジェクト
105 106 field_issue: 問題
106 107 field_status: ステータス
107 108 field_notes: 注記
108 109 field_is_closed: 終了した問題
109 110 field_is_default: デフォルトのステータス
110 111 field_html_color:
111 112 field_tracker: トラッカー
112 113 field_subject: 題名
113 114 field_due_date: 期限日
114 115 field_assigned_to: 担当者
115 116 field_priority: 優先度
116 117 field_fixed_version: 修正されたバージョン
117 118 field_user: ユーザ
118 119 field_role: 役割
119 120 field_homepage: ホームページ
120 121 field_is_public: 公開
121 122 field_parent: 親プロジェクト名
122 123 field_is_in_chlog: 変更記録に表示されている問題
123 124 field_is_in_roadmap: ロードマップに表示されている問題
124 125 field_login: ログイン
125 126 field_mail_notification: メール通知
126 127 field_admin: 管理者
127 128 field_last_login_on: 最終接続日
128 129 field_language: 言語
129 130 field_effective_date: 日付
130 131 field_password: パスワード
131 132 field_new_password: 新しいパスワード
132 133 field_password_confirmation: パスワードの確認
133 134 field_version: バージョン
134 135 field_type: タイプ
135 136 field_host: ホスト
136 137 field_port: ポート
137 138 field_account: アカウント
138 139 field_base_dn: Base DN
139 140 field_attr_login: ログイン名属性
140 141 field_attr_firstname: 名前属性
141 142 field_attr_lastname: 苗字属性
142 143 field_attr_mail: メール属性
143 144 field_onthefly: あわせてユーザを作成
144 145 field_start_date: 開始日
145 146 field_done_ratio: 進捗 %%
146 147 field_auth_source: 認証モード
147 148 field_hide_mail: メールアドレスを隠す
148 149 field_comments: コメント
149 150 field_url: URL
150 151 field_start_page: メインページ
151 152 field_subproject: サブプロジェクト
152 153 field_hours: 時間
153 154 field_activity: 活動
154 155 field_spent_on: 日付
155 156 field_identifier: 識別子
156 157 field_is_filter: フィルタとして使う
157 158 field_issue_to_id: 関連する問題
158 159 field_delay: 遅延
159 160 field_assignable: Issues can be assigned to this role
160 161
161 162 setting_app_title: アプリケーションのタイトル
162 163 setting_app_subtitle: アプリケーションのサブタイトル
163 164 setting_welcome_text: ウェルカムメッセージ
164 165 setting_default_language: 既定の言語
165 166 setting_login_required: 認証が必要
166 167 setting_self_registration: ユーザは自分で登録できる
167 168 setting_attachment_max_size: 添付の最大サイズ
168 169 setting_issues_export_limit: 出力する問題数の上限
169 170 setting_mail_from: 送信元メールアドレス
170 171 setting_host_name: ホスト名
171 172 setting_text_formatting: テキストの書式
172 173 setting_wiki_compression: Wiki履歴を圧縮する
173 174 setting_feeds_limit: フィード内容の上限
174 175 setting_autofetch_changesets: コミットを自動取得する
175 176 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
176 177 setting_commit_ref_keywords: 参照用キーワード
177 178 setting_commit_fix_keywords: 修正用キーワード
178 179 setting_autologin: 自動ログイン
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: ユーザ
183 184 label_user_plural: ユーザ
184 185 label_user_new: 新しいユーザ
185 186 label_project: プロジェクト
186 187 label_project_new: 新しいプロジェクト
187 188 label_project_plural: プロジェクト
188 189 label_project_all: 全プロジェクト
189 190 label_project_latest: 最近のプロジェクト
190 191 label_issue: 問題
191 192 label_issue_new: 新しい問題
192 193 label_issue_plural: 問題
193 194 label_issue_view_all: 問題を全て見る
194 195 label_document: 文書
195 196 label_document_new: 新しい文書
196 197 label_document_plural: 文書
197 198 label_role: ロール
198 199 label_role_plural: ロール
199 200 label_role_new: 新しいロール
200 201 label_role_and_permissions: ロールと権限
201 202 label_member: メンバー
202 203 label_member_new: 新しいメンバー
203 204 label_member_plural: メンバー
204 205 label_tracker: トラッカー
205 206 label_tracker_plural: トラッカー
206 207 label_tracker_new: 新しいトラッカーを作成
207 208 label_workflow: ワークフロー
208 209 label_issue_status: 問題のステータス
209 210 label_issue_status_plural: 問題のステータス
210 211 label_issue_status_new: 新しいステータス
211 212 label_issue_category: 問題のカテゴリ
212 213 label_issue_category_plural: 問題のカテゴリ
213 214 label_issue_category_new: 新しいカテゴリ
214 215 label_custom_field: カスタムフィールド
215 216 label_custom_field_plural: カスタムフィールド
216 217 label_custom_field_new: 新しいカスタムフィールドを作成
217 218 label_enumerations: 列挙項目
218 219 label_enumeration_new: 新しい値
219 220 label_information: 情報
220 221 label_information_plural: 情報
221 222 label_please_login: ログインしてください
222 223 label_register: 登録する
223 224 label_password_lost: パスワードの再発行
224 225 label_home: ホーム
225 226 label_my_page: マイページ
226 227 label_my_account: マイアカウント
227 228 label_my_projects: マイプロジェクト
228 229 label_administration: 管理
229 230 label_login: ログイン
230 231 label_logout: ログアウト
231 232 label_help: ヘルプ
232 233 label_reported_issues: 報告した問題
233 234 label_assigned_to_me_issues: 担当している問題
234 235 label_last_login: 最近の接続
235 236 label_last_updates: 最近の更新1件
236 237 label_last_updates_plural: 最近の更新%d件
237 238 label_registered_on: 登録日
238 239 label_activity: 活動
239 240 label_new: 新しく作成
240 241 label_logged_as: ログイン中:
241 242 label_environment: 環境
242 243 label_authentication: 認証
243 244 label_auth_source: 認証モード
244 245 label_auth_source_new: 新しい認証モード
245 246 label_auth_source_plural: 認証モード
246 247 label_subproject_plural: サブプロジェクト
247 248 label_min_max_length: 最小値 - 最大値の長さ
248 249 label_list: リストから選択
249 250 label_date: 日付
250 251 label_integer: 整数
251 252 label_boolean: 真偽値
252 253 label_string: テキスト
253 254 label_text: 長いテキスト
254 255 label_attribute: 属性
255 256 label_attribute_plural: 属性
256 257 label_download: %d ダウンロード
257 258 label_download_plural: %d ダウンロード
258 259 label_no_data: 表示するデータがありません
259 260 label_change_status: ステータスの変更
260 261 label_history: 履歴
261 262 label_attachment: ファイル
262 263 label_attachment_new: 新しいファイル
263 264 label_attachment_delete: ファイルを削除
264 265 label_attachment_plural: ファイル
265 266 label_report: レポート
266 267 label_report_plural: レポート
267 268 label_news: ニュース
268 269 label_news_new: ニュースを追加
269 270 label_news_plural: ニュース
270 271 label_news_latest: 最新ニュース
271 272 label_news_view_all: 全てのニュースを見る
272 273 label_change_log: 変更記録
273 274 label_settings: 設定
274 275 label_overview: 概要
275 276 label_version: バージョン
276 277 label_version_new: 新しいバージョン
277 278 label_version_plural: バージョン
278 279 label_confirmation: 確認
279 280 label_export_to: 他の形式に出力
280 281 label_read: 読む...
281 282 label_public_projects: 公開プロジェクト
282 283 label_open_issues: 未完了
283 284 label_open_issues_plural: 未完了
284 285 label_closed_issues: 終了
285 286 label_closed_issues_plural: 終了
286 287 label_total: 合計
287 288 label_permissions: 権限
288 289 label_current_status: 現在のステータス
289 290 label_new_statuses_allowed: ステータスの移行先
290 291 label_all: 全て
291 292 label_none: なし
292 293 label_next:
293 294 label_previous:
294 295 label_used_by: 使用中
295 296 label_details: 詳細
296 297 label_add_note: 注記を追加
297 298 label_per_page: ページ毎
298 299 label_calendar: カレンダー
299 300 label_months_from: ヶ月 from
300 301 label_gantt: ガントチャート
301 302 label_internal: Internal
302 303 label_last_changes: 最新の変更%d件
303 304 label_change_view_all: 全ての変更を見る
304 305 label_personalize_page: このページをパーソナライズする
305 306 label_comment: コメント
306 307 label_comment_plural: コメント
307 308 label_comment_add: コメント追加
308 309 label_comment_added: 追加されたコメント
309 310 label_comment_delete: コメント削除
310 311 label_query: カスタムクエリ
311 312 label_query_plural: カスタムクエリ
312 313 label_query_new: 新しいクエリ
313 314 label_filter_add: フィルタ追加
314 315 label_filter_plural: フィルタ
315 316 label_equals: 等しい
316 317 label_not_equals: 等しくない
317 318 label_in_less_than: 残日数がこれより多い
318 319 label_in_more_than: 残日数がこれより少ない
319 320 label_in: 残日数
320 321 label_today: 今日
321 322 label_less_than_ago: 経過日数がこれより少ない
322 323 label_more_than_ago: 経過日数がこれより多い
323 324 label_ago: 日前
324 325 label_contains: 含む
325 326 label_not_contains: 含まない
326 327 label_day_plural:
327 328 label_repository: リポジトリ
328 329 label_browse: ブラウズ
329 330 label_modification: %d点の変更
330 331 label_modification_plural: %d点の変更
331 332 label_revision: リビジョン
332 333 label_revision_plural: リビジョン
333 334 label_added: 追加
334 335 label_modified: 変更
335 336 label_deleted: 削除
336 337 label_latest_revision: 最新リビジョン
337 338 label_latest_revision_plural: 最新リビジョン
338 339 label_view_revisions: リビジョンを見る
339 340 label_max_size: 最大サイズ
340 341 label_on: 合計
341 342 label_sort_highest: 一番上へ
342 343 label_sort_higher: 上へ
343 344 label_sort_lower: 下へ
344 345 label_sort_lowest: 一番下へ
345 346 label_roadmap: ロードマップ
346 347 label_roadmap_due_in: 期日まで
347 348 label_roadmap_overdue: %s late
348 349 label_roadmap_no_issues: このバージョンに向けての問題はありません
349 350 label_search: 検索
350 351 label_result: %d件の結果
351 352 label_result_plural: %d件の結果
352 353 label_all_words: すべての単語
353 354 label_wiki: Wiki
354 355 label_wiki_edit: Wiki編集
355 356 label_wiki_edit_plural: Wiki編集
356 357 label_wiki_page: Wiki page
357 358 label_wiki_page_plural: Wikiページ
358 359 label_page_index: 索引
359 360 label_current_version: 最新版
360 361 label_preview: プレビュー
361 362 label_feed_plural: フィード
362 363 label_changes_details: 全変更の詳細
363 364 label_issue_tracking: 問題トラッキング
364 365 label_spent_time: 経過時間
365 366 label_f_hour: %.2f 時間
366 367 label_f_hour_plural: %.2f 時間
367 368 label_time_tracking: 時間トラッキング
368 369 label_change_plural: 変更
369 370 label_statistics: 統計
370 371 label_commits_per_month: 月別のコミット
371 372 label_commits_per_author: 起票者別のコミット
372 373 label_view_diff: 差分を見る
373 374 label_diff_inline: インライン
374 375 label_diff_side_by_side: 横に並べる
375 376 label_options: オプション
376 377 label_copy_workflow_from: ワークフローをここからコピー
377 378 label_permissions_report: 権限レポート
378 379 label_watched_issues: ウォッチ中の問題
379 380 label_related_issues: 関連する問題
380 381 label_applied_status: 適用されたステータス
381 382 label_loading: ロード中...
382 383 label_relation_new: 新しい関連
383 384 label_relation_delete: 関連の削除
384 385 label_relates_to: 関係している
385 386 label_duplicates: 重複している
386 387 label_blocks: ブロックしている
387 388 label_blocked_by: ブロックされている
388 389 label_precedes: 先行する
389 390 label_follows: 後続する
390 391 label_end_to_start: start to end
391 392 label_end_to_end: end to end
392 393 label_start_to_start: start to start
393 394 label_start_to_end: start to end
394 395 label_stay_logged_in: ログインを維持
395 396 label_disabled: 無効
396 397 label_show_completed_versions: 完了したバージョンを表示
397 398 label_me: 自分
398 399 label_board: フォーラム
399 400 label_board_new: 新しいフォーラム
400 401 label_board_plural: フォーラム
401 402 label_topic_plural: トピック
402 403 label_message_plural: メッセージ
403 404 label_message_last: 最新のメッセージ
404 405 label_message_new: 新しいメッセージ
405 406 label_reply_plural: 返答
406 407 label_send_information: アカウント情報をユーザに送信
407 408 label_year: Year
408 409 label_month: Month
409 410 label_week: Week
410 411 label_date_from: From
411 412 label_date_to: To
412 413 label_language_based: Language based
413 414 label_sort_by: Sort by "%s"
414 415 label_send_test_email: Send a test email
416 label_feeds_access_key_created_on: RSS access key created %s ago
415 417
416 418 button_login: ログイン
417 419 button_submit: 変更
418 420 button_save: 保存
419 421 button_check_all: チェックを全部つける
420 422 button_uncheck_all: チェックを全部外す
421 423 button_delete: 削除
422 424 button_create: 作成
423 425 button_test: テスト
424 426 button_edit: 編集
425 427 button_add: 追加
426 428 button_change: 変更
427 429 button_apply: 適用
428 430 button_clear: クリア
429 431 button_lock: ロック
430 432 button_unlock: アンロック
431 433 button_download: ダウンロード
432 434 button_list: 一覧
433 435 button_view: 見る
434 436 button_move: 移動
435 437 button_back: 戻る
436 438 button_cancel: キャンセル
437 439 button_activate: 有効にする
438 440 button_sort: ソート
439 441 button_log_time: 時間を記録
440 442 button_rollback: このバージョンにロールバック
441 443 button_watch: ウォッチ
442 444 button_unwatch: ウォッチをやめる
443 445 button_reply: 返答
444 446 button_archive: 書庫に保存
445 447 button_unarchive: 書庫から戻す
448 button_reset: Reset
446 449
447 450 status_active: 有効
448 451 status_registered: 登録
449 452 status_locked: ロック
450 453
451 454 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
452 455 text_regexp_info: 例) ^[A-Z0-9]+$
453 456 text_min_max_length_info: 0だと無制限になります
454 457 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
455 458 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
456 459 text_are_you_sure: 本当に?
457 460 text_journal_changed: %sから%sに変更
458 461 text_journal_set_to: %sにセット
459 462 text_journal_deleted: 削除
460 463 text_tip_task_begin_day: この日に開始するタスク
461 464 text_tip_task_end_day: この日に終了するタスク
462 465 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
463 466 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
464 467 text_caracters_maximum: 最大 %d 文字です。
465 468 text_length_between: 長さは %d から %d 文字までです。
466 469 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
467 470 text_unallowed_characters: 使えない文字です
468 471 text_comma_separated: (カンマで区切った)複数の値が使えます
469 472 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
470 473
471 474 default_role_manager: 管理者
472 475 default_role_developper: 開発者
473 476 default_role_reporter: 報告者
474 477 default_tracker_bug: バグ
475 478 default_tracker_feature: 機能
476 479 default_tracker_support: サポート
477 480 default_issue_status_new: 新規
478 481 default_issue_status_assigned: 担当
479 482 default_issue_status_resolved: 解決
480 483 default_issue_status_feedback: フィードバック
481 484 default_issue_status_closed: 終了
482 485 default_issue_status_rejected: 却下
483 486 default_doc_category_user: ユーザ文書
484 487 default_doc_category_tech: 技術文書
485 488 default_priority_low: 低め
486 489 default_priority_normal: 通常
487 490 default_priority_high: 高め
488 491 default_priority_urgent: 急いで
489 492 default_priority_immediate: 今すぐ
490 493 default_activity_design: デザイン作業
491 494 default_activity_development: 開発作業
492 495
493 496 enumeration_issue_priorities: 問題の優先度
494 497 enumeration_doc_categories: 文書カテゴリ
495 498 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,494 +1,497
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
55 55 notice_account_updated: Account is met succes gewijzigd
56 56 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
57 57 notice_account_password_updated: Wachtwoord is met succes gewijzigd
58 58 notice_account_wrong_password: Incorrect wachtwoord
59 59 notice_account_register_done: Account is met succes aangemaakt.
60 60 notice_account_unknown_email: Onbekende gebruiker.
61 61 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
62 62 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
63 63 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
64 64 notice_successful_create: Maken succesvol.
65 65 notice_successful_update: Wijzigen succesvol.
66 66 notice_successful_delete: Verwijderen succesvol.
67 67 notice_successful_connection: Verbinding succesvol.
68 68 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
69 69 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
70 70 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Uw redMine wachtwoord
76 77 mail_subject_register: redMine account activatie
77 78
78 79 gui_validation_error: 1 fout
79 80 gui_validation_error_plural: %d fouten
80 81
81 82 field_name: Naam
82 83 field_description: Beschrijving
83 84 field_summary: Samenvatting
84 85 field_is_required: Verplicht
85 86 field_firstname: Voornaam
86 87 field_lastname: Achternaam
87 88 field_mail: Email
88 89 field_filename: Bestand
89 90 field_filesize: Grootte
90 91 field_downloads: Downloads
91 92 field_author: Auteur
92 93 field_created_on: Aangemaakt
93 94 field_updated_on: Gewijzigd
94 95 field_field_format: Formaat
95 96 field_is_for_all: Voor alle projecten
96 97 field_possible_values: Mogelijke waarden
97 98 field_regexp: Reguliere expressie
98 99 field_min_length: Minimale lengte
99 100 field_max_length: Maximale lengte
100 101 field_value: Waarde
101 102 field_category: Categorie
102 103 field_title: Titel
103 104 field_project: Project
104 105 field_issue: Issue
105 106 field_status: Status
106 107 field_notes: Notities
107 108 field_is_closed: Issue gesloten
108 109 field_is_default: Default status
109 110 field_html_color: Kleur
110 111 field_tracker: Tracker
111 112 field_subject: Onderwerp
112 113 field_due_date: Verwachte datum gereed
113 114 field_assigned_to: Toegewezen aan
114 115 field_priority: Prioriteit
115 116 field_fixed_version: Opgeloste versie
116 117 field_user: Gebruiker
117 118 field_role: Rol
118 119 field_homepage: Homepage
119 120 field_is_public: Publiek
120 121 field_parent: Subproject van
121 122 field_is_in_chlog: Issues weergegeven in wijzigingslog
122 123 field_is_in_roadmap: Issues weergegeven in roadmap
123 124 field_login: Inloggen
124 125 field_mail_notification: Mail mededelingen
125 126 field_admin: Administrateur
126 127 field_last_login_on: Laatste bezoek
127 128 field_language: Taal
128 129 field_effective_date: Datum
129 130 field_password: Wachtwoord
130 131 field_new_password: Nieuw wachtwoord
131 132 field_password_confirmation: Bevestigen
132 133 field_version: Versie
133 134 field_type: Type
134 135 field_host: Host
135 136 field_port: Port
136 137 field_account: Account
137 138 field_base_dn: Base DN
138 139 field_attr_login: Login attribuut
139 140 field_attr_firstname: Voornaam attribuut
140 141 field_attr_lastname: Achternaam attribuut
141 142 field_attr_mail: Email attribuut
142 143 field_onthefly: On-the-fly aanmaken van een gebruiker
143 144 field_start_date: Start
144 145 field_done_ratio: %% Gereed
145 146 field_auth_source: Authenticatiemethode
146 147 field_hide_mail: Verberg mijn emailadres
147 148 field_comments: Commentaar
148 149 field_url: URL
149 150 field_start_page: Startpagina
150 151 field_subproject: Subproject
151 152 field_hours: Uren
152 153 field_activity: Activiteit
153 154 field_spent_on: Datum
154 155 field_identifier: Identificatiecode
155 156 field_is_filter: Gebruikt als een filter
156 157 field_issue_to_id: Gerelateerd issue
157 158 field_delay: Vertraging
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Applicatie titel
161 162 setting_app_subtitle: Applicatie ondertitel
162 163 setting_welcome_text: Welkomsttekst
163 164 setting_default_language: Default taal
164 165 setting_login_required: Authent. nodig
165 166 setting_self_registration: Zelf-registratie toegestaan
166 167 setting_attachment_max_size: Attachment max. grootte
167 168 setting_issues_export_limit: Limiet export issues
168 169 setting_mail_from: Afzender mail adres
169 170 setting_host_name: Host naam
170 171 setting_text_formatting: Tekst formaat
171 172 setting_wiki_compression: Wiki geschiedenis comprimeren
172 173 setting_feeds_limit: Feed inhoud limiet
173 174 setting_autofetch_changesets: Haal commits automatisch op
174 175 setting_sys_api_enabled: Gebruik WS voor repository beheer
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Gebruiker
182 183 label_user_plural: Gebruikers
183 184 label_user_new: Nieuwe gebruiker
184 185 label_project: Project
185 186 label_project_new: Nieuw project
186 187 label_project_plural: Projecten
187 188 label_project_all: Alle Projecten
188 189 label_project_latest: Nieuwste projecten
189 190 label_issue: Issue
190 191 label_issue_new: Nieuw issue
191 192 label_issue_plural: Issues
192 193 label_issue_view_all: Bekijk alle issues
193 194 label_document: Document
194 195 label_document_new: Nieuw document
195 196 label_document_plural: Documenten
196 197 label_role: Rol
197 198 label_role_plural: Rollen
198 199 label_role_new: Nieuwe rol
199 200 label_role_and_permissions: Rollen en permissies
200 201 label_member: Lid
201 202 label_member_new: Nieuw lid
202 203 label_member_plural: Leden
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Trackers
205 206 label_tracker_new: Nieuwe tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Issue status
208 209 label_issue_status_plural: Issue statussen
209 210 label_issue_status_new: Nieuwe status
210 211 label_issue_category: Issue categorie
211 212 label_issue_category_plural: Issue categorieën
212 213 label_issue_category_new: Nieuwe categorie
213 214 label_custom_field: Custom veld
214 215 label_custom_field_plural: Custom velden
215 216 label_custom_field_new: Nieuw custom veld
216 217 label_enumerations: Enumeraties
217 218 label_enumeration_new: Nieuwe waarde
218 219 label_information: Informatie
219 220 label_information_plural: Informatie
220 221 label_please_login: Gaarne inloggen
221 222 label_register: Registreer
222 223 label_password_lost: Wachtwoord verloren
223 224 label_home: Home
224 225 label_my_page: Mijn pagina
225 226 label_my_account: Mijn account
226 227 label_my_projects: Mijn projecten
227 228 label_administration: Administratie
228 229 label_login: Inloggen
229 230 label_logout: Uitloggen
230 231 label_help: Help
231 232 label_reported_issues: Gemelde issues
232 233 label_assigned_to_me_issues: Aan mij toegewezen issues
233 234 label_last_login: Laatste bezoek
234 235 label_last_updates: Laatste wijziging
235 236 label_last_updates_plural: %d laatste wijziging
236 237 label_registered_on: Geregistreerd op
237 238 label_activity: Activiteit
238 239 label_new: Nieuw
239 240 label_logged_as: Ingelogd als
240 241 label_environment: Omgeving
241 242 label_authentication: Authenticatie
242 243 label_auth_source: Authenticatie modus
243 244 label_auth_source_new: Nieuwe authenticatie modus
244 245 label_auth_source_plural: Authenticatie modi
245 246 label_subproject_plural: Subprojecten
246 247 label_min_max_length: Min - Max lengte
247 248 label_list: Lijst
248 249 label_date: Datum
249 250 label_integer: Integer
250 251 label_boolean: Boolean
251 252 label_string: Tekst
252 253 label_text: Lange tekst
253 254 label_attribute: Attribuut
254 255 label_attribute_plural: Attributen
255 256 label_download: %d Download
256 257 label_download_plural: %d Downloads
257 258 label_no_data: Geen gegevens om te tonen
258 259 label_change_status: Wijzig status
259 260 label_history: Geschiedenis
260 261 label_attachment: Bestand
261 262 label_attachment_new: Nieuw bestand
262 263 label_attachment_delete: Verwijder bestand
263 264 label_attachment_plural: Bestanden
264 265 label_report: Rapport
265 266 label_report_plural: Rapporten
266 267 label_news: Nieuws
267 268 label_news_new: Voeg nieuws toe
268 269 label_news_plural: Nieuws
269 270 label_news_latest: Laatste nieuws
270 271 label_news_view_all: Bekijk al het nieuws
271 272 label_change_log: Wijzigingslog
272 273 label_settings: Instellingen
273 274 label_overview: Overzicht
274 275 label_version: Versie
275 276 label_version_new: Nieuwe versie
276 277 label_version_plural: Versies
277 278 label_confirmation: Bevestiging
278 279 label_export_to: Exporteer naar
279 280 label_read: Lees...
280 281 label_public_projects: Publieke projecten
281 282 label_open_issues: open
282 283 label_open_issues_plural: open
283 284 label_closed_issues: gesloten
284 285 label_closed_issues_plural: gesloten
285 286 label_total: Totaal
286 287 label_permissions: Permissies
287 288 label_current_status: Huidige status
288 289 label_new_statuses_allowed: Nieuwe statuses toegestaan
289 290 label_all: alle
290 291 label_none: geen
291 292 label_next: Volgende
292 293 label_previous: Vorige
293 294 label_used_by: Gebruikt door
294 295 label_details: Details
295 296 label_add_note: Voeg een notitie toe
296 297 label_per_page: Per pagina
297 298 label_calendar: Kalender
298 299 label_months_from: maanden vanaf
299 300 label_gantt: Gantt
300 301 label_internal: Intern
301 302 label_last_changes: laatste %d wijzigingen
302 303 label_change_view_all: Bekijk alle wijzigingen
303 304 label_personalize_page: Personaliseer deze pagina
304 305 label_comment: Commentaar
305 306 label_comment_plural: Commentaar
306 307 label_comment_add: Voeg commentaar toe
307 308 label_comment_added: Commentaar toegevoegd
308 309 label_comment_delete: Verwijder commentaar
309 310 label_query: Eigen zoekvraag
310 311 label_query_plural: Eigen zoekvragen
311 312 label_query_new: Nieuwe zoekvraag
312 313 label_filter_add: Voeg filter toe
313 314 label_filter_plural: Filters
314 315 label_equals: is gelijk
315 316 label_not_equals: is niet gelijk
316 317 label_in_less_than: in minder dan
317 318 label_in_more_than: in meer dan
318 319 label_in: in
319 320 label_today: vandaag
320 321 label_less_than_ago: minder dan dagen geleden
321 322 label_more_than_ago: meer dan dagen geleden
322 323 label_ago: dagen geleden
323 324 label_contains: bevat
324 325 label_not_contains: bevat niet
325 326 label_day_plural: dagen
326 327 label_repository: Repository
327 328 label_browse: Blader
328 329 label_modification: %d wijziging
329 330 label_modification_plural: %d wijzigingen
330 331 label_revision: Revisie
331 332 label_revision_plural: Revisies
332 333 label_added: toegevoegd
333 334 label_modified: gewijzigd
334 335 label_deleted: verwijderd
335 336 label_latest_revision: Meest recente revisie
336 337 label_latest_revision_plural: Meest recente revisies
337 338 label_view_revisions: Bekijk revisies
338 339 label_max_size: Maximum grootte
339 340 label_on: 'van'
340 341 label_sort_highest: Verplaats naar begin
341 342 label_sort_higher: Verplaats naar boven
342 343 label_sort_lower: Verplaats naar beneden
343 344 label_sort_lowest: Verplaats naar eind
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Due in
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Geen issues voor deze versie
348 349 label_search: Zoeken
349 350 label_result: %d resultaat
350 351 label_result_plural: %d resultaten
351 352 label_all_words: Alle woorden
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki edit
354 355 label_wiki_edit_plural: Wiki edits
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Index
358 359 label_current_version: Huidige versie
359 360 label_preview: Testweergave
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Details van alle wijzigingen
362 363 label_issue_tracking: Issue tracking
363 364 label_spent_time: Gespendeerde tijd
364 365 label_f_hour: %.2f uur
365 366 label_f_hour_plural: %.2f uren
366 367 label_time_tracking: Tijd tracking
367 368 label_change_plural: Wijzigingen
368 369 label_statistics: Statistieken
369 370 label_commits_per_month: Commits per maand
370 371 label_commits_per_author: Commits per auteur
371 372 label_view_diff: Bekijk verschillen
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: naast elkaar
374 375 label_options: Opties
375 376 label_copy_workflow_from: Kopieer workflow van
376 377 label_permissions_report: Permissies rapport
377 378 label_watched_issues: Gemonitorde issues
378 379 label_related_issues: Gerelateerde issues
379 380 label_applied_status: Toegekende status
380 381 label_loading: Laden...
381 382 label_relation_new: Nieuwe relatie
382 383 label_relation_delete: Verwijder relatie
383 384 label_relates_to: gerelateerd aan
384 385 label_duplicates: dupliceert
385 386 label_blocks: blokkeert
386 387 label_blocked_by: geblokkeerd door
387 388 label_precedes: gaat vooraf aan
388 389 label_follows: volgt op
389 390 label_end_to_start: eind tot start
390 391 label_end_to_end: eind tot eind
391 392 label_start_to_start: start tot start
392 393 label_start_to_end: start tot eind
393 394 label_stay_logged_in: Blijf ingelogd
394 395 label_disabled: uitgeschakeld
395 396 label_show_completed_versions: Toon afgeronde versies
396 397 label_me: ik
397 398 label_board: Forum
398 399 label_board_new: Nieuw forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Onderwerpen
401 402 label_message_plural: Berichten
402 403 label_message_last: Laatste bericht
403 404 label_message_new: Nieuw bericht
404 405 label_reply_plural: Antwoorden
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Inloggen
416 418 button_submit: Toevoegen
417 419 button_save: Bewaren
418 420 button_check_all: Selecteer alle
419 421 button_uncheck_all: Deselecteer alle
420 422 button_delete: Verwijder
421 423 button_create: Maak
422 424 button_test: Test
423 425 button_edit: Bewerk
424 426 button_add: Voeg toe
425 427 button_change: Wijzig
426 428 button_apply: Pas toe
427 429 button_clear: Leeg maken
428 430 button_lock: Lock
429 431 button_unlock: Unlock
430 432 button_download: Download
431 433 button_list: Lijst
432 434 button_view: Bekijken
433 435 button_move: Verplaatsen
434 436 button_back: Terug
435 437 button_cancel: Annuleer
436 438 button_activate: Activeer
437 439 button_sort: Sorteer
438 440 button_log_time: Log tijd
439 441 button_rollback: Rollback naar deze versie
440 442 button_watch: Monitor
441 443 button_unwatch: Niet meer monitoren
442 444 button_reply: Antwoord
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: Actief
447 450 status_registered: geregistreerd
448 451 status_locked: gelockt
449 452
450 453 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
451 454 text_regexp_info: bv. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 betekent geen restrictie
453 456 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
454 457 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
455 458 text_are_you_sure: Weet U het zeker ?
456 459 text_journal_changed: gewijzigd van %s naar %s
457 460 text_journal_set_to: ingesteld op %s
458 461 text_journal_deleted: verwijderd
459 462 text_tip_task_begin_day: taak die op deze dag begint
460 463 text_tip_task_end_day: taak die op deze dag eindigt
461 464 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
462 465 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
463 466 text_caracters_maximum: %d van maximum aantal tekens.
464 467 text_length_between: Lengte tussen %d en %d tekens.
465 468 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
466 469 text_unallowed_characters: Niet toegestane tekens
467 470 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
468 471 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
469 472
470 473 default_role_manager: Manager
471 474 default_role_developper: Ontwikkelaar
472 475 default_role_reporter: Rapporteur
473 476 default_tracker_bug: Bug
474 477 default_tracker_feature: Feature
475 478 default_tracker_support: Support
476 479 default_issue_status_new: Nieuw
477 480 default_issue_status_assigned: Toegewezen
478 481 default_issue_status_resolved: Opgelost
479 482 default_issue_status_feedback: Terugkoppeling
480 483 default_issue_status_closed: Gesloten
481 484 default_issue_status_rejected: Afgewezen
482 485 default_doc_category_user: Gebruikersdocumentatie
483 486 default_doc_category_tech: Technische documentatie
484 487 default_priority_low: Laag
485 488 default_priority_normal: Normaal
486 489 default_priority_high: Hoog
487 490 default_priority_urgent: Spoed
488 491 default_priority_immediate: Onmiddellijk
489 492 default_activity_design: Design
490 493 default_activity_development: Development
491 494
492 495 enumeration_issue_priorities: Issue prioriteiten
493 496 enumeration_doc_categories: Document categorieën
494 497 enumeration_activities: Activiteiten (tijd tracking)
@@ -1,494 +1,497
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
55 55 notice_account_updated: Conta foi alterada com sucesso.
56 56 notice_account_invalid_creditentials: Usuario ou senha invalido.
57 57 notice_account_password_updated: Senha foi alterada com sucesso.
58 58 notice_account_wrong_password: Senha errada.
59 59 notice_account_register_done: Conta foi criada com sucesso.
60 60 notice_account_unknown_email: Usuario desconhecido.
61 61 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 62 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 63 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 64 notice_successful_create: Criado com sucesso.
65 65 notice_successful_update: Alterado com sucesso.
66 66 notice_successful_delete: Apagado com sucesso.
67 67 notice_successful_connection: Conectado com sucesso.
68 68 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 69 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 70 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Sua senha do redMine.
76 77 mail_subject_register: Ativacao de conta do redMine.
77 78
78 79 gui_validation_error: 1 erro
79 80 gui_validation_error_plural: %d erros
80 81
81 82 field_name: Nome
82 83 field_description: Descricao
83 84 field_summary: Sumario
84 85 field_is_required: Obrigatorio
85 86 field_firstname: Primeiro nome
86 87 field_lastname: Ultimo nome
87 88 field_mail: Email
88 89 field_filename: Arquivo
89 90 field_filesize: Tamanho
90 91 field_downloads: Downloads
91 92 field_author: Autor
92 93 field_created_on: Criado
93 94 field_updated_on: Alterado
94 95 field_field_format: Formato
95 96 field_is_for_all: Para todos os projetos
96 97 field_possible_values: Possiveis valores
97 98 field_regexp: Expressao regular
98 99 field_min_length: Tamanho minimo
99 100 field_max_length: Tamanho maximo
100 101 field_value: Valor
101 102 field_category: Categoria
102 103 field_title: Titulo
103 104 field_project: Projeto
104 105 field_issue: Tarefa
105 106 field_status: Status
106 107 field_notes: Notas
107 108 field_is_closed: Tarefa fechada
108 109 field_is_default: Status padrao
109 110 field_html_color: Cor
110 111 field_tracker: Tipo
111 112 field_subject: Titulo
112 113 field_due_date: Data devida
113 114 field_assigned_to: Atribuido para
114 115 field_priority: Prioridade
115 116 field_fixed_version: Versao corrigida
116 117 field_user: Usuario
117 118 field_role: Regra
118 119 field_homepage: Pagina inicial
119 120 field_is_public: Publico
120 121 field_parent: Sub-projeto de
121 122 field_is_in_chlog: Tarefas mostradas no changelog
122 123 field_is_in_roadmap: Tarefas mostradas no roadmap
123 124 field_login: Login
124 125 field_mail_notification: Notificacoes por email
125 126 field_admin: Administrador
126 127 field_last_login_on: Ultima conexao
127 128 field_language: Lingua
128 129 field_effective_date: Data
129 130 field_password: Senha
130 131 field_new_password: Nova senha
131 132 field_password_confirmation: Confirmacao
132 133 field_version: Versao
133 134 field_type: Tipo
134 135 field_host: Servidor
135 136 field_port: Porta
136 137 field_account: Conta
137 138 field_base_dn: Base DN
138 139 field_attr_login: Atributo login
139 140 field_attr_firstname: Atributo primeiro nome
140 141 field_attr_lastname: Atributo ultimo nome
141 142 field_attr_mail: Atributo email
142 143 field_onthefly: Criacao de usuario on-the-fly
143 144 field_start_date: Inicio
144 145 field_done_ratio: %% Terminado
145 146 field_auth_source: Modo de autenticacao
146 147 field_hide_mail: Esconder meu email
147 148 field_comments: Comentario
148 149 field_url: URL
149 150 field_start_page: Pagina inicial
150 151 field_subproject: Sub-projeto
151 152 field_hours: Horas
152 153 field_activity: Atividade
153 154 field_spent_on: Data
154 155 field_identifier: Identificador
155 156 field_is_filter: Used as a filter
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Titulo da aplicacao
161 162 setting_app_subtitle: Sub-titulo da aplicacao
162 163 setting_welcome_text: Texto de boa-vinda
163 164 setting_default_language: Lingua padrao
164 165 setting_login_required: Autenticacao obrigatoria
165 166 setting_self_registration: Registro de si mesmo permitido
166 167 setting_attachment_max_size: Tamanho maximo do anexo
167 168 setting_issues_export_limit: Limite de exportacao das tarefas
168 169 setting_mail_from: Email enviado de
169 170 setting_host_name: Servidor
170 171 setting_text_formatting: Formato do texto
171 172 setting_wiki_compression: Compactacao do historio do Wiki
172 173 setting_feeds_limit: Limite do Feed
173 174 setting_autofetch_changesets: Autofetch commits
174 175 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Usuario
182 183 label_user_plural: Usuarios
183 184 label_user_new: Novo usuario
184 185 label_project: Projeto
185 186 label_project_new: Novo projeto
186 187 label_project_plural: Projetos
187 188 label_project_all: All Projects
188 189 label_project_latest: Ultimos projetos
189 190 label_issue: Tarefa
190 191 label_issue_new: Nova tarefa
191 192 label_issue_plural: Tarefas
192 193 label_issue_view_all: Ver todas as tarefas
193 194 label_document: Documento
194 195 label_document_new: Novo documento
195 196 label_document_plural: Documentos
196 197 label_role: Regra
197 198 label_role_plural: Regras
198 199 label_role_new: Nova regra
199 200 label_role_and_permissions: Regras e permissoes
200 201 label_member: Membro
201 202 label_member_new: Novo membro
202 203 label_member_plural: Membros
203 204 label_tracker: Tipo
204 205 label_tracker_plural: Tipos
205 206 label_tracker_new: Novo tipo
206 207 label_workflow: Workflow
207 208 label_issue_status: Status da tarefa
208 209 label_issue_status_plural: Status das tarefas
209 210 label_issue_status_new: Novo status
210 211 label_issue_category: Categoria de tarefa
211 212 label_issue_category_plural: Categorias de tarefa
212 213 label_issue_category_new: Nova categoria
213 214 label_custom_field: Campo personalizado
214 215 label_custom_field_plural: Campos personalizado
215 216 label_custom_field_new: Novo campo personalizado
216 217 label_enumerations: Enumeracao
217 218 label_enumeration_new: Novo valor
218 219 label_information: Informacao
219 220 label_information_plural: Informacoes
220 221 label_please_login: Efetue login
221 222 label_register: Registre-se
222 223 label_password_lost: Perdi a senha
223 224 label_home: Pagina inicial
224 225 label_my_page: Minha pagina
225 226 label_my_account: Minha conta
226 227 label_my_projects: Meus projetos
227 228 label_administration: Administracao
228 229 label_login: Login
229 230 label_logout: Logout
230 231 label_help: Ajuda
231 232 label_reported_issues: Tarefas reportadas
232 233 label_assigned_to_me_issues: Tarefas atribuidas a mim
233 234 label_last_login: Utima conexao
234 235 label_last_updates: Ultima alteracao
235 236 label_last_updates_plural: %d Ultimas alteracoes
236 237 label_registered_on: Registrado em
237 238 label_activity: Atividade
238 239 label_new: Novo
239 240 label_logged_as: Logado como
240 241 label_environment: Ambiente
241 242 label_authentication: Autenticacao
242 243 label_auth_source: Modo de autenticacao
243 244 label_auth_source_new: Novo modo de autenticacao
244 245 label_auth_source_plural: Modos de autenticacao
245 246 label_subproject_plural: Sub-projetos
246 247 label_min_max_length: Tamanho min-max
247 248 label_list: Lista
248 249 label_date: Data
249 250 label_integer: Inteiro
250 251 label_boolean: Boleano
251 252 label_string: Texto
252 253 label_text: Texto longo
253 254 label_attribute: Atributo
254 255 label_attribute_plural: Atributos
255 256 label_download: %d Download
256 257 label_download_plural: %d Downloads
257 258 label_no_data: Sem dados para mostrar
258 259 label_change_status: Mudar status
259 260 label_history: Historico
260 261 label_attachment: Arquivo
261 262 label_attachment_new: Novo arquivo
262 263 label_attachment_delete: Apagar arquivo
263 264 label_attachment_plural: Arquivos
264 265 label_report: Relatorio
265 266 label_report_plural: Relatorio
266 267 label_news: Noticias
267 268 label_news_new: Adicionar noticias
268 269 label_news_plural: Noticias
269 270 label_news_latest: Ultimas noticias
270 271 label_news_view_all: Ver todas as noticias
271 272 label_change_log: Change log
272 273 label_settings: Ajustes
273 274 label_overview: Visao geral
274 275 label_version: Versao
275 276 label_version_new: Nova versao
276 277 label_version_plural: Versoes
277 278 label_confirmation: Confirmacao
278 279 label_export_to: Exportar para
279 280 label_read: Ler...
280 281 label_public_projects: Projetos publicos
281 282 label_open_issues: Aberto
282 283 label_open_issues_plural: Abertos
283 284 label_closed_issues: Fechado
284 285 label_closed_issues_plural: Fechados
285 286 label_total: Total
286 287 label_permissions: Permissoes
287 288 label_current_status: Status atual
288 289 label_new_statuses_allowed: Novo status permitido
289 290 label_all: todos
290 291 label_none: nenhum
291 292 label_next: Proximo
292 293 label_previous: Anterior
293 294 label_used_by: Usado por
294 295 label_details: Detalhes
295 296 label_add_note: Adicionar nota
296 297 label_per_page: Por pagina
297 298 label_calendar: Calendario
298 299 label_months_from: Meses de
299 300 label_gantt: Gantt
300 301 label_internal: Interno
301 302 label_last_changes: utlimas %d mudancas
302 303 label_change_view_all: Mostrar todas as mudancas
303 304 label_personalize_page: Personalizar esta pagina
304 305 label_comment: Comentario
305 306 label_comment_plural: Comentarios
306 307 label_comment_add: Adicionar comentario
307 308 label_comment_added: Comentario adicionado
308 309 label_comment_delete: Apagar comentario
309 310 label_query: Consulta personalizada
310 311 label_query_plural: Consultas personalizadas
311 312 label_query_new: Nova consulta
312 313 label_filter_add: Adicionar filtro
313 314 label_filter_plural: Filtros
314 315 label_equals: e
315 316 label_not_equals: nao e
316 317 label_in_less_than: e maior que
317 318 label_in_more_than: e menor que
318 319 label_in: em
319 320 label_today: hoje
320 321 label_less_than_ago: faz menos de
321 322 label_more_than_ago: faz mais de
322 323 label_ago: dias atras
323 324 label_contains: contem
324 325 label_not_contains: nao contem
325 326 label_day_plural: dias
326 327 label_repository: Repository
327 328 label_browse: Browse
328 329 label_modification: %d change
329 330 label_modification_plural: %d changes
330 331 label_revision: Revision
331 332 label_revision_plural: Revisions
332 333 label_added: added
333 334 label_modified: modified
334 335 label_deleted: deleted
335 336 label_latest_revision: Latest revision
336 337 label_latest_revision_plural: Latest revisions
337 338 label_view_revisions: View revisions
338 339 label_max_size: Maximum size
339 340 label_on: 'em'
340 341 label_sort_highest: Mover para o inicio
341 342 label_sort_higher: Mover para cima
342 343 label_sort_lower: Mover para baixo
343 344 label_sort_lowest: Mover para o fim
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Due in
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Sem tarefas para essa versao
348 349 label_search: Busca
349 350 label_result: %d resultado
350 351 label_result_plural: %d resultados
351 352 label_all_words: Todas as palavras
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki edit
354 355 label_wiki_edit_plural: Wiki edits
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Index
358 359 label_current_version: Versao atual
359 360 label_preview: Previa
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Detalhes de todas as mudancas
362 363 label_issue_tracking: Tarefas
363 364 label_spent_time: Tempo gasto
364 365 label_f_hour: %.2f hora
365 366 label_f_hour_plural: %.2f horas
366 367 label_time_tracking: Tempo trabalhado
367 368 label_change_plural: Mudancas
368 369 label_statistics: Estatisticas
369 370 label_commits_per_month: Commits por mes
370 371 label_commits_per_author: Commits por autor
371 372 label_view_diff: Ver diferencas
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: side by side
374 375 label_options: Opcoes
375 376 label_copy_workflow_from: Copiar workflow de
376 377 label_permissions_report: Relatorio de permissoes
377 378 label_watched_issues: Watched issues
378 379 label_related_issues: Related issues
379 380 label_applied_status: Applied status
380 381 label_loading: Loading...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Login
416 418 button_submit: Enviar
417 419 button_save: Salvar
418 420 button_check_all: Marcar todos
419 421 button_uncheck_all: Desmarcar todos
420 422 button_delete: Apagar
421 423 button_create: Criar
422 424 button_test: Testar
423 425 button_edit: Editar
424 426 button_add: Adicionar
425 427 button_change: Mudar
426 428 button_apply: Aplicar
427 429 button_clear: Limpar
428 430 button_lock: Bloquear
429 431 button_unlock: Desbloquear
430 432 button_download: Download
431 433 button_list: Listar
432 434 button_view: Ver
433 435 button_move: Mover
434 436 button_back: Voltar
435 437 button_cancel: Cancelar
436 438 button_activate: Ativar
437 439 button_sort: Ordenar
438 440 button_log_time: Tempo de trabalho
439 441 button_rollback: Voltar para esta versao
440 442 button_watch: Watch
441 443 button_unwatch: Unwatch
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: ativo
447 450 status_registered: registrado
448 451 status_locked: bloqueado
449 452
450 453 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
451 454 text_regexp_info: eg. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 siginifica sem restricao
453 456 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
454 457 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
455 458 text_are_you_sure: Voce tem certeza ?
456 459 text_journal_changed: alterado de %s para %s
457 460 text_journal_set_to: setar para %s
458 461 text_journal_deleted: apagado
459 462 text_tip_task_begin_day: tarefa comeca neste dia
460 463 text_tip_task_end_day: tarefa termina neste dia
461 464 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
462 465 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
463 466 text_caracters_maximum: %d maximo de caracteres
464 467 text_length_between: Tamanho entre %d e %d caracteres.
465 468 text_tracker_no_workflow: Sem workflow definido para este tipo.
466 469 text_unallowed_characters: Unallowed characters
467 470 text_comma_separated: Multiple values allowed (comma separated).
468 471 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
469 472
470 473 default_role_manager: Analista de Negocio ou Gerente de Projeto
471 474 default_role_developper: Desenvolvedor
472 475 default_role_reporter: Analista de Suporte
473 476 default_tracker_bug: Bug
474 477 default_tracker_feature: Implementacao
475 478 default_tracker_support: Suporte
476 479 default_issue_status_new: Novo
477 480 default_issue_status_assigned: Atribuido
478 481 default_issue_status_resolved: Resolvido
479 482 default_issue_status_feedback: Feedback
480 483 default_issue_status_closed: Fechado
481 484 default_issue_status_rejected: Rejeitado
482 485 default_doc_category_user: Documentacao do usuario
483 486 default_doc_category_tech: Documentacao do tecnica
484 487 default_priority_low: Baixo
485 488 default_priority_normal: Normal
486 489 default_priority_high: Alto
487 490 default_priority_urgent: Urgente
488 491 default_priority_immediate: Imediato
489 492 default_activity_design: Design
490 493 default_activity_development: Desenvolvimento
491 494
492 495 enumeration_issue_priorities: Prioridade das tarefas
493 496 enumeration_doc_categories: Categorias de documento
494 497 enumeration_activities: Atividades (time tracking)
@@ -1,494 +1,497
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
55 55 notice_account_updated: Conta foi atualizada com sucesso.
56 56 notice_account_invalid_creditentials: Usuário ou senha inválidos.
57 57 notice_account_password_updated: Senha foi alterada com sucesso.
58 58 notice_account_wrong_password: Senha errada.
59 59 notice_account_register_done: Conta foi criada com sucesso.
60 60 notice_account_unknown_email: Usuário desconhecido.
61 61 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
62 62 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
63 63 notice_account_activated: Sua conta foi ativada. Você pode logar agora
64 64 notice_successful_create: Criado com sucesso.
65 65 notice_successful_update: Alterado com sucesso.
66 66 notice_successful_delete: Apagado com sucesso.
67 67 notice_successful_connection: Conectado com sucesso.
68 68 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
69 69 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
70 70 notice_scm_error: A entrada e/ou a revisão não existem no repositó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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Sua senha do redMine.
76 77 mail_subject_register: Ativação de conta do redMine.
77 78
78 79 gui_validation_error: 1 erro
79 80 gui_validation_error_plural: %d erros
80 81
81 82 field_name: Nome
82 83 field_description: Descrição
83 84 field_summary: Sumário
84 85 field_is_required: Obrigatório
85 86 field_firstname: Primeiro nome
86 87 field_lastname: Último nome
87 88 field_mail: Email
88 89 field_filename: Arquivo
89 90 field_filesize: Tamanho
90 91 field_downloads: Downloads
91 92 field_author: Autor
92 93 field_created_on: Criado
93 94 field_updated_on: Alterado
94 95 field_field_format: Formato
95 96 field_is_for_all: Para todos os projetos
96 97 field_possible_values: Possíveis valores
97 98 field_regexp: Expressão regular
98 99 field_min_length: Tamanho mínimo
99 100 field_max_length: Tamanho máximo
100 101 field_value: Valor
101 102 field_category: Categoria
102 103 field_title: Título
103 104 field_project: Projeto
104 105 field_issue: Tarefa
105 106 field_status: Status
106 107 field_notes: Notas
107 108 field_is_closed: Tarefa fechada
108 109 field_is_default: Status padrão
109 110 field_html_color: Cor
110 111 field_tracker: Tipo
111 112 field_subject: Assunto
112 113 field_due_date: Data final
113 114 field_assigned_to: Atribuído para
114 115 field_priority: Prioridade
115 116 field_fixed_version: Versão corrigida
116 117 field_user: Usuário
117 118 field_role: Regra
118 119 field_homepage: Página inicial
119 120 field_is_public: Público
120 121 field_parent: Sub-projeto de
121 122 field_is_in_chlog: Tarefas mostradas no changelog
122 123 field_is_in_roadmap: Tarefas mostradas no roadmap
123 124 field_login: Login
124 125 field_mail_notification: Notificações por email
125 126 field_admin: Administrador
126 127 field_last_login_on: Última conexão
127 128 field_language: Língua
128 129 field_effective_date: Data
129 130 field_password: Senha
130 131 field_new_password: Nova senha
131 132 field_password_confirmation: Confirmação
132 133 field_version: Versão
133 134 field_type: Tipo
134 135 field_host: Servidor
135 136 field_port: Porta
136 137 field_account: Conta
137 138 field_base_dn: Base DN
138 139 field_attr_login: Atributo login
139 140 field_attr_firstname: Atributo primeiro nome
140 141 field_attr_lastname: Atributo último nome
141 142 field_attr_mail: Atributo email
142 143 field_onthefly: Criação de usuário sob-demanda
143 144 field_start_date: Início
144 145 field_done_ratio: %% Terminado
145 146 field_auth_source: Modo de autenticação
146 147 field_hide_mail: Esconda meu email
147 148 field_comments: Comentário
148 149 field_url: URL
149 150 field_start_page: Página inicial
150 151 field_subproject: Sub-projeto
151 152 field_hours: Horas
152 153 field_activity: Atividade
153 154 field_spent_on: Data
154 155 field_identifier: Identificador
155 156 field_is_filter: Usado como filtro
156 157 field_issue_to_id: Tarefa relacionada
157 158 field_delay: Atraso
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Título da aplicação
161 162 setting_app_subtitle: Sub-título da aplicação
162 163 setting_welcome_text: Texto de boas-vindas
163 164 setting_default_language: Linguagem padrão
164 165 setting_login_required: Autenticação obrigatória
165 166 setting_self_registration: Registro permitido
166 167 setting_attachment_max_size: Tamanho máximo do anexo
167 168 setting_issues_export_limit: Limite de exportação das tarefas
168 169 setting_mail_from: Email enviado de
169 170 setting_host_name: Servidor
170 171 setting_text_formatting: Formato do texto
171 172 setting_wiki_compression: Compactação do histórico do Wiki
172 173 setting_feeds_limit: Limite do Feed
173 174 setting_autofetch_changesets: Buscar automaticamente commits
174 175 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
175 176 setting_commit_ref_keywords: Palavras-chave de referôncia
176 177 setting_commit_fix_keywords: Palavras-chave fixas
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Usuário
182 183 label_user_plural: Usuários
183 184 label_user_new: Novo usuário
184 185 label_project: Projeto
185 186 label_project_new: Novo projeto
186 187 label_project_plural: Projetos
187 188 label_project_all: All Projects
188 189 label_project_latest: Últimos projetos
189 190 label_issue: Tarefa
190 191 label_issue_new: Nova tarefa
191 192 label_issue_plural: Tarefas
192 193 label_issue_view_all: Ver todas as tarefas
193 194 label_document: Documento
194 195 label_document_new: Novo documento
195 196 label_document_plural: Documentos
196 197 label_role: Regra
197 198 label_role_plural: Regras
198 199 label_role_new: Nova regra
199 200 label_role_and_permissions: Regras e permissões
200 201 label_member: Membro
201 202 label_member_new: Novo membro
202 203 label_member_plural: Membros
203 204 label_tracker: Tipo
204 205 label_tracker_plural: Tipos
205 206 label_tracker_new: Novo tipo
206 207 label_workflow: Workflow
207 208 label_issue_status: Status da tarefa
208 209 label_issue_status_plural: Status das tarefas
209 210 label_issue_status_new: Novo status
210 211 label_issue_category: Categoria da tarefa
211 212 label_issue_category_plural: Categorias das tarefas
212 213 label_issue_category_new: Nova categoria
213 214 label_custom_field: Campo personalizado
214 215 label_custom_field_plural: Campos personalizados
215 216 label_custom_field_new: Novo campo personalizado
216 217 label_enumerations: Enumeração
217 218 label_enumeration_new: Novo valor
218 219 label_information: Informação
219 220 label_information_plural: Informações
220 221 label_please_login: Efetue login
221 222 label_register: Registre-se
222 223 label_password_lost: Perdi a senha
223 224 label_home: Página inicial
224 225 label_my_page: Minha página
225 226 label_my_account: Minha conta
226 227 label_my_projects: Meus projetos
227 228 label_administration: Administração
228 229 label_login: Login
229 230 label_logout: Logout
230 231 label_help: Ajuda
231 232 label_reported_issues: Tarefas reportadas
232 233 label_assigned_to_me_issues: Tarefas atribuídas à mim
233 234 label_last_login: Útima conexão
234 235 label_last_updates: Última alteração
235 236 label_last_updates_plural: %d Últimas alterações
236 237 label_registered_on: Registrado em
237 238 label_activity: Atividade
238 239 label_new: Novo
239 240 label_logged_as: Logado como
240 241 label_environment: Ambiente
241 242 label_authentication: Autenticação
242 243 label_auth_source: Modo de autenticação
243 244 label_auth_source_new: Novo modo de autenticação
244 245 label_auth_source_plural: Modos de autenticação
245 246 label_subproject_plural: Sub-projetos
246 247 label_min_max_length: Tamanho min-max
247 248 label_list: Lista
248 249 label_date: Data
249 250 label_integer: Inteiro
250 251 label_boolean: Booleano
251 252 label_string: Texto
252 253 label_text: Texto longo
253 254 label_attribute: Atributo
254 255 label_attribute_plural: Atributos
255 256 label_download: %d Download
256 257 label_download_plural: %d Downloads
257 258 label_no_data: Sem dados para mostrar
258 259 label_change_status: Mudar status
259 260 label_history: Histórico
260 261 label_attachment: Arquivo
261 262 label_attachment_new: Novo arquivo
262 263 label_attachment_delete: Apagar arquivo
263 264 label_attachment_plural: Arquivos
264 265 label_report: Relatório
265 266 label_report_plural: Relatório
266 267 label_news: Notícias
267 268 label_news_new: Adicionar notícias
268 269 label_news_plural: Notícias
269 270 label_news_latest: Últimas notícias
270 271 label_news_view_all: Ver todas as notícias
271 272 label_change_log: Log de mudanças
272 273 label_settings: Configurações
273 274 label_overview: Visão geral
274 275 label_version: Versão
275 276 label_version_new: Nova versão
276 277 label_version_plural: Versões
277 278 label_confirmation: Confirmação
278 279 label_export_to: Exportar para
279 280 label_read: Ler...
280 281 label_public_projects: Projetos públicos
281 282 label_open_issues: Aberto
282 283 label_open_issues_plural: Abertos
283 284 label_closed_issues: Fechado
284 285 label_closed_issues_plural: Fechados
285 286 label_total: Total
286 287 label_permissions: Permissões
287 288 label_current_status: Status atual
288 289 label_new_statuses_allowed: Novo status permitido
289 290 label_all: todos
290 291 label_none: nenhum
291 292 label_next: Próximo
292 293 label_previous: Anterior
293 294 label_used_by: Usado por
294 295 label_details: Detalhes
295 296 label_add_note: Adicionar nota
296 297 label_per_page: Por página
297 298 label_calendar: Calendário
298 299 label_months_from: Meses de
299 300 label_gantt: Gantt
300 301 label_internal: Interno
301 302 label_last_changes: últimas %d mudanças
302 303 label_change_view_all: Mostrar todas as mudanças
303 304 label_personalize_page: Personalizar esta página
304 305 label_comment: Comentário
305 306 label_comment_plural: Comentários
306 307 label_comment_add: Adicionar comentário
307 308 label_comment_added: Comentário adicionado
308 309 label_comment_delete: Apagar comentário
309 310 label_query: Consulta personalizada
310 311 label_query_plural: Consultas personalizadas
311 312 label_query_new: Nova consulta
312 313 label_filter_add: Adicionar filtro
313 314 label_filter_plural: Filtros
314 315 label_equals: é
315 316 label_not_equals: não e
316 317 label_in_less_than: é maior que
317 318 label_in_more_than: é menor que
318 319 label_in: em
319 320 label_today: hoje
320 321 label_less_than_ago: faz menos de
321 322 label_more_than_ago: faz mais de
322 323 label_ago: dias atrás
323 324 label_contains: contém
324 325 label_not_contains: não contém
325 326 label_day_plural: dias
326 327 label_repository: Repositório
327 328 label_browse: Procurar
328 329 label_modification: %d mudança
329 330 label_modification_plural: %d mudanças
330 331 label_revision: Revisão
331 332 label_revision_plural: Revisões
332 333 label_added: adicionado
333 334 label_modified: modificado
334 335 label_deleted: deletado
335 336 label_latest_revision: Última revisão
336 337 label_latest_revision_plural: Últimas revisões
337 338 label_view_revisions: Ver revisões
338 339 label_max_size: Tamanho máximo
339 340 label_on: em
340 341 label_sort_highest: Mover para o início
341 342 label_sort_higher: Mover para cima
342 343 label_sort_lower: Mover para baixo
343 344 label_sort_lowest: Mover para o fim
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Termina em
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Sem tarefas para essa versão
348 349 label_search: Busca
349 350 label_result: %d resultado
350 351 label_result_plural: %d resultados
351 352 label_all_words: Todas as palavras
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki edit
354 355 label_wiki_edit_plural: Wiki edits
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Index
358 359 label_current_version: Versão atual
359 360 label_preview: Prévia
360 361 label_feed_plural: Feeds
361 362 label_changes_details: Detalhes de todas as mudanças
362 363 label_issue_tracking: Tarefas
363 364 label_spent_time: Tempo gasto
364 365 label_f_hour: %.2f hora
365 366 label_f_hour_plural: %.2f horas
366 367 label_time_tracking: Tempo trabalhado
367 368 label_change_plural: Mudanças
368 369 label_statistics: Estatísticas
369 370 label_commits_per_month: Commits por mês
370 371 label_commits_per_author: Commits por autor
371 372 label_view_diff: Ver diferenças
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: lado a lado
374 375 label_options: Opções
375 376 label_copy_workflow_from: Copiar workflow de
376 377 label_permissions_report: Relatório de permissões
377 378 label_watched_issues: Tarefas observadas
378 379 label_related_issues: tarefas relacionadas
379 380 label_applied_status: Status aplicado
380 381 label_loading: Carregando...
381 382 label_relation_new: Nova relação
382 383 label_relation_delete: Deletar relação
383 384 label_relates_to: relacionado à
384 385 label_duplicates: duplicadas
385 386 label_blocks: bloqueios
386 387 label_blocked_by: bloqueado por
387 388 label_precedes: procede
388 389 label_follows: segue
389 390 label_end_to_start: fim ao início
390 391 label_end_to_end: fim ao fim
391 392 label_start_to_start: ínícia ao inícia
392 393 label_start_to_end: inícia ao fim
393 394 label_stay_logged_in: Rester connecté
394 395 label_disabled: désactivé
395 396 label_show_completed_versions: Voire les versions passées
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Login
416 418 button_submit: Enviar
417 419 button_save: Salvar
418 420 button_check_all: Marcar todos
419 421 button_uncheck_all: Desmarcar todos
420 422 button_delete: Apagar
421 423 button_create: Criar
422 424 button_test: Testar
423 425 button_edit: Editar
424 426 button_add: Adicionar
425 427 button_change: Mudar
426 428 button_apply: Aplicar
427 429 button_clear: Limpar
428 430 button_lock: Bloquear
429 431 button_unlock: Desbloquear
430 432 button_download: Download
431 433 button_list: Listar
432 434 button_view: Ver
433 435 button_move: Mover
434 436 button_back: Voltar
435 437 button_cancel: Cancelar
436 438 button_activate: Ativar
437 439 button_sort: Ordenar
438 440 button_log_time: Tempo de trabalho
439 441 button_rollback: Voltar para esta versão
440 442 button_watch: Observar
441 443 button_unwatch: Não observar
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: ativo
447 450 status_registered: registrado
448 451 status_locked: bloqueado
449 452
450 453 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
451 454 text_regexp_info: ex. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 siginifica sem restrição
453 456 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
454 457 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
455 458 text_are_you_sure: Você tem certeza ?
456 459 text_journal_changed: alterado de %s para %s
457 460 text_journal_set_to: alterar para %s
458 461 text_journal_deleted: apagado
459 462 text_tip_task_begin_day: tarefa começa neste dia
460 463 text_tip_task_end_day: tarefa termina neste dia
461 464 text_tip_task_begin_end_day: tarefa começa e termina neste dia
462 465 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.'
463 466 text_caracters_maximum: %d móximo de caracteres
464 467 text_length_between: Tamanho entre %d e %d caracteres.
465 468 text_tracker_no_workflow: Sem workflow definido para este tipo.
466 469 text_unallowed_characters: Caracteres não permitidos
467 470 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
468 471 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
469 472
470 473 default_role_manager: Analista de Negócio ou Gerente de Projeto
471 474 default_role_developper: Desenvolvedor
472 475 default_role_reporter: Analista de Suporte
473 476 default_tracker_bug: Bug
474 477 default_tracker_feature: Implementaçõo
475 478 default_tracker_support: Suporte
476 479 default_issue_status_new: Novo
477 480 default_issue_status_assigned: Atribuído
478 481 default_issue_status_resolved: Resolvido
479 482 default_issue_status_feedback: Feedback
480 483 default_issue_status_closed: Fechado
481 484 default_issue_status_rejected: Rejeitado
482 485 default_doc_category_user: Documentação do usuário
483 486 default_doc_category_tech: Documentação técnica
484 487 default_priority_low: Baixo
485 488 default_priority_normal: Normal
486 489 default_priority_high: Alto
487 490 default_priority_urgent: Urgente
488 491 default_priority_immediate: Imediato
489 492 default_activity_design: Design
490 493 default_activity_development: Desenvolvimento
491 494
492 495 enumeration_issue_priorities: Prioridade das tarefas
493 496 enumeration_doc_categories: Categorias de documento
494 497 enumeration_activities: Atividades (time tracking)
@@ -1,494 +1,497
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,Mars,April,Maj,Juni,Juli,Augusti,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 dagar
10 10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
13 13 actionview_datehelper_time_in_words_minute: 1 minut
14 14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuter
17 17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 20 actionview_instancetag_blank_option: Var god välj
21 21
22 22 activerecord_error_inclusion: finns inte i listan
23 23 activerecord_error_exclusion: är reserverad
24 24 activerecord_error_invalid: är ogiltig
25 25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 26 activerecord_error_accepted: måste accepteras
27 27 activerecord_error_empty: får inte vara tom
28 28 activerecord_error_blank: får inte vara tom
29 29 activerecord_error_too_long: är för lång
30 30 activerecord_error_too_short: är för kort
31 31 activerecord_error_wrong_length: har fel längd
32 32 activerecord_error_taken: har redan blivit tagen
33 33 activerecord_error_not_a_number: är inte ett nummer
34 34 activerecord_error_not_a_date: är inte ett korrekt datum
35 35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
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 år
40 40 general_fmt_age_plural: %d år
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: 'Nej'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nej'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Svenska'
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: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54 54
55 55 notice_account_updated: Kontot har uppdaterats
56 56 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
57 57 notice_account_password_updated: Lösenordet har uppdaterats
58 58 notice_account_wrong_password: Fel lösenord
59 59 notice_account_register_done: Kontot har skapats.
60 60 notice_account_unknown_email: Okäns användare.
61 61 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
62 62 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
63 63 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
64 64 notice_successful_create: Lyckat skapande.
65 65 notice_successful_update: Lyckad uppdatering.
66 66 notice_successful_delete: Lyckad borttagning.
67 67 notice_successful_connection: Lyckad uppkoppling.
68 68 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
69 69 notice_locking_conflict: Data har uppdaterats av en annan användare.
70 70 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
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 notice_email_error: An error occurred while sending mail (%s)"
73 notice_email_error: An error occurred while sending mail (%s)
74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
74 75
75 76 mail_subject_lost_password: Ditt redMine lösenord
76 77 mail_subject_register: redMine kontoaktivering
77 78
78 79 gui_validation_error: 1 fel
79 80 gui_validation_error_plural: %d fel
80 81
81 82 field_name: Namn
82 83 field_description: Beskrivning
83 84 field_summary: Sammanfattning
84 85 field_is_required: Obligatorisk
85 86 field_firstname: Förnamn
86 87 field_lastname: Efternamn
87 88 field_mail: Email
88 89 field_filename: Fil
89 90 field_filesize: Storlek
90 91 field_downloads: Nerladdningar
91 92 field_author: Författare
92 93 field_created_on: Skapad
93 94 field_updated_on: Uppdaterad
94 95 field_field_format: Format
95 96 field_is_for_all: För alla projekt
96 97 field_possible_values: Möjliga värden
97 98 field_regexp: Regular expression
98 99 field_min_length: Minimilängd
99 100 field_max_length: Maximumlängd
100 101 field_value: Värde
101 102 field_category: Kategori
102 103 field_title: Titel
103 104 field_project: Projekt
104 105 field_issue: Brist
105 106 field_status: Status
106 107 field_notes: Anteckningar
107 108 field_is_closed: Brist stängd
108 109 field_is_default: Defaultstatus
109 110 field_html_color: Färg
110 111 field_tracker: Tracker
111 112 field_subject: Rubrik
112 113 field_due_date: Färdigdatum
113 114 field_assigned_to: Tilldelad
114 115 field_priority: Prioritet
115 116 field_fixed_version: Fixed version
116 117 field_user: Användare
117 118 field_role: Roll
118 119 field_homepage: Hemsida
119 120 field_is_public: Offentlig
120 121 field_parent: Delprojekt av
121 122 field_is_in_chlog: Brister visade i ändringslogg
122 123 field_is_in_roadmap: Bsiter visade i roadmap
123 124 field_login: Inloggning
124 125 field_mail_notification: Emailnotifieringar
125 126 field_admin: Administratör
126 127 field_last_login_on: Senaste inloggning
127 128 field_language: Språk
128 129 field_effective_date: Datum
129 130 field_password: Lösenord
130 131 field_new_password: Nytt lösenord
131 132 field_password_confirmation: Bekräfta
132 133 field_version: Version
133 134 field_type: Typ
134 135 field_host: Värddator
135 136 field_port: Port
136 137 field_account: Konto
137 138 field_base_dn: Bas DN
138 139 field_attr_login: Inloggningsattribut
139 140 field_attr_firstname: Förnamnattribut
140 141 field_attr_lastname: Efternamnattribut
141 142 field_attr_mail: Emailattribut
142 143 field_onthefly: On-the-fly användarskapning
143 144 field_start_date: Start
144 145 field_done_ratio: %% Done
145 146 field_auth_source: Authentikeringsläge
146 147 field_hide_mail: Dölj min emailadress
147 148 field_comment: Kommentar
148 149 field_url: URL
149 150 field_start_page: Startsida
150 151 field_subproject: Delprojekt
151 152 field_hours: Timmar
152 153 field_activity: Aktivitet
153 154 field_spent_on: Datum
154 155 field_identifier: Identifierare
155 156 field_is_filter: Used as a filter
156 157 field_issue_to_id: Related issue
157 158 field_delay: Delay
158 159 field_assignable: Issues can be assigned to this role
159 160
160 161 setting_app_title: Applikationstitel
161 162 setting_app_subtitle: Applicationsunderrubrik
162 163 setting_welcome_text: Välkommentext
163 164 setting_default_language: Default språk
164 165 setting_login_required: Authent. obligatoriskt
165 166 setting_self_registration: Självregistrering påslaget
166 167 setting_attachment_max_size: Bifogad maxstorlek
167 168 setting_issues_export_limit: Brist exportgräns
168 169 setting_mail_from: Emailavsändare
169 170 setting_host_name: Värddatornamn
170 171 setting_text_formatting: Textformattering
171 172 setting_wiki_compression: Wiki historiekomprimering
172 173 setting_feeds_limit: Feed innehållsgräns
173 174 setting_autofetch_changesets: Automatisk hämtning av commits
174 175 setting_sys_api_enabled: Aktivera WS för repository management
175 176 setting_commit_ref_keywords: Referencing keywords
176 177 setting_commit_fix_keywords: Fixing keywords
177 178 setting_autologin: Autologin
178 179 setting_date_format: Date format
179 180 setting_cross_project_issue_relations: Allow cross-project issue relations
180 181
181 182 label_user: Användare
182 183 label_user_plural: Användare
183 184 label_user_new: Ny användare
184 185 label_project: Projekt
185 186 label_project_new: Nytt projekt
186 187 label_project_plural: Projekt
187 188 label_project_all: All Projects
188 189 label_project_latest: Senaste projekt
189 190 label_issue: Brist
190 191 label_issue_new: Ny brist
191 192 label_issue_plural: Brister
192 193 label_issue_view_all: Visa alla brister
193 194 label_document: Dokument
194 195 label_document_new: Nytt dokument
195 196 label_document_plural: Dokument
196 197 label_role: Roll
197 198 label_role_plural: Roller
198 199 label_role_new: Ny roll
199 200 label_role_and_permissions: Roller och rättigheter
200 201 label_member: Medlem
201 202 label_member_new: Ny medlem
202 203 label_member_plural: Medlemmar
203 204 label_tracker: Tracker
204 205 label_tracker_plural: Trackers
205 206 label_tracker_new: Ny tracker
206 207 label_workflow: Workflow
207 208 label_issue_status: Briststatus
208 209 label_issue_status_plural: Briststatusar
209 210 label_issue_status_new: Ny status
210 211 label_issue_category: Bristkategori
211 212 label_issue_category_plural: Bristkategorier
212 213 label_issue_category_new: Ny kategori
213 214 label_custom_field: Användardefinerat fält
214 215 label_custom_field_plural: Användardefinerade fält
215 216 label_custom_field_new: Nytt Användardefinerat fält
216 217 label_enumerations: Uppräkningar
217 218 label_enumeration_new: Nytt värde
218 219 label_information: Information
219 220 label_information_plural: Information
220 221 label_please_login: Var god logga in
221 222 label_register: Registrera
222 223 label_password_lost: Glömt lösenord
223 224 label_home: Hem
224 225 label_my_page: Min sida
225 226 label_my_account: Mitt konto
226 227 label_my_projects: Mina projekt
227 228 label_administration: Administration
228 229 label_login: Logga in
229 230 label_logout: Logga ut
230 231 label_help: Hjälp
231 232 label_reported_issues: Rapporterade brister
232 233 label_assigned_to_me_issues: Brister tilldelade mig
233 234 label_last_login: Senaste inloggning
234 235 label_last_updates: Senast uppdaterad
235 236 label_last_updates_plural: %d senaste uppdateringarna
236 237 label_registered_on: Registrerad
237 238 label_activity: Aktivitet
238 239 label_new: Ny
239 240 label_logged_as: Loggad som
240 241 label_environment: Miljö
241 242 label_authentication: Authentikering
242 243 label_auth_source: Authentikeringsläge
243 244 label_auth_source_new: Nytt authentikeringsläge
244 245 label_auth_source_plural: Authentikeringslägen
245 246 label_subproject_plural: Delprojekt
246 247 label_min_max_length: Min - Max längd
247 248 label_list: Lista
248 249 label_date: Datum
249 250 label_integer: Heltal
250 251 label_boolean: Boolean
251 252 label_string: Text
252 253 label_text: Long text
253 254 label_attribute: Attribut
254 255 label_attribute_plural: Attribut
255 256 label_download: %d Nerladdning
256 257 label_download_plural: %d Nerladdningar
257 258 label_no_data: Ingen data att visa
258 259 label_change_status: Ändra status
259 260 label_history: Historia
260 261 label_attachment: Fil
261 262 label_attachment_new: Ny fil
262 263 label_attachment_delete: Ta bort fil
263 264 label_attachment_plural: Filer
264 265 label_report: Rapport
265 266 label_report_plural: Rapporter
266 267 label_news: Nyhet
267 268 label_news_new: Lägg till nyhet
268 269 label_news_plural: Nyheter
269 270 label_news_latest: Senaste neheten
270 271 label_news_view_all: Visa alla nyheter
271 272 label_change_log: Ändringslogg
272 273 label_settings: Inställningar
273 274 label_overview: Överblick
274 275 label_version: Version
275 276 label_version_new: Ny version
276 277 label_version_plural: Versioner
277 278 label_confirmation: Bekräftelse
278 279 label_export_to: Exportera till
279 280 label_read: Läs...
280 281 label_public_projects: Offentligt projekt
281 282 label_open_issues: öppen
282 283 label_open_issues_plural: öppna
283 284 label_closed_issues: stängd
284 285 label_closed_issues_plural: stängda
285 286 label_total: Total
286 287 label_permissions: Rättigheter
287 288 label_current_status: Nuvarande status
288 289 label_new_statuses_allowed: Nya statusar tillåtna
289 290 label_all: alla
290 291 label_none: inga
291 292 label_next: Nästa
292 293 label_previous: Föregående
293 294 label_used_by: Använd av
294 295 label_details: Detaljer
295 296 label_add_note: Lägg till anteckning
296 297 label_per_page: Per sida
297 298 label_calendar: Kalender
298 299 label_months_from: månader från
299 300 label_gantt: Gantt
300 301 label_internal: Intern
301 302 label_last_changes: senaste %d ändringar
302 303 label_change_view_all: Visa alla ändringar
303 304 label_personalize_page: Anpassa denna sida
304 305 label_comment: Kommentar
305 306 label_comment_plural: Kommentarer
306 307 label_comment_add: Lägg till kommentar
307 308 label_comment_added: Kommentar tillagd
308 309 label_comment_delete: Ta bort kommentar
309 310 label_query: Användardefinerad fråga
310 311 label_query_plural: Användardefinerade frågor
311 312 label_query_new: Ny fråga
312 313 label_filter_add: Lägg till filter
313 314 label_filter_plural: Filter
314 315 label_equals: är
315 316 label_not_equals: är inte
316 317 label_in_less_than: i mindre än
317 318 label_in_more_than: i mer än
318 319 label_in: i
319 320 label_today: idag
320 321 label_less_than_ago: mindre än dagar sedan
321 322 label_more_than_ago: mer än dagar sedan
322 323 label_ago: dagar sedan
323 324 label_contains: innehåller
324 325 label_not_contains: innehåller inte
325 326 label_day_plural: dagar
326 327 label_repository: Repositorie
327 328 label_browse: Bläddra
328 329 label_modification: %d ändring
329 330 label_modification_plural: %d ändringar
330 331 label_revision: Revision
331 332 label_revision_plural: Revisioner
332 333 label_added: tillagd
333 334 label_modified: modifierad
334 335 label_deleted: borttagen
335 336 label_latest_revision: Senaste revisionen
336 337 label_latest_revision_plural: Senaste revisionerna
337 338 label_view_revisions: Visa revisioner
338 339 label_max_size: Maximumstorlek
339 340 label_on: 'på'
340 341 label_sort_highest: Flytta till top
341 342 label_sort_higher: Flytta up
342 343 label_sort_lower: Flytta ner
343 344 label_sort_lowest: Flytta till botten
344 345 label_roadmap: Roadmap
345 346 label_roadmap_due_in: Färdig om
346 347 label_roadmap_overdue: %s late
347 348 label_roadmap_no_issues: Inga brister för denna version
348 349 label_search: Sök
349 350 label_result: %d resultat
350 351 label_result_plural: %d resultat
351 352 label_all_words: Alla ord
352 353 label_wiki: Wiki
353 354 label_wiki_edit: Wiki editera
354 355 label_wiki_edit_plural: Wiki editeringar
355 356 label_wiki_page: Wiki page
356 357 label_wiki_page_plural: Wiki pages
357 358 label_page_index: Index
358 359 label_current_version: Nuvarande version
359 360 label_preview: Preview
360 361 label_feed_plural: Feeder
361 362 label_changes_details: Detaljer om alla ändringar
362 363 label_issue_tracking: Bristspårning
363 364 label_spent_time: Spenderad tid
364 365 label_f_hour: %.2f timmar
365 366 label_f_hour_plural: %.2f timmar
366 367 label_time_tracking: Tidsspårning
367 368 label_change_plural: Ändringar
368 369 label_statistics: Statistik
369 370 label_commits_per_month: Commit per månad
370 371 label_commits_per_author: Commit per författare
371 372 label_view_diff: Visa skillnader
372 373 label_diff_inline: inline
373 374 label_diff_side_by_side: sida vid sida
374 375 label_options: Inställningar
375 376 label_copy_workflow_from: Kopiera workflow från
376 377 label_permissions_report: Rättighetsrapport
377 378 label_watched_issues: Watched issues
378 379 label_related_issues: Related issues
379 380 label_applied_status: Applied status
380 381 label_loading: Loading...
381 382 label_relation_new: New relation
382 383 label_relation_delete: Delete relation
383 384 label_relates_to: related to
384 385 label_duplicates: duplicates
385 386 label_blocks: blocks
386 387 label_blocked_by: blocked by
387 388 label_precedes: precedes
388 389 label_follows: follows
389 390 label_end_to_start: start to end
390 391 label_end_to_end: end to end
391 392 label_start_to_start: start to start
392 393 label_start_to_end: start to end
393 394 label_stay_logged_in: Stay logged in
394 395 label_disabled: disabled
395 396 label_show_completed_versions: Show completed versions
396 397 label_me: me
397 398 label_board: Forum
398 399 label_board_new: New forum
399 400 label_board_plural: Forums
400 401 label_topic_plural: Topics
401 402 label_message_plural: Messages
402 403 label_message_last: Last message
403 404 label_message_new: New message
404 405 label_reply_plural: Replies
405 406 label_send_information: Send account information to the user
406 407 label_year: Year
407 408 label_month: Month
408 409 label_week: Week
409 410 label_date_from: From
410 411 label_date_to: To
411 412 label_language_based: Language based
412 413 label_sort_by: Sort by "%s"
413 414 label_send_test_email: Send a test email
415 label_feeds_access_key_created_on: RSS access key created %s ago
414 416
415 417 button_login: Logga in
416 418 button_submit: Skicka
417 419 button_save: Spara
418 420 button_check_all: Markera alla
419 421 button_uncheck_all: Avmarkera alla
420 422 button_delete: Ta bort
421 423 button_create: Skapa
422 424 button_test: Testa
423 425 button_edit: Editera
424 426 button_add: Lägg till
425 427 button_change: Ändra
426 428 button_apply: Värkställ
427 429 button_clear: Rensa
428 430 button_lock: Lås
429 431 button_unlock: Lås upp
430 432 button_download: Ladda ner
431 433 button_list: Lista
432 434 button_view: Visa
433 435 button_move: Flytta
434 436 button_back: Tillbaka
435 437 button_cancel: Avbryt
436 438 button_activate: Aktivera
437 439 button_sort: Sortera
438 440 button_log_time: Logga tid
439 441 button_rollback: Rulla tillbaka till denna version
440 442 button_watch: Watch
441 443 button_unwatch: Unwatch
442 444 button_reply: Reply
443 445 button_archive: Archive
444 446 button_unarchive: Unarchive
447 button_reset: Reset
445 448
446 449 status_active: activ
447 450 status_registered: registrerad
448 451 status_locked: låst
449 452
450 453 text_select_mail_notifications: Väl action för vilka email ska skickas.
451 454 text_regexp_info: eg. ^[A-Z0-9]+$
452 455 text_min_max_length_info: 0 betyder ingen gräns
453 456 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
454 457 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
455 458 text_are_you_sure: Är du säker?
456 459 text_journal_changed: ändrad från %s till %s
457 460 text_journal_set_to: satt till %s
458 461 text_journal_deleted: borttagen
459 462 text_tip_task_begin_day: arbetsuppgift börjar denna dag
460 463 text_tip_task_end_day: arbetsuppgift slutar denna dag
461 464 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
462 465 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
463 466 text_caracters_maximum: %d tecken maximum.
464 467 text_length_between: Längd mellan %d och %d tecken.
465 468 text_tracker_no_workflow: Inget workflow definerat för denna tracker
466 469 text_unallowed_characters: Unallowed characters
467 470 text_comma_separated: Multiple values allowed (comma separated).
468 471 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
469 472
470 473 default_role_manager: Förvaltare
471 474 default_role_developper: Utvecklare
472 475 default_role_reporter: Rapporterare
473 476 default_tracker_bug: Bugg
474 477 default_tracker_feature: Finess
475 478 default_tracker_support: Support
476 479 default_issue_status_new: Ny
477 480 default_issue_status_assigned: Tilldelad
478 481 default_issue_status_resolved: Löst
479 482 default_issue_status_feedback: Feedback
480 483 default_issue_status_closed: Stängd
481 484 default_issue_status_rejected: Avslagen
482 485 default_doc_category_user: Användardokumentation
483 486 default_doc_category_tech: Teknisk dokumentation
484 487 default_priority_low: Låg
485 488 default_priority_normal: Normal
486 489 default_priority_high: Hög
487 490 default_priority_urgent: Bråttom
488 491 default_priority_immediate: Omedelbar
489 492 default_activity_design: Design
490 493 default_activity_development: Utveckling
491 494
492 495 enumeration_issue_priorities: Bristprioriteringar
493 496 enumeration_doc_categories: Dokumentkategorier
494 497 enumeration_activities: Aktiviteter (tidsspårning)
@@ -1,496 +1,499
1 1 # translated by andy wu
2 2 # email:andywu.zh@gmail.com
3 3
4 4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5 5
6 6 actionview_datehelper_select_day_prefix:
7 7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
8 8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
9 9 actionview_datehelper_select_month_prefix:
10 10 actionview_datehelper_select_year_prefix:
11 11 actionview_datehelper_time_in_words_day: 1 天
12 12 actionview_datehelper_time_in_words_day_plural: %d 天
13 13 actionview_datehelper_time_in_words_hour_about: 约1小时
14 14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
15 15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
16 16 actionview_datehelper_time_in_words_minute: 1分钟
17 17 actionview_datehelper_time_in_words_minute_half: 半分钟
18 18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
19 19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
20 20 actionview_datehelper_time_in_words_minute_single: 1分钟
21 21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
22 22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
23 23 actionview_instancetag_blank_option: 请选择
24 24
25 25 activerecord_error_inclusion: 未包含在列表中
26 26 activerecord_error_exclusion: 保留的
27 27 activerecord_error_invalid: 无效的
28 28 activerecord_error_confirmation: 和确认输入不匹配
29 29 activerecord_error_accepted: 必需被接受
30 30 activerecord_error_empty: 不能为空
31 31 activerecord_error_blank: 不能是空格
32 32 activerecord_error_too_long: 太长
33 33 activerecord_error_too_short: 太短
34 34 activerecord_error_wrong_length: 长度有问题
35 35 activerecord_error_taken: has already been taken
36 36 activerecord_error_not_a_number: 不是数字
37 37 activerecord_error_not_a_date: 不是有效的日期
38 38 activerecord_error_greater_than_start_date: 必需大于开始日期
39 39 activerecord_error_not_same_project: doesn't belong to the same project
40 40 activerecord_error_circular_dependency: This relation would create a circular dependency
41 41
42 42 general_fmt_age: %d yr
43 43 general_fmt_age_plural: %d yrs
44 44 general_fmt_date: %%m/%%d/%%Y
45 45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 47 general_fmt_time: %%I:%%M %%p
48 48 general_text_No: '否'
49 49 general_text_Yes: '是'
50 50 general_text_no: '否'
51 51 general_text_yes: '是'
52 52 general_lang_name: 'Chinese (简体中文)'
53 53 general_csv_separator: ','
54 54 general_csv_encoding: gb2312
55 55 general_pdf_encoding: Big5
56 56 general_day_names: 一,二,三,四,五,六,日
57 57
58 58 notice_account_updated: 帐户更新成功。
59 59 notice_account_invalid_creditentials: 用户名或密码不正确
60 60 notice_account_password_updated: 成功更新口令
61 61 notice_account_wrong_password: 错误的口令
62 62 notice_account_register_done: 帐户已创建成功
63 63 notice_account_unknown_email: 未知用户
64 64 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
65 65 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
66 66 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
67 67 notice_successful_create: 创建成功
68 68 notice_successful_update: 更新成功
69 69 notice_successful_delete: 删除成功
70 70 notice_successful_connection: 连接成功
71 71 notice_file_not_found: 您访问的页面不存在或已被删除。
72 72 notice_locking_conflict: 数据已被另一个用户更新
73 73 notice_scm_error: 在版本库中不存在该条目或修订
74 74 notice_not_authorized: You are not authorized to access this page.
75 75 notice_email_sent: An email was sent to %s
76 notice_email_error: An error occurred while sending mail (%s)"
76 notice_email_error: An error occurred while sending mail (%s)
77 notice_feeds_access_key_reseted: Your RSS access key was reseted.
77 78
78 79 mail_subject_lost_password: 您的redMine口令
79 80 mail_subject_register: redMine帐户激活
80 81
81 82 gui_validation_error: 1 个错误
82 83 gui_validation_error_plural: %d 个错误
83 84
84 85 field_name: 名称
85 86 field_description: 描述
86 87 field_summary: 摘要
87 88 field_is_required: 必填
88 89 field_firstname: 名字
89 90 field_lastname:
90 91 field_mail: 邮件地址
91 92 field_filename: 文件
92 93 field_filesize: 大小
93 94 field_downloads: 下载次数
94 95 field_author: 作者
95 96 field_created_on: 创建于
96 97 field_updated_on: 更新于
97 98 field_field_format: 格式
98 99 field_is_for_all: 应用于所有项目
99 100 field_possible_values: 可能的值
100 101 field_regexp: 正则表达式
101 102 field_min_length: 最小长度
102 103 field_max_length: 最大长度
103 104 field_value:
104 105 field_category: 分类
105 106 field_title: 标题
106 107 field_project: 项目
107 108 field_issue: 任务
108 109 field_status: 状态
109 110 field_notes: 说明
110 111 field_is_closed: 已关闭的任务
111 112 field_is_default: 默认状态
112 113 field_html_color: 颜色
113 114 field_tracker: 跟踪
114 115 field_subject: 主题
115 116 field_due_date: 到期日
116 117 field_assigned_to: 指派
117 118 field_priority: 优先级
118 119 field_fixed_version: 修订版本
119 120 field_user: 用户
120 121 field_role: 角色
121 122 field_homepage: 主页
122 123 field_is_public: 公开
123 124 field_parent: 上级项目
124 125 field_is_in_chlog: 在更新日志中显示任务
125 126 field_is_in_roadmap: 在路线图中显示任务
126 127 field_login: 登录名
127 128 field_mail_notification: 邮件通知
128 129 field_admin: 管理员
129 130 field_last_login_on: 最后登录
130 131 field_language: 语言
131 132 field_effective_date: 日期
132 133 field_password: 口令
133 134 field_new_password: 新口令
134 135 field_password_confirmation: 确认
135 136 field_version: 版本
136 137 field_type: 类别
137 138 field_host: 主机
138 139 field_port: 端口
139 140 field_account: 帐号
140 141 field_base_dn: Base DN
141 142 field_attr_login: 登录名属性
142 143 field_attr_firstname: 名字属性
143 144 field_attr_lastname: 姓属性
144 145 field_attr_mail: 邮件属性
145 146 field_onthefly: On-the-fly user creation
146 147 field_start_date: 开始
147 148 field_done_ratio: %% 完成
148 149 field_auth_source: 认证模式
149 150 field_hide_mail: 隐藏我的邮件
150 151 field_comments: 注释
151 152 field_url: URL
152 153 field_start_page: 起始页
153 154 field_subproject: 子项目
154 155 field_hours: Hours
155 156 field_activity: 活动
156 157 field_spent_on: 日期
157 158 field_identifier: Identifier
158 159 field_is_filter: Used as a filter
159 160 field_issue_to_id: Related issue
160 161 field_delay: Delay
161 162 field_assignable: Issues can be assigned to this role
162 163
163 164 setting_app_title: 应用程序标题
164 165 setting_app_subtitle: 应用程序子标题
165 166 setting_welcome_text: 欢迎文字
166 167 setting_default_language: 默认语言
167 168 setting_login_required: 要求认证
168 169 setting_self_registration: 允许自注册
169 170 setting_attachment_max_size: 附件最大尺寸
170 171 setting_issues_export_limit: Issues export limit
171 172 setting_mail_from: Emission mail address
172 173 setting_host_name: 主机名称
173 174 setting_text_formatting: 文本格式
174 175 setting_wiki_compression: Wiki history compression
175 176 setting_feeds_limit: Feed content limit
176 177 setting_autofetch_changesets: Autofetch commits
177 178 setting_sys_api_enabled: Enable WS for repository management
178 179 setting_commit_ref_keywords: Referencing keywords
179 180 setting_commit_fix_keywords: Fixing keywords
180 181 setting_autologin: Autologin
181 182 setting_date_format: Date format
182 183 setting_cross_project_issue_relations: Allow cross-project issue relations
183 184
184 185 label_user: 用户
185 186 label_user_plural: 用户列表
186 187 label_user_new: 新建用户
187 188 label_project: 项目
188 189 label_project_new: 新建项目
189 190 label_project_plural: 项目列表
190 191 label_project_all: All Projects
191 192 label_project_latest: 最近的项目列表
192 193 label_issue: 任务
193 194 label_issue_new: 新建任务
194 195 label_issue_plural: 任务列表
195 196 label_issue_view_all: 查看所有任务
196 197 label_document: 文档
197 198 label_document_new: 新建文档
198 199 label_document_plural: 文档列表
199 200 label_role: 角色
200 201 label_role_plural: 角色列表
201 202 label_role_new: 新建角色
202 203 label_role_and_permissions: 角色和权限
203 204 label_member: 成员
204 205 label_member_new: 新建成员
205 206 label_member_plural: 成员列表
206 207 label_tracker: 跟踪标签
207 208 label_tracker_plural: 跟踪标签列表
208 209 label_tracker_new: 新建跟踪标签
209 210 label_workflow: 工作流
210 211 label_issue_status: 任务状态列表
211 212 label_issue_status_plural: 任务状态列表
212 213 label_issue_status_new: 新建任务状态列表
213 214 label_issue_category: 任务类别
214 215 label_issue_category_plural: 任务类别列表
215 216 label_issue_category_new: 新建任务类别
216 217 label_custom_field: 自定义字段
217 218 label_custom_field_plural: 自定义字段列表
218 219 label_custom_field_new: 新建自定义字段
219 220 label_enumerations: 枚举列表
220 221 label_enumeration_new: 新建枚举值
221 222 label_information: 信息
222 223 label_information_plural: 信息
223 224 label_please_login: 请登录
224 225 label_register: 注册
225 226 label_password_lost: 忘记口令
226 227 label_home: 主页
227 228 label_my_page: 我的工作台
228 229 label_my_account: 我的帐号
229 230 label_my_projects: 我的项目列表
230 231 label_administration: 管理
231 232 label_login: 登录
232 233 label_logout: 退出
233 234 label_help: 帮助
234 235 label_reported_issues: 已报告的问题
235 236 label_assigned_to_me_issues: 分配给我的任务
236 237 label_last_login: 最后登录
237 238 label_last_updates: 最后更新
238 239 label_last_updates_plural: %d 最后更新
239 240 label_registered_on: 注册于
240 241 label_activity: 活动
241 242 label_new: 新建
242 243 label_logged_as: 登录为
243 244 label_environment: 环境
244 245 label_authentication: 认证
245 246 label_auth_source: 认证模式
246 247 label_auth_source_new: 新建认证模式
247 248 label_auth_source_plural: 认证模式列表
248 249 label_subproject_plural: 子项目列表
249 250 label_min_max_length: 最小 - 最大 长度
250 251 label_list: list
251 252 label_date: Date
252 253 label_integer: Integer
253 254 label_boolean: Boolean
254 255 label_string: Text
255 256 label_text: Long text
256 257 label_attribute: 属性
257 258 label_attribute_plural: 属性
258 259 label_download: %d 个下载次数
259 260 label_download_plural: %d 个下载次数
260 261 label_no_data: 没有数据用于显示
261 262 label_change_status: 改变状态
262 263 label_history: 历史记录
263 264 label_attachment: 文件
264 265 label_attachment_new: 新建文件
265 266 label_attachment_delete: 删除文件
266 267 label_attachment_plural: 文件列表
267 268 label_report: 报表
268 269 label_report_plural: 报表列表
269 270 label_news: 新闻
270 271 label_news_new: 增加新闻
271 272 label_news_plural: 新闻列表
272 273 label_news_latest: 最近的新闻
273 274 label_news_view_all: 查看所有新闻
274 275 label_change_log: 更新日志
275 276 label_settings: 配置
276 277 label_overview: 概述
277 278 label_version: 版本
278 279 label_version_new: 新建版本
279 280 label_version_plural: 版本列表
280 281 label_confirmation: 确认
281 282 label_export_to: 导出
282 283 label_read: 读取...
283 284 label_public_projects: 公开的项目列表
284 285 label_open_issues: 打开
285 286 label_open_issues_plural: 打开
286 287 label_closed_issues: 已关闭
287 288 label_closed_issues_plural: 已关闭
288 289 label_total: 合计
289 290 label_permissions: 权限列表
290 291 label_current_status: 当前状态
291 292 label_new_statuses_allowed: New statuses allowed
292 293 label_all: 全部
293 294 label_none:
294 295 label_next: 下一个
295 296 label_previous: 上一个
296 297 label_used_by: 使用中
297 298 label_details: 详情
298 299 label_add_note: 添加说明
299 300 label_per_page: 每面
300 301 label_calendar: 日历
301 302 label_months_from: months from
302 303 label_gantt: 甘特图(Gantt)
303 304 label_internal: 内部
304 305 label_last_changes: 最近的 %d 次更改
305 306 label_change_view_all: 查看所有更改
306 307 label_personalize_page: 个性化定制本页
307 308 label_comment: 注释
308 309 label_comment_plural: 注释列表
309 310 label_comment_add: 添加注释
310 311 label_comment_added: 已加入注释
311 312 label_comment_delete: 删除注释
312 313 label_query: 自定义查询
313 314 label_query_plural: 自定义查询列表
314 315 label_query_new: 新建查询
315 316 label_filter_add: 增加过滤器
316 317 label_filter_plural: 过滤器列表
317 318 label_equals: 等于
318 319 label_not_equals: 不等于
319 320 label_in_less_than: 剩余天数小于
320 321 label_in_more_than: 剩余天数大于
321 322 label_in: 剩余天数
322 323 label_today: 今天
323 324 label_less_than_ago: 之前天数少于
324 325 label_more_than_ago: 之前天数大于
325 326 label_ago: 之前天数
326 327 label_contains: 包含
327 328 label_not_contains: 不包含
328 329 label_day_plural: 天数
329 330 label_repository: 版本库
330 331 label_browse: 浏览
331 332 label_modification: %d 个更新
332 333 label_modification_plural: %d 个更新
333 334 label_revision: 修订
334 335 label_revision_plural: 修订
335 336 label_added: 已增加
336 337 label_modified: 已修改
337 338 label_deleted: 已删除
338 339 label_latest_revision: 最近的版本
339 340 label_latest_revision_plural: 最近的版本列表
340 341 label_view_revisions: 查看修订列表
341 342 label_max_size: 最大尺寸
342 343 label_on: 'on'
343 344 label_sort_highest: 置顶
344 345 label_sort_higher: 上移
345 346 label_sort_lower: 下移
346 347 label_sort_lowest: 置底
347 348 label_roadmap: 路线图
348 349 label_roadmap_due_in: Due in
349 350 label_roadmap_overdue: %s late
350 351 label_roadmap_no_issues: 该版本没有任务
351 352 label_search: 查找
352 353 label_result: %d 个结果
353 354 label_result_plural: %d 个结果
354 355 label_all_words: 所有单词
355 356 label_wiki: Wiki
356 357 label_wiki_edit: Wiki edit
357 358 label_wiki_edit_plural: Wiki edits
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: 索引
360 361 label_current_version: 当前版本
361 362 label_preview: 预览
362 363 label_feed_plural: Feeds
363 364 label_changes_details: 所有更改的详情
364 365 label_issue_tracking: 任务跟踪
365 366 label_spent_time: 耗时
366 367 label_f_hour: %.2f 小时
367 368 label_f_hour_plural: %.2f 小时
368 369 label_time_tracking: 时间跟踪
369 370 label_change_plural: 更改列表
370 371 label_statistics: 统计
371 372 label_commits_per_month: Commits per month
372 373 label_commits_per_author: Commits per author
373 374 label_view_diff: View differences
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: side by side
376 377 label_options: Options
377 378 label_copy_workflow_from: Copy workflow from
378 379 label_permissions_report: Permissions report
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
417 label_feeds_access_key_created_on: RSS access key created %s ago
416 418
417 419 button_login: 登录
418 420 button_submit: 提交
419 421 button_save: 保存
420 422 button_check_all: 全选
421 423 button_uncheck_all: 清除
422 424 button_delete: 删除
423 425 button_create: 创建
424 426 button_test: 测试
425 427 button_edit: 编辑
426 428 button_add: 新增
427 429 button_change: 修改
428 430 button_apply: 应用
429 431 button_clear: 清除
430 432 button_lock: 锁定
431 433 button_unlock: 解锁
432 434 button_download: 下载
433 435 button_list: 列表
434 436 button_view: 查看
435 437 button_move: 移动
436 438 button_back: 返回
437 439 button_cancel: 取消
438 440 button_activate: 激活
439 441 button_sort: 排序
440 442 button_log_time: 登记工时
441 443 button_rollback: Rollback to this version
442 444 button_watch: Watch
443 445 button_unwatch: Unwatch
444 446 button_reply: Reply
445 447 button_archive: Archive
446 448 button_unarchive: Unarchive
449 button_reset: Reset
447 450
448 451 status_active: 激活
449 452 status_registered: 已注册
450 453 status_locked: 已锁定
451 454
452 455 text_select_mail_notifications: 选择需要发送邮件通知的动作。
453 456 text_regexp_info: eg. ^[A-Z0-9]+$
454 457 text_min_max_length_info: 0 表示没有限制
455 458 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
456 459 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
457 460 text_are_you_sure: 您确定?
458 461 text_journal_changed: 从 %s 更改为 %s
459 462 text_journal_set_to: 设置为 %s
460 463 text_journal_deleted: 已删除
461 464 text_tip_task_begin_day: 开始于此
462 465 text_tip_task_end_day: 在此结束
463 466 text_tip_task_begin_end_day: 开始并结束于此
464 467 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
465 468 text_caracters_maximum: %d characters maximum.
466 469 text_length_between: Length between %d and %d characters.
467 470 text_tracker_no_workflow: No workflow defined for this tracker
468 471 text_unallowed_characters: Unallowed characters
469 472 text_comma_separated: Multiple values allowed (comma separated).
470 473 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
471 474
472 475 default_role_manager: 管理员
473 476 default_role_developper: 开发人员
474 477 default_role_reporter: 报告人员
475 478 default_tracker_bug: 问题
476 479 default_tracker_feature: 功能
477 480 default_tracker_support: 支持
478 481 default_issue_status_new: 新建
479 482 default_issue_status_assigned: 已分配
480 483 default_issue_status_resolved: 已解决
481 484 default_issue_status_feedback: 回复
482 485 default_issue_status_closed: 已关闭
483 486 default_issue_status_rejected: 已打回
484 487 default_doc_category_user: 用户文档
485 488 default_doc_category_tech: 技术文档
486 489 default_priority_low:
487 490 default_priority_normal: 普通
488 491 default_priority_high:
489 492 default_priority_urgent: 紧急
490 493 default_priority_immediate: 立刻
491 494 default_activity_design: 设计
492 495 default_activity_development: 开发
493 496
494 497 enumeration_issue_priorities: 任务优先级
495 498 enumeration_doc_categories: 文档类别
496 499 enumeration_activities: Activities (time tracking)
General Comments 0
You need to be logged in to leave comments. Login now