##// END OF EJS Templates
Added the ability to destroy wiki pages (content and its history are deleted from the database)....
Jean-Philippe Lang -
r537:6446c312beab
parent child
Show More
@@ -0,0 +1,9
1 class AddWikiDestroyPagePermission < ActiveRecord::Migration
2 def self.up
3 Permission.create :controller => 'wiki', :action => 'destroy', :description => 'button_delete', :sort => 1740, :is_public => false, :mail_option => 0, :mail_enabled => 0
4 end
5
6 def self.down
7 Permission.find_by_controller_and_action('wiki', 'destroy').destroy
8 end
9 end
@@ -1,112 +1,122
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class WikiController < ApplicationController
19 19 layout 'base'
20 20 before_filter :find_wiki, :check_project_privacy, :except => [:preview]
21
21 before_filter :authorize, :only => :destroy
22
23 verify :method => :post, :only => [ :destroy ], :redirect_to => { :action => :index }
24
22 25 # display a page (in editing mode if it doesn't exist)
23 26 def index
24 27 page_title = params[:page]
25 28 @page = @wiki.find_or_new_page(page_title)
26 29 if @page.new_record?
27 30 edit
28 31 render :action => 'edit' and return
29 32 end
30 33 @content = @page.content_for_version(params[:version])
31 34 if params[:export] == 'html'
32 35 export = render_to_string :action => 'export', :layout => false
33 36 send_data(export, :type => 'text/html', :filename => "#{@page.title}.html")
34 37 return
35 38 elsif params[:export] == 'txt'
36 39 send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt")
37 40 return
38 41 end
39 42 render :action => 'show'
40 43 end
41 44
42 45 # edit an existing page or a new one
43 46 def edit
44 47 @page = @wiki.find_or_new_page(params[:page])
45 48 @page.content = WikiContent.new(:page => @page) if @page.new_record?
46 49
47 50 @content = @page.content_for_version(params[:version])
48 51 @content.text = "h1. #{@page.pretty_title}" if @content.text.blank?
49 52 # don't keep previous comment
50 53 @content.comments = nil
51 54 if request.post?
52 55 if @content.text == params[:content][:text]
53 56 # don't save if text wasn't changed
54 57 redirect_to :action => 'index', :id => @project, :page => @page.title
55 58 return
56 59 end
57 60 @content.text = params[:content][:text]
58 61 @content.comments = params[:content][:comments]
59 62 @content.author = logged_in_user
60 63 # if page is new @page.save will also save content, but not if page isn't a new record
61 64 if (@page.new_record? ? @page.save : @content.save)
62 65 redirect_to :action => 'index', :id => @project, :page => @page.title
63 66 end
64 67 end
65 68 end
66 69
67 70 # show page history
68 71 def history
69 72 @page = @wiki.find_page(params[:page])
70 73 # don't load text
71 74 @versions = @page.content.versions.find :all,
72 75 :select => "id, author_id, comments, updated_on, version",
73 76 :order => 'version DESC'
74 77 end
78
79 # remove a wiki page and its history
80 def destroy
81 @page = @wiki.find_page(params[:page])
82 @page.destroy if @page
83 redirect_to :action => 'special', :id => @project, :page => 'Page_index'
84 end
75 85
76 86 # display special pages
77 87 def special
78 88 page_title = params[:page].downcase
79 89 case page_title
80 90 # show pages index, sorted by title
81 91 when 'page_index'
82 92 # eager load information about last updates, without loading text
83 93 @pages = @wiki.pages.find :all, :select => "#{WikiPage.table_name}.*, #{WikiContent.table_name}.updated_on",
84 94 :joins => "LEFT JOIN #{WikiContent.table_name} ON #{WikiContent.table_name}.page_id = #{WikiPage.table_name}.id",
85 95 :order => 'title'
86 96 # export wiki to a single html file
87 97 when 'export'
88 98 @pages = @wiki.pages.find :all, :order => 'title'
89 99 export = render_to_string :action => 'export_multiple', :layout => false
90 100 send_data(export, :type => 'text/html', :filename => "wiki.html")
91 101 return
92 102 else
93 103 # requested special page doesn't exist, redirect to default page
94 104 redirect_to :action => 'index', :id => @project, :page => nil and return
95 105 end
96 106 render :action => "special_#{page_title}"
97 107 end
98 108
99 109 def preview
100 110 @text = params[:content][:text]
101 111 render :partial => 'preview'
102 112 end
103 113
104 114 private
105 115
106 116 def find_wiki
107 117 @project = Project.find(params[:id])
108 118 @wiki = @project.wiki
109 119 rescue ActiveRecord::RecordNotFound
110 120 render_404
111 121 end
112 122 end
@@ -1,67 +1,68
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 Permission < ActiveRecord::Base
19 19 has_and_belongs_to_many :roles
20 20
21 21 validates_presence_of :controller, :action, :description
22 22
23 23 GROUPS = {
24 24 100 => :label_project,
25 25 200 => :label_member_plural,
26 26 300 => :label_version_plural,
27 27 400 => :label_issue_category_plural,
28 28 600 => :label_query_plural,
29 29 1000 => :label_issue_plural,
30 30 1100 => :label_news_plural,
31 31 1200 => :label_document_plural,
32 32 1300 => :label_attachment_plural,
33 33 1400 => :label_repository,
34 34 1500 => :label_time_tracking,
35 1700 => :label_wiki_page_plural,
35 36 2000 => :label_board_plural
36 37 }.freeze
37 38
38 39 @@cached_perms_for_public = nil
39 40 @@cached_perms_for_roles = nil
40 41
41 42 def name
42 43 self.controller + "/" + self.action
43 44 end
44 45
45 46 def group_id
46 47 (self.sort / 100)*100
47 48 end
48 49
49 50 def self.allowed_to_public(action)
50 51 @@cached_perms_for_public ||= find(:all, :conditions => ["is_public=?", true]).collect {|p| "#{p.controller}/#{p.action}"}
51 52 @@cached_perms_for_public.include? action
52 53 end
53 54
54 55 def self.allowed_to_role(action, role)
55 56 @@cached_perms_for_roles ||=
56 57 begin
57 58 perms = {}
58 59 find(:all, :include => :roles).each {|p| perms.store "#{p.controller}/#{p.action}", p.roles.collect {|r| r.id } }
59 60 perms
60 61 end
61 62 allowed_to_public(action) or (role && @@cached_perms_for_roles[action] && @@cached_perms_for_roles[action].include?(role.id))
62 63 end
63 64
64 65 def self.allowed_to_role_expired
65 66 @@cached_perms_for_roles = nil
66 67 end
67 68 end
@@ -1,31 +1,32
1 1 <div class="contextual">
2 2 <%= link_to(l(:button_edit), {:action => 'edit', :page => @page.title}, :class => 'icon icon-edit') if @content.version == @page.content.version %>
3 <%= link_to_if_authorized(l(:button_delete), {:action => 'destroy', :page => @page.title}, :method => :post, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') %>
3 4 <%= link_to(l(:button_rollback), {:action => 'edit', :page => @page.title, :version => @content.version }, :class => 'icon icon-cancel') if @content.version < @page.content.version %>
4 5 <%= link_to(l(:label_history), {:action => 'history', :page => @page.title}, :class => 'icon icon-history') %>
5 6 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
6 7 </div>
7 8
8 9 <% if @content.version != @page.content.version %>
9 10 <p>
10 11 <%= link_to(('&#171; ' + l(:label_previous)), :action => 'index', :page => @page.title, :version => (@content.version - 1)) + " - " if @content.version > 1 %>
11 12 <%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %> -
12 13 <%= link_to((l(:label_next) + ' &#187;'), :action => 'index', :page => @page.title, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
13 14 <%= link_to(l(:label_current_version), :action => 'index', :page => @page.title) %>
14 15 <br />
15 16 <em><%= @content.author ? @content.author.name : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
16 17 <%=h @content.comments %>
17 18 </p>
18 19 <hr />
19 20 <% end %>
20 21
21 22 <div class="wiki">
22 23 <% cache "wiki/show/#{@page.id}/#{@content.version}" do %>
23 24 <%= textilizable @content.text %>
24 25 <% end %>
25 26 </div>
26 27
27 28 <div class="contextual">
28 29 <%= l(:label_export_to) %>
29 30 <%= link_to 'HTML', {:export => 'html', :version => @content.version}, :class => 'icon icon-html' %>,
30 31 <%= link_to 'TXT', {:export => 'txt', :version => @content.version}, :class => 'icon icon-txt' %>
31 32 </div> No newline at end of file
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Вашата парола
74 74 mail_subject_register: Активация на акаунт
75 75
76 76 gui_validation_error: 1 грешка
77 77 gui_validation_error_plural: %d грешки
78 78
79 79 field_name: Име
80 80 field_description: Описание
81 81 field_summary: Тема
82 82 field_is_required: Задължително
83 83 field_firstname: Име
84 84 field_lastname: Фамилия
85 85 field_mail: Email
86 86 field_filename: Файл
87 87 field_filesize: Големина
88 88 field_downloads: Downloads
89 89 field_author: Автор
90 90 field_created_on: Създадена
91 91 field_updated_on: Обновена
92 92 field_field_format: Формат
93 93 field_is_for_all: За всички проекти
94 94 field_possible_values: Възможни стойности
95 95 field_regexp: Регулярен израз
96 96 field_min_length: Мин. дължина
97 97 field_max_length: Макс. дължина
98 98 field_value: Стойност
99 99 field_category: Категория
100 100 field_title: Заглавие
101 101 field_project: Проект
102 102 field_issue: Задача
103 103 field_status: Статус
104 104 field_notes: Бележка
105 105 field_is_closed: Затворена задача
106 106 field_is_default: Статус по подразбиране
107 107 field_html_color: Цвят
108 108 field_tracker: Тракер
109 109 field_subject: Тема
110 110 field_due_date: Крайна дата
111 111 field_assigned_to: Възложена на
112 112 field_priority: Приоритет
113 113 field_fixed_version: Версия
114 114 field_user: Потребител
115 115 field_role: Роля
116 116 field_homepage: Начална страница
117 117 field_is_public: Публичен
118 118 field_parent: Подпроект на
119 119 field_is_in_chlog: Да се вижда ли в Изменения
120 120 field_is_in_roadmap: Да се вижда ли в Пътна карта
121 121 field_login: Потребител
122 122 field_mail_notification: Известия по пощата
123 123 field_admin: Администратор
124 124 field_last_login_on: Последно свързване
125 125 field_language: Език
126 126 field_effective_date: Дата
127 127 field_password: Парола
128 128 field_new_password: Нова парола
129 129 field_password_confirmation: Потвърждение
130 130 field_version: Версия
131 131 field_type: Type
132 132 field_host: Хост
133 133 field_port: Порт
134 134 field_account: Акаунт
135 135 field_base_dn: Base DN
136 136 field_attr_login: Login attribute
137 137 field_attr_firstname: Firstname attribute
138 138 field_attr_lastname: Lastname attribute
139 139 field_attr_mail: Email attribute
140 140 field_onthefly: Динамично създаване на потребител
141 141 field_start_date: Начална дата
142 142 field_done_ratio: %% Прогрес
143 143 field_auth_source: Начин на оторизация
144 144 field_hide_mail: Скрий e-mail адреса ми
145 145 field_comments: Коментар
146 146 field_url: Адрес
147 147 field_start_page: Начална страница
148 148 field_subproject: Подпроект
149 149 field_hours: Часове
150 150 field_activity: Дейност
151 151 field_spent_on: Дата
152 152 field_identifier: Идентификатор
153 153 field_is_filter: Използва се за филтър
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Заглавие
158 158 setting_app_subtitle: Описание
159 159 setting_welcome_text: Допълнителен текст
160 160 setting_default_language: Език по подразбиране
161 161 setting_login_required: Изискване за вход
162 162 setting_self_registration: Регистрация от потребители
163 163 setting_attachment_max_size: Максимално голям приложен файл
164 164 setting_issues_export_limit: Лимит за експорт на задачи
165 165 setting_mail_from: E-mail адрес за емисии
166 166 setting_host_name: Хост
167 167 setting_text_formatting: Форматиране на текста
168 168 setting_wiki_compression: Wiki компресиране на историята
169 169 setting_feeds_limit: Лимит на Feeds
170 170 setting_autofetch_changesets: Автоматично обработване на commits в SVN склада
171 171 setting_sys_api_enabled: Разрешаване на WS за управление на SVN склада
172 172 setting_commit_ref_keywords: Отбелязващи ключови думи
173 173 setting_commit_fix_keywords: Приключващи ключови думи
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Потребител
177 177 label_user_plural: Потребители
178 178 label_user_new: Нов потребител
179 179 label_project: Проект
180 180 label_project_new: Нов проект
181 181 label_project_plural: Проекти
182 182 label_project_all: All Projects
183 183 label_project_latest: Последни проекти
184 184 label_issue: Задача
185 185 label_issue_new: Нова задача
186 186 label_issue_plural: Задачи
187 187 label_issue_view_all: Всички задачи
188 188 label_document: Документ
189 189 label_document_new: Нов документ
190 190 label_document_plural: Документи
191 191 label_role: Роля
192 192 label_role_plural: Роли
193 193 label_role_new: Нова роля
194 194 label_role_and_permissions: Роли и права
195 195 label_member: Член
196 196 label_member_new: Нов член
197 197 label_member_plural: Членове
198 198 label_tracker: Тракер
199 199 label_tracker_plural: Тракери
200 200 label_tracker_new: Нов тракер
201 201 label_workflow: Workflow
202 202 label_issue_status: Статус на задача
203 203 label_issue_status_plural: Статуси на задачи
204 204 label_issue_status_new: Нов статус
205 205 label_issue_category: Категория задача
206 206 label_issue_category_plural: Категории задачи
207 207 label_issue_category_new: Нова категория
208 208 label_custom_field: Измислено поле
209 209 label_custom_field_plural: Измислени полета
210 210 label_custom_field_new: Ново измислено поле
211 211 label_enumerations: Списъци
212 212 label_enumeration_new: Нова стойност
213 213 label_information: Информация
214 214 label_information_plural: Информация
215 215 label_please_login: Вход
216 216 label_register: Регистрация
217 217 label_password_lost: Забравена парола
218 218 label_home: Начало
219 219 label_my_page: Моята страница
220 220 label_my_account: Моят профил
221 221 label_my_projects: Моите проекти
222 222 label_administration: Администрация
223 223 label_login: Вход
224 224 label_logout: Изход
225 225 label_help: Помощ
226 226 label_reported_issues: Публикувани задачи
227 227 label_assigned_to_me_issues: Назначени на мен
228 228 label_last_login: Последно свързване
229 229 label_last_updates: Последно обновена
230 230 label_last_updates_plural: %d последно обновени
231 231 label_registered_on: Регистрация
232 232 label_activity: Дейност
233 233 label_new: Нов
234 234 label_logged_as: Логнат като
235 235 label_environment: Среда
236 236 label_authentication: Оторизация
237 237 label_auth_source: Начин на оторозация
238 238 label_auth_source_new: Нов начин на оторизация
239 239 label_auth_source_plural: Начини на оторизация
240 240 label_subproject_plural: Подпроекти
241 241 label_min_max_length: Мин. - Макс. дължина
242 242 label_list: Списък
243 243 label_date: Дата
244 244 label_integer: Число
245 245 label_boolean: Чекбокс
246 246 label_string: Текст
247 247 label_text: Дълъг текст
248 248 label_attribute: Атрибут
249 249 label_attribute_plural: Атрибути
250 250 label_download: %d Download
251 251 label_download_plural: %d Downloads
252 252 label_no_data: Няма изходни данни
253 253 label_change_status: Промяна на статуса
254 254 label_history: История
255 255 label_attachment: Файл
256 256 label_attachment_new: Нов файл
257 257 label_attachment_delete: Изтриване
258 258 label_attachment_plural: Файлове
259 259 label_report: Доклад
260 260 label_report_plural: Доклади
261 261 label_news: Новини
262 262 label_news_new: Добави
263 263 label_news_plural: Новини
264 264 label_news_latest: Последни новини
265 265 label_news_view_all: Виж всички
266 266 label_change_log: Изменения
267 267 label_settings: Настройки
268 268 label_overview: Общ изглед
269 269 label_version: Версия
270 270 label_version_new: Нова версия
271 271 label_version_plural: Версии
272 272 label_confirmation: Одобрение
273 273 label_export_to: Експорт към
274 274 label_read: Read...
275 275 label_public_projects: Публични проекти
276 276 label_open_issues: отворена
277 277 label_open_issues_plural: отворени
278 278 label_closed_issues: затворена
279 279 label_closed_issues_plural: затворени
280 280 label_total: Общо
281 281 label_permissions: Права
282 282 label_current_status: Текущ статус
283 283 label_new_statuses_allowed: Позволени статуси
284 284 label_all: всички
285 285 label_none: никакви
286 286 label_next: Следващ
287 287 label_previous: Предишен
288 288 label_used_by: Използва се от
289 289 label_details: Детайли...
290 290 label_add_note: Добавяне на бележка
291 291 label_per_page: На страница
292 292 label_calendar: Календар
293 293 label_months_from: месеци от
294 294 label_gantt: Gantt
295 295 label_internal: Вътрешен
296 296 label_last_changes: последни %d промени
297 297 label_change_view_all: Виж всички промени
298 298 label_personalize_page: Персонализиране
299 299 label_comment: Коментар
300 300 label_comment_plural: Коментари
301 301 label_comment_add: Добавяне на коментар
302 302 label_comment_added: Добавен коментар
303 303 label_comment_delete: Изтриване на коментари
304 304 label_query: Измислена заявка
305 305 label_query_plural: Измислени заявки
306 306 label_query_new: Нова заявка
307 307 label_filter_add: Добави филтър
308 308 label_filter_plural: Филтри
309 309 label_equals: е
310 310 label_not_equals: не е
311 311 label_in_less_than: по-малко от
312 312 label_in_more_than: повече от
313 313 label_in: в следващите
314 314 label_today: днес
315 315 label_less_than_ago: преди по-малко от
316 316 label_more_than_ago: преди повече от
317 317 label_ago: преди дни
318 318 label_contains: съдържа
319 319 label_not_contains: не съдържа
320 320 label_day_plural: дни
321 321 label_repository: SVN Склад
322 322 label_browse: Разглеждане
323 323 label_modification: %d промяна
324 324 label_modification_plural: %d промени
325 325 label_revision: Ревизия
326 326 label_revision_plural: Ревизии
327 327 label_added: добавено
328 328 label_modified: променено
329 329 label_deleted: изтрито
330 330 label_latest_revision: Последна ревизия
331 331 label_latest_revision_plural: Последни ревизии
332 332 label_view_revisions: Виж ревизиите
333 333 label_max_size: Максимална големина
334 334 label_on: 'от'
335 335 label_sort_highest: Премести най-горе
336 336 label_sort_higher: Премести по-горе
337 337 label_sort_lower: Премести по-долу
338 338 label_sort_lowest: Премести най-долу
339 339 label_roadmap: Пътна карта
340 340 label_roadmap_due_in: Излиза след
341 341 label_roadmap_no_issues: Няма задачи за тази версия
342 342 label_search: Търсене
343 343 label_result: %d резултат
344 344 label_result_plural: %d резултати
345 345 label_all_words: Всички думи
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki редакция
348 348 label_wiki_edit_plural: Wiki редакции
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Индекс
350 351 label_current_version: Текуща версия
351 352 label_preview: Преглед
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Подробни промени
354 355 label_issue_tracking: Тракинг
355 356 label_spent_time: Отделено време
356 357 label_f_hour: %.2f час
357 358 label_f_hour_plural: %.2f часа
358 359 label_time_tracking: Отделяне на време
359 360 label_change_plural: Промени
360 361 label_statistics: Статистики
361 362 label_commits_per_month: Commits за месец
362 363 label_commits_per_author: Commits за автор
363 364 label_view_diff: Виж разликите
364 365 label_diff_inline: хоризонтално
365 366 label_diff_side_by_side: вертикално
366 367 label_options: Опции
367 368 label_copy_workflow_from: Копирай workflow от
368 369 label_permissions_report: Справка за права
369 370 label_watched_issues: Наблюдавани задачи
370 371 label_related_issues: Свързани задачи
371 372 label_applied_status: Промени статуса на
372 373 label_loading: Зареждане...
373 374 label_relation_new: New relation
374 375 label_relation_delete: Delete relation
375 376 label_relates_to: related to
376 377 label_duplicates: duplicates
377 378 label_blocks: blocks
378 379 label_blocked_by: blocked by
379 380 label_precedes: precedes
380 381 label_follows: follows
381 382 label_end_to_start: start to end
382 383 label_end_to_end: end to end
383 384 label_start_to_start: start to start
384 385 label_start_to_end: start to end
385 386 label_stay_logged_in: Stay logged in
386 387 label_disabled: disabled
387 388 label_show_completed_versions: Show completed versions
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Вход
399 400 button_submit: Изпращане
400 401 button_save: Запис
401 402 button_check_all: Маркирай всички
402 403 button_uncheck_all: Изчисти всички
403 404 button_delete: Изтриване
404 405 button_create: Създаване
405 406 button_test: Тест
406 407 button_edit: Редакция
407 408 button_add: Добавяне
408 409 button_change: Промяна
409 410 button_apply: Приложи
410 411 button_clear: Изчисти
411 412 button_lock: Заключване
412 413 button_unlock: Отключване
413 414 button_download: Download
414 415 button_list: Списък
415 416 button_view: Преглед
416 417 button_move: Преместване
417 418 button_back: Назад
418 419 button_cancel: Отказ
419 420 button_activate: Активация
420 421 button_sort: Сортиране
421 422 button_log_time: Отделяне на време
422 423 button_rollback: Върни се към тази ревизия
423 424 button_watch: Наблюдавай
424 425 button_unwatch: Спри наблюдението
425 426 button_reply: Reply
426 427
427 428 status_active: активен
428 429 status_registered: регистриран
429 430 status_locked: заключен
430 431
431 432 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
432 433 text_regexp_info: пр. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 - без ограничения
434 435 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
435 436 text_workflow_edit: Изберете роля и тракер за да редактирате workflow
436 437 text_are_you_sure: Сигурни ли сте?
437 438 text_journal_changed: промяна от %s на %s
438 439 text_journal_set_to: установено на %s
439 440 text_journal_deleted: изтрито
440 441 text_tip_task_begin_day: задача започваща този ден
441 442 text_tip_task_end_day: задача завършваща този ден
442 443 text_tip_task_begin_end_day: задача започваща и завършваща този ден
443 444 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
444 445 text_caracters_maximum: До %d символа.
445 446 text_length_between: От %d до %d символа.
446 447 text_tracker_no_workflow: Няма дефиниран workflow за този тракер
447 448 text_unallowed_characters: Непозволени символи
448 449 text_comma_separated: Позволено е изброяване (с разделител запетая).
449 450 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
450 451
451 452 default_role_manager: Мениджър
452 453 default_role_developper: Разработчик
453 454 default_role_reporter: Публикуващ
454 455 default_tracker_bug: Бъг
455 456 default_tracker_feature: Функционалност
456 457 default_tracker_support: Поддръжка
457 458 default_issue_status_new: Нова
458 459 default_issue_status_assigned: Възложена
459 460 default_issue_status_resolved: Приключена
460 461 default_issue_status_feedback: Обратна връзка
461 462 default_issue_status_closed: Затворена
462 463 default_issue_status_rejected: Отхвърлена
463 464 default_doc_category_user: Документация за потребителя
464 465 default_doc_category_tech: Техническа документация
465 466 default_priority_low: Нисък
466 467 default_priority_normal: Нормален
467 468 default_priority_high: Висок
468 469 default_priority_urgent: Спешен
469 470 default_priority_immediate: Веднага
470 471 default_activity_design: Дизайн
471 472 default_activity_development: Разработка
472 473
473 474 enumeration_issue_priorities: Приоритети на задачи
474 475 enumeration_doc_categories: Категории документи
475 476 enumeration_activities: Дейности (time tracking)
@@ -1,475 +1,476
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: 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 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 SVN.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72
73 73 mail_subject_lost_password: Ihr redMine Kennwort
74 74 mail_subject_register: redMine Kontoaktivierung
75 75
76 76 gui_validation_error: 1 Fehler
77 77 gui_validation_error_plural: %d Fehler
78 78
79 79 field_name: Name
80 80 field_description: Beschreibung
81 81 field_summary: Zusammenfassung
82 82 field_is_required: Erforderlich
83 83 field_firstname: Vorname
84 84 field_lastname: Nachname
85 85 field_mail: Email
86 86 field_filename: Datei
87 87 field_filesize: Größe
88 88 field_downloads: Downloads
89 89 field_author: Autor
90 90 field_created_on: Angelegt
91 91 field_updated_on: Aktualisiert
92 92 field_field_format: Format
93 93 field_is_for_all: Für alle Projekte
94 94 field_possible_values: Mögliche Werte
95 95 field_regexp: Regulärer Ausdruck
96 96 field_min_length: Minimale Länge
97 97 field_max_length: Maximale Länge
98 98 field_value: Wert
99 99 field_category: Kategorie
100 100 field_title: Titel
101 101 field_project: Projekt
102 102 field_issue: Ticket
103 103 field_status: Status
104 104 field_notes: Kommentare
105 105 field_is_closed: Problem erledigt
106 106 field_is_default: Default
107 107 field_html_color: Farbe
108 108 field_tracker: Tracker
109 109 field_subject: Thema
110 110 field_due_date: Abgabedatum
111 111 field_assigned_to: Zugewiesen an
112 112 field_priority: Priorität
113 113 field_fixed_version: Erledigt in Version
114 114 field_user: Benutzer
115 115 field_role: Rolle
116 116 field_homepage: Startseite
117 117 field_is_public: Öffentlich
118 118 field_parent: Unterprojekt von
119 119 field_is_in_chlog: Ansicht im Change-Log
120 120 field_is_in_roadmap: Ansicht in der Roadmap
121 121 field_login: Mitgliedsname
122 122 field_mail_notification: Mailbenachrichtigung
123 123 field_admin: Administrator
124 124 field_last_login_on: Letzte Anmeldung
125 125 field_language: Sprache
126 126 field_effective_date: Datum
127 127 field_password: Kennwort
128 128 field_new_password: Neues Kennwort
129 129 field_password_confirmation: Bestätigung
130 130 field_version: Version
131 131 field_type: Typ
132 132 field_host: Host
133 133 field_port: Port
134 134 field_account: Konto
135 135 field_base_dn: Base DN
136 136 field_attr_login: Mitgliedsnameattribut
137 137 field_attr_firstname: Vornamensattribut
138 138 field_attr_lastname: Namenattribut
139 139 field_attr_mail: Emailattribut
140 140 field_onthefly: On-the-fly Benutzerkreation
141 141 field_start_date: Beginn
142 142 field_done_ratio: %% erledigt
143 143 field_auth_source: Authentifizierungs-Modus
144 144 field_hide_mail: Email Adresse nicht anzeigen
145 145 field_comments: Kommentar
146 146 field_url: URL
147 147 field_start_page: Hauptseite
148 148 field_subproject: Subprojekt von
149 149 field_hours: Stunden
150 150 field_activity: Aktivität
151 151 field_spent_on: Datum
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Applikation Titel
158 158 setting_app_subtitle: Applikation Untertitel
159 159 setting_welcome_text: Willkommenstext
160 160 setting_default_language: Default Sprache
161 161 setting_login_required: Authent. erfordert
162 162 setting_self_registration: Anmeldung ermöglicht
163 163 setting_attachment_max_size: max. Dateigröße
164 164 setting_issues_export_limit: Limit Export Tickets
165 165 setting_mail_from: Mail Absender
166 166 setting_host_name: Host Name
167 167 setting_text_formatting: Textformatierung
168 168 setting_wiki_compression: Wiki-Historie komprimieren
169 169 setting_feeds_limit: Limit Feed Inhalt
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Enable WS for repository management
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Benutzer
177 177 label_user_plural: Benutzer
178 178 label_user_new: Neuer Benutzer
179 179 label_project: Projekt
180 180 label_project_new: Neues Projekt
181 181 label_project_plural: Projekte
182 182 label_project_all: All Projects
183 183 label_project_latest: Neueste Projekte
184 184 label_issue: Ticket
185 185 label_issue_new: Neues Ticket
186 186 label_issue_plural: Tickets
187 187 label_issue_view_all: Alle Tickets ansehen
188 188 label_document: Dokument
189 189 label_document_new: Neues Dokument
190 190 label_document_plural: Dokumente
191 191 label_role: Rolle
192 192 label_role_plural: Rollen
193 193 label_role_new: Neue Rolle
194 194 label_role_and_permissions: Rollen und Rechte
195 195 label_member: Mitglied
196 196 label_member_new: Neues Mitglied
197 197 label_member_plural: Mitglieder
198 198 label_tracker: Tracker
199 199 label_tracker_plural: Tracker
200 200 label_tracker_new: Neuer Tracker
201 201 label_workflow: Workflow
202 202 label_issue_status: Ticket-Status
203 203 label_issue_status_plural: Ticket-Status
204 204 label_issue_status_new: Neuer Status
205 205 label_issue_category: Ticket-Kategorie
206 206 label_issue_category_plural: Ticket-Kategorien
207 207 label_issue_category_new: Neue Kategorie
208 208 label_custom_field: Benutzerdefiniertes Feld
209 209 label_custom_field_plural: Benutzerdefinierte Felder
210 210 label_custom_field_new: Neues Feld
211 211 label_enumerations: Aufzählungen
212 212 label_enumeration_new: Neuer Wert
213 213 label_information: Information
214 214 label_information_plural: Informationen
215 215 label_please_login: Anmelden
216 216 label_register: Anmelden
217 217 label_password_lost: Kennwort vergessen
218 218 label_home: Hauptseite
219 219 label_my_page: Meine Seite
220 220 label_my_account: Mein Konto
221 221 label_my_projects: Meine Projekte
222 222 label_administration: Administration
223 223 label_login: Einloggen
224 224 label_logout: Abmelden
225 225 label_help: Hilfe
226 226 label_reported_issues: Gemeldete Tickets
227 227 label_assigned_to_me_issues: Mir zugewiesen
228 228 label_last_login: Letzte Anmeldung
229 229 label_last_updates: zuletzt aktualisiert
230 230 label_last_updates_plural: %d zuletzt aktualisierten
231 231 label_registered_on: Angemeldet am
232 232 label_activity: Aktivität
233 233 label_new: Neu
234 234 label_logged_as: Angemeldet als
235 235 label_environment: Environment
236 236 label_authentication: Authentifizierung
237 237 label_auth_source: Authentifizierungs-Modus
238 238 label_auth_source_new: Neuer Authentifizierungs-Modus
239 239 label_auth_source_plural: Authentifizierungs-Arten
240 240 label_subproject_plural: Sub Projekte
241 241 label_min_max_length: Min - Max Länge
242 242 label_list: Liste
243 243 label_date: Datum
244 244 label_integer: Zahl
245 245 label_boolean: Boolean
246 246 label_string: Text
247 247 label_text: Langer Text
248 248 label_attribute: Attribut
249 249 label_attribute_plural: Attribute
250 250 label_download: %d Download
251 251 label_download_plural: %d Downloads
252 252 label_no_data: Nichts anzuzeigen
253 253 label_change_status: Statuswechsel
254 254 label_history: Historie
255 255 label_attachment: Datei
256 256 label_attachment_new: Neue Datei
257 257 label_attachment_delete: Anhang löschen
258 258 label_attachment_plural: Dateien
259 259 label_report: Bericht
260 260 label_report_plural: Berichte
261 261 label_news: News
262 262 label_news_new: News hinzufügen
263 263 label_news_plural: News
264 264 label_news_latest: Letzte News
265 265 label_news_view_all: Alle News anzeigen
266 266 label_change_log: Change-Log
267 267 label_settings: Konfiguration
268 268 label_overview: Übersicht
269 269 label_version: Version
270 270 label_version_new: Neue Version
271 271 label_version_plural: Versionen
272 272 label_confirmation: Bestätigung
273 273 label_export_to: Export zu
274 274 label_read: Lesen...
275 275 label_public_projects: Öffentliche Projekte
276 276 label_open_issues: offen
277 277 label_open_issues_plural: offen
278 278 label_closed_issues: geschlossen
279 279 label_closed_issues_plural: geschlossen
280 280 label_total: Gesamtzahl
281 281 label_permissions: Berechtigungen
282 282 label_current_status: Gegenwärtiger Status
283 283 label_new_statuses_allowed: Neue Berechtigungen
284 284 label_all: alle
285 285 label_none: kein
286 286 label_next: Weiter
287 287 label_previous: Zurück
288 288 label_used_by: Benutzt von
289 289 label_details: Details...
290 290 label_add_note: Kommentar hinzufügen
291 291 label_per_page: Pro Seite
292 292 label_calendar: Kalender
293 293 label_months_from: Monate ab
294 294 label_gantt: Gantt
295 295 label_internal: Intern
296 296 label_last_changes: %d letzte Änderungen
297 297 label_change_view_all: Alle Änderungen ansehen
298 298 label_personalize_page: Diese Seite anpassen
299 299 label_comment: Kommentar
300 300 label_comment_plural: Kommentare
301 301 label_comment_add: Kommentar hinzufügen
302 302 label_comment_added: Kommentar hinzugefügt
303 303 label_comment_delete: Kommentar löschen
304 304 label_query: Benutzerdefinierte Abfrage
305 305 label_query_plural: Benutzerdefinierte Berichte
306 306 label_query_new: Neuer Bericht
307 307 label_filter_add: Filter hinzufügen
308 308 label_filter_plural: Filter
309 309 label_equals: ist
310 310 label_not_equals: ist nicht
311 311 label_in_less_than: in weniger als
312 312 label_in_more_than: in mehr als
313 313 label_in: an
314 314 label_today: heute
315 315 label_less_than_ago: vor weniger als
316 316 label_more_than_ago: vor mehr als
317 317 label_ago: vor
318 318 label_contains: enthält
319 319 label_not_contains: enthält nicht
320 320 label_day_plural: Tage
321 321 label_repository: SVN Projektarchiv
322 322 label_browse: Codebrowser
323 323 label_modification: %d Änderung
324 324 label_modification_plural: %d Änderungen
325 325 label_revision: Revision
326 326 label_revision_plural: Revisionen
327 327 label_added: hinzugefügt
328 328 label_modified: geändert
329 329 label_deleted: gelöscht
330 330 label_latest_revision: Aktuellste Revision
331 331 label_latest_revision_plural: Aktuellste Revisionen
332 332 label_view_revisions: Revisionen anzeigen
333 333 label_max_size: Maximale Größe
334 334 label_on: von
335 335 label_sort_highest: Anfang
336 336 label_sort_higher: eins höher
337 337 label_sort_lower: eins tiefer
338 338 label_sort_lowest: Ende
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Fällig in
341 341 label_roadmap_no_issues: Keine Tickets für diese Version
342 342 label_search: Suche
343 343 label_result: %d Resultat
344 344 label_result_plural: %d Resultate
345 345 label_all_words: Alle Wörter
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki Bearbeitung
348 348 label_wiki_edit_plural: Wiki Bearbeitungen
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Index
350 351 label_current_version: Gegenwärtige Version
351 352 label_preview: Vorschau
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Details aller Änderungen
354 355 label_issue_tracking: Tickets
355 356 label_spent_time: Aufgewendete Zeit
356 357 label_f_hour: %.2f Stunde
357 358 label_f_hour_plural: %.2f Stunden
358 359 label_time_tracking: Zeiterfassung
359 360 label_change_plural: Änderungen
360 361 label_statistics: Statistiken
361 362 label_commits_per_month: Übertragungen pro Monat
362 363 label_commits_per_author: Übertragungen pro Autor
363 364 label_view_diff: View differences
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: side by side
366 367 label_options: Options
367 368 label_copy_workflow_from: Copy workflow from
368 369 label_permissions_report: Permissions report
369 370 label_watched_issues: Watched issues
370 371 label_related_issues: Related issues
371 372 label_applied_status: Applied status
372 373 label_loading: Loading...
373 374 label_relation_new: New relation
374 375 label_relation_delete: Delete relation
375 376 label_relates_to: related to
376 377 label_duplicates: duplicates
377 378 label_blocks: blocks
378 379 label_blocked_by: blocked by
379 380 label_precedes: precedes
380 381 label_follows: follows
381 382 label_end_to_start: start to end
382 383 label_end_to_end: end to end
383 384 label_start_to_start: start to start
384 385 label_start_to_end: start to end
385 386 label_stay_logged_in: Stay logged in
386 387 label_disabled: disabled
387 388 label_show_completed_versions: Show completed versions
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Einloggen
399 400 button_submit: OK
400 401 button_save: Speichern
401 402 button_check_all: Alles auswählen
402 403 button_uncheck_all: Alles abwählen
403 404 button_delete: Löschen
404 405 button_create: Anlegen
405 406 button_test: Testen
406 407 button_edit: Bearbeiten
407 408 button_add: Hinzufügen
408 409 button_change: Wechseln
409 410 button_apply: Anwenden
410 411 button_clear: Zurücksetzen
411 412 button_lock: Sperren
412 413 button_unlock: Entsperren
413 414 button_download: Download
414 415 button_list: Liste
415 416 button_view: Siehe
416 417 button_move: Verschieben
417 418 button_back: Zurück
418 419 button_cancel: Abbrechen
419 420 button_activate: Aktivieren
420 421 button_sort: Sortieren
421 422 button_log_time: Log time
422 423 button_rollback: Rollback to this version
423 424 button_watch: Watch
424 425 button_unwatch: Unwatch
425 426 button_reply: Reply
426 427
427 428 status_active: aktiv
428 429 status_registered: angemeldet
429 430 status_locked: gesperrt
430 431
431 432 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
432 433 text_regexp_info: eg. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 heißt keine Beschränkung
434 435 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
435 436 text_workflow_edit: Workflow zum Bearbeiten auswählen
436 437 text_are_you_sure: Sind Sie sicher?
437 438 text_journal_changed: geändert von %s zu %s
438 439 text_journal_set_to: gestellt zu %s
439 440 text_journal_deleted: gelöscht
440 441 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
441 442 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
442 443 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
443 444 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
444 445 text_caracters_maximum: %d characters maximum.
445 446 text_length_between: Length between %d and %d characters.
446 447 text_tracker_no_workflow: No workflow defined for this tracker
447 448 text_unallowed_characters: Unallowed characters
448 449 text_comma_separated: Multiple values allowed (comma separated).
449 450 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
450 451
451 452 default_role_manager: Manager
452 453 default_role_developper: Developer
453 454 default_role_reporter: Reporter
454 455 default_tracker_bug: Fehler
455 456 default_tracker_feature: Feature
456 457 default_tracker_support: Support
457 458 default_issue_status_new: Neu
458 459 default_issue_status_assigned: Zugewiesen
459 460 default_issue_status_resolved: Gelöst
460 461 default_issue_status_feedback: Feedback
461 462 default_issue_status_closed: Erledigt
462 463 default_issue_status_rejected: Abgewiesen
463 464 default_doc_category_user: Benutzerdokumentation
464 465 default_doc_category_tech: Technische Dokumentation
465 466 default_priority_low: Niedrig
466 467 default_priority_normal: Normal
467 468 default_priority_high: Hoch
468 469 default_priority_urgent: Dringend
469 470 default_priority_immediate: Sofort
470 471 default_activity_design: Design
471 472 default_activity_development: Development
472 473
473 474 enumeration_issue_priorities: Ticket-Prioritäten
474 475 enumeration_doc_categories: Dokumentenkategorien
475 476 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,475 +1,476
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.
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
73 73 mail_subject_lost_password: Your redMine password
74 74 mail_subject_register: redMine account activation
75 75
76 76 gui_validation_error: 1 error
77 77 gui_validation_error_plural: %d errors
78 78
79 79 field_name: Name
80 80 field_description: Description
81 81 field_summary: Summary
82 82 field_is_required: Required
83 83 field_firstname: Firstname
84 84 field_lastname: Lastname
85 85 field_mail: Email
86 86 field_filename: File
87 87 field_filesize: Size
88 88 field_downloads: Downloads
89 89 field_author: Author
90 90 field_created_on: Created
91 91 field_updated_on: Updated
92 92 field_field_format: Format
93 93 field_is_for_all: For all projects
94 94 field_possible_values: Possible values
95 95 field_regexp: Regular expression
96 96 field_min_length: Minimum length
97 97 field_max_length: Maximum length
98 98 field_value: Value
99 99 field_category: Category
100 100 field_title: Title
101 101 field_project: Project
102 102 field_issue: Issue
103 103 field_status: Status
104 104 field_notes: Notes
105 105 field_is_closed: Issue closed
106 106 field_is_default: Default status
107 107 field_html_color: Color
108 108 field_tracker: Tracker
109 109 field_subject: Subject
110 110 field_due_date: Due date
111 111 field_assigned_to: Assigned to
112 112 field_priority: Priority
113 113 field_fixed_version: Fixed version
114 114 field_user: User
115 115 field_role: Role
116 116 field_homepage: Homepage
117 117 field_is_public: Public
118 118 field_parent: Subproject of
119 119 field_is_in_chlog: Issues displayed in changelog
120 120 field_is_in_roadmap: Issues displayed in roadmap
121 121 field_login: Login
122 122 field_mail_notification: Mail notifications
123 123 field_admin: Administrator
124 124 field_last_login_on: Last connection
125 125 field_language: Language
126 126 field_effective_date: Date
127 127 field_password: Password
128 128 field_new_password: New password
129 129 field_password_confirmation: Confirmation
130 130 field_version: Version
131 131 field_type: Type
132 132 field_host: Host
133 133 field_port: Port
134 134 field_account: Account
135 135 field_base_dn: Base DN
136 136 field_attr_login: Login attribute
137 137 field_attr_firstname: Firstname attribute
138 138 field_attr_lastname: Lastname attribute
139 139 field_attr_mail: Email attribute
140 140 field_onthefly: On-the-fly user creation
141 141 field_start_date: Start
142 142 field_done_ratio: %% Done
143 143 field_auth_source: Authentication mode
144 144 field_hide_mail: Hide my email address
145 145 field_comments: Comment
146 146 field_url: URL
147 147 field_start_page: Start page
148 148 field_subproject: Subproject
149 149 field_hours: Hours
150 150 field_activity: Activity
151 151 field_spent_on: Date
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Application title
158 158 setting_app_subtitle: Application subtitle
159 159 setting_welcome_text: Welcome text
160 160 setting_default_language: Default language
161 161 setting_login_required: Authent. required
162 162 setting_self_registration: Self-registration enabled
163 163 setting_attachment_max_size: Attachment max. size
164 164 setting_issues_export_limit: Issues export limit
165 165 setting_mail_from: Emission mail address
166 166 setting_host_name: Host name
167 167 setting_text_formatting: Text formatting
168 168 setting_wiki_compression: Wiki history compression
169 169 setting_feeds_limit: Feed content limit
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Enable WS for repository management
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: User
177 177 label_user_plural: Users
178 178 label_user_new: New user
179 179 label_project: Project
180 180 label_project_new: New project
181 181 label_project_plural: Projects
182 182 label_project_all: All Projects
183 183 label_project_latest: Latest projects
184 184 label_issue: Issue
185 185 label_issue_new: New issue
186 186 label_issue_plural: Issues
187 187 label_issue_view_all: View all issues
188 188 label_document: Document
189 189 label_document_new: New document
190 190 label_document_plural: Documents
191 191 label_role: Role
192 192 label_role_plural: Roles
193 193 label_role_new: New role
194 194 label_role_and_permissions: Roles and permissions
195 195 label_member: Member
196 196 label_member_new: New member
197 197 label_member_plural: Members
198 198 label_tracker: Tracker
199 199 label_tracker_plural: Trackers
200 200 label_tracker_new: New tracker
201 201 label_workflow: Workflow
202 202 label_issue_status: Issue status
203 203 label_issue_status_plural: Issue statuses
204 204 label_issue_status_new: New status
205 205 label_issue_category: Issue category
206 206 label_issue_category_plural: Issue categories
207 207 label_issue_category_new: New category
208 208 label_custom_field: Custom field
209 209 label_custom_field_plural: Custom fields
210 210 label_custom_field_new: New custom field
211 211 label_enumerations: Enumerations
212 212 label_enumeration_new: New value
213 213 label_information: Information
214 214 label_information_plural: Information
215 215 label_please_login: Please login
216 216 label_register: Register
217 217 label_password_lost: Lost password
218 218 label_home: Home
219 219 label_my_page: My page
220 220 label_my_account: My account
221 221 label_my_projects: My projects
222 222 label_administration: Administration
223 223 label_login: Login
224 224 label_logout: Logout
225 225 label_help: Help
226 226 label_reported_issues: Reported issues
227 227 label_assigned_to_me_issues: Issues assigned to me
228 228 label_last_login: Last connection
229 229 label_last_updates: Last updated
230 230 label_last_updates_plural: %d last updated
231 231 label_registered_on: Registered on
232 232 label_activity: Activity
233 233 label_new: New
234 234 label_logged_as: Logged as
235 235 label_environment: Environment
236 236 label_authentication: Authentication
237 237 label_auth_source: Authentication mode
238 238 label_auth_source_new: New authentication mode
239 239 label_auth_source_plural: Authentication modes
240 240 label_subproject_plural: Subprojects
241 241 label_min_max_length: Min - Max length
242 242 label_list: List
243 243 label_date: Date
244 244 label_integer: Integer
245 245 label_boolean: Boolean
246 246 label_string: Text
247 247 label_text: Long text
248 248 label_attribute: Attribute
249 249 label_attribute_plural: Attributes
250 250 label_download: %d Download
251 251 label_download_plural: %d Downloads
252 252 label_no_data: No data to display
253 253 label_change_status: Change status
254 254 label_history: History
255 255 label_attachment: File
256 256 label_attachment_new: New file
257 257 label_attachment_delete: Delete file
258 258 label_attachment_plural: Files
259 259 label_report: Report
260 260 label_report_plural: Reports
261 261 label_news: News
262 262 label_news_new: Add news
263 263 label_news_plural: News
264 264 label_news_latest: Latest news
265 265 label_news_view_all: View all news
266 266 label_change_log: Change log
267 267 label_settings: Settings
268 268 label_overview: Overview
269 269 label_version: Version
270 270 label_version_new: New version
271 271 label_version_plural: Versions
272 272 label_confirmation: Confirmation
273 273 label_export_to: Export to
274 274 label_read: Read...
275 275 label_public_projects: Public projects
276 276 label_open_issues: open
277 277 label_open_issues_plural: open
278 278 label_closed_issues: closed
279 279 label_closed_issues_plural: closed
280 280 label_total: Total
281 281 label_permissions: Permissions
282 282 label_current_status: Current status
283 283 label_new_statuses_allowed: New statuses allowed
284 284 label_all: all
285 285 label_none: none
286 286 label_next: Next
287 287 label_previous: Previous
288 288 label_used_by: Used by
289 289 label_details: Details...
290 290 label_add_note: Add a note
291 291 label_per_page: Per page
292 292 label_calendar: Calendar
293 293 label_months_from: months from
294 294 label_gantt: Gantt
295 295 label_internal: Internal
296 296 label_last_changes: last %d changes
297 297 label_change_view_all: View all changes
298 298 label_personalize_page: Personalize this page
299 299 label_comment: Comment
300 300 label_comment_plural: Comments
301 301 label_comment_add: Add a comment
302 302 label_comment_added: Comment added
303 303 label_comment_delete: Delete comments
304 304 label_query: Custom query
305 305 label_query_plural: Custom queries
306 306 label_query_new: New query
307 307 label_filter_add: Add filter
308 308 label_filter_plural: Filters
309 309 label_equals: is
310 310 label_not_equals: is not
311 311 label_in_less_than: in less than
312 312 label_in_more_than: in more than
313 313 label_in: in
314 314 label_today: today
315 315 label_less_than_ago: less than days ago
316 316 label_more_than_ago: more than days ago
317 317 label_ago: days ago
318 318 label_contains: contains
319 319 label_not_contains: doesn't contain
320 320 label_day_plural: days
321 321 label_repository: SVN Repository
322 322 label_browse: Browse
323 323 label_modification: %d change
324 324 label_modification_plural: %d changes
325 325 label_revision: Revision
326 326 label_revision_plural: Revisions
327 327 label_added: added
328 328 label_modified: modified
329 329 label_deleted: deleted
330 330 label_latest_revision: Latest revision
331 331 label_latest_revision_plural: Latest revisions
332 332 label_view_revisions: View revisions
333 333 label_max_size: Maximum size
334 334 label_on: 'on'
335 335 label_sort_highest: Move to top
336 336 label_sort_higher: Move up
337 337 label_sort_lower: Move down
338 338 label_sort_lowest: Move to bottom
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Due in
341 341 label_roadmap_no_issues: No issues for this version
342 342 label_search: Search
343 343 label_result: %d result
344 344 label_result_plural: %d results
345 345 label_all_words: All words
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki edit
348 348 label_wiki_edit_plural: Wiki edits
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Index
350 351 label_current_version: Current version
351 352 label_preview: Preview
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Details of all changes
354 355 label_issue_tracking: Issue tracking
355 356 label_spent_time: Spent time
356 357 label_f_hour: %.2f hour
357 358 label_f_hour_plural: %.2f hours
358 359 label_time_tracking: Time tracking
359 360 label_change_plural: Changes
360 361 label_statistics: Statistics
361 362 label_commits_per_month: Commits per month
362 363 label_commits_per_author: Commits per author
363 364 label_view_diff: View differences
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: side by side
366 367 label_options: Options
367 368 label_copy_workflow_from: Copy workflow from
368 369 label_permissions_report: Permissions report
369 370 label_watched_issues: Watched issues
370 371 label_related_issues: Related issues
371 372 label_applied_status: Applied status
372 373 label_loading: Loading...
373 374 label_relation_new: New relation
374 375 label_relation_delete: Delete relation
375 376 label_relates_to: related to
376 377 label_duplicates: duplicates
377 378 label_blocks: blocks
378 379 label_blocked_by: blocked by
379 380 label_precedes: precedes
380 381 label_follows: follows
381 382 label_end_to_start: start to end
382 383 label_end_to_end: end to end
383 384 label_start_to_start: start to start
384 385 label_start_to_end: start to end
385 386 label_stay_logged_in: Stay logged in
386 387 label_disabled: disabled
387 388 label_show_completed_versions: Show completed versions
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Login
399 400 button_submit: Submit
400 401 button_save: Save
401 402 button_check_all: Check all
402 403 button_uncheck_all: Uncheck all
403 404 button_delete: Delete
404 405 button_create: Create
405 406 button_test: Test
406 407 button_edit: Edit
407 408 button_add: Add
408 409 button_change: Change
409 410 button_apply: Apply
410 411 button_clear: Clear
411 412 button_lock: Lock
412 413 button_unlock: Unlock
413 414 button_download: Download
414 415 button_list: List
415 416 button_view: View
416 417 button_move: Move
417 418 button_back: Back
418 419 button_cancel: Cancel
419 420 button_activate: Activate
420 421 button_sort: Sort
421 422 button_log_time: Log time
422 423 button_rollback: Rollback to this version
423 424 button_watch: Watch
424 425 button_unwatch: Unwatch
425 426 button_reply: Reply
426 427
427 428 status_active: active
428 429 status_registered: registered
429 430 status_locked: locked
430 431
431 432 text_select_mail_notifications: Select actions for which mail notifications should be sent.
432 433 text_regexp_info: eg. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 means no restriction
434 435 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
435 436 text_workflow_edit: Select a role and a tracker to edit the workflow
436 437 text_are_you_sure: Are you sure ?
437 438 text_journal_changed: changed from %s to %s
438 439 text_journal_set_to: set to %s
439 440 text_journal_deleted: deleted
440 441 text_tip_task_begin_day: task beginning this day
441 442 text_tip_task_end_day: task ending this day
442 443 text_tip_task_begin_end_day: task beginning and ending this day
443 444 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
444 445 text_caracters_maximum: %d characters maximum.
445 446 text_length_between: Length between %d and %d characters.
446 447 text_tracker_no_workflow: No workflow defined for this tracker
447 448 text_unallowed_characters: Unallowed characters
448 449 text_comma_separated: Multiple values allowed (comma separated).
449 450 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
450 451
451 452 default_role_manager: Manager
452 453 default_role_developper: Developer
453 454 default_role_reporter: Reporter
454 455 default_tracker_bug: Bug
455 456 default_tracker_feature: Feature
456 457 default_tracker_support: Support
457 458 default_issue_status_new: New
458 459 default_issue_status_assigned: Assigned
459 460 default_issue_status_resolved: Resolved
460 461 default_issue_status_feedback: Feedback
461 462 default_issue_status_closed: Closed
462 463 default_issue_status_rejected: Rejected
463 464 default_doc_category_user: User documentation
464 465 default_doc_category_tech: Technical documentation
465 466 default_priority_low: Low
466 467 default_priority_normal: Normal
467 468 default_priority_high: High
468 469 default_priority_urgent: Urgent
469 470 default_priority_immediate: Immediate
470 471 default_activity_design: Design
471 472 default_activity_development: Development
472 473
473 474 enumeration_issue_priorities: Issue priorities
474 475 enumeration_doc_categories: Document categories
475 476 enumeration_activities: Activities (time tracking)
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Tu contraseña del redMine
74 74 mail_subject_register: Activación de la cuenta del redMine
75 75
76 76 gui_validation_error: 1 error
77 77 gui_validation_error_plural: %d errores
78 78
79 79 field_name: Nombre
80 80 field_description: Descripción
81 81 field_summary: Resumen
82 82 field_is_required: Obligatorio
83 83 field_firstname: Nombre
84 84 field_lastname: Apellido
85 85 field_mail: Email
86 86 field_filename: Fichero
87 87 field_filesize: Tamaño
88 88 field_downloads: Telecargas
89 89 field_author: Autor
90 90 field_created_on: Creado
91 91 field_updated_on: Actualizado
92 92 field_field_format: Formato
93 93 field_is_for_all: Para todos los proyectos
94 94 field_possible_values: Valores posibles
95 95 field_regexp: Expresión regular
96 96 field_min_length: Longitud mínima
97 97 field_max_length: Longitud máxima
98 98 field_value: Valor
99 99 field_category: Categoría
100 100 field_title: Título
101 101 field_project: Proyecto
102 102 field_issue: Petición
103 103 field_status: Estatuto
104 104 field_notes: Notas
105 105 field_is_closed: Petición resuelta
106 106 field_is_default: Estatuto por defecto
107 107 field_html_color: Color
108 108 field_tracker: Tracker
109 109 field_subject: Tema
110 110 field_due_date: Fecha debida
111 111 field_assigned_to: Asignado a
112 112 field_priority: Prioridad
113 113 field_fixed_version: Versión corregida
114 114 field_user: Usuario
115 115 field_role: Papel
116 116 field_homepage: Sitio web
117 117 field_is_public: Público
118 118 field_parent: Proyecto secundario de
119 119 field_is_in_chlog: Consultar las peticiones en el histórico
120 120 field_is_in_roadmap: Consultar las peticiones en el roadmap
121 121 field_login: Identificador
122 122 field_mail_notification: Notificación por mail
123 123 field_admin: Administrador
124 124 field_last_login_on: Última conexión
125 125 field_language: Lengua
126 126 field_effective_date: Fecha
127 127 field_password: Contraseña
128 128 field_new_password: Nueva contraseña
129 129 field_password_confirmation: Confirmación
130 130 field_version: Versión
131 131 field_type: Tipo
132 132 field_host: Anfitrión
133 133 field_port: Puerto
134 134 field_account: Cuenta
135 135 field_base_dn: Base DN
136 136 field_attr_login: Cualidad del identificador
137 137 field_attr_firstname: Cualidad del nombre
138 138 field_attr_lastname: Cualidad del apellido
139 139 field_attr_mail: Cualidad del Email
140 140 field_onthefly: Creación del usuario On-the-fly
141 141 field_start_date: Comienzo
142 142 field_done_ratio: %% Realizado
143 143 field_auth_source: Modo de la autentificación
144 144 field_hide_mail: Ocultar mi email address
145 145 field_comments: Comentario
146 146 field_url: URL
147 147 field_start_page: Página principal
148 148 field_subproject: Proyecto secundario
149 149 field_hours: Hours
150 150 field_activity: Activity
151 151 field_spent_on: Fecha
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Título del aplicación
158 158 setting_app_subtitle: Subtítulo del aplicación
159 159 setting_welcome_text: Texto acogida
160 160 setting_default_language: Lengua del defecto
161 161 setting_login_required: Autentif. requerida
162 162 setting_self_registration: Registro permitido
163 163 setting_attachment_max_size: Tamaño máximo del fichero
164 164 setting_issues_export_limit: Issues export limit
165 165 setting_mail_from: Email de la emisión
166 166 setting_host_name: Nombre de anfitrión
167 167 setting_text_formatting: Formato de texto
168 168 setting_wiki_compression: Compresión de la historia de Wiki
169 169 setting_feeds_limit: Feed content limit
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Enable WS for repository management
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Usuario
177 177 label_user_plural: Usuarios
178 178 label_user_new: Nuevo usuario
179 179 label_project: Proyecto
180 180 label_project_new: Nuevo proyecto
181 181 label_project_plural: Proyectos
182 182 label_project_all: All Projects
183 183 label_project_latest: Los proyectos más últimos
184 184 label_issue: Petición
185 185 label_issue_new: Nueva petición
186 186 label_issue_plural: Peticiones
187 187 label_issue_view_all: Ver todas las peticiones
188 188 label_document: Documento
189 189 label_document_new: Nuevo documento
190 190 label_document_plural: Documentos
191 191 label_role: Papel
192 192 label_role_plural: Papeles
193 193 label_role_new: Nuevo papel
194 194 label_role_and_permissions: Papeles y permisos
195 195 label_member: Miembro
196 196 label_member_new: Nuevo miembro
197 197 label_member_plural: Miembros
198 198 label_tracker: Tracker
199 199 label_tracker_plural: Trackers
200 200 label_tracker_new: Nuevo tracker
201 201 label_workflow: Workflow
202 202 label_issue_status: Estatuto de petición
203 203 label_issue_status_plural: Estatutos de las peticiones
204 204 label_issue_status_new: Nuevo estatuto
205 205 label_issue_category: Categoría de las peticiones
206 206 label_issue_category_plural: Categorías de las peticiones
207 207 label_issue_category_new: Nueva categoría
208 208 label_custom_field: Campo personalizado
209 209 label_custom_field_plural: Campos personalizados
210 210 label_custom_field_new: Nuevo campo personalizado
211 211 label_enumerations: Listas de valores
212 212 label_enumeration_new: Nuevo valor
213 213 label_information: Informacion
214 214 label_information_plural: Informaciones
215 215 label_please_login: Conexión
216 216 label_register: Registrar
217 217 label_password_lost: ¿Olvidaste la contraseña?
218 218 label_home: Acogida
219 219 label_my_page: Mi página
220 220 label_my_account: Mi cuenta
221 221 label_my_projects: Mis proyectos
222 222 label_administration: Administración
223 223 label_login: Conexión
224 224 label_logout: Desconexión
225 225 label_help: Ayuda
226 226 label_reported_issues: Peticiones registradas
227 227 label_assigned_to_me_issues: Peticiones que me están asignadas
228 228 label_last_login: Última conexión
229 229 label_last_updates: Actualizado
230 230 label_last_updates_plural: %d Actualizados
231 231 label_registered_on: Inscrito el
232 232 label_activity: Actividad
233 233 label_new: Nuevo
234 234 label_logged_as: Conectado como
235 235 label_environment: Environment
236 236 label_authentication: Autentificación
237 237 label_auth_source: Modo de la autentificación
238 238 label_auth_source_new: Nuevo modo de la autentificación
239 239 label_auth_source_plural: Modos de la autentificación
240 240 label_subproject_plural: Proyectos secundarios
241 241 label_min_max_length: Longitud mín - máx
242 242 label_list: Lista
243 243 label_date: Fecha
244 244 label_integer: Número
245 245 label_boolean: Boleano
246 246 label_string: Texto
247 247 label_text: Texto largo
248 248 label_attribute: Cualidad
249 249 label_attribute_plural: Cualidades
250 250 label_download: %d Telecarga
251 251 label_download_plural: %d Telecargas
252 252 label_no_data: Ningunos datos a exhibir
253 253 label_change_status: Cambiar el estatuto
254 254 label_history: Histórico
255 255 label_attachment: Fichero
256 256 label_attachment_new: Nuevo fichero
257 257 label_attachment_delete: Suprimir el fichero
258 258 label_attachment_plural: Ficheros
259 259 label_report: Informe
260 260 label_report_plural: Informes
261 261 label_news: Noticia
262 262 label_news_new: Nueva noticia
263 263 label_news_plural: Noticias
264 264 label_news_latest: Últimas noticias
265 265 label_news_view_all: Ver todas las noticias
266 266 label_change_log: Cambios
267 267 label_settings: Configuración
268 268 label_overview: Vistazo
269 269 label_version: Versión
270 270 label_version_new: Nueva versión
271 271 label_version_plural: Versiónes
272 272 label_confirmation: Confirmación
273 273 label_export_to: Exportar a
274 274 label_read: Leer...
275 275 label_public_projects: Proyectos publicos
276 276 label_open_issues: abierta
277 277 label_open_issues_plural: abiertas
278 278 label_closed_issues: cerrada
279 279 label_closed_issues_plural: cerradas
280 280 label_total: Total
281 281 label_permissions: Permisos
282 282 label_current_status: Estado actual
283 283 label_new_statuses_allowed: Nuevos estatutos autorizados
284 284 label_all: todos
285 285 label_none: ninguno
286 286 label_next: Próximo
287 287 label_previous: Precedente
288 288 label_used_by: Utilizado por
289 289 label_details: Detalles...
290 290 label_add_note: Agregar una nota
291 291 label_per_page: Por la página
292 292 label_calendar: Calendario
293 293 label_months_from: meses de
294 294 label_gantt: Gantt
295 295 label_internal: Interno
296 296 label_last_changes: %d cambios del último
297 297 label_change_view_all: Ver todos los cambios
298 298 label_personalize_page: Personalizar esta página
299 299 label_comment: Comentario
300 300 label_comment_plural: Comentarios
301 301 label_comment_add: Agregar un comentario
302 302 label_comment_added: Comentario agregó
303 303 label_comment_delete: Suprimir comentarios
304 304 label_query: Pregunta personalizada
305 305 label_query_plural: Preguntas personalizadas
306 306 label_query_new: Nueva preguntas
307 307 label_filter_add: Agregar el filtro
308 308 label_filter_plural: Filtros
309 309 label_equals: igual
310 310 label_not_equals: no igual
311 311 label_in_less_than: en menos que
312 312 label_in_more_than: en más que
313 313 label_in: en
314 314 label_today: hoy
315 315 label_less_than_ago: hace menos de
316 316 label_more_than_ago: hace más de
317 317 label_ago: hace
318 318 label_contains: contiene
319 319 label_not_contains: no contiene
320 320 label_day_plural: días
321 321 label_repository: Depósito SVN
322 322 label_browse: Hojear
323 323 label_modification: %d modificación
324 324 label_modification_plural: %d modificaciones
325 325 label_revision: Revisión
326 326 label_revision_plural: Revisiones
327 327 label_added: agregado
328 328 label_modified: modificado
329 329 label_deleted: suprimido
330 330 label_latest_revision: La revisión más última
331 331 label_latest_revision_plural: Latest revisions
332 332 label_view_revisions: Ver las revisiones
333 333 label_max_size: Tamaño máximo
334 334 label_on: en
335 335 label_sort_highest: Primero
336 336 label_sort_higher: Subir
337 337 label_sort_lower: Bajar
338 338 label_sort_lowest: Último
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Due in
341 341 label_roadmap_no_issues: No issues for this version
342 342 label_search: Búsqueda
343 343 label_result: %d resultado
344 344 label_result_plural: %d resultados
345 345 label_all_words: Todas las palabras
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki edit
348 348 label_wiki_edit_plural: Wiki edits
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Índice
350 351 label_current_version: Versión actual
351 352 label_preview: Previo
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Detalles de todos los cambios
354 355 label_issue_tracking: Issue tracking
355 356 label_spent_time: Spent time
356 357 label_f_hour: %.2f hour
357 358 label_f_hour_plural: %.2f hours
358 359 label_time_tracking: Time tracking
359 360 label_change_plural: Changes
360 361 label_statistics: Statistics
361 362 label_commits_per_month: Commits per month
362 363 label_commits_per_author: Commits per author
363 364 label_view_diff: View differences
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: side by side
366 367 label_options: Options
367 368 label_copy_workflow_from: Copy workflow from
368 369 label_permissions_report: Permissions report
369 370 label_watched_issues: Watched issues
370 371 label_related_issues: Related issues
371 372 label_applied_status: Applied status
372 373 label_loading: Loading...
373 374 label_relation_new: New relation
374 375 label_relation_delete: Delete relation
375 376 label_relates_to: related to
376 377 label_duplicates: duplicates
377 378 label_blocks: blocks
378 379 label_blocked_by: blocked by
379 380 label_precedes: precedes
380 381 label_follows: follows
381 382 label_end_to_start: start to end
382 383 label_end_to_end: end to end
383 384 label_start_to_start: start to start
384 385 label_start_to_end: start to end
385 386 label_stay_logged_in: Stay logged in
386 387 label_disabled: disabled
387 388 label_show_completed_versions: Show completed versions
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Conexión
399 400 button_submit: Someter
400 401 button_save: Validar
401 402 button_check_all: Seleccionar todo
402 403 button_uncheck_all: No seleccionar nada
403 404 button_delete: Suprimir
404 405 button_create: Crear
405 406 button_test: Testar
406 407 button_edit: Modificar
407 408 button_add: Añadir
408 409 button_change: Cambiar
409 410 button_apply: Aplicar
410 411 button_clear: Anular
411 412 button_lock: Bloquear
412 413 button_unlock: Desbloquear
413 414 button_download: Telecargar
414 415 button_list: Listar
415 416 button_view: Ver
416 417 button_move: Mover
417 418 button_back: Atrás
418 419 button_cancel: Cancelar
419 420 button_activate: Activar
420 421 button_sort: Clasificar
421 422 button_log_time: Log time
422 423 button_rollback: Rollback to this version
423 424 button_watch: Watch
424 425 button_unwatch: Unwatch
425 426 button_reply: Reply
426 427
427 428 status_active: active
428 429 status_registered: registered
429 430 status_locked: locked
430 431
431 432 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
432 433 text_regexp_info: eg. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 para ninguna restricción
434 435 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
435 436 text_workflow_edit: Seleccionar un workflow para actualizar
436 437 text_are_you_sure: ¿ Estás seguro ?
437 438 text_journal_changed: cambiado de %s a %s
438 439 text_journal_set_to: fijado a %s
439 440 text_journal_deleted: suprimido
440 441 text_tip_task_begin_day: tarea que comienza este día
441 442 text_tip_task_end_day: tarea que termina este día
442 443 text_tip_task_begin_end_day: tarea que comienza y termina este día
443 444 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
444 445 text_caracters_maximum: %d characters maximum.
445 446 text_length_between: Length between %d and %d characters.
446 447 text_tracker_no_workflow: No workflow defined for this tracker
447 448 text_unallowed_characters: Unallowed characters
448 449 text_comma_separated: Multiple values allowed (comma separated).
449 450 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
450 451
451 452 default_role_manager: Manager
452 453 default_role_developper: Desarrollador
453 454 default_role_reporter: Informador
454 455 default_tracker_bug: Anomalía
455 456 default_tracker_feature: Evolución
456 457 default_tracker_support: Asistencia
457 458 default_issue_status_new: Nuevo
458 459 default_issue_status_assigned: Asignada
459 460 default_issue_status_resolved: Resuelta
460 461 default_issue_status_feedback: Comentario
461 462 default_issue_status_closed: Cerrada
462 463 default_issue_status_rejected: Rechazada
463 464 default_doc_category_user: Documentación del usuario
464 465 default_doc_category_tech: Documentación tecnica
465 466 default_priority_low: Bajo
466 467 default_priority_normal: Normal
467 468 default_priority_high: Alto
468 469 default_priority_urgent: Urgente
469 470 default_priority_immediate: Ahora
470 471 default_activity_design: Design
471 472 default_activity_development: Development
472 473
473 474 enumeration_issue_priorities: Prioridad de las peticiones
474 475 enumeration_doc_categories: Categorías del documento
475 476 enumeration_activities: Activities (time tracking)
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Votre mot de passe redMine
74 74 mail_subject_register: Activation de votre compte redMine
75 75
76 76 gui_validation_error: 1 erreur
77 77 gui_validation_error_plural: %d erreurs
78 78
79 79 field_name: Nom
80 80 field_description: Description
81 81 field_summary: Résumé
82 82 field_is_required: Obligatoire
83 83 field_firstname: Prénom
84 84 field_lastname: Nom
85 85 field_mail: Email
86 86 field_filename: Fichier
87 87 field_filesize: Taille
88 88 field_downloads: Téléchargements
89 89 field_author: Auteur
90 90 field_created_on: Créé
91 91 field_updated_on: Mis à jour
92 92 field_field_format: Format
93 93 field_is_for_all: Pour tous les projets
94 94 field_possible_values: Valeurs possibles
95 95 field_regexp: Expression régulière
96 96 field_min_length: Longueur minimum
97 97 field_max_length: Longueur maximum
98 98 field_value: Valeur
99 99 field_category: Catégorie
100 100 field_title: Titre
101 101 field_project: Projet
102 102 field_issue: Demande
103 103 field_status: Statut
104 104 field_notes: Notes
105 105 field_is_closed: Demande fermée
106 106 field_is_default: Statut par défaut
107 107 field_html_color: Couleur
108 108 field_tracker: Tracker
109 109 field_subject: Sujet
110 110 field_due_date: Date d'échéance
111 111 field_assigned_to: Assigné à
112 112 field_priority: Priorité
113 113 field_fixed_version: Version corrigée
114 114 field_user: Utilisateur
115 115 field_role: Rôle
116 116 field_homepage: Site web
117 117 field_is_public: Public
118 118 field_parent: Sous-projet de
119 119 field_is_in_chlog: Demandes affichées dans l'historique
120 120 field_is_in_roadmap: Demandes affichées dans la roadmap
121 121 field_login: Identifiant
122 122 field_mail_notification: Notifications par mail
123 123 field_admin: Administrateur
124 124 field_last_login_on: Dernière connexion
125 125 field_language: Langue
126 126 field_effective_date: Date
127 127 field_password: Mot de passe
128 128 field_new_password: Nouveau mot de passe
129 129 field_password_confirmation: Confirmation
130 130 field_version: Version
131 131 field_type: Type
132 132 field_host: Hôte
133 133 field_port: Port
134 134 field_account: Compte
135 135 field_base_dn: Base DN
136 136 field_attr_login: Attribut Identifiant
137 137 field_attr_firstname: Attribut Prénom
138 138 field_attr_lastname: Attribut Nom
139 139 field_attr_mail: Attribut Email
140 140 field_onthefly: Création des utilisateurs à la volée
141 141 field_start_date: Début
142 142 field_done_ratio: %% Réalisé
143 143 field_auth_source: Mode d'authentification
144 144 field_hide_mail: Cacher mon adresse mail
145 145 field_comments: Commentaire
146 146 field_url: URL
147 147 field_start_page: Page de démarrage
148 148 field_subproject: Sous-projet
149 149 field_hours: Heures
150 150 field_activity: Activité
151 151 field_spent_on: Date
152 152 field_identifier: Identifiant
153 153 field_is_filter: Utilisé comme filtre
154 154 field_issue_to_id: Demande liée
155 155 field_delay: Retard
156 156
157 157 setting_app_title: Titre de l'application
158 158 setting_app_subtitle: Sous-titre de l'application
159 159 setting_welcome_text: Texte d'accueil
160 160 setting_default_language: Langue par défaut
161 161 setting_login_required: Authentif. obligatoire
162 162 setting_self_registration: Enregistrement autorisé
163 163 setting_attachment_max_size: Taille max des fichiers
164 164 setting_issues_export_limit: Limite export demandes
165 165 setting_mail_from: Adresse d'émission
166 166 setting_host_name: Nom d'hôte
167 167 setting_text_formatting: Formatage du texte
168 168 setting_wiki_compression: Compression historique wiki
169 169 setting_feeds_limit: Limite du contenu des flux RSS
170 170 setting_autofetch_changesets: Récupération auto. des commits SVN
171 171 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
172 172 setting_commit_ref_keywords: Mot-clés de référencement
173 173 setting_commit_fix_keywords: Mot-clés de résolution
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Utilisateur
177 177 label_user_plural: Utilisateurs
178 178 label_user_new: Nouvel utilisateur
179 179 label_project: Projet
180 180 label_project_new: Nouveau projet
181 181 label_project_plural: Projets
182 182 label_project_all: Tous les projets
183 183 label_project_latest: Derniers projets
184 184 label_issue: Demande
185 185 label_issue_new: Nouvelle demande
186 186 label_issue_plural: Demandes
187 187 label_issue_view_all: Voir toutes les demandes
188 188 label_document: Document
189 189 label_document_new: Nouveau document
190 190 label_document_plural: Documents
191 191 label_role: Rôle
192 192 label_role_plural: Rôles
193 193 label_role_new: Nouveau rôle
194 194 label_role_and_permissions: Rôles et permissions
195 195 label_member: Membre
196 196 label_member_new: Nouveau membre
197 197 label_member_plural: Membres
198 198 label_tracker: Tracker
199 199 label_tracker_plural: Trackers
200 200 label_tracker_new: Nouveau tracker
201 201 label_workflow: Workflow
202 202 label_issue_status: Statut de demandes
203 203 label_issue_status_plural: Statuts de demandes
204 204 label_issue_status_new: Nouveau statut
205 205 label_issue_category: Catégorie de demandes
206 206 label_issue_category_plural: Catégories de demandes
207 207 label_issue_category_new: Nouvelle catégorie
208 208 label_custom_field: Champ personnalisé
209 209 label_custom_field_plural: Champs personnalisés
210 210 label_custom_field_new: Nouveau champ personnalisé
211 211 label_enumerations: Listes de valeurs
212 212 label_enumeration_new: Nouvelle valeur
213 213 label_information: Information
214 214 label_information_plural: Informations
215 215 label_please_login: Identification
216 216 label_register: S'enregistrer
217 217 label_password_lost: Mot de passe perdu
218 218 label_home: Accueil
219 219 label_my_page: Ma page
220 220 label_my_account: Mon compte
221 221 label_my_projects: Mes projets
222 222 label_administration: Administration
223 223 label_login: Connexion
224 224 label_logout: Déconnexion
225 225 label_help: Aide
226 226 label_reported_issues: Demandes soumises
227 227 label_assigned_to_me_issues: Demandes qui me sont assignées
228 228 label_last_login: Dernière connexion
229 229 label_last_updates: Dernière mise à jour
230 230 label_last_updates_plural: %d dernières mises à jour
231 231 label_registered_on: Inscrit le
232 232 label_activity: Activité
233 233 label_new: Nouveau
234 234 label_logged_as: Connecté en tant que
235 235 label_environment: Environnement
236 236 label_authentication: Authentification
237 237 label_auth_source: Mode d'authentification
238 238 label_auth_source_new: Nouveau mode d'authentification
239 239 label_auth_source_plural: Modes d'authentification
240 240 label_subproject_plural: Sous-projets
241 241 label_min_max_length: Longueurs mini - maxi
242 242 label_list: Liste
243 243 label_date: Date
244 244 label_integer: Entier
245 245 label_boolean: Booléen
246 246 label_string: Texte
247 247 label_text: Texte long
248 248 label_attribute: Attribut
249 249 label_attribute_plural: Attributs
250 250 label_download: %d Téléchargement
251 251 label_download_plural: %d Téléchargements
252 252 label_no_data: Aucune donnée à afficher
253 253 label_change_status: Changer le statut
254 254 label_history: Historique
255 255 label_attachment: Fichier
256 256 label_attachment_new: Nouveau fichier
257 257 label_attachment_delete: Supprimer le fichier
258 258 label_attachment_plural: Fichiers
259 259 label_report: Rapport
260 260 label_report_plural: Rapports
261 261 label_news: Annonce
262 262 label_news_new: Nouvelle annonce
263 263 label_news_plural: Annonces
264 264 label_news_latest: Dernières annonces
265 265 label_news_view_all: Voir toutes les annonces
266 266 label_change_log: Historique
267 267 label_settings: Configuration
268 268 label_overview: Aperçu
269 269 label_version: Version
270 270 label_version_new: Nouvelle version
271 271 label_version_plural: Versions
272 272 label_confirmation: Confirmation
273 273 label_export_to: Exporter en
274 274 label_read: Lire...
275 275 label_public_projects: Projets publics
276 276 label_open_issues: ouvert
277 277 label_open_issues_plural: ouverts
278 278 label_closed_issues: fermé
279 279 label_closed_issues_plural: fermés
280 280 label_total: Total
281 281 label_permissions: Permissions
282 282 label_current_status: Statut actuel
283 283 label_new_statuses_allowed: Nouveaux statuts autorisés
284 284 label_all: tous
285 285 label_none: aucun
286 286 label_next: Suivant
287 287 label_previous: Précédent
288 288 label_used_by: Utilisé par
289 289 label_details: Détails...
290 290 label_add_note: Ajouter une note
291 291 label_per_page: Par page
292 292 label_calendar: Calendrier
293 293 label_months_from: mois depuis
294 294 label_gantt: Gantt
295 295 label_internal: Interne
296 296 label_last_changes: %d derniers changements
297 297 label_change_view_all: Voir tous les changements
298 298 label_personalize_page: Personnaliser cette page
299 299 label_comment: Commentaire
300 300 label_comment_plural: Commentaires
301 301 label_comment_add: Ajouter un commentaire
302 302 label_comment_added: Commentaire ajouté
303 303 label_comment_delete: Supprimer les commentaires
304 304 label_query: Rapport personnalisé
305 305 label_query_plural: Rapports personnalisés
306 306 label_query_new: Nouveau rapport
307 307 label_filter_add: Ajouter le filtre
308 308 label_filter_plural: Filtres
309 309 label_equals: égal
310 310 label_not_equals: différent
311 311 label_in_less_than: dans moins de
312 312 label_in_more_than: dans plus de
313 313 label_in: dans
314 314 label_today: aujourd'hui
315 315 label_less_than_ago: il y a moins de
316 316 label_more_than_ago: il y a plus de
317 317 label_ago: il y a
318 318 label_contains: contient
319 319 label_not_contains: ne contient pas
320 320 label_day_plural: jours
321 321 label_repository: Dépôt SVN
322 322 label_browse: Parcourir
323 323 label_modification: %d modification
324 324 label_modification_plural: %d modifications
325 325 label_revision: Révision
326 326 label_revision_plural: Révisions
327 327 label_added: ajouté
328 328 label_modified: modifié
329 329 label_deleted: supprimé
330 330 label_latest_revision: Dernière révision
331 331 label_latest_revision_plural: Dernières révisions
332 332 label_view_revisions: Voir les révisions
333 333 label_max_size: Taille maximale
334 334 label_on: sur
335 335 label_sort_highest: Remonter en premier
336 336 label_sort_higher: Remonter
337 337 label_sort_lower: Descendre
338 338 label_sort_lowest: Descendre en dernier
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Echéance dans
341 341 label_roadmap_no_issues: Aucune demande pour cette version
342 342 label_search: Recherche
343 343 label_result: %d résultat
344 344 label_result_plural: %d résultats
345 345 label_all_words: Tous les mots
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Révision wiki
348 348 label_wiki_edit_plural: Révisions wiki
349 label_wiki_page_plural: Pages wiki
349 350 label_page_index: Index
350 351 label_current_version: Version actuelle
351 352 label_preview: Prévisualisation
352 353 label_feed_plural: Flux RSS
353 354 label_changes_details: Détails de tous les changements
354 355 label_issue_tracking: Suivi des demandes
355 356 label_spent_time: Temps passé
356 357 label_f_hour: %.2f heure
357 358 label_f_hour_plural: %.2f heures
358 359 label_time_tracking: Suivi du temps
359 360 label_change_plural: Changements
360 361 label_statistics: Statistiques
361 362 label_commits_per_month: Commits par mois
362 363 label_commits_per_author: Commits par auteur
363 364 label_view_diff: Voir les différences
364 365 label_diff_inline: en ligne
365 366 label_diff_side_by_side: côte à côte
366 367 label_options: Options
367 368 label_copy_workflow_from: Copier le workflow de
368 369 label_permissions_report: Synthèse des permissions
369 370 label_watched_issues: Demandes surveillées
370 371 label_related_issues: Demandes liées
371 372 label_applied_status: Statut appliqué
372 373 label_loading: Chargement...
373 374 label_relation_new: Nouvelle relation
374 375 label_relation_delete: Supprimer la relation
375 376 label_relates_to: lié à
376 377 label_duplicates: doublon de
377 378 label_blocks: bloque
378 379 label_blocked_by: bloqué par
379 380 label_precedes: précède
380 381 label_follows: suit
381 382 label_end_to_start: début à fin
382 383 label_end_to_end: fin à fin
383 384 label_start_to_start: début à début
384 385 label_start_to_end: début à fin
385 386 label_stay_logged_in: Rester connecté
386 387 label_disabled: désactivé
387 388 label_show_completed_versions: Voire les versions passées
388 389 label_me: moi
389 390 label_board: Forum
390 391 label_board_new: Nouveau forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Discussions
393 394 label_message_plural: Messages
394 395 label_message_last: Dernier message
395 396 label_message_new: Nouveau message
396 397 label_reply_plural: Réponses
397 398
398 399 button_login: Connexion
399 400 button_submit: Soumettre
400 401 button_save: Sauvegarder
401 402 button_check_all: Tout cocher
402 403 button_uncheck_all: Tout décocher
403 404 button_delete: Supprimer
404 405 button_create: Créer
405 406 button_test: Tester
406 407 button_edit: Modifier
407 408 button_add: Ajouter
408 409 button_change: Changer
409 410 button_apply: Appliquer
410 411 button_clear: Effacer
411 412 button_lock: Verrouiller
412 413 button_unlock: Déverrouiller
413 414 button_download: Télécharger
414 415 button_list: Lister
415 416 button_view: Voir
416 417 button_move: Déplacer
417 418 button_back: Retour
418 419 button_cancel: Annuler
419 420 button_activate: Activer
420 421 button_sort: Trier
421 422 button_log_time: Saisir temps
422 423 button_rollback: Revenir à cette version
423 424 button_watch: Surveiller
424 425 button_unwatch: Ne plus surveiller
425 426 button_reply: Répondre
426 427
427 428 status_active: actif
428 429 status_registered: enregistré
429 430 status_locked: vérouillé
430 431
431 432 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
432 433 text_regexp_info: ex. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 pour aucune restriction
434 435 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
435 436 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
436 437 text_are_you_sure: Etes-vous sûr ?
437 438 text_journal_changed: changé de %s à %s
438 439 text_journal_set_to: mis à %s
439 440 text_journal_deleted: supprimé
440 441 text_tip_task_begin_day: tâche commençant ce jour
441 442 text_tip_task_end_day: tâche finissant ce jour
442 443 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
443 444 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
444 445 text_caracters_maximum: %d caractères maximum.
445 446 text_length_between: Longueur comprise entre %d et %d caractères.
446 447 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
447 448 text_unallowed_characters: Caractères non autorisés
448 449 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
449 450 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires SVN
450 451
451 452 default_role_manager: Manager
452 453 default_role_developper: Développeur
453 454 default_role_reporter: Rapporteur
454 455 default_tracker_bug: Anomalie
455 456 default_tracker_feature: Evolution
456 457 default_tracker_support: Assistance
457 458 default_issue_status_new: Nouveau
458 459 default_issue_status_assigned: Assigné
459 460 default_issue_status_resolved: Résolu
460 461 default_issue_status_feedback: Commentaire
461 462 default_issue_status_closed: Fermé
462 463 default_issue_status_rejected: Rejeté
463 464 default_doc_category_user: Documentation utilisateur
464 465 default_doc_category_tech: Documentation technique
465 466 default_priority_low: Bas
466 467 default_priority_normal: Normal
467 468 default_priority_high: Haut
468 469 default_priority_urgent: Urgent
469 470 default_priority_immediate: Immédiat
470 471 default_activity_design: Conception
471 472 default_activity_development: Développement
472 473
473 474 enumeration_issue_priorities: Priorités des demandes
474 475 enumeration_doc_categories: Catégories des documents
475 476 enumeration_activities: Activités (suivi du temps)
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Password redMine
74 74 mail_subject_register: Attivazione utenza redMine
75 75
76 76 gui_validation_error: 1 errore
77 77 gui_validation_error_plural: %d errori
78 78
79 79 field_name: Nome
80 80 field_description: Descrizione
81 81 field_summary: Sommario
82 82 field_is_required: Richiesto
83 83 field_firstname: Nome
84 84 field_lastname: Cognome
85 85 field_mail: Email
86 86 field_filename: File
87 87 field_filesize: Dimensione
88 88 field_downloads: Download
89 89 field_author: Autore
90 90 field_created_on: Creato
91 91 field_updated_on: Aggiornato
92 92 field_field_format: Formato
93 93 field_is_for_all: Per tutti i progetti
94 94 field_possible_values: Valori possibili
95 95 field_regexp: Espressione regolare
96 96 field_min_length: Lunghezza minima
97 97 field_max_length: Lunghezza massima
98 98 field_value: Valore
99 99 field_category: Categoria
100 100 field_title: Titolo
101 101 field_project: Progetto
102 102 field_issue: Issue
103 103 field_status: Stato
104 104 field_notes: Note
105 105 field_is_closed: Chiude il contesto
106 106 field_is_default: Stato predefinito
107 107 field_html_color: Colore
108 108 field_tracker: Tracker
109 109 field_subject: Oggetto
110 110 field_due_date: Data ultima
111 111 field_assigned_to: Assegnato a
112 112 field_priority: Priorita'
113 113 field_fixed_version: Versione di fix
114 114 field_user: Utente
115 115 field_role: Ruolo
116 116 field_homepage: Homepage
117 117 field_is_public: Pubblico
118 118 field_parent: Sottoprogetto di
119 119 field_is_in_chlog: Contesti mostrati nel changelog
120 120 field_is_in_roadmap: Contesti mostrati nel roadmap
121 121 field_login: Login
122 122 field_mail_notification: Notifiche via e-mail
123 123 field_admin: Amministratore
124 124 field_last_login_on: Ultima connessione
125 125 field_language: Lingua
126 126 field_effective_date: Data
127 127 field_password: Password
128 128 field_new_password: Nuova password
129 129 field_password_confirmation: Conferma
130 130 field_version: Versione
131 131 field_type: Tipo
132 132 field_host: Host
133 133 field_port: Porta
134 134 field_account: Utenza
135 135 field_base_dn: DN base
136 136 field_attr_login: Attributo login
137 137 field_attr_firstname: Attributo nome
138 138 field_attr_lastname: Attributo cognome
139 139 field_attr_mail: Attributo e-mail
140 140 field_onthefly: Creazione utenza "al volo"
141 141 field_start_date: Inizio
142 142 field_done_ratio: %% completo
143 143 field_auth_source: Modalità di autenticazione
144 144 field_hide_mail: Nascondi il mio indirizzo di e-mail
145 145 field_comments: Commento
146 146 field_url: URL
147 147 field_start_page: Pagina principale
148 148 field_subproject: Sottoprogetto
149 149 field_hours: Hours
150 150 field_activity: Activity
151 151 field_spent_on: Data
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Titolo applicazione
158 158 setting_app_subtitle: Sottotitolo applicazione
159 159 setting_welcome_text: Testo di benvenuto
160 160 setting_default_language: Lingua di default
161 161 setting_login_required: Autenticazione richiesta
162 162 setting_self_registration: Auto-registrazione abilitata
163 163 setting_attachment_max_size: Massima dimensione allegati
164 164 setting_issues_export_limit: Limite esportazione contesti
165 165 setting_mail_from: Indirizzo sorgente e-mail
166 166 setting_host_name: Nome host
167 167 setting_text_formatting: Formattazione testo
168 168 setting_wiki_compression: Compressione di storia di Wiki
169 169 setting_feeds_limit: Limite contenuti del feed
170 170 setting_autofetch_changesets: Acquisisci automaticamente le commit SVN
171 171 setting_sys_api_enabled: Abilita WS per la gestione del repository
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Utente
177 177 label_user_plural: Utenti
178 178 label_user_new: Nuovo utente
179 179 label_project: Progetto
180 180 label_project_new: Nuovo progetto
181 181 label_project_plural: Progetti
182 182 label_project_all: All Projects
183 183 label_project_latest: Ultimi progetti registrati
184 184 label_issue: Contesto
185 185 label_issue_new: Nuovo contesto
186 186 label_issue_plural: Contesti
187 187 label_issue_view_all: Mostra tutti i contesti
188 188 label_document: Documento
189 189 label_document_new: Nuovo documento
190 190 label_document_plural: Documenti
191 191 label_role: Ruolo
192 192 label_role_plural: Ruoli
193 193 label_role_new: Nuovo ruolo
194 194 label_role_and_permissions: Ruoli e permessi
195 195 label_member: Membro
196 196 label_member_new: Nuovo membro
197 197 label_member_plural: Membri
198 198 label_tracker: Tracker
199 199 label_tracker_plural: Tracker
200 200 label_tracker_new: Nuovo tracker
201 201 label_workflow: Workflow
202 202 label_issue_status: Stato contesti
203 203 label_issue_status_plural: Stati contesto
204 204 label_issue_status_new: Nuovo stato
205 205 label_issue_category: Categorie contesti
206 206 label_issue_category_plural: Categorie contesto
207 207 label_issue_category_new: Nuova categoria
208 208 label_custom_field: Campo personalizzato
209 209 label_custom_field_plural: Campi personalizzati
210 210 label_custom_field_new: Nuovo campo personalizzato
211 211 label_enumerations: Enumerazioni
212 212 label_enumeration_new: Nuovo valore
213 213 label_information: Informazione
214 214 label_information_plural: Informazioni
215 215 label_please_login: Autenticarsi
216 216 label_register: Registrati
217 217 label_password_lost: Password dimenticata
218 218 label_home: Home
219 219 label_my_page: Pagina personale
220 220 label_my_account: La mia utenza
221 221 label_my_projects: I miei progetti
222 222 label_administration: Amministrazione
223 223 label_login: Login
224 224 label_logout: Logout
225 225 label_help: Aiuto
226 226 label_reported_issues: Contesti segnalati
227 227 label_assigned_to_me_issues: I miei contesti
228 228 label_last_login: Ultimo collegamento
229 229 label_last_updates: Ultimo aggiornamento
230 230 label_last_updates_plural: %d ultimo aggiornamento
231 231 label_registered_on: Registrato il
232 232 label_activity: Attività
233 233 label_new: Nuovo
234 234 label_logged_as: Autenticato come
235 235 label_environment: Ambiente
236 236 label_authentication: Autenticazione
237 237 label_auth_source: Modalità di autenticazione
238 238 label_auth_source_new: Nuova modalità di autenticazione
239 239 label_auth_source_plural: Modalità di autenticazione
240 240 label_subproject_plural: Sottoprogetti
241 241 label_min_max_length: Lunghezza minima - massima
242 242 label_list: Elenco
243 243 label_date: Data
244 244 label_integer: Intero
245 245 label_boolean: Booleano
246 246 label_string: Testo
247 247 label_text: Testo esteso
248 248 label_attribute: Attributo
249 249 label_attribute_plural: Attributi
250 250 label_download: %d Download
251 251 label_download_plural: %d Download
252 252 label_no_data: Nessun dato disponibile
253 253 label_change_status: Cambia stato
254 254 label_history: Cronologia
255 255 label_attachment: File
256 256 label_attachment_new: Nuovo file
257 257 label_attachment_delete: Elimina file
258 258 label_attachment_plural: File
259 259 label_report: Report
260 260 label_report_plural: Report
261 261 label_news: Notizia
262 262 label_news_new: Aggiungi notizia
263 263 label_news_plural: Notizie
264 264 label_news_latest: Utime notizie
265 265 label_news_view_all: Tutte le notizie
266 266 label_change_log: Change log
267 267 label_settings: Impostazioni
268 268 label_overview: Panoramica
269 269 label_version: Versione
270 270 label_version_new: Nuova versione
271 271 label_version_plural: Versioni
272 272 label_confirmation: Conferma
273 273 label_export_to: Esporta su
274 274 label_read: Leggi...
275 275 label_public_projects: Progetti pubblici
276 276 label_open_issues: aperta
277 277 label_open_issues_plural: aperte
278 278 label_closed_issues: chiusa
279 279 label_closed_issues_plural: chiuse
280 280 label_total: Totale
281 281 label_permissions: Permessi
282 282 label_current_status: Stato attuale
283 283 label_new_statuses_allowed: Nuovi stati possibili
284 284 label_all: tutti
285 285 label_none: nessuno
286 286 label_next: Successivo
287 287 label_previous: Precedente
288 288 label_used_by: Usato da
289 289 label_details: Dettagli...
290 290 label_add_note: Aggiungi una nota
291 291 label_per_page: Per pagina
292 292 label_calendar: Calendario
293 293 label_months_from: mesi da
294 294 label_gantt: Gantt
295 295 label_internal: Interno
296 296 label_last_changes: ultime %d modifiche
297 297 label_change_view_all: Tutte le modifiche
298 298 label_personalize_page: Personalizza la pagina
299 299 label_comment: Commento
300 300 label_comment_plural: Commenti
301 301 label_comment_add: Aggiungi un commento
302 302 label_comment_added: Commento aggiunto
303 303 label_comment_delete: Elimina commenti
304 304 label_query: Custom query
305 305 label_query_plural: Query personalizzate
306 306 label_query_new: Nuova query
307 307 label_filter_add: Aggiungi filtro
308 308 label_filter_plural: Filtri
309 309 label_equals: è
310 310 label_not_equals: non è
311 311 label_in_less_than: è minore di
312 312 label_in_more_than: è maggiore di
313 313 label_in: in
314 314 label_today: oggi
315 315 label_less_than_ago: meno di giorni fa
316 316 label_more_than_ago: più di giorni fa
317 317 label_ago: giorni fa
318 318 label_contains: contiene
319 319 label_not_contains: non contiene
320 320 label_day_plural: giorni
321 321 label_repository: SVN Repository
322 322 label_browse: Browse
323 323 label_modification: %d modifica
324 324 label_modification_plural: %d modifiche
325 325 label_revision: Versione
326 326 label_revision_plural: Versioni
327 327 label_added: aggiunto
328 328 label_modified: modificato
329 329 label_deleted: eliminato
330 330 label_latest_revision: Ultima versione
331 331 label_latest_revision_plural: Ultime versioni
332 332 label_view_revisions: Mostra versioni
333 333 label_max_size: Dimensione massima
334 334 label_on: 'on'
335 335 label_sort_highest: Sposta in cima
336 336 label_sort_higher: Su
337 337 label_sort_lower: Giù
338 338 label_sort_lowest: Sposta in fondo
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Da ultimare in
341 341 label_roadmap_no_issues: Nessun contesto per questa versione
342 342 label_search: Ricerca
343 343 label_result: %d risultato
344 344 label_result_plural: %d risultati
345 345 label_all_words: Tutte le parole
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Modifica Wiki
348 348 label_wiki_edit_plural: Modfiche wiki
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Indice
350 351 label_current_version: Versione corrente
351 352 label_preview: Anteprima
352 353 label_feed_plural: Feed
353 354 label_changes_details: Particolari di tutti i cambiamenti
354 355 label_issue_tracking: tracking dei contesti
355 356 label_spent_time: Tempo impiegato
356 357 label_f_hour: %.2f ora
357 358 label_f_hour_plural: %.2f ore
358 359 label_time_tracking: Tracking del tempo
359 360 label_change_plural: Modifiche
360 361 label_statistics: Statistiche
361 362 label_commits_per_month: Commit per mese
362 363 label_commits_per_author: Commit per autore
363 364 label_view_diff: mostra differenze
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: side by side
366 367 label_options: Opzioni
367 368 label_copy_workflow_from: Copia workflow da
368 369 label_permissions_report: Report permessi
369 370 label_watched_issues: Watched issues
370 371 label_related_issues: Related issues
371 372 label_applied_status: Applied status
372 373 label_loading: Loading...
373 374 label_relation_new: New relation
374 375 label_relation_delete: Delete relation
375 376 label_relates_to: related to
376 377 label_duplicates: duplicates
377 378 label_blocks: blocks
378 379 label_blocked_by: blocked by
379 380 label_precedes: precedes
380 381 label_follows: follows
381 382 label_end_to_start: start to end
382 383 label_end_to_end: end to end
383 384 label_start_to_start: start to start
384 385 label_start_to_end: start to end
385 386 label_stay_logged_in: Stay logged in
386 387 label_disabled: disabled
387 388 label_show_completed_versions: Show completed versions
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Login
399 400 button_submit: Invia
400 401 button_save: Salva
401 402 button_check_all: Seleziona tutti
402 403 button_uncheck_all: Deseleziona tutti
403 404 button_delete: Elimina
404 405 button_create: Crea
405 406 button_test: Test
406 407 button_edit: Modifica
407 408 button_add: Aggiungi
408 409 button_change: Modifica
409 410 button_apply: Applica
410 411 button_clear: Pulisci
411 412 button_lock: Blocca
412 413 button_unlock: Sblocca
413 414 button_download: Scarica
414 415 button_list: Elenca
415 416 button_view: Mostra
416 417 button_move: Sposta
417 418 button_back: Indietro
418 419 button_cancel: Annulla
419 420 button_activate: Attiva
420 421 button_sort: Ordina
421 422 button_log_time: Registra tempo
422 423 button_rollback: Ripristina questa versione
423 424 button_watch: Watch
424 425 button_unwatch: Unwatch
425 426 button_reply: Reply
426 427
427 428 status_active: attivo
428 429 status_registered: registrato
429 430 status_locked: bloccato
430 431
431 432 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
432 433 text_regexp_info: eg. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 significa nessuna restrizione
434 435 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
435 436 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
436 437 text_are_you_sure: Sei sicuro ?
437 438 text_journal_changed: cambiato da %s a %s
438 439 text_journal_set_to: impostato a %s
439 440 text_journal_deleted: cancellato
440 441 text_tip_task_begin_day: attività che iniziano in questa giornata
441 442 text_tip_task_end_day: attività che terminano in questa giornata
442 443 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
443 444 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
444 445 text_caracters_maximum: massimo %d caratteri.
445 446 text_length_between: Lunghezza compresa tra %d e %d caratteri.
446 447 text_tracker_no_workflow: Nessun workflow definito per questo tracker
447 448 text_unallowed_characters: Unallowed characters
448 449 text_comma_separated: Multiple values allowed (comma separated).
449 450 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
450 451
451 452 default_role_manager: Manager
452 453 default_role_developper: Sviluppatore
453 454 default_role_reporter: Reporter
454 455 default_tracker_bug: Contesto
455 456 default_tracker_feature: Funzione
456 457 default_tracker_support: Supporto
457 458 default_issue_status_new: Nuovo/a
458 459 default_issue_status_assigned: Assegnato/a
459 460 default_issue_status_resolved: Risolto/a
460 461 default_issue_status_feedback: Feedback
461 462 default_issue_status_closed: Chiuso/a
462 463 default_issue_status_rejected: Rifiutato/a
463 464 default_doc_category_user: Documentazione utente
464 465 default_doc_category_tech: Documentazione tecnica
465 466 default_priority_low: Bassa
466 467 default_priority_normal: Normale
467 468 default_priority_high: Alta
468 469 default_priority_urgent: Urgente
469 470 default_priority_immediate: Immediata
470 471 default_activity_design: Design
471 472 default_activity_development: Development
472 473
473 474 enumeration_issue_priorities: Priorità contesti
474 475 enumeration_doc_categories: Categorie di documenti
475 476 enumeration_activities: Attività (time tracking)
@@ -1,476 +1,477
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: doesn't belong to the same project
38 38 activerecord_error_circular_dependency: This relation would create a 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: You are not authorized to access this page.
73 73
74 74 mail_subject_lost_password: redMine パスワード
75 75 mail_subject_register: redMine アカウントが有効になりました
76 76
77 77 gui_validation_error: 1 件のエラー
78 78 gui_validation_error_plural: %d 件のエラー
79 79
80 80 field_name: 名前
81 81 field_description: 説明
82 82 field_summary: サマリ
83 83 field_is_required: 必須
84 84 field_firstname: 名前
85 85 field_lastname: 苗字
86 86 field_mail: メールアドレス
87 87 field_filename: ファイル
88 88 field_filesize: サイズ
89 89 field_downloads: ダウンロード
90 90 field_author: 起票者
91 91 field_created_on: 作成日
92 92 field_updated_on: 更新日
93 93 field_field_format: 書式
94 94 field_is_for_all: 全プロジェクト向け
95 95 field_possible_values: 選択肢
96 96 field_regexp: 正規表現
97 97 field_min_length: 最小値
98 98 field_max_length: 最大値
99 99 field_value:
100 100 field_category: カテゴリ
101 101 field_title: タイトル
102 102 field_project: プロジェクト
103 103 field_issue: 問題
104 104 field_status: ステータス
105 105 field_notes: 注記
106 106 field_is_closed: 終了した問題
107 107 field_is_default: デフォルトのステータス
108 108 field_html_color:
109 109 field_tracker: トラッカー
110 110 field_subject: 題名
111 111 field_due_date: 期限日
112 112 field_assigned_to: 担当者
113 113 field_priority: 優先度
114 114 field_fixed_version: 修正されたバージョン
115 115 field_user: ユーザ
116 116 field_role: 役割
117 117 field_homepage: ホームページ
118 118 field_is_public: 公開
119 119 field_parent: 親プロジェクト名
120 120 field_is_in_chlog: 変更記録に表示されている問題
121 121 field_is_in_roadmap: ロードマップに表示されている問題
122 122 field_login: ログイン
123 123 field_mail_notification: メール通知
124 124 field_admin: 管理者
125 125 field_last_login_on: 最終接続日
126 126 field_language: 言語
127 127 field_effective_date: 日付
128 128 field_password: パスワード
129 129 field_new_password: 新しいパスワード
130 130 field_password_confirmation: パスワードの確認
131 131 field_version: バージョン
132 132 field_type: タイプ
133 133 field_host: ホスト
134 134 field_port: ポート
135 135 field_account: アカウント
136 136 field_base_dn: Base DN
137 137 field_attr_login: ログイン名属性
138 138 field_attr_firstname: 名前属性
139 139 field_attr_lastname: 苗字属性
140 140 field_attr_mail: メール属性
141 141 field_onthefly: あわせてユーザを作成
142 142 field_start_date: 開始日
143 143 field_done_ratio: 進捗 %%
144 144 field_auth_source: 認証モード
145 145 field_hide_mail: メールアドレスを隠す
146 146 field_comments: コメント
147 147 field_url: URL
148 148 field_start_page: メインページ
149 149 field_subproject: サブプロジェクト
150 150 field_hours: 時間
151 151 field_activity: 活動
152 152 field_spent_on: 日付
153 153 field_identifier: 識別子
154 154 field_is_filter: Used as a filter
155 155 field_issue_to_id: Related issue
156 156 field_delay: Delay
157 157
158 158 setting_app_title: アプリケーションのタイトル
159 159 setting_app_subtitle: アプリケーションのサブタイトル
160 160 setting_welcome_text: ウェルカムメッセージ
161 161 setting_default_language: 既定の言語
162 162 setting_login_required: 認証が必要
163 163 setting_self_registration: ユーザは自分で登録できる
164 164 setting_attachment_max_size: 添付の最大サイズ
165 165 setting_issues_export_limit: 出力する問題数の上限
166 166 setting_mail_from: 送信元メールアドレス
167 167 setting_host_name: ホスト名
168 168 setting_text_formatting: テキストの書式
169 169 setting_wiki_compression: Wiki履歴を圧縮する
170 170 setting_feeds_limit: フィード内容の上限
171 171 setting_autofetch_changesets: SVNコミットを自動取得する
172 172 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
173 173 setting_commit_ref_keywords: Referencing keywords
174 174 setting_commit_fix_keywords: Fixing keywords
175 175 setting_autologin: Autologin
176 176
177 177 label_user: ユーザ
178 178 label_user_plural: ユーザ
179 179 label_user_new: 新しいユーザ
180 180 label_project: プロジェクト
181 181 label_project_new: 新しいプロジェクト
182 182 label_project_plural: プロジェクト
183 183 label_project_all: All Projects
184 184 label_project_latest: 最近のプロジェクト
185 185 label_issue: 問題
186 186 label_issue_new: 新しい問題
187 187 label_issue_plural: 問題
188 188 label_issue_view_all: 問題を全て見る
189 189 label_document: 文書
190 190 label_document_new: 新しい文書
191 191 label_document_plural: 文書
192 192 label_role: ロール
193 193 label_role_plural: ロール
194 194 label_role_new: 新しいロール
195 195 label_role_and_permissions: ロールと権限
196 196 label_member: メンバー
197 197 label_member_new: 新しいメンバー
198 198 label_member_plural: メンバー
199 199 label_tracker: トラッカー
200 200 label_tracker_plural: トラッカー
201 201 label_tracker_new: 新しいトラッカーを作成
202 202 label_workflow: ワークフロー
203 203 label_issue_status: 問題のステータス
204 204 label_issue_status_plural: 問題のステータス
205 205 label_issue_status_new: 新しいステータス
206 206 label_issue_category: 問題のカテゴリ
207 207 label_issue_category_plural: 問題のカテゴリ
208 208 label_issue_category_new: 新しいカテゴリ
209 209 label_custom_field: カスタムフィールド
210 210 label_custom_field_plural: カスタムフィールド
211 211 label_custom_field_new: 新しいカスタムフィールドを作成
212 212 label_enumerations: 列挙項目
213 213 label_enumeration_new: 新しい値
214 214 label_information: 情報
215 215 label_information_plural: 情報
216 216 label_please_login: ログインしてください
217 217 label_register: 登録する
218 218 label_password_lost: パスワードの再発行
219 219 label_home: ホーム
220 220 label_my_page: マイページ
221 221 label_my_account: マイアカウント
222 222 label_my_projects: マイプロジェクト
223 223 label_administration: 管理
224 224 label_login: ログイン
225 225 label_logout: ログアウト
226 226 label_help: ヘルプ
227 227 label_reported_issues: 報告した問題
228 228 label_assigned_to_me_issues: 担当している問題
229 229 label_last_login: 最近の接続
230 230 label_last_updates: 最近の更新 1 件
231 231 label_last_updates_plural: 最近の更新 %d 件
232 232 label_registered_on: 登録日
233 233 label_activity: 活動
234 234 label_new: 新しく作成
235 235 label_logged_as: ログイン中:
236 236 label_environment: 環境
237 237 label_authentication: 認証
238 238 label_auth_source: 認証モード
239 239 label_auth_source_new: 新しい認証モード
240 240 label_auth_source_plural: 認証モード
241 241 label_subproject_plural: サブプロジェクト
242 242 label_min_max_length: 最小値 - 最大値の長さ
243 243 label_list: リストから選択
244 244 label_date: 日付
245 245 label_integer: 整数
246 246 label_boolean: 真偽値
247 247 label_string: テキスト
248 248 label_text: 長いテキスト
249 249 label_attribute: 属性
250 250 label_attribute_plural: 属性
251 251 label_download: %d ダウンロード
252 252 label_download_plural: %d ダウンロード
253 253 label_no_data: 表示するデータがありません
254 254 label_change_status: ステータスの変更
255 255 label_history: 履歴
256 256 label_attachment: ファイル
257 257 label_attachment_new: 新しいファイル
258 258 label_attachment_delete: ファイルを削除
259 259 label_attachment_plural: ファイル
260 260 label_report: レポート
261 261 label_report_plural: レポート
262 262 label_news: ニュース
263 263 label_news_new: ニュースを追加
264 264 label_news_plural: ニュース
265 265 label_news_latest: 最新ニュース
266 266 label_news_view_all: 全てのニュースを見る
267 267 label_change_log: 変更記録
268 268 label_settings: 設定
269 269 label_overview: 概要
270 270 label_version: バージョン
271 271 label_version_new: 新しいバージョン
272 272 label_version_plural: バージョン
273 273 label_confirmation: 確認
274 274 label_export_to: 他の形式に出力
275 275 label_read: 読む...
276 276 label_public_projects: 公開プロジェクト
277 277 label_open_issues: 未完了
278 278 label_open_issues_plural: 未完了
279 279 label_closed_issues: 終了
280 280 label_closed_issues_plural: 終了
281 281 label_total: 合計
282 282 label_permissions: 権限
283 283 label_current_status: 現在のステータス
284 284 label_new_statuses_allowed: ステータスの移行先
285 285 label_all: 全て
286 286 label_none: なし
287 287 label_next:
288 288 label_previous:
289 289 label_used_by: 使用中
290 290 label_details: 詳細...
291 291 label_add_note: 注記を追加
292 292 label_per_page: ページ毎
293 293 label_calendar: カレンダー
294 294 label_months_from: ヶ月 from
295 295 label_gantt: ガントチャート
296 296 label_internal: Internal
297 297 label_last_changes: 最新の変更 %d 件
298 298 label_change_view_all: 全ての変更を見る
299 299 label_personalize_page: このページをパーソナライズする
300 300 label_comment: コメント
301 301 label_comment_plural: コメント
302 302 label_comment_add: コメント追加
303 303 label_comment_added: 追加されたコメント
304 304 label_comment_delete: コメント削除
305 305 label_query: カスタムクエリ
306 306 label_query_plural: カスタムクエリ
307 307 label_query_new: 新しいクエリ
308 308 label_filter_add: フィルタ追加
309 309 label_filter_plural: フィルタ
310 310 label_equals: 等しい
311 311 label_not_equals: 等しくない
312 312 label_in_less_than: 残日数がこれより多い
313 313 label_in_more_than: 残日数がこれより少ない
314 314 label_in: 残日数
315 315 label_today: 今日
316 316 label_less_than_ago: 経過日数がこれより少ない
317 317 label_more_than_ago: 経過日数がこれより多い
318 318 label_ago: 日前
319 319 label_contains: 含む
320 320 label_not_contains: 含まない
321 321 label_day_plural:
322 322 label_repository: SVNリポジトリ
323 323 label_browse: ブラウズ
324 324 label_modification: %d 点の変更
325 325 label_modification_plural: %d 点の変更
326 326 label_revision: リビジョン
327 327 label_revision_plural: リビジョン
328 328 label_added: 追加
329 329 label_modified: 変更
330 330 label_deleted: 削除
331 331 label_latest_revision: 最新リビジョン
332 332 label_latest_revision_plural: 最新リビジョン
333 333 label_view_revisions: リビジョンを見る
334 334 label_max_size: 最大サイズ
335 335 label_on:
336 336 label_sort_highest: 一番上へ
337 337 label_sort_higher: 上へ
338 338 label_sort_lower: 下へ
339 339 label_sort_lowest: 一番下へ
340 340 label_roadmap: ロードマップ
341 341 label_roadmap_due_in: 期日まで
342 342 label_roadmap_no_issues: このバージョンに向けての問題はありません
343 343 label_search: 検索
344 344 label_result: %d 件の結果
345 345 label_result_plural: %d 件の結果
346 346 label_all_words: すべての単語
347 347 label_wiki: Wiki
348 348 label_wiki_edit: Wiki編集
349 349 label_wiki_edit_plural: Wiki編集
350 label_wiki_page_plural: Wiki pages
350 351 label_page_index: 索引
351 352 label_current_version: 最新版
352 353 label_preview: プレビュー
353 354 label_feed_plural: フィード
354 355 label_changes_details: 全変更の詳細
355 356 label_issue_tracking: 問題トラッキング
356 357 label_spent_time: 経過時間
357 358 label_f_hour: %.2f 時間
358 359 label_f_hour_plural: %.2f 時間
359 360 label_time_tracking: 時間トラッキング
360 361 label_change_plural: 変更
361 362 label_statistics: 統計
362 363 label_commits_per_month: 月別のコミット
363 364 label_commits_per_author: 起票者別のコミット
364 365 label_view_diff: 差分を見る
365 366 label_diff_inline: インライン
366 367 label_diff_side_by_side: 横に並べる
367 368 label_options: オプション
368 369 label_copy_workflow_from: ワークフローをここからコピー
369 370 label_permissions_report: 権限レポート
370 371 label_watched_issues: Watched issues
371 372 label_related_issues: Related issues
372 373 label_applied_status: Applied status
373 374 label_loading: Loading...
374 375 label_relation_new: New relation
375 376 label_relation_delete: Delete relation
376 377 label_relates_to: related to
377 378 label_duplicates: duplicates
378 379 label_blocks: blocks
379 380 label_blocked_by: blocked by
380 381 label_precedes: precedes
381 382 label_follows: follows
382 383 label_end_to_start: start to end
383 384 label_end_to_end: end to end
384 385 label_start_to_start: start to start
385 386 label_start_to_end: start to end
386 387 label_stay_logged_in: Stay logged in
387 388 label_disabled: disabled
388 389 label_show_completed_versions: Show completed versions
389 390 label_me: me
390 391 label_board: Forum
391 392 label_board_new: New forum
392 393 label_board_plural: Forums
393 394 label_topic_plural: Topics
394 395 label_message_plural: Messages
395 396 label_message_last: Last message
396 397 label_message_new: New message
397 398 label_reply_plural: Replies
398 399
399 400 button_login: ログイン
400 401 button_submit: 変更
401 402 button_save: 保存
402 403 button_check_all: チェックを全部つける
403 404 button_uncheck_all: チェックを全部外す
404 405 button_delete: 削除
405 406 button_create: 作成
406 407 button_test: テスト
407 408 button_edit: 編集
408 409 button_add: 追加
409 410 button_change: 変更
410 411 button_apply: 適用
411 412 button_clear: クリア
412 413 button_lock: ロック
413 414 button_unlock: アンロック
414 415 button_download: ダウンロード
415 416 button_list: 一覧
416 417 button_view: 見る
417 418 button_move: 移動
418 419 button_back: 戻る
419 420 button_cancel: キャンセル
420 421 button_activate: 有効にする
421 422 button_sort: ソート
422 423 button_log_time: 時間を記録
423 424 button_rollback: このバージョンにロールバック
424 425 button_watch: Watch
425 426 button_unwatch: Unwatch
426 427 button_reply: Reply
427 428
428 429 status_active: 有効
429 430 status_registered: 登録
430 431 status_locked: ロック
431 432
432 433 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
433 434 text_regexp_info: 例) ^[A-Z0-9]+$
434 435 text_min_max_length_info: 0だと無制限になります
435 436 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
436 437 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
437 438 text_are_you_sure: 本当に?
438 439 text_journal_changed: %s から %s への変更
439 440 text_journal_set_to: %s にセット
440 441 text_journal_deleted: 削除
441 442 text_tip_task_begin_day: この日に開始するタスク
442 443 text_tip_task_end_day: この日に終了するタスク
443 444 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
444 445 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
445 446 text_caracters_maximum: 最大 %d 文字です。
446 447 text_length_between: 長さは %d から %d 文字までです。
447 448 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
448 449 text_unallowed_characters: Unallowed characters
449 450 text_comma_separated: Multiple values allowed (comma separated).
450 451 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
451 452
452 453 default_role_manager: 管理者
453 454 default_role_developper: 開発者
454 455 default_role_reporter: 報告者
455 456 default_tracker_bug: バグ
456 457 default_tracker_feature: 機能
457 458 default_tracker_support: サポート
458 459 default_issue_status_new: 新規
459 460 default_issue_status_assigned: 担当
460 461 default_issue_status_resolved: 解決
461 462 default_issue_status_feedback: フィードバック
462 463 default_issue_status_closed: 終了
463 464 default_issue_status_rejected: 却下
464 465 default_doc_category_user: ユーザ文書
465 466 default_doc_category_tech: 技術文書
466 467 default_priority_low: 低め
467 468 default_priority_normal: 通常
468 469 default_priority_high: 高め
469 470 default_priority_urgent: 急いで
470 471 default_priority_immediate: 今すぐ
471 472 default_activity_design: デザイン作業
472 473 default_activity_development: 開発作業
473 474
474 475 enumeration_issue_priorities: 問題の優先度
475 476 enumeration_doc_categories: 文書カテゴリ
476 477 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Uw redMine wachtwoord
74 74 mail_subject_register: redMine account activatie
75 75
76 76 gui_validation_error: 1 fout
77 77 gui_validation_error_plural: %d fouten
78 78
79 79 field_name: Naam
80 80 field_description: Beschrijving
81 81 field_summary: Samenvatting
82 82 field_is_required: Verplicht
83 83 field_firstname: Voornaam
84 84 field_lastname: Achternaam
85 85 field_mail: Email
86 86 field_filename: Bestand
87 87 field_filesize: Grootte
88 88 field_downloads: Downloads
89 89 field_author: Auteur
90 90 field_created_on: Aangemaakt
91 91 field_updated_on: Gewijzigd
92 92 field_field_format: Formaat
93 93 field_is_for_all: Voor alle projecten
94 94 field_possible_values: Mogelijke waarden
95 95 field_regexp: Reguliere expressie
96 96 field_min_length: Minimale lengte
97 97 field_max_length: Maximale lengte
98 98 field_value: Waarde
99 99 field_category: Categorie
100 100 field_title: Titel
101 101 field_project: Project
102 102 field_issue: Issue
103 103 field_status: Status
104 104 field_notes: Notities
105 105 field_is_closed: Issue gesloten
106 106 field_is_default: Default status
107 107 field_html_color: Kleur
108 108 field_tracker: Tracker
109 109 field_subject: Onderwerp
110 110 field_due_date: Verwachte datum gereed
111 111 field_assigned_to: Toegewezen aan
112 112 field_priority: Prioriteit
113 113 field_fixed_version: Opgeloste versie
114 114 field_user: Gebruiker
115 115 field_role: Rol
116 116 field_homepage: Homepage
117 117 field_is_public: Publiek
118 118 field_parent: Subproject van
119 119 field_is_in_chlog: Issues weergegeven in wijzigingslog
120 120 field_is_in_roadmap: Issues weergegeven in roadmap
121 121 field_login: Inloggen
122 122 field_mail_notification: Mail mededelingen
123 123 field_admin: Administrateur
124 124 field_last_login_on: Laatste bezoek
125 125 field_language: Taal
126 126 field_effective_date: Datum
127 127 field_password: Wachtwoord
128 128 field_new_password: Nieuw wachtwoord
129 129 field_password_confirmation: Bevestigen
130 130 field_version: Versie
131 131 field_type: Type
132 132 field_host: Host
133 133 field_port: Port
134 134 field_account: Account
135 135 field_base_dn: Base DN
136 136 field_attr_login: Login attribuut
137 137 field_attr_firstname: Voornaam attribuut
138 138 field_attr_lastname: Achternaam attribuut
139 139 field_attr_mail: Email attribuut
140 140 field_onthefly: On-the-fly aanmaken van een gebruiker
141 141 field_start_date: Start
142 142 field_done_ratio: %% Gereed
143 143 field_auth_source: Authenticatiemethode
144 144 field_hide_mail: Verberg mijn emailadres
145 145 field_comments: Commentaar
146 146 field_url: URL
147 147 field_start_page: Startpagina
148 148 field_subproject: Subproject
149 149 field_hours: Uren
150 150 field_activity: Activiteit
151 151 field_spent_on: Datum
152 152 field_identifier: Identificatiecode
153 153 field_is_filter: Gebruikt als een filter
154 154 field_issue_to_id: Gerelateerd issue
155 155 field_delay: Vertraging
156 156
157 157 setting_app_title: Applicatie titel
158 158 setting_app_subtitle: Applicatie ondertitel
159 159 setting_welcome_text: Welkomsttekst
160 160 setting_default_language: Default taal
161 161 setting_login_required: Authent. nodig
162 162 setting_self_registration: Zelf-registratie toegestaan
163 163 setting_attachment_max_size: Attachment max. grootte
164 164 setting_issues_export_limit: Limiet export issues
165 165 setting_mail_from: Afzender mail adres
166 166 setting_host_name: Host naam
167 167 setting_text_formatting: Tekst formaat
168 168 setting_wiki_compression: Wiki geschiedenis comprimeren
169 169 setting_feeds_limit: Feed inhoud limiet
170 170 setting_autofetch_changesets: Haal SVN commits automatisch op
171 171 setting_sys_api_enabled: Gebruik WS voor repository beheer
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Gebruiker
177 177 label_user_plural: Gebruikers
178 178 label_user_new: Nieuwe gebruiker
179 179 label_project: Project
180 180 label_project_new: Nieuw project
181 181 label_project_plural: Projecten
182 182 label_project_all: Alle Projecten
183 183 label_project_latest: Nieuwste projecten
184 184 label_issue: Issue
185 185 label_issue_new: Nieuw issue
186 186 label_issue_plural: Issues
187 187 label_issue_view_all: Bekijk alle issues
188 188 label_document: Document
189 189 label_document_new: Nieuw document
190 190 label_document_plural: Documenten
191 191 label_role: Rol
192 192 label_role_plural: Rollen
193 193 label_role_new: Nieuwe rol
194 194 label_role_and_permissions: Rollen en permissies
195 195 label_member: Lid
196 196 label_member_new: Nieuw lid
197 197 label_member_plural: Leden
198 198 label_tracker: Tracker
199 199 label_tracker_plural: Trackers
200 200 label_tracker_new: Nieuwe tracker
201 201 label_workflow: Workflow
202 202 label_issue_status: Issue status
203 203 label_issue_status_plural: Issue statussen
204 204 label_issue_status_new: Nieuwe status
205 205 label_issue_category: Issue categorie
206 206 label_issue_category_plural: Issue categorieën
207 207 label_issue_category_new: Nieuwe categorie
208 208 label_custom_field: Custom veld
209 209 label_custom_field_plural: Custom velden
210 210 label_custom_field_new: Nieuw custom veld
211 211 label_enumerations: Enumeraties
212 212 label_enumeration_new: Nieuwe waarde
213 213 label_information: Informatie
214 214 label_information_plural: Informatie
215 215 label_please_login: Gaarne inloggen
216 216 label_register: Registreer
217 217 label_password_lost: Wachtwoord verloren
218 218 label_home: Home
219 219 label_my_page: Mijn pagina
220 220 label_my_account: Mijn account
221 221 label_my_projects: Mijn projecten
222 222 label_administration: Administratie
223 223 label_login: Inloggen
224 224 label_logout: Uitloggen
225 225 label_help: Help
226 226 label_reported_issues: Gemelde issues
227 227 label_assigned_to_me_issues: Aan mij toegewezen issues
228 228 label_last_login: Laatste bezoek
229 229 label_last_updates: Laatste wijziging
230 230 label_last_updates_plural: %d laatste wijziging
231 231 label_registered_on: Geregistreerd op
232 232 label_activity: Activiteit
233 233 label_new: Nieuw
234 234 label_logged_as: Ingelogd als
235 235 label_environment: Omgeving
236 236 label_authentication: Authenticatie
237 237 label_auth_source: Authenticatie modus
238 238 label_auth_source_new: Nieuwe authenticatie modus
239 239 label_auth_source_plural: Authenticatie modi
240 240 label_subproject_plural: Subprojecten
241 241 label_min_max_length: Min - Max lengte
242 242 label_list: Lijst
243 243 label_date: Datum
244 244 label_integer: Integer
245 245 label_boolean: Boolean
246 246 label_string: Tekst
247 247 label_text: Lange tekst
248 248 label_attribute: Attribuut
249 249 label_attribute_plural: Attributen
250 250 label_download: %d Download
251 251 label_download_plural: %d Downloads
252 252 label_no_data: Geen gegevens om te tonen
253 253 label_change_status: Wijzig status
254 254 label_history: Geschiedenis
255 255 label_attachment: Bestand
256 256 label_attachment_new: Nieuw bestand
257 257 label_attachment_delete: Verwijder bestand
258 258 label_attachment_plural: Bestanden
259 259 label_report: Rapport
260 260 label_report_plural: Rapporten
261 261 label_news: Nieuws
262 262 label_news_new: Voeg nieuws toe
263 263 label_news_plural: Nieuws
264 264 label_news_latest: Laatste nieuws
265 265 label_news_view_all: Bekijk al het nieuws
266 266 label_change_log: Wijzigingslog
267 267 label_settings: Instellingen
268 268 label_overview: Overzicht
269 269 label_version: Versie
270 270 label_version_new: Nieuwe versie
271 271 label_version_plural: Versies
272 272 label_confirmation: Bevestiging
273 273 label_export_to: Exporteer naar
274 274 label_read: Lees...
275 275 label_public_projects: Publieke projecten
276 276 label_open_issues: open
277 277 label_open_issues_plural: open
278 278 label_closed_issues: gesloten
279 279 label_closed_issues_plural: gesloten
280 280 label_total: Totaal
281 281 label_permissions: Permissies
282 282 label_current_status: Huidige status
283 283 label_new_statuses_allowed: Nieuwe statuses toegestaan
284 284 label_all: alle
285 285 label_none: geen
286 286 label_next: Volgende
287 287 label_previous: Vorige
288 288 label_used_by: Gebruikt door
289 289 label_details: Details...
290 290 label_add_note: Voeg een notitie toe
291 291 label_per_page: Per pagina
292 292 label_calendar: Kalender
293 293 label_months_from: maanden vanaf
294 294 label_gantt: Gantt
295 295 label_internal: Intern
296 296 label_last_changes: laatste %d wijzigingen
297 297 label_change_view_all: Bekijk alle wijzigingen
298 298 label_personalize_page: Personaliseer deze pagina
299 299 label_comment: Commentaar
300 300 label_comment_plural: Commentaar
301 301 label_comment_add: Voeg commentaar toe
302 302 label_comment_added: Commentaar toegevoegd
303 303 label_comment_delete: Verwijder commentaar
304 304 label_query: Eigen zoekvraag
305 305 label_query_plural: Eigen zoekvragen
306 306 label_query_new: Nieuwe zoekvraag
307 307 label_filter_add: Voeg filter toe
308 308 label_filter_plural: Filters
309 309 label_equals: is gelijk
310 310 label_not_equals: is niet gelijk
311 311 label_in_less_than: in minder dan
312 312 label_in_more_than: in meer dan
313 313 label_in: in
314 314 label_today: vandaag
315 315 label_less_than_ago: minder dan dagen geleden
316 316 label_more_than_ago: meer dan dagen geleden
317 317 label_ago: dagen geleden
318 318 label_contains: bevat
319 319 label_not_contains: bevat niet
320 320 label_day_plural: dagen
321 321 label_repository: SVN Repository
322 322 label_browse: Blader
323 323 label_modification: %d wijziging
324 324 label_modification_plural: %d wijzigingen
325 325 label_revision: Revisie
326 326 label_revision_plural: Revisies
327 327 label_added: toegevoegd
328 328 label_modified: gewijzigd
329 329 label_deleted: verwijderd
330 330 label_latest_revision: Meest recente revisie
331 331 label_latest_revision_plural: Meest recente revisies
332 332 label_view_revisions: Bekijk revisies
333 333 label_max_size: Maximum grootte
334 334 label_on: 'van'
335 335 label_sort_highest: Verplaats naar begin
336 336 label_sort_higher: Verplaats naar boven
337 337 label_sort_lower: Verplaats naar beneden
338 338 label_sort_lowest: Verplaats naar eind
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Due in
341 341 label_roadmap_no_issues: Geen issues voor deze versie
342 342 label_search: Zoeken
343 343 label_result: %d resultaat
344 344 label_result_plural: %d resultaten
345 345 label_all_words: Alle woorden
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki edit
348 348 label_wiki_edit_plural: Wiki edits
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Index
350 351 label_current_version: Huidige versie
351 352 label_preview: Testweergave
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Details van alle wijzigingen
354 355 label_issue_tracking: Issue tracking
355 356 label_spent_time: Gespendeerde tijd
356 357 label_f_hour: %.2f uur
357 358 label_f_hour_plural: %.2f uren
358 359 label_time_tracking: Tijd tracking
359 360 label_change_plural: Wijzigingen
360 361 label_statistics: Statistieken
361 362 label_commits_per_month: Commits per maand
362 363 label_commits_per_author: Commits per auteur
363 364 label_view_diff: Bekijk verschillen
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: naast elkaar
366 367 label_options: Opties
367 368 label_copy_workflow_from: Kopieer workflow van
368 369 label_permissions_report: Permissies rapport
369 370 label_watched_issues: Gemonitorde issues
370 371 label_related_issues: Gerelateerde issues
371 372 label_applied_status: Toegekende status
372 373 label_loading: Laden...
373 374 label_relation_new: Nieuwe relatie
374 375 label_relation_delete: Verwijder relatie
375 376 label_relates_to: gerelateerd aan
376 377 label_duplicates: dupliceert
377 378 label_blocks: blokkeert
378 379 label_blocked_by: geblokkeerd door
379 380 label_precedes: gaat vooraf aan
380 381 label_follows: volgt op
381 382 label_end_to_start: eind tot start
382 383 label_end_to_end: eind tot eind
383 384 label_start_to_start: start tot start
384 385 label_start_to_end: start tot eind
385 386 label_stay_logged_in: Blijf ingelogd
386 387 label_disabled: uitgeschakeld
387 388 label_show_completed_versions: Toon afgeronde versies
388 389 label_me: ik
389 390 label_board: Forum
390 391 label_board_new: Nieuw forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Onderwerpen
393 394 label_message_plural: Berichten
394 395 label_message_last: Laatste bericht
395 396 label_message_new: Nieuw bericht
396 397 label_reply_plural: Antwoorden
397 398
398 399 button_login: Inloggen
399 400 button_submit: Toevoegen
400 401 button_save: Bewaren
401 402 button_check_all: Selecteer alle
402 403 button_uncheck_all: Deselecteer alle
403 404 button_delete: Verwijder
404 405 button_create: Maak
405 406 button_test: Test
406 407 button_edit: Bewerk
407 408 button_add: Voeg toe
408 409 button_change: Wijzig
409 410 button_apply: Pas toe
410 411 button_clear: Leeg maken
411 412 button_lock: Lock
412 413 button_unlock: Unlock
413 414 button_download: Download
414 415 button_list: Lijst
415 416 button_view: Bekijken
416 417 button_move: Verplaatsen
417 418 button_back: Terug
418 419 button_cancel: Annuleer
419 420 button_activate: Activeer
420 421 button_sort: Sorteer
421 422 button_log_time: Log tijd
422 423 button_rollback: Rollback naar deze versie
423 424 button_watch: Monitor
424 425 button_unwatch: Niet meer monitoren
425 426 button_reply: Antwoord
426 427
427 428 status_active: Actief
428 429 status_registered: geregistreerd
429 430 status_locked: gelockt
430 431
431 432 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
432 433 text_regexp_info: bv. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 betekent geen restrictie
434 435 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
435 436 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
436 437 text_are_you_sure: Weet U het zeker ?
437 438 text_journal_changed: gewijzigd van %s naar %s
438 439 text_journal_set_to: ingesteld op %s
439 440 text_journal_deleted: verwijderd
440 441 text_tip_task_begin_day: taak die op deze dag begint
441 442 text_tip_task_end_day: taak die op deze dag eindigt
442 443 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
443 444 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
444 445 text_caracters_maximum: %d van maximum aantal tekens.
445 446 text_length_between: Lengte tussen %d en %d tekens.
446 447 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
447 448 text_unallowed_characters: Niet toegestane tekens
448 449 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
449 450 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
450 451
451 452 default_role_manager: Manager
452 453 default_role_developper: Ontwikkelaar
453 454 default_role_reporter: Rapporteur
454 455 default_tracker_bug: Bug
455 456 default_tracker_feature: Feature
456 457 default_tracker_support: Support
457 458 default_issue_status_new: Nieuw
458 459 default_issue_status_assigned: Toegewezen
459 460 default_issue_status_resolved: Opgelost
460 461 default_issue_status_feedback: Terugkoppeling
461 462 default_issue_status_closed: Gesloten
462 463 default_issue_status_rejected: Afgewezen
463 464 default_doc_category_user: Gebruikersdocumentatie
464 465 default_doc_category_tech: Technische documentatie
465 466 default_priority_low: Laag
466 467 default_priority_normal: Normaal
467 468 default_priority_high: Hoog
468 469 default_priority_urgent: Spoed
469 470 default_priority_immediate: Onmiddellijk
470 471 default_activity_design: Design
471 472 default_activity_development: Development
472 473
473 474 enumeration_issue_priorities: Issue prioriteiten
474 475 enumeration_doc_categories: Document categorieën
475 476 enumeration_activities: Activiteiten (tijd tracking)
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Sua senha do redMine.
74 74 mail_subject_register: Ativacao de conta do redMine.
75 75
76 76 gui_validation_error: 1 erro
77 77 gui_validation_error_plural: %d erros
78 78
79 79 field_name: Nome
80 80 field_description: Descricao
81 81 field_summary: Sumario
82 82 field_is_required: Obrigatorio
83 83 field_firstname: Primeiro nome
84 84 field_lastname: Ultimo nome
85 85 field_mail: Email
86 86 field_filename: Arquivo
87 87 field_filesize: Tamanho
88 88 field_downloads: Downloads
89 89 field_author: Autor
90 90 field_created_on: Criado
91 91 field_updated_on: Alterado
92 92 field_field_format: Formato
93 93 field_is_for_all: Para todos os projetos
94 94 field_possible_values: Possiveis valores
95 95 field_regexp: Expressao regular
96 96 field_min_length: Tamanho minimo
97 97 field_max_length: Tamanho maximo
98 98 field_value: Valor
99 99 field_category: Categoria
100 100 field_title: Titulo
101 101 field_project: Projeto
102 102 field_issue: Tarefa
103 103 field_status: Status
104 104 field_notes: Notas
105 105 field_is_closed: Tarefa fechada
106 106 field_is_default: Status padrao
107 107 field_html_color: Cor
108 108 field_tracker: Tipo
109 109 field_subject: Titulo
110 110 field_due_date: Data devida
111 111 field_assigned_to: Atribuido para
112 112 field_priority: Prioridade
113 113 field_fixed_version: Versao corrigida
114 114 field_user: Usuario
115 115 field_role: Regra
116 116 field_homepage: Pagina inicial
117 117 field_is_public: Publico
118 118 field_parent: Sub-projeto de
119 119 field_is_in_chlog: Tarefas mostradas no changelog
120 120 field_is_in_roadmap: Tarefas mostradas no roadmap
121 121 field_login: Login
122 122 field_mail_notification: Notificacoes por email
123 123 field_admin: Administrador
124 124 field_last_login_on: Ultima conexao
125 125 field_language: Lingua
126 126 field_effective_date: Data
127 127 field_password: Senha
128 128 field_new_password: Nova senha
129 129 field_password_confirmation: Confirmacao
130 130 field_version: Versao
131 131 field_type: Tipo
132 132 field_host: Servidor
133 133 field_port: Porta
134 134 field_account: Conta
135 135 field_base_dn: Base DN
136 136 field_attr_login: Atributo login
137 137 field_attr_firstname: Atributo primeiro nome
138 138 field_attr_lastname: Atributo ultimo nome
139 139 field_attr_mail: Atributo email
140 140 field_onthefly: Criacao de usuario on-the-fly
141 141 field_start_date: Inicio
142 142 field_done_ratio: %% Terminado
143 143 field_auth_source: Modo de autenticacao
144 144 field_hide_mail: Esconder meu email
145 145 field_comments: Comentario
146 146 field_url: URL
147 147 field_start_page: Pagina inicial
148 148 field_subproject: Sub-projeto
149 149 field_hours: Horas
150 150 field_activity: Atividade
151 151 field_spent_on: Data
152 152 field_identifier: Identificador
153 153 field_is_filter: Used as a filter
154 154 field_issue_to_id: Related issue
155 155 field_delay: Delay
156 156
157 157 setting_app_title: Titulo da aplicacao
158 158 setting_app_subtitle: Sub-titulo da aplicacao
159 159 setting_welcome_text: Texto de boa-vinda
160 160 setting_default_language: Lingua padrao
161 161 setting_login_required: Autenticacao obrigatoria
162 162 setting_self_registration: Registro de si mesmo permitido
163 163 setting_attachment_max_size: Tamanho maximo do anexo
164 164 setting_issues_export_limit: Limite de exportacao das tarefas
165 165 setting_mail_from: Email enviado de
166 166 setting_host_name: Servidor
167 167 setting_text_formatting: Formato do texto
168 168 setting_wiki_compression: Compactacao do historio do Wiki
169 169 setting_feeds_limit: Limite do Feed
170 170 setting_autofetch_changesets: Autofetch SVN commits
171 171 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
172 172 setting_commit_ref_keywords: Referencing keywords
173 173 setting_commit_fix_keywords: Fixing keywords
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Usuario
177 177 label_user_plural: Usuarios
178 178 label_user_new: Novo usuario
179 179 label_project: Projeto
180 180 label_project_new: Novo projeto
181 181 label_project_plural: Projetos
182 182 label_project_all: All Projects
183 183 label_project_latest: Ultimos projetos
184 184 label_issue: Tarefa
185 185 label_issue_new: Nova tarefa
186 186 label_issue_plural: Tarefas
187 187 label_issue_view_all: Ver todas as tarefas
188 188 label_document: Documento
189 189 label_document_new: Novo documento
190 190 label_document_plural: Documentos
191 191 label_role: Regra
192 192 label_role_plural: Regras
193 193 label_role_new: Nova regra
194 194 label_role_and_permissions: Regras e permissoes
195 195 label_member: Membro
196 196 label_member_new: Novo membro
197 197 label_member_plural: Membros
198 198 label_tracker: Tipo
199 199 label_tracker_plural: Tipos
200 200 label_tracker_new: Novo tipo
201 201 label_workflow: Workflow
202 202 label_issue_status: Status da tarefa
203 203 label_issue_status_plural: Status das tarefas
204 204 label_issue_status_new: Novo status
205 205 label_issue_category: Categoria de tarefa
206 206 label_issue_category_plural: Categorias de tarefa
207 207 label_issue_category_new: Nova categoria
208 208 label_custom_field: Campo personalizado
209 209 label_custom_field_plural: Campos personalizado
210 210 label_custom_field_new: Novo campo personalizado
211 211 label_enumerations: Enumeracao
212 212 label_enumeration_new: Novo valor
213 213 label_information: Informacao
214 214 label_information_plural: Informacoes
215 215 label_please_login: Efetue login
216 216 label_register: Registre-se
217 217 label_password_lost: Perdi a senha
218 218 label_home: Pagina inicial
219 219 label_my_page: Minha pagina
220 220 label_my_account: Minha conta
221 221 label_my_projects: Meus projetos
222 222 label_administration: Administracao
223 223 label_login: Login
224 224 label_logout: Logout
225 225 label_help: Ajuda
226 226 label_reported_issues: Tarefas reportadas
227 227 label_assigned_to_me_issues: Tarefas atribuidas a mim
228 228 label_last_login: Utima conexao
229 229 label_last_updates: Ultima alteracao
230 230 label_last_updates_plural: %d Ultimas alteracoes
231 231 label_registered_on: Registrado em
232 232 label_activity: Atividade
233 233 label_new: Novo
234 234 label_logged_as: Logado como
235 235 label_environment: Ambiente
236 236 label_authentication: Autenticacao
237 237 label_auth_source: Modo de autenticacao
238 238 label_auth_source_new: Novo modo de autenticacao
239 239 label_auth_source_plural: Modos de autenticacao
240 240 label_subproject_plural: Sub-projetos
241 241 label_min_max_length: Tamanho min-max
242 242 label_list: Lista
243 243 label_date: Data
244 244 label_integer: Inteiro
245 245 label_boolean: Boleano
246 246 label_string: Texto
247 247 label_text: Texto longo
248 248 label_attribute: Atributo
249 249 label_attribute_plural: Atributos
250 250 label_download: %d Download
251 251 label_download_plural: %d Downloads
252 252 label_no_data: Sem dados para mostrar
253 253 label_change_status: Mudar status
254 254 label_history: Historico
255 255 label_attachment: Arquivo
256 256 label_attachment_new: Novo arquivo
257 257 label_attachment_delete: Apagar arquivo
258 258 label_attachment_plural: Arquivos
259 259 label_report: Relatorio
260 260 label_report_plural: Relatorio
261 261 label_news: Noticias
262 262 label_news_new: Adicionar noticias
263 263 label_news_plural: Noticias
264 264 label_news_latest: Ultimas noticias
265 265 label_news_view_all: Ver todas as noticias
266 266 label_change_log: Change log
267 267 label_settings: Ajustes
268 268 label_overview: Visao geral
269 269 label_version: Versao
270 270 label_version_new: Nova versao
271 271 label_version_plural: Versoes
272 272 label_confirmation: Confirmacao
273 273 label_export_to: Exportar para
274 274 label_read: Ler...
275 275 label_public_projects: Projetos publicos
276 276 label_open_issues: Aberto
277 277 label_open_issues_plural: Abertos
278 278 label_closed_issues: Fechado
279 279 label_closed_issues_plural: Fechados
280 280 label_total: Total
281 281 label_permissions: Permissoes
282 282 label_current_status: Status atual
283 283 label_new_statuses_allowed: Novo status permitido
284 284 label_all: todos
285 285 label_none: nenhum
286 286 label_next: Proximo
287 287 label_previous: Anterior
288 288 label_used_by: Usado por
289 289 label_details: Detalhes...
290 290 label_add_note: Adicionar nota
291 291 label_per_page: Por pagina
292 292 label_calendar: Calendario
293 293 label_months_from: Meses de
294 294 label_gantt: Gantt
295 295 label_internal: Interno
296 296 label_last_changes: utlimas %d mudancas
297 297 label_change_view_all: Mostrar todas as mudancas
298 298 label_personalize_page: Personalizar esta pagina
299 299 label_comment: Comentario
300 300 label_comment_plural: Comentarios
301 301 label_comment_add: Adicionar comentario
302 302 label_comment_added: Comentario adicionado
303 303 label_comment_delete: Apagar comentario
304 304 label_query: Consulta personalizada
305 305 label_query_plural: Consultas personalizadas
306 306 label_query_new: Nova consulta
307 307 label_filter_add: Adicionar filtro
308 308 label_filter_plural: Filtros
309 309 label_equals: e
310 310 label_not_equals: nao e
311 311 label_in_less_than: e maior que
312 312 label_in_more_than: e menor que
313 313 label_in: em
314 314 label_today: hoje
315 315 label_less_than_ago: faz menos de
316 316 label_more_than_ago: faz mais de
317 317 label_ago: dias atras
318 318 label_contains: contem
319 319 label_not_contains: nao contem
320 320 label_day_plural: dias
321 321 label_repository: SVN Repository
322 322 label_browse: Browse
323 323 label_modification: %d change
324 324 label_modification_plural: %d changes
325 325 label_revision: Revision
326 326 label_revision_plural: Revisions
327 327 label_added: added
328 328 label_modified: modified
329 329 label_deleted: deleted
330 330 label_latest_revision: Latest revision
331 331 label_latest_revision_plural: Latest revisions
332 332 label_view_revisions: View revisions
333 333 label_max_size: Maximum size
334 334 label_on: 'em'
335 335 label_sort_highest: Mover para o inicio
336 336 label_sort_higher: Mover para cima
337 337 label_sort_lower: Mover para baixo
338 338 label_sort_lowest: Mover para o fim
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Due in
341 341 label_roadmap_no_issues: Sem tarefas para essa versao
342 342 label_search: Busca
343 343 label_result: %d resultado
344 344 label_result_plural: %d resultados
345 345 label_all_words: Todas as palavras
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki edit
348 348 label_wiki_edit_plural: Wiki edits
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Index
350 351 label_current_version: Versao atual
351 352 label_preview: Previa
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Detalhes de todas as mudancas
354 355 label_issue_tracking: Tarefas
355 356 label_spent_time: Tempo gasto
356 357 label_f_hour: %.2f hora
357 358 label_f_hour_plural: %.2f horas
358 359 label_time_tracking: Tempo trabalhado
359 360 label_change_plural: Mudancas
360 361 label_statistics: Estatisticas
361 362 label_commits_per_month: Commits por mes
362 363 label_commits_per_author: Commits por autor
363 364 label_view_diff: Ver diferencas
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: side by side
366 367 label_options: Opcoes
367 368 label_copy_workflow_from: Copiar workflow de
368 369 label_permissions_report: Relatorio de permissoes
369 370 label_watched_issues: Watched issues
370 371 label_related_issues: Related issues
371 372 label_applied_status: Applied status
372 373 label_loading: Loading...
373 374 label_relation_new: New relation
374 375 label_relation_delete: Delete relation
375 376 label_relates_to: related to
376 377 label_duplicates: duplicates
377 378 label_blocks: blocks
378 379 label_blocked_by: blocked by
379 380 label_precedes: precedes
380 381 label_follows: follows
381 382 label_end_to_start: start to end
382 383 label_end_to_end: end to end
383 384 label_start_to_start: start to start
384 385 label_start_to_end: start to end
385 386 label_stay_logged_in: Stay logged in
386 387 label_disabled: disabled
387 388 label_show_completed_versions: Show completed versions
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Login
399 400 button_submit: Enviar
400 401 button_save: Salvar
401 402 button_check_all: Marcar todos
402 403 button_uncheck_all: Desmarcar todos
403 404 button_delete: Apagar
404 405 button_create: Criar
405 406 button_test: Testar
406 407 button_edit: Editar
407 408 button_add: Adicionar
408 409 button_change: Mudar
409 410 button_apply: Aplicar
410 411 button_clear: Limpar
411 412 button_lock: Bloquear
412 413 button_unlock: Desbloquear
413 414 button_download: Download
414 415 button_list: Listar
415 416 button_view: Ver
416 417 button_move: Mover
417 418 button_back: Voltar
418 419 button_cancel: Cancelar
419 420 button_activate: Ativar
420 421 button_sort: Ordenar
421 422 button_log_time: Tempo de trabalho
422 423 button_rollback: Voltar para esta versao
423 424 button_watch: Watch
424 425 button_unwatch: Unwatch
425 426 button_reply: Reply
426 427
427 428 status_active: ativo
428 429 status_registered: registrado
429 430 status_locked: bloqueado
430 431
431 432 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
432 433 text_regexp_info: eg. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 siginifica sem restricao
434 435 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
435 436 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
436 437 text_are_you_sure: Voce tem certeza ?
437 438 text_journal_changed: alterado de %s para %s
438 439 text_journal_set_to: setar para %s
439 440 text_journal_deleted: apagado
440 441 text_tip_task_begin_day: tarefa comeca neste dia
441 442 text_tip_task_end_day: tarefa termina neste dia
442 443 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
443 444 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
444 445 text_caracters_maximum: %d maximo de caracteres
445 446 text_length_between: Tamanho entre %d e %d caracteres.
446 447 text_tracker_no_workflow: Sem workflow definido para este tipo.
447 448 text_unallowed_characters: Unallowed characters
448 449 text_comma_separated: Multiple values allowed (comma separated).
449 450 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
450 451
451 452 default_role_manager: Analista de Negocio ou Gerente de Projeto
452 453 default_role_developper: Desenvolvedor
453 454 default_role_reporter: Analista de Suporte
454 455 default_tracker_bug: Bug
455 456 default_tracker_feature: Implementacao
456 457 default_tracker_support: Suporte
457 458 default_issue_status_new: Novo
458 459 default_issue_status_assigned: Atribuido
459 460 default_issue_status_resolved: Resolvido
460 461 default_issue_status_feedback: Feedback
461 462 default_issue_status_closed: Fechado
462 463 default_issue_status_rejected: Rejeitado
463 464 default_doc_category_user: Documentacao do usuario
464 465 default_doc_category_tech: Documentacao do tecnica
465 466 default_priority_low: Baixo
466 467 default_priority_normal: Normal
467 468 default_priority_high: Alto
468 469 default_priority_urgent: Urgente
469 470 default_priority_immediate: Imediato
470 471 default_activity_design: Design
471 472 default_activity_development: Desenvolvimento
472 473
473 474 enumeration_issue_priorities: Prioridade das tarefas
474 475 enumeration_doc_categories: Categorias de documento
475 476 enumeration_activities: Atividades (time tracking)
@@ -1,475 +1,476
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
73 73 mail_subject_lost_password: Sua senha do redMine.
74 74 mail_subject_register: Ativação de conta do redMine.
75 75
76 76 gui_validation_error: 1 erro
77 77 gui_validation_error_plural: %d erros
78 78
79 79 field_name: Nome
80 80 field_description: Descrição
81 81 field_summary: Sumário
82 82 field_is_required: Obrigatório
83 83 field_firstname: Primeiro nome
84 84 field_lastname: Último nome
85 85 field_mail: Email
86 86 field_filename: Arquivo
87 87 field_filesize: Tamanho
88 88 field_downloads: Downloads
89 89 field_author: Autor
90 90 field_created_on: Criado
91 91 field_updated_on: Alterado
92 92 field_field_format: Formato
93 93 field_is_for_all: Para todos os projetos
94 94 field_possible_values: Possíveis valores
95 95 field_regexp: Expressão regular
96 96 field_min_length: Tamanho mínimo
97 97 field_max_length: Tamanho máximo
98 98 field_value: Valor
99 99 field_category: Categoria
100 100 field_title: Título
101 101 field_project: Projeto
102 102 field_issue: Tarefa
103 103 field_status: Status
104 104 field_notes: Notas
105 105 field_is_closed: Tarefa fechada
106 106 field_is_default: Status padrão
107 107 field_html_color: Cor
108 108 field_tracker: Tipo
109 109 field_subject: Assunto
110 110 field_due_date: Data final
111 111 field_assigned_to: Atribuído para
112 112 field_priority: Prioridade
113 113 field_fixed_version: Versão corrigida
114 114 field_user: Usuário
115 115 field_role: Regra
116 116 field_homepage: Página inicial
117 117 field_is_public: Público
118 118 field_parent: Sub-projeto de
119 119 field_is_in_chlog: Tarefas mostradas no changelog
120 120 field_is_in_roadmap: Tarefas mostradas no roadmap
121 121 field_login: Login
122 122 field_mail_notification: Notificações por email
123 123 field_admin: Administrador
124 124 field_last_login_on: Última conexão
125 125 field_language: Língua
126 126 field_effective_date: Data
127 127 field_password: Senha
128 128 field_new_password: Nova senha
129 129 field_password_confirmation: Confirmação
130 130 field_version: Versão
131 131 field_type: Tipo
132 132 field_host: Servidor
133 133 field_port: Porta
134 134 field_account: Conta
135 135 field_base_dn: Base DN
136 136 field_attr_login: Atributo login
137 137 field_attr_firstname: Atributo primeiro nome
138 138 field_attr_lastname: Atributo último nome
139 139 field_attr_mail: Atributo email
140 140 field_onthefly: Criação de usuário sob-demanda
141 141 field_start_date: Início
142 142 field_done_ratio: %% Terminado
143 143 field_auth_source: Modo de autenticação
144 144 field_hide_mail: Esconda meu email
145 145 field_comments: Comentário
146 146 field_url: URL
147 147 field_start_page: Página inicial
148 148 field_subproject: Sub-projeto
149 149 field_hours: Horas
150 150 field_activity: Atividade
151 151 field_spent_on: Data
152 152 field_identifier: Identificador
153 153 field_is_filter: Usado como filtro
154 154 field_issue_to_id: Tarefa relacionada
155 155 field_delay: Atraso
156 156
157 157 setting_app_title: Título da aplicação
158 158 setting_app_subtitle: Sub-título da aplicação
159 159 setting_welcome_text: Texto de boas-vindas
160 160 setting_default_language: Linguagem padrão
161 161 setting_login_required: Autenticação obrigatória
162 162 setting_self_registration: Registro permitido
163 163 setting_attachment_max_size: Tamanho máximo do anexo
164 164 setting_issues_export_limit: Limite de exportação das tarefas
165 165 setting_mail_from: Email enviado de
166 166 setting_host_name: Servidor
167 167 setting_text_formatting: Formato do texto
168 168 setting_wiki_compression: Compactação do histórico do Wiki
169 169 setting_feeds_limit: Limite do Feed
170 170 setting_autofetch_changesets: Buscar automaticamente commits do SVN
171 171 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
172 172 setting_commit_ref_keywords: Palavras-chave de referôncia
173 173 setting_commit_fix_keywords: Palavras-chave fixas
174 174 setting_autologin: Autologin
175 175
176 176 label_user: Usuário
177 177 label_user_plural: Usuários
178 178 label_user_new: Novo usuário
179 179 label_project: Projeto
180 180 label_project_new: Novo projeto
181 181 label_project_plural: Projetos
182 182 label_project_all: All Projects
183 183 label_project_latest: Últimos projetos
184 184 label_issue: Tarefa
185 185 label_issue_new: Nova tarefa
186 186 label_issue_plural: Tarefas
187 187 label_issue_view_all: Ver todas as tarefas
188 188 label_document: Documento
189 189 label_document_new: Novo documento
190 190 label_document_plural: Documentos
191 191 label_role: Regra
192 192 label_role_plural: Regras
193 193 label_role_new: Nova regra
194 194 label_role_and_permissions: Regras e permissões
195 195 label_member: Membro
196 196 label_member_new: Novo membro
197 197 label_member_plural: Membros
198 198 label_tracker: Tipo
199 199 label_tracker_plural: Tipos
200 200 label_tracker_new: Novo tipo
201 201 label_workflow: Workflow
202 202 label_issue_status: Status da tarefa
203 203 label_issue_status_plural: Status das tarefas
204 204 label_issue_status_new: Novo status
205 205 label_issue_category: Categoria da tarefa
206 206 label_issue_category_plural: Categorias das tarefas
207 207 label_issue_category_new: Nova categoria
208 208 label_custom_field: Campo personalizado
209 209 label_custom_field_plural: Campos personalizados
210 210 label_custom_field_new: Novo campo personalizado
211 211 label_enumerations: Enumeração
212 212 label_enumeration_new: Novo valor
213 213 label_information: Informação
214 214 label_information_plural: Informações
215 215 label_please_login: Efetue login
216 216 label_register: Registre-se
217 217 label_password_lost: Perdi a senha
218 218 label_home: Página inicial
219 219 label_my_page: Minha página
220 220 label_my_account: Minha conta
221 221 label_my_projects: Meus projetos
222 222 label_administration: Administração
223 223 label_login: Login
224 224 label_logout: Logout
225 225 label_help: Ajuda
226 226 label_reported_issues: Tarefas reportadas
227 227 label_assigned_to_me_issues: Tarefas atribuídas à mim
228 228 label_last_login: Útima conexão
229 229 label_last_updates: Última alteração
230 230 label_last_updates_plural: %d Últimas alterações
231 231 label_registered_on: Registrado em
232 232 label_activity: Atividade
233 233 label_new: Novo
234 234 label_logged_as: Logado como
235 235 label_environment: Ambiente
236 236 label_authentication: Autenticação
237 237 label_auth_source: Modo de autenticação
238 238 label_auth_source_new: Novo modo de autenticação
239 239 label_auth_source_plural: Modos de autenticação
240 240 label_subproject_plural: Sub-projetos
241 241 label_min_max_length: Tamanho min-max
242 242 label_list: Lista
243 243 label_date: Data
244 244 label_integer: Inteiro
245 245 label_boolean: Booleano
246 246 label_string: Texto
247 247 label_text: Texto longo
248 248 label_attribute: Atributo
249 249 label_attribute_plural: Atributos
250 250 label_download: %d Download
251 251 label_download_plural: %d Downloads
252 252 label_no_data: Sem dados para mostrar
253 253 label_change_status: Mudar status
254 254 label_history: Histórico
255 255 label_attachment: Arquivo
256 256 label_attachment_new: Novo arquivo
257 257 label_attachment_delete: Apagar arquivo
258 258 label_attachment_plural: Arquivos
259 259 label_report: Relatório
260 260 label_report_plural: Relatório
261 261 label_news: Notícias
262 262 label_news_new: Adicionar notícias
263 263 label_news_plural: Notícias
264 264 label_news_latest: Últimas notícias
265 265 label_news_view_all: Ver todas as notícias
266 266 label_change_log: Log de mudanças
267 267 label_settings: Configurações
268 268 label_overview: Visão geral
269 269 label_version: Versão
270 270 label_version_new: Nova versão
271 271 label_version_plural: Versões
272 272 label_confirmation: Confirmação
273 273 label_export_to: Exportar para
274 274 label_read: Ler...
275 275 label_public_projects: Projetos públicos
276 276 label_open_issues: Aberto
277 277 label_open_issues_plural: Abertos
278 278 label_closed_issues: Fechado
279 279 label_closed_issues_plural: Fechados
280 280 label_total: Total
281 281 label_permissions: Permissões
282 282 label_current_status: Status atual
283 283 label_new_statuses_allowed: Novo status permitido
284 284 label_all: todos
285 285 label_none: nenhum
286 286 label_next: Próximo
287 287 label_previous: Anterior
288 288 label_used_by: Usado por
289 289 label_details: Detalhes...
290 290 label_add_note: Adicionar nota
291 291 label_per_page: Por página
292 292 label_calendar: Calendário
293 293 label_months_from: Meses de
294 294 label_gantt: Gantt
295 295 label_internal: Interno
296 296 label_last_changes: últimas %d mudanças
297 297 label_change_view_all: Mostrar todas as mudanças
298 298 label_personalize_page: Personalizar esta página
299 299 label_comment: Comentário
300 300 label_comment_plural: Comentários
301 301 label_comment_add: Adicionar comentário
302 302 label_comment_added: Comentário adicionado
303 303 label_comment_delete: Apagar comentário
304 304 label_query: Consulta personalizada
305 305 label_query_plural: Consultas personalizadas
306 306 label_query_new: Nova consulta
307 307 label_filter_add: Adicionar filtro
308 308 label_filter_plural: Filtros
309 309 label_equals: é
310 310 label_not_equals: não e
311 311 label_in_less_than: é maior que
312 312 label_in_more_than: é menor que
313 313 label_in: em
314 314 label_today: hoje
315 315 label_less_than_ago: faz menos de
316 316 label_more_than_ago: faz mais de
317 317 label_ago: dias atrás
318 318 label_contains: contém
319 319 label_not_contains: não contém
320 320 label_day_plural: dias
321 321 label_repository: Repositório SVN
322 322 label_browse: Procurar
323 323 label_modification: %d mudança
324 324 label_modification_plural: %d mudanças
325 325 label_revision: Revisão
326 326 label_revision_plural: Revisões
327 327 label_added: adicionado
328 328 label_modified: modificado
329 329 label_deleted: deletado
330 330 label_latest_revision: Última revisão
331 331 label_latest_revision_plural: Últimas revisões
332 332 label_view_revisions: Ver revisões
333 333 label_max_size: Tamanho máximo
334 334 label_on: em
335 335 label_sort_highest: Mover para o início
336 336 label_sort_higher: Mover para cima
337 337 label_sort_lower: Mover para baixo
338 338 label_sort_lowest: Mover para o fim
339 339 label_roadmap: Roadmap
340 340 label_roadmap_due_in: Termina em
341 341 label_roadmap_no_issues: Sem tarefas para essa versão
342 342 label_search: Busca
343 343 label_result: %d resultado
344 344 label_result_plural: %d resultados
345 345 label_all_words: Todas as palavras
346 346 label_wiki: Wiki
347 347 label_wiki_edit: Wiki edit
348 348 label_wiki_edit_plural: Wiki edits
349 label_wiki_page_plural: Wiki pages
349 350 label_page_index: Index
350 351 label_current_version: Versão atual
351 352 label_preview: Prévia
352 353 label_feed_plural: Feeds
353 354 label_changes_details: Detalhes de todas as mudanças
354 355 label_issue_tracking: Tarefas
355 356 label_spent_time: Tempo gasto
356 357 label_f_hour: %.2f hora
357 358 label_f_hour_plural: %.2f horas
358 359 label_time_tracking: Tempo trabalhado
359 360 label_change_plural: Mudanças
360 361 label_statistics: Estatísticas
361 362 label_commits_per_month: Commits por mês
362 363 label_commits_per_author: Commits por autor
363 364 label_view_diff: Ver diferenças
364 365 label_diff_inline: inline
365 366 label_diff_side_by_side: lado a lado
366 367 label_options: Opções
367 368 label_copy_workflow_from: Copiar workflow de
368 369 label_permissions_report: Relatório de permissões
369 370 label_watched_issues: Tarefas observadas
370 371 label_related_issues: tarefas relacionadas
371 372 label_applied_status: Status aplicado
372 373 label_loading: Carregando...
373 374 label_relation_new: Nova relação
374 375 label_relation_delete: Deletar relação
375 376 label_relates_to: relacionado à
376 377 label_duplicates: duplicadas
377 378 label_blocks: bloqueios
378 379 label_blocked_by: bloqueado por
379 380 label_precedes: procede
380 381 label_follows: segue
381 382 label_end_to_start: fim ao início
382 383 label_end_to_end: fim ao fim
383 384 label_start_to_start: ínícia ao inícia
384 385 label_start_to_end: inícia ao fim
385 386 label_stay_logged_in: Rester connecté
386 387 label_disabled: désactivé
387 388 label_show_completed_versions: Voire les versions passées
388 389 label_me: me
389 390 label_board: Forum
390 391 label_board_new: New forum
391 392 label_board_plural: Forums
392 393 label_topic_plural: Topics
393 394 label_message_plural: Messages
394 395 label_message_last: Last message
395 396 label_message_new: New message
396 397 label_reply_plural: Replies
397 398
398 399 button_login: Login
399 400 button_submit: Enviar
400 401 button_save: Salvar
401 402 button_check_all: Marcar todos
402 403 button_uncheck_all: Desmarcar todos
403 404 button_delete: Apagar
404 405 button_create: Criar
405 406 button_test: Testar
406 407 button_edit: Editar
407 408 button_add: Adicionar
408 409 button_change: Mudar
409 410 button_apply: Aplicar
410 411 button_clear: Limpar
411 412 button_lock: Bloquear
412 413 button_unlock: Desbloquear
413 414 button_download: Download
414 415 button_list: Listar
415 416 button_view: Ver
416 417 button_move: Mover
417 418 button_back: Voltar
418 419 button_cancel: Cancelar
419 420 button_activate: Ativar
420 421 button_sort: Ordenar
421 422 button_log_time: Tempo de trabalho
422 423 button_rollback: Voltar para esta versão
423 424 button_watch: Observar
424 425 button_unwatch: Não observar
425 426 button_reply: Reply
426 427
427 428 status_active: ativo
428 429 status_registered: registrado
429 430 status_locked: bloqueado
430 431
431 432 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
432 433 text_regexp_info: ex. ^[A-Z0-9]+$
433 434 text_min_max_length_info: 0 siginifica sem restrição
434 435 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
435 436 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
436 437 text_are_you_sure: Você tem certeza ?
437 438 text_journal_changed: alterado de %s para %s
438 439 text_journal_set_to: alterar para %s
439 440 text_journal_deleted: apagado
440 441 text_tip_task_begin_day: tarefa começa neste dia
441 442 text_tip_task_end_day: tarefa termina neste dia
442 443 text_tip_task_begin_end_day: tarefa começa e termina neste dia
443 444 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.'
444 445 text_caracters_maximum: %d móximo de caracteres
445 446 text_length_between: Tamanho entre %d e %d caracteres.
446 447 text_tracker_no_workflow: Sem workflow definido para este tipo.
447 448 text_unallowed_characters: Caracteres não permitidos
448 449 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
449 450 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
450 451
451 452 default_role_manager: Analista de Negócio ou Gerente de Projeto
452 453 default_role_developper: Desenvolvedor
453 454 default_role_reporter: Analista de Suporte
454 455 default_tracker_bug: Bug
455 456 default_tracker_feature: Implementaçõo
456 457 default_tracker_support: Suporte
457 458 default_issue_status_new: Novo
458 459 default_issue_status_assigned: Atribuído
459 460 default_issue_status_resolved: Resolvido
460 461 default_issue_status_feedback: Feedback
461 462 default_issue_status_closed: Fechado
462 463 default_issue_status_rejected: Rejeitado
463 464 default_doc_category_user: Documentação do usuário
464 465 default_doc_category_tech: Documentação técnica
465 466 default_priority_low: Baixo
466 467 default_priority_normal: Normal
467 468 default_priority_high: Alto
468 469 default_priority_urgent: Urgente
469 470 default_priority_immediate: Imediato
470 471 default_activity_design: Design
471 472 default_activity_development: Desenvolvimento
472 473
473 474 enumeration_issue_priorities: Prioridade das tarefas
474 475 enumeration_doc_categories: Categorias de documento
475 476 enumeration_activities: Atividades (time tracking)
@@ -1,478 +1,479
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
76 76 mail_subject_lost_password: 您的redMine口令
77 77 mail_subject_register: redMine帐户激活
78 78
79 79 gui_validation_error: 1 个错误
80 80 gui_validation_error_plural: %d 个错误
81 81
82 82 field_name: 名称
83 83 field_description: 描述
84 84 field_summary: 摘要
85 85 field_is_required: 必填
86 86 field_firstname: 名字
87 87 field_lastname:
88 88 field_mail: 邮件地址
89 89 field_filename: 文件
90 90 field_filesize: 大小
91 91 field_downloads: 下载次数
92 92 field_author: 作者
93 93 field_created_on: 创建于
94 94 field_updated_on: 更新于
95 95 field_field_format: 格式
96 96 field_is_for_all: 应用于所有项目
97 97 field_possible_values: 可能的值
98 98 field_regexp: 正则表达式
99 99 field_min_length: 最小长度
100 100 field_max_length: 最大长度
101 101 field_value:
102 102 field_category: 分类
103 103 field_title: 标题
104 104 field_project: 项目
105 105 field_issue: 任务
106 106 field_status: 状态
107 107 field_notes: 说明
108 108 field_is_closed: 已关闭的任务
109 109 field_is_default: 默认状态
110 110 field_html_color: 颜色
111 111 field_tracker: 跟踪
112 112 field_subject: 主题
113 113 field_due_date: 到期日
114 114 field_assigned_to: 指派
115 115 field_priority: 优先级
116 116 field_fixed_version: 修订版本
117 117 field_user: 用户
118 118 field_role: 角色
119 119 field_homepage: 主页
120 120 field_is_public: 公开
121 121 field_parent: 上级项目
122 122 field_is_in_chlog: 在更新日志中显示任务
123 123 field_is_in_roadmap: 在路线图中显示任务
124 124 field_login: 登录名
125 125 field_mail_notification: 邮件通知
126 126 field_admin: 管理员
127 127 field_last_login_on: 最后登录
128 128 field_language: 语言
129 129 field_effective_date: 日期
130 130 field_password: 口令
131 131 field_new_password: 新口令
132 132 field_password_confirmation: 确认
133 133 field_version: 版本
134 134 field_type: 类别
135 135 field_host: 主机
136 136 field_port: 端口
137 137 field_account: 帐号
138 138 field_base_dn: Base DN
139 139 field_attr_login: 登录名属性
140 140 field_attr_firstname: 名字属性
141 141 field_attr_lastname: 姓属性
142 142 field_attr_mail: 邮件属性
143 143 field_onthefly: On-the-fly user creation
144 144 field_start_date: 开始
145 145 field_done_ratio: %% 完成
146 146 field_auth_source: 认证模式
147 147 field_hide_mail: 隐藏我的邮件
148 148 field_comments: 注释
149 149 field_url: URL
150 150 field_start_page: 起始页
151 151 field_subproject: 子项目
152 152 field_hours: Hours
153 153 field_activity: 活动
154 154 field_spent_on: 日期
155 155 field_identifier: Identifier
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159
160 160 setting_app_title: 应用程序标题
161 161 setting_app_subtitle: 应用程序子标题
162 162 setting_welcome_text: 欢迎文字
163 163 setting_default_language: 默认语言
164 164 setting_login_required: 要求认证
165 165 setting_self_registration: 允许自注册
166 166 setting_attachment_max_size: 附件最大尺寸
167 167 setting_issues_export_limit: Issues export limit
168 168 setting_mail_from: Emission mail address
169 169 setting_host_name: 主机名称
170 170 setting_text_formatting: 文本格式
171 171 setting_wiki_compression: Wiki history compression
172 172 setting_feeds_limit: Feed content limit
173 173 setting_autofetch_changesets: Autofetch SVN commits
174 174 setting_sys_api_enabled: Enable WS for repository management
175 175 setting_commit_ref_keywords: Referencing keywords
176 176 setting_commit_fix_keywords: Fixing keywords
177 177 setting_autologin: Autologin
178 178
179 179 label_user: 用户
180 180 label_user_plural: 用户列表
181 181 label_user_new: 新建用户
182 182 label_project: 项目
183 183 label_project_new: 新建项目
184 184 label_project_plural: 项目列表
185 185 label_project_all: All Projects
186 186 label_project_latest: 最近的项目列表
187 187 label_issue: 任务
188 188 label_issue_new: 新建任务
189 189 label_issue_plural: 任务列表
190 190 label_issue_view_all: 查看所有任务
191 191 label_document: 文档
192 192 label_document_new: 新建文档
193 193 label_document_plural: 文档列表
194 194 label_role: 角色
195 195 label_role_plural: 角色列表
196 196 label_role_new: 新建角色
197 197 label_role_and_permissions: 角色和权限
198 198 label_member: 成员
199 199 label_member_new: 新建成员
200 200 label_member_plural: 成员列表
201 201 label_tracker: 跟踪标签
202 202 label_tracker_plural: 跟踪标签列表
203 203 label_tracker_new: 新建跟踪标签
204 204 label_workflow: 工作流
205 205 label_issue_status: 任务状态列表
206 206 label_issue_status_plural: 任务状态列表
207 207 label_issue_status_new: 新建任务状态列表
208 208 label_issue_category: 任务类别
209 209 label_issue_category_plural: 任务类别列表
210 210 label_issue_category_new: 新建任务类别
211 211 label_custom_field: 自定义字段
212 212 label_custom_field_plural: 自定义字段列表
213 213 label_custom_field_new: 新建自定义字段
214 214 label_enumerations: 枚举列表
215 215 label_enumeration_new: 新建枚举值
216 216 label_information: 信息
217 217 label_information_plural: 信息
218 218 label_please_login: 请登录
219 219 label_register: 注册
220 220 label_password_lost: 忘记口令
221 221 label_home: 主页
222 222 label_my_page: 我的工作台
223 223 label_my_account: 我的帐号
224 224 label_my_projects: 我的项目列表
225 225 label_administration: 管理
226 226 label_login: 登录
227 227 label_logout: 退出
228 228 label_help: 帮助
229 229 label_reported_issues: 已报告的问题
230 230 label_assigned_to_me_issues: 分配给我的任务
231 231 label_last_login: 最后登录
232 232 label_last_updates: 最后更新
233 233 label_last_updates_plural: %d 最后更新
234 234 label_registered_on: 注册于
235 235 label_activity: 活动
236 236 label_new: 新建
237 237 label_logged_as: 登录为
238 238 label_environment: 环境
239 239 label_authentication: 认证
240 240 label_auth_source: 认证模式
241 241 label_auth_source_new: 新建认证模式
242 242 label_auth_source_plural: 认证模式列表
243 243 label_subproject_plural: 子项目列表
244 244 label_min_max_length: 最小 - 最大 长度
245 245 label_list: list
246 246 label_date: Date
247 247 label_integer: Integer
248 248 label_boolean: Boolean
249 249 label_string: Text
250 250 label_text: Long text
251 251 label_attribute: 属性
252 252 label_attribute_plural: 属性
253 253 label_download: %d 个下载次数
254 254 label_download_plural: %d 个下载次数
255 255 label_no_data: 没有数据用于显示
256 256 label_change_status: 改变状态
257 257 label_history: 历史记录
258 258 label_attachment: 文件
259 259 label_attachment_new: 新建文件
260 260 label_attachment_delete: 删除文件
261 261 label_attachment_plural: 文件列表
262 262 label_report: 报表
263 263 label_report_plural: 报表列表
264 264 label_news: 新闻
265 265 label_news_new: 增加新闻
266 266 label_news_plural: 新闻列表
267 267 label_news_latest: 最近的新闻
268 268 label_news_view_all: 查看所有新闻
269 269 label_change_log: 更新日志
270 270 label_settings: 配置
271 271 label_overview: 概述
272 272 label_version: 版本
273 273 label_version_new: 新建版本
274 274 label_version_plural: 版本列表
275 275 label_confirmation: 确认
276 276 label_export_to: 导出
277 277 label_read: 读取...
278 278 label_public_projects: 公开的项目列表
279 279 label_open_issues: 打开
280 280 label_open_issues_plural: 打开
281 281 label_closed_issues: 已关闭
282 282 label_closed_issues_plural: 已关闭
283 283 label_total: 合计
284 284 label_permissions: 权限列表
285 285 label_current_status: 当前状态
286 286 label_new_statuses_allowed: New statuses allowed
287 287 label_all: 全部
288 288 label_none:
289 289 label_next: 下一个
290 290 label_previous: 上一个
291 291 label_used_by: 使用中
292 292 label_details: 详情...
293 293 label_add_note: 添加说明
294 294 label_per_page: 每面
295 295 label_calendar: 日历
296 296 label_months_from: months from
297 297 label_gantt: 甘特图(Gantt)
298 298 label_internal: 内部
299 299 label_last_changes: 最近的 %d 次更改
300 300 label_change_view_all: 查看所有更改
301 301 label_personalize_page: 个性化定制本页
302 302 label_comment: 注释
303 303 label_comment_plural: 注释列表
304 304 label_comment_add: 添加注释
305 305 label_comment_added: 已加入注释
306 306 label_comment_delete: 删除注释
307 307 label_query: 自定义查询
308 308 label_query_plural: 自定义查询列表
309 309 label_query_new: 新建查询
310 310 label_filter_add: 增加过滤器
311 311 label_filter_plural: 过滤器列表
312 312 label_equals: 等于
313 313 label_not_equals: 不等于
314 314 label_in_less_than: 剩余天数小于
315 315 label_in_more_than: 剩余天数大于
316 316 label_in: 剩余天数
317 317 label_today: 今天
318 318 label_less_than_ago: 之前天数少于
319 319 label_more_than_ago: 之前天数大于
320 320 label_ago: 之前天数
321 321 label_contains: 包含
322 322 label_not_contains: 不包含
323 323 label_day_plural: 天数
324 324 label_repository: SVN 版本库
325 325 label_browse: 浏览
326 326 label_modification: %d 个更新
327 327 label_modification_plural: %d 个更新
328 328 label_revision: 修订
329 329 label_revision_plural: 修订
330 330 label_added: 已增加
331 331 label_modified: 已修改
332 332 label_deleted: 已删除
333 333 label_latest_revision: 最近的版本
334 334 label_latest_revision_plural: 最近的版本列表
335 335 label_view_revisions: 查看修订列表
336 336 label_max_size: 最大尺寸
337 337 label_on: 'on'
338 338 label_sort_highest: 置顶
339 339 label_sort_higher: 上移
340 340 label_sort_lower: 下移
341 341 label_sort_lowest: 置底
342 342 label_roadmap: 路线图
343 343 label_roadmap_due_in: Due in
344 344 label_roadmap_no_issues: 该版本没有任务
345 345 label_search: 查找
346 346 label_result: %d 个结果
347 347 label_result_plural: %d 个结果
348 348 label_all_words: 所有单词
349 349 label_wiki: Wiki
350 350 label_wiki_edit: Wiki edit
351 351 label_wiki_edit_plural: Wiki edits
352 label_wiki_page_plural: Wiki pages
352 353 label_page_index: 索引
353 354 label_current_version: 当前版本
354 355 label_preview: 预览
355 356 label_feed_plural: Feeds
356 357 label_changes_details: 所有更改的详情
357 358 label_issue_tracking: 任务跟踪
358 359 label_spent_time: 耗时
359 360 label_f_hour: %.2f 小时
360 361 label_f_hour_plural: %.2f 小时
361 362 label_time_tracking: 时间跟踪
362 363 label_change_plural: 更改列表
363 364 label_statistics: 统计
364 365 label_commits_per_month: Commits per month
365 366 label_commits_per_author: Commits per author
366 367 label_view_diff: View differences
367 368 label_diff_inline: inline
368 369 label_diff_side_by_side: side by side
369 370 label_options: Options
370 371 label_copy_workflow_from: Copy workflow from
371 372 label_permissions_report: Permissions report
372 373 label_watched_issues: Watched issues
373 374 label_related_issues: Related issues
374 375 label_applied_status: Applied status
375 376 label_loading: Loading...
376 377 label_relation_new: New relation
377 378 label_relation_delete: Delete relation
378 379 label_relates_to: related to
379 380 label_duplicates: duplicates
380 381 label_blocks: blocks
381 382 label_blocked_by: blocked by
382 383 label_precedes: precedes
383 384 label_follows: follows
384 385 label_end_to_start: start to end
385 386 label_end_to_end: end to end
386 387 label_start_to_start: start to start
387 388 label_start_to_end: start to end
388 389 label_stay_logged_in: Stay logged in
389 390 label_disabled: disabled
390 391 label_show_completed_versions: Show completed versions
391 392 label_me: me
392 393 label_board: Forum
393 394 label_board_new: New forum
394 395 label_board_plural: Forums
395 396 label_topic_plural: Topics
396 397 label_message_plural: Messages
397 398 label_message_last: Last message
398 399 label_message_new: New message
399 400 label_reply_plural: Replies
400 401
401 402 button_login: 登录
402 403 button_submit: 提交
403 404 button_save: 保存
404 405 button_check_all: 全选
405 406 button_uncheck_all: 清除
406 407 button_delete: 删除
407 408 button_create: 创建
408 409 button_test: 测试
409 410 button_edit: 编辑
410 411 button_add: 新增
411 412 button_change: 修改
412 413 button_apply: 应用
413 414 button_clear: 清除
414 415 button_lock: 锁定
415 416 button_unlock: 解锁
416 417 button_download: 下载
417 418 button_list: 列表
418 419 button_view: 查看
419 420 button_move: 移动
420 421 button_back: 返回
421 422 button_cancel: 取消
422 423 button_activate: 激活
423 424 button_sort: 排序
424 425 button_log_time: 登记工时
425 426 button_rollback: Rollback to this version
426 427 button_watch: Watch
427 428 button_unwatch: Unwatch
428 429 button_reply: Reply
429 430
430 431 status_active: 激活
431 432 status_registered: 已注册
432 433 status_locked: 已锁定
433 434
434 435 text_select_mail_notifications: 选择需要发送邮件通知的动作。
435 436 text_regexp_info: eg. ^[A-Z0-9]+$
436 437 text_min_max_length_info: 0 表示没有限制
437 438 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
438 439 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
439 440 text_are_you_sure: 您确定?
440 441 text_journal_changed: 从 %s 更改为 %s
441 442 text_journal_set_to: 设置为 %s
442 443 text_journal_deleted: 已删除
443 444 text_tip_task_begin_day: 开始于此
444 445 text_tip_task_end_day: 在此结束
445 446 text_tip_task_begin_end_day: 开始并结束于此
446 447 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
447 448 text_caracters_maximum: %d characters maximum.
448 449 text_length_between: Length between %d and %d characters.
449 450 text_tracker_no_workflow: No workflow defined for this tracker
450 451 text_unallowed_characters: Unallowed characters
451 452 text_comma_separated: Multiple values allowed (comma separated).
452 453 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
453 454
454 455 default_role_manager: 管理员
455 456 default_role_developper: 开发人员
456 457 default_role_reporter: 报告人员
457 458 default_tracker_bug: 问题
458 459 default_tracker_feature: 功能
459 460 default_tracker_support: 支持
460 461 default_issue_status_new: 新建
461 462 default_issue_status_assigned: 已分配
462 463 default_issue_status_resolved: 已解决
463 464 default_issue_status_feedback: 回复
464 465 default_issue_status_closed: 已关闭
465 466 default_issue_status_rejected: 已打回
466 467 default_doc_category_user: 用户文档
467 468 default_doc_category_tech: 技术文档
468 469 default_priority_low:
469 470 default_priority_normal: 普通
470 471 default_priority_high:
471 472 default_priority_urgent: 紧急
472 473 default_priority_immediate: 立刻
473 474 default_activity_design: 设计
474 475 default_activity_development: 开发
475 476
476 477 enumeration_issue_priorities: 任务优先级
477 478 enumeration_doc_categories: 文档类别
478 479 enumeration_activities: Activities (time tracking)
@@ -1,50 +1,59
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.dirname(__FILE__) + '/../test_helper'
19 19
20 20 class WikiPageTest < Test::Unit::TestCase
21 fixtures :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions
21 fixtures :projects, :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions
22 22
23 23 def setup
24 24 @wiki = Wiki.find(1)
25 25 @page = @wiki.pages.first
26 26 end
27 27
28 28 def test_create
29 29 page = WikiPage.new(:wiki => @wiki)
30 30 assert !page.save
31 31 assert_equal 1, page.errors.count
32 32
33 33 page.title = "Page"
34 34 assert page.save
35 35 page.reload
36 36
37 37 @wiki.reload
38 38 assert @wiki.pages.include?(page)
39 39 end
40 40
41 41 def test_find_or_new_page
42 42 page = @wiki.find_or_new_page("CookBook documentation")
43 43 assert_kind_of WikiPage, page
44 44 assert !page.new_record?
45 45
46 46 page = @wiki.find_or_new_page("Non existing page")
47 47 assert_kind_of WikiPage, page
48 48 assert page.new_record?
49 49 end
50
51 def test_destroy
52 page = WikiPage.find(1)
53 page.destroy
54 assert_nil WikiPage.find_by_id(1)
55 # make sure that page content and its history are deleted
56 assert WikiContent.find_all_by_page_id(1).empty?
57 assert WikiContent.versioned_class.find_all_by_page_id(1).empty?
58 end
50 59 end
General Comments 0
You need to be logged in to leave comments. Login now