@@ -1,16 +1,16 | |||
|
1 |
<h2><%=l(:label_project_ |
|
|
1 | <h2><%=l(:label_project_new)%></h2> | |
|
2 | 2 | |
|
3 | 3 | <% labelled_tabular_form_for :project, @project, :url => { :action => "copy" } do |f| %> |
|
4 | 4 | <%= render :partial => 'form', :locals => { :f => f } %> |
|
5 | 5 | |
|
6 | 6 | <fieldset class="box"><legend><%= l(:label_module_plural) %></legend> |
|
7 | 7 | <% Redmine::AccessControl.available_project_modules.each do |m| %> |
|
8 | 8 | <label class="floating"> |
|
9 | 9 | <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> |
|
10 | 10 | <%= l_or_humanize(m, :prefix => "project_module_") %> |
|
11 | 11 | </label> |
|
12 | 12 | <% end %> |
|
13 | 13 | </fieldset> |
|
14 | 14 | |
|
15 | 15 | <%= submit_tag l(:button_copy) %> |
|
16 | 16 | <% end %> |
@@ -1,796 +1,795 | |||
|
1 | 1 | en: |
|
2 | 2 | date: |
|
3 | 3 | formats: |
|
4 | 4 | # Use the strftime parameters for formats. |
|
5 | 5 | # When no format has been given, it uses default. |
|
6 | 6 | # You can provide other formats here if you like! |
|
7 | 7 | default: "%m/%d/%Y" |
|
8 | 8 | short: "%b %d" |
|
9 | 9 | long: "%B %d, %Y" |
|
10 | 10 | |
|
11 | 11 | day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] |
|
12 | 12 | abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] |
|
13 | 13 | |
|
14 | 14 | # Don't forget the nil at the beginning; there's no such thing as a 0th month |
|
15 | 15 | month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] |
|
16 | 16 | abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] |
|
17 | 17 | # Used in date_select and datime_select. |
|
18 | 18 | order: [ :year, :month, :day ] |
|
19 | 19 | |
|
20 | 20 | time: |
|
21 | 21 | formats: |
|
22 | 22 | default: "%m/%d/%Y %I:%M %p" |
|
23 | 23 | time: "%I:%M %p" |
|
24 | 24 | short: "%d %b %H:%M" |
|
25 | 25 | long: "%B %d, %Y %H:%M" |
|
26 | 26 | am: "am" |
|
27 | 27 | pm: "pm" |
|
28 | 28 | |
|
29 | 29 | datetime: |
|
30 | 30 | distance_in_words: |
|
31 | 31 | half_a_minute: "half a minute" |
|
32 | 32 | less_than_x_seconds: |
|
33 | 33 | one: "less than 1 second" |
|
34 | 34 | other: "less than {{count}} seconds" |
|
35 | 35 | x_seconds: |
|
36 | 36 | one: "1 second" |
|
37 | 37 | other: "{{count}} seconds" |
|
38 | 38 | less_than_x_minutes: |
|
39 | 39 | one: "less than a minute" |
|
40 | 40 | other: "less than {{count}} minutes" |
|
41 | 41 | x_minutes: |
|
42 | 42 | one: "1 minute" |
|
43 | 43 | other: "{{count}} minutes" |
|
44 | 44 | about_x_hours: |
|
45 | 45 | one: "about 1 hour" |
|
46 | 46 | other: "about {{count}} hours" |
|
47 | 47 | x_days: |
|
48 | 48 | one: "1 day" |
|
49 | 49 | other: "{{count}} days" |
|
50 | 50 | about_x_months: |
|
51 | 51 | one: "about 1 month" |
|
52 | 52 | other: "about {{count}} months" |
|
53 | 53 | x_months: |
|
54 | 54 | one: "1 month" |
|
55 | 55 | other: "{{count}} months" |
|
56 | 56 | about_x_years: |
|
57 | 57 | one: "about 1 year" |
|
58 | 58 | other: "about {{count}} years" |
|
59 | 59 | over_x_years: |
|
60 | 60 | one: "over 1 year" |
|
61 | 61 | other: "over {{count}} years" |
|
62 | 62 | |
|
63 | 63 | # Used in array.to_sentence. |
|
64 | 64 | support: |
|
65 | 65 | array: |
|
66 | 66 | sentence_connector: "and" |
|
67 | 67 | skip_last_comma: false |
|
68 | 68 | |
|
69 | 69 | activerecord: |
|
70 | 70 | errors: |
|
71 | 71 | messages: |
|
72 | 72 | inclusion: "is not included in the list" |
|
73 | 73 | exclusion: "is reserved" |
|
74 | 74 | invalid: "is invalid" |
|
75 | 75 | confirmation: "doesn't match confirmation" |
|
76 | 76 | accepted: "must be accepted" |
|
77 | 77 | empty: "can't be empty" |
|
78 | 78 | blank: "can't be blank" |
|
79 | 79 | too_long: "is too long (maximum is {{count}} characters)" |
|
80 | 80 | too_short: "is too short (minimum is {{count}} characters)" |
|
81 | 81 | wrong_length: "is the wrong length (should be {{count}} characters)" |
|
82 | 82 | taken: "has already been taken" |
|
83 | 83 | not_a_number: "is not a number" |
|
84 | 84 | not_a_date: "is not a valid date" |
|
85 | 85 | greater_than: "must be greater than {{count}}" |
|
86 | 86 | greater_than_or_equal_to: "must be greater than or equal to {{count}}" |
|
87 | 87 | equal_to: "must be equal to {{count}}" |
|
88 | 88 | less_than: "must be less than {{count}}" |
|
89 | 89 | less_than_or_equal_to: "must be less than or equal to {{count}}" |
|
90 | 90 | odd: "must be odd" |
|
91 | 91 | even: "must be even" |
|
92 | 92 | greater_than_start_date: "must be greater than start date" |
|
93 | 93 | not_same_project: "doesn't belong to the same project" |
|
94 | 94 | circular_dependency: "This relation would create a circular dependency" |
|
95 | 95 | |
|
96 | 96 | actionview_instancetag_blank_option: Please select |
|
97 | 97 | |
|
98 | 98 | general_text_No: 'No' |
|
99 | 99 | general_text_Yes: 'Yes' |
|
100 | 100 | general_text_no: 'no' |
|
101 | 101 | general_text_yes: 'yes' |
|
102 | 102 | general_lang_name: 'English' |
|
103 | 103 | general_csv_separator: ',' |
|
104 | 104 | general_csv_decimal_separator: '.' |
|
105 | 105 | general_csv_encoding: ISO-8859-1 |
|
106 | 106 | general_pdf_encoding: ISO-8859-1 |
|
107 | 107 | general_first_day_of_week: '7' |
|
108 | 108 | |
|
109 | 109 | notice_account_updated: Account was successfully updated. |
|
110 | 110 | notice_account_invalid_creditentials: Invalid user or password |
|
111 | 111 | notice_account_password_updated: Password was successfully updated. |
|
112 | 112 | notice_account_wrong_password: Wrong password |
|
113 | 113 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. |
|
114 | 114 | notice_account_unknown_email: Unknown user. |
|
115 | 115 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
116 | 116 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
117 | 117 | notice_account_activated: Your account has been activated. You can now log in. |
|
118 | 118 | notice_successful_create: Successful creation. |
|
119 | 119 | notice_successful_update: Successful update. |
|
120 | 120 | notice_successful_delete: Successful deletion. |
|
121 | 121 | notice_successful_connection: Successful connection. |
|
122 | 122 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
123 | 123 | notice_locking_conflict: Data has been updated by another user. |
|
124 | 124 | notice_not_authorized: You are not authorized to access this page. |
|
125 | 125 | notice_email_sent: "An email was sent to {{value}}" |
|
126 | 126 | notice_email_error: "An error occurred while sending mail ({{value}})" |
|
127 | 127 | notice_feeds_access_key_reseted: Your RSS access key was reset. |
|
128 | 128 | notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}." |
|
129 | 129 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." |
|
130 | 130 | notice_account_pending: "Your account was created and is now pending administrator approval." |
|
131 | 131 | notice_default_data_loaded: Default configuration successfully loaded. |
|
132 | 132 | notice_unable_delete_version: Unable to delete version. |
|
133 | 133 | |
|
134 | 134 | error_can_t_load_default_data: "Default configuration could not be loaded: {{value}}" |
|
135 | 135 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
136 | 136 | error_scm_command_failed: "An error occurred when trying to access the repository: {{value}}" |
|
137 | 137 | error_scm_annotate: "The entry does not exist or can not be annotated." |
|
138 | 138 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
139 | 139 | |
|
140 | 140 | warning_attachments_not_saved: "{{count}} file(s) could not be saved." |
|
141 | 141 | |
|
142 | 142 | mail_subject_lost_password: "Your {{value}} password" |
|
143 | 143 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
144 | 144 | mail_subject_register: "Your {{value}} account activation" |
|
145 | 145 | mail_body_register: 'To activate your account, click on the following link:' |
|
146 | 146 | mail_body_account_information_external: "You can use your {{value}} account to log in." |
|
147 | 147 | mail_body_account_information: Your account information |
|
148 | 148 | mail_subject_account_activation_request: "{{value}} account activation request" |
|
149 | 149 | mail_body_account_activation_request: "A new user ({{value}}) has registered. The account is pending your approval:" |
|
150 | 150 | mail_subject_reminder: "{{count}} issue(s) due in the next days" |
|
151 | 151 | mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:" |
|
152 | 152 | |
|
153 | 153 | gui_validation_error: 1 error |
|
154 | 154 | gui_validation_error_plural: "{{count}} errors" |
|
155 | 155 | |
|
156 | 156 | field_name: Name |
|
157 | 157 | field_description: Description |
|
158 | 158 | field_summary: Summary |
|
159 | 159 | field_is_required: Required |
|
160 | 160 | field_firstname: Firstname |
|
161 | 161 | field_lastname: Lastname |
|
162 | 162 | field_mail: Email |
|
163 | 163 | field_filename: File |
|
164 | 164 | field_filesize: Size |
|
165 | 165 | field_downloads: Downloads |
|
166 | 166 | field_author: Author |
|
167 | 167 | field_created_on: Created |
|
168 | 168 | field_updated_on: Updated |
|
169 | 169 | field_field_format: Format |
|
170 | 170 | field_is_for_all: For all projects |
|
171 | 171 | field_possible_values: Possible values |
|
172 | 172 | field_regexp: Regular expression |
|
173 | 173 | field_min_length: Minimum length |
|
174 | 174 | field_max_length: Maximum length |
|
175 | 175 | field_value: Value |
|
176 | 176 | field_category: Category |
|
177 | 177 | field_title: Title |
|
178 | 178 | field_project: Project |
|
179 | 179 | field_issue: Issue |
|
180 | 180 | field_status: Status |
|
181 | 181 | field_notes: Notes |
|
182 | 182 | field_is_closed: Issue closed |
|
183 | 183 | field_is_default: Default value |
|
184 | 184 | field_tracker: Tracker |
|
185 | 185 | field_subject: Subject |
|
186 | 186 | field_due_date: Due date |
|
187 | 187 | field_assigned_to: Assigned to |
|
188 | 188 | field_priority: Priority |
|
189 | 189 | field_fixed_version: Target version |
|
190 | 190 | field_user: User |
|
191 | 191 | field_role: Role |
|
192 | 192 | field_homepage: Homepage |
|
193 | 193 | field_is_public: Public |
|
194 | 194 | field_parent: Subproject of |
|
195 | 195 | field_is_in_chlog: Issues displayed in changelog |
|
196 | 196 | field_is_in_roadmap: Issues displayed in roadmap |
|
197 | 197 | field_login: Login |
|
198 | 198 | field_mail_notification: Email notifications |
|
199 | 199 | field_admin: Administrator |
|
200 | 200 | field_last_login_on: Last connection |
|
201 | 201 | field_language: Language |
|
202 | 202 | field_effective_date: Date |
|
203 | 203 | field_password: Password |
|
204 | 204 | field_new_password: New password |
|
205 | 205 | field_password_confirmation: Confirmation |
|
206 | 206 | field_version: Version |
|
207 | 207 | field_type: Type |
|
208 | 208 | field_host: Host |
|
209 | 209 | field_port: Port |
|
210 | 210 | field_account: Account |
|
211 | 211 | field_base_dn: Base DN |
|
212 | 212 | field_attr_login: Login attribute |
|
213 | 213 | field_attr_firstname: Firstname attribute |
|
214 | 214 | field_attr_lastname: Lastname attribute |
|
215 | 215 | field_attr_mail: Email attribute |
|
216 | 216 | field_onthefly: On-the-fly user creation |
|
217 | 217 | field_start_date: Start |
|
218 | 218 | field_done_ratio: % Done |
|
219 | 219 | field_auth_source: Authentication mode |
|
220 | 220 | field_hide_mail: Hide my email address |
|
221 | 221 | field_comments: Comment |
|
222 | 222 | field_url: URL |
|
223 | 223 | field_start_page: Start page |
|
224 | 224 | field_subproject: Subproject |
|
225 | 225 | field_hours: Hours |
|
226 | 226 | field_activity: Activity |
|
227 | 227 | field_spent_on: Date |
|
228 | 228 | field_identifier: Identifier |
|
229 | 229 | field_is_filter: Used as a filter |
|
230 | 230 | field_issue_to_id: Related issue |
|
231 | 231 | field_delay: Delay |
|
232 | 232 | field_assignable: Issues can be assigned to this role |
|
233 | 233 | field_redirect_existing_links: Redirect existing links |
|
234 | 234 | field_estimated_hours: Estimated time |
|
235 | 235 | field_column_names: Columns |
|
236 | 236 | field_time_zone: Time zone |
|
237 | 237 | field_searchable: Searchable |
|
238 | 238 | field_default_value: Default value |
|
239 | 239 | field_comments_sorting: Display comments |
|
240 | 240 | field_parent_title: Parent page |
|
241 | 241 | field_editable: Editable |
|
242 | 242 | field_watcher: Watcher |
|
243 | 243 | field_identity_url: OpenID URL |
|
244 | 244 | field_content: Content |
|
245 | 245 | field_group_by: Group results by |
|
246 | 246 | |
|
247 | 247 | setting_app_title: Application title |
|
248 | 248 | setting_app_subtitle: Application subtitle |
|
249 | 249 | setting_welcome_text: Welcome text |
|
250 | 250 | setting_default_language: Default language |
|
251 | 251 | setting_login_required: Authentication required |
|
252 | 252 | setting_self_registration: Self-registration |
|
253 | 253 | setting_attachment_max_size: Attachment max. size |
|
254 | 254 | setting_issues_export_limit: Issues export limit |
|
255 | 255 | setting_mail_from: Emission email address |
|
256 | 256 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
257 | 257 | setting_plain_text_mail: Plain text mail (no HTML) |
|
258 | 258 | setting_host_name: Host name and path |
|
259 | 259 | setting_text_formatting: Text formatting |
|
260 | 260 | setting_wiki_compression: Wiki history compression |
|
261 | 261 | setting_feeds_limit: Feed content limit |
|
262 | 262 | setting_default_projects_public: New projects are public by default |
|
263 | 263 | setting_autofetch_changesets: Autofetch commits |
|
264 | 264 | setting_sys_api_enabled: Enable WS for repository management |
|
265 | 265 | setting_commit_ref_keywords: Referencing keywords |
|
266 | 266 | setting_commit_fix_keywords: Fixing keywords |
|
267 | 267 | setting_autologin: Autologin |
|
268 | 268 | setting_date_format: Date format |
|
269 | 269 | setting_time_format: Time format |
|
270 | 270 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
271 | 271 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
272 | 272 | setting_repositories_encodings: Repositories encodings |
|
273 | 273 | setting_commit_logs_encoding: Commit messages encoding |
|
274 | 274 | setting_emails_footer: Emails footer |
|
275 | 275 | setting_protocol: Protocol |
|
276 | 276 | setting_per_page_options: Objects per page options |
|
277 | 277 | setting_user_format: Users display format |
|
278 | 278 | setting_activity_days_default: Days displayed on project activity |
|
279 | 279 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
280 | 280 | setting_enabled_scm: Enabled SCM |
|
281 | 281 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
282 | 282 | setting_mail_handler_api_key: API key |
|
283 | 283 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
284 | 284 | setting_gravatar_enabled: Use Gravatar user icons |
|
285 | 285 | setting_diff_max_lines_displayed: Max number of diff lines displayed |
|
286 | 286 | setting_file_max_size_displayed: Max size of text files displayed inline |
|
287 | 287 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
288 | 288 | setting_openid: Allow OpenID login and registration |
|
289 | 289 | setting_password_min_length: Minimum password length |
|
290 | 290 | |
|
291 | 291 | permission_edit_project: Edit project |
|
292 | 292 | permission_select_project_modules: Select project modules |
|
293 | 293 | permission_manage_members: Manage members |
|
294 | 294 | permission_manage_versions: Manage versions |
|
295 | 295 | permission_manage_categories: Manage issue categories |
|
296 | 296 | permission_add_issues: Add issues |
|
297 | 297 | permission_edit_issues: Edit issues |
|
298 | 298 | permission_manage_issue_relations: Manage issue relations |
|
299 | 299 | permission_add_issue_notes: Add notes |
|
300 | 300 | permission_edit_issue_notes: Edit notes |
|
301 | 301 | permission_edit_own_issue_notes: Edit own notes |
|
302 | 302 | permission_move_issues: Move issues |
|
303 | 303 | permission_delete_issues: Delete issues |
|
304 | 304 | permission_manage_public_queries: Manage public queries |
|
305 | 305 | permission_save_queries: Save queries |
|
306 | 306 | permission_view_gantt: View gantt chart |
|
307 | 307 | permission_view_calendar: View calender |
|
308 | 308 | permission_view_issue_watchers: View watchers list |
|
309 | 309 | permission_add_issue_watchers: Add watchers |
|
310 | 310 | permission_log_time: Log spent time |
|
311 | 311 | permission_view_time_entries: View spent time |
|
312 | 312 | permission_edit_time_entries: Edit time logs |
|
313 | 313 | permission_edit_own_time_entries: Edit own time logs |
|
314 | 314 | permission_manage_news: Manage news |
|
315 | 315 | permission_comment_news: Comment news |
|
316 | 316 | permission_manage_documents: Manage documents |
|
317 | 317 | permission_view_documents: View documents |
|
318 | 318 | permission_manage_files: Manage files |
|
319 | 319 | permission_view_files: View files |
|
320 | 320 | permission_manage_wiki: Manage wiki |
|
321 | 321 | permission_rename_wiki_pages: Rename wiki pages |
|
322 | 322 | permission_delete_wiki_pages: Delete wiki pages |
|
323 | 323 | permission_view_wiki_pages: View wiki |
|
324 | 324 | permission_view_wiki_edits: View wiki history |
|
325 | 325 | permission_edit_wiki_pages: Edit wiki pages |
|
326 | 326 | permission_delete_wiki_pages_attachments: Delete attachments |
|
327 | 327 | permission_protect_wiki_pages: Protect wiki pages |
|
328 | 328 | permission_manage_repository: Manage repository |
|
329 | 329 | permission_browse_repository: Browse repository |
|
330 | 330 | permission_view_changesets: View changesets |
|
331 | 331 | permission_commit_access: Commit access |
|
332 | 332 | permission_manage_boards: Manage boards |
|
333 | 333 | permission_view_messages: View messages |
|
334 | 334 | permission_add_messages: Post messages |
|
335 | 335 | permission_edit_messages: Edit messages |
|
336 | 336 | permission_edit_own_messages: Edit own messages |
|
337 | 337 | permission_delete_messages: Delete messages |
|
338 | 338 | permission_delete_own_messages: Delete own messages |
|
339 | 339 | |
|
340 | 340 | project_module_issue_tracking: Issue tracking |
|
341 | 341 | project_module_time_tracking: Time tracking |
|
342 | 342 | project_module_news: News |
|
343 | 343 | project_module_documents: Documents |
|
344 | 344 | project_module_files: Files |
|
345 | 345 | project_module_wiki: Wiki |
|
346 | 346 | project_module_repository: Repository |
|
347 | 347 | project_module_boards: Boards |
|
348 | 348 | |
|
349 | 349 | label_user: User |
|
350 | 350 | label_user_plural: Users |
|
351 | 351 | label_user_new: New user |
|
352 | 352 | label_project: Project |
|
353 | 353 | label_project_new: New project |
|
354 | label_project_copy: Copy project | |
|
355 | 354 | label_project_plural: Projects |
|
356 | 355 | label_x_projects: |
|
357 | 356 | zero: no projects |
|
358 | 357 | one: 1 project |
|
359 | 358 | other: "{{count}} projects" |
|
360 | 359 | label_project_all: All Projects |
|
361 | 360 | label_project_latest: Latest projects |
|
362 | 361 | label_issue: Issue |
|
363 | 362 | label_issue_new: New issue |
|
364 | 363 | label_issue_plural: Issues |
|
365 | 364 | label_issue_view_all: View all issues |
|
366 | 365 | label_issues_by: "Issues by {{value}}" |
|
367 | 366 | label_issue_added: Issue added |
|
368 | 367 | label_issue_updated: Issue updated |
|
369 | 368 | label_document: Document |
|
370 | 369 | label_document_new: New document |
|
371 | 370 | label_document_plural: Documents |
|
372 | 371 | label_document_added: Document added |
|
373 | 372 | label_role: Role |
|
374 | 373 | label_role_plural: Roles |
|
375 | 374 | label_role_new: New role |
|
376 | 375 | label_role_and_permissions: Roles and permissions |
|
377 | 376 | label_member: Member |
|
378 | 377 | label_member_new: New member |
|
379 | 378 | label_member_plural: Members |
|
380 | 379 | label_tracker: Tracker |
|
381 | 380 | label_tracker_plural: Trackers |
|
382 | 381 | label_tracker_new: New tracker |
|
383 | 382 | label_workflow: Workflow |
|
384 | 383 | label_issue_status: Issue status |
|
385 | 384 | label_issue_status_plural: Issue statuses |
|
386 | 385 | label_issue_status_new: New status |
|
387 | 386 | label_issue_category: Issue category |
|
388 | 387 | label_issue_category_plural: Issue categories |
|
389 | 388 | label_issue_category_new: New category |
|
390 | 389 | label_custom_field: Custom field |
|
391 | 390 | label_custom_field_plural: Custom fields |
|
392 | 391 | label_custom_field_new: New custom field |
|
393 | 392 | label_enumerations: Enumerations |
|
394 | 393 | label_enumeration_new: New value |
|
395 | 394 | label_information: Information |
|
396 | 395 | label_information_plural: Information |
|
397 | 396 | label_please_login: Please log in |
|
398 | 397 | label_register: Register |
|
399 | 398 | label_login_with_open_id_option: or login with OpenID |
|
400 | 399 | label_password_lost: Lost password |
|
401 | 400 | label_home: Home |
|
402 | 401 | label_my_page: My page |
|
403 | 402 | label_my_account: My account |
|
404 | 403 | label_my_projects: My projects |
|
405 | 404 | label_administration: Administration |
|
406 | 405 | label_login: Sign in |
|
407 | 406 | label_logout: Sign out |
|
408 | 407 | label_help: Help |
|
409 | 408 | label_reported_issues: Reported issues |
|
410 | 409 | label_assigned_to_me_issues: Issues assigned to me |
|
411 | 410 | label_last_login: Last connection |
|
412 | 411 | label_registered_on: Registered on |
|
413 | 412 | label_activity: Activity |
|
414 | 413 | label_overall_activity: Overall activity |
|
415 | 414 | label_user_activity: "{{value}}'s activity" |
|
416 | 415 | label_new: New |
|
417 | 416 | label_logged_as: Logged in as |
|
418 | 417 | label_environment: Environment |
|
419 | 418 | label_authentication: Authentication |
|
420 | 419 | label_auth_source: Authentication mode |
|
421 | 420 | label_auth_source_new: New authentication mode |
|
422 | 421 | label_auth_source_plural: Authentication modes |
|
423 | 422 | label_subproject_plural: Subprojects |
|
424 | 423 | label_and_its_subprojects: "{{value}} and its subprojects" |
|
425 | 424 | label_min_max_length: Min - Max length |
|
426 | 425 | label_list: List |
|
427 | 426 | label_date: Date |
|
428 | 427 | label_integer: Integer |
|
429 | 428 | label_float: Float |
|
430 | 429 | label_boolean: Boolean |
|
431 | 430 | label_string: Text |
|
432 | 431 | label_text: Long text |
|
433 | 432 | label_attribute: Attribute |
|
434 | 433 | label_attribute_plural: Attributes |
|
435 | 434 | label_download: "{{count}} Download" |
|
436 | 435 | label_download_plural: "{{count}} Downloads" |
|
437 | 436 | label_no_data: No data to display |
|
438 | 437 | label_change_status: Change status |
|
439 | 438 | label_history: History |
|
440 | 439 | label_attachment: File |
|
441 | 440 | label_attachment_new: New file |
|
442 | 441 | label_attachment_delete: Delete file |
|
443 | 442 | label_attachment_plural: Files |
|
444 | 443 | label_file_added: File added |
|
445 | 444 | label_report: Report |
|
446 | 445 | label_report_plural: Reports |
|
447 | 446 | label_news: News |
|
448 | 447 | label_news_new: Add news |
|
449 | 448 | label_news_plural: News |
|
450 | 449 | label_news_latest: Latest news |
|
451 | 450 | label_news_view_all: View all news |
|
452 | 451 | label_news_added: News added |
|
453 | 452 | label_change_log: Change log |
|
454 | 453 | label_settings: Settings |
|
455 | 454 | label_overview: Overview |
|
456 | 455 | label_version: Version |
|
457 | 456 | label_version_new: New version |
|
458 | 457 | label_version_plural: Versions |
|
459 | 458 | label_confirmation: Confirmation |
|
460 | 459 | label_export_to: 'Also available in:' |
|
461 | 460 | label_read: Read... |
|
462 | 461 | label_public_projects: Public projects |
|
463 | 462 | label_open_issues: open |
|
464 | 463 | label_open_issues_plural: open |
|
465 | 464 | label_closed_issues: closed |
|
466 | 465 | label_closed_issues_plural: closed |
|
467 | 466 | label_x_open_issues_abbr_on_total: |
|
468 | 467 | zero: 0 open / {{total}} |
|
469 | 468 | one: 1 open / {{total}} |
|
470 | 469 | other: "{{count}} open / {{total}}" |
|
471 | 470 | label_x_open_issues_abbr: |
|
472 | 471 | zero: 0 open |
|
473 | 472 | one: 1 open |
|
474 | 473 | other: "{{count}} open" |
|
475 | 474 | label_x_closed_issues_abbr: |
|
476 | 475 | zero: 0 closed |
|
477 | 476 | one: 1 closed |
|
478 | 477 | other: "{{count}} closed" |
|
479 | 478 | label_total: Total |
|
480 | 479 | label_permissions: Permissions |
|
481 | 480 | label_current_status: Current status |
|
482 | 481 | label_new_statuses_allowed: New statuses allowed |
|
483 | 482 | label_all: all |
|
484 | 483 | label_none: none |
|
485 | 484 | label_nobody: nobody |
|
486 | 485 | label_next: Next |
|
487 | 486 | label_previous: Previous |
|
488 | 487 | label_used_by: Used by |
|
489 | 488 | label_details: Details |
|
490 | 489 | label_add_note: Add a note |
|
491 | 490 | label_per_page: Per page |
|
492 | 491 | label_calendar: Calendar |
|
493 | 492 | label_months_from: months from |
|
494 | 493 | label_gantt: Gantt |
|
495 | 494 | label_internal: Internal |
|
496 | 495 | label_last_changes: "last {{count}} changes" |
|
497 | 496 | label_change_view_all: View all changes |
|
498 | 497 | label_personalize_page: Personalize this page |
|
499 | 498 | label_comment: Comment |
|
500 | 499 | label_comment_plural: Comments |
|
501 | 500 | label_x_comments: |
|
502 | 501 | zero: no comments |
|
503 | 502 | one: 1 comment |
|
504 | 503 | other: "{{count}} comments" |
|
505 | 504 | label_comment_add: Add a comment |
|
506 | 505 | label_comment_added: Comment added |
|
507 | 506 | label_comment_delete: Delete comments |
|
508 | 507 | label_query: Custom query |
|
509 | 508 | label_query_plural: Custom queries |
|
510 | 509 | label_query_new: New query |
|
511 | 510 | label_filter_add: Add filter |
|
512 | 511 | label_filter_plural: Filters |
|
513 | 512 | label_equals: is |
|
514 | 513 | label_not_equals: is not |
|
515 | 514 | label_in_less_than: in less than |
|
516 | 515 | label_in_more_than: in more than |
|
517 | 516 | label_greater_or_equal: '>=' |
|
518 | 517 | label_less_or_equal: '<=' |
|
519 | 518 | label_in: in |
|
520 | 519 | label_today: today |
|
521 | 520 | label_all_time: all time |
|
522 | 521 | label_yesterday: yesterday |
|
523 | 522 | label_this_week: this week |
|
524 | 523 | label_last_week: last week |
|
525 | 524 | label_last_n_days: "last {{count}} days" |
|
526 | 525 | label_this_month: this month |
|
527 | 526 | label_last_month: last month |
|
528 | 527 | label_this_year: this year |
|
529 | 528 | label_date_range: Date range |
|
530 | 529 | label_less_than_ago: less than days ago |
|
531 | 530 | label_more_than_ago: more than days ago |
|
532 | 531 | label_ago: days ago |
|
533 | 532 | label_contains: contains |
|
534 | 533 | label_not_contains: doesn't contain |
|
535 | 534 | label_day_plural: days |
|
536 | 535 | label_repository: Repository |
|
537 | 536 | label_repository_plural: Repositories |
|
538 | 537 | label_browse: Browse |
|
539 | 538 | label_modification: "{{count}} change" |
|
540 | 539 | label_modification_plural: "{{count}} changes" |
|
541 | 540 | label_revision: Revision |
|
542 | 541 | label_revision_plural: Revisions |
|
543 | 542 | label_associated_revisions: Associated revisions |
|
544 | 543 | label_added: added |
|
545 | 544 | label_modified: modified |
|
546 | 545 | label_copied: copied |
|
547 | 546 | label_renamed: renamed |
|
548 | 547 | label_deleted: deleted |
|
549 | 548 | label_latest_revision: Latest revision |
|
550 | 549 | label_latest_revision_plural: Latest revisions |
|
551 | 550 | label_view_revisions: View revisions |
|
552 | 551 | label_max_size: Maximum size |
|
553 | 552 | label_sort_highest: Move to top |
|
554 | 553 | label_sort_higher: Move up |
|
555 | 554 | label_sort_lower: Move down |
|
556 | 555 | label_sort_lowest: Move to bottom |
|
557 | 556 | label_roadmap: Roadmap |
|
558 | 557 | label_roadmap_due_in: "Due in {{value}}" |
|
559 | 558 | label_roadmap_overdue: "{{value}} late" |
|
560 | 559 | label_roadmap_no_issues: No issues for this version |
|
561 | 560 | label_search: Search |
|
562 | 561 | label_result_plural: Results |
|
563 | 562 | label_all_words: All words |
|
564 | 563 | label_wiki: Wiki |
|
565 | 564 | label_wiki_edit: Wiki edit |
|
566 | 565 | label_wiki_edit_plural: Wiki edits |
|
567 | 566 | label_wiki_page: Wiki page |
|
568 | 567 | label_wiki_page_plural: Wiki pages |
|
569 | 568 | label_index_by_title: Index by title |
|
570 | 569 | label_index_by_date: Index by date |
|
571 | 570 | label_current_version: Current version |
|
572 | 571 | label_preview: Preview |
|
573 | 572 | label_feed_plural: Feeds |
|
574 | 573 | label_changes_details: Details of all changes |
|
575 | 574 | label_issue_tracking: Issue tracking |
|
576 | 575 | label_spent_time: Spent time |
|
577 | 576 | label_f_hour: "{{value}} hour" |
|
578 | 577 | label_f_hour_plural: "{{value}} hours" |
|
579 | 578 | label_time_tracking: Time tracking |
|
580 | 579 | label_change_plural: Changes |
|
581 | 580 | label_statistics: Statistics |
|
582 | 581 | label_commits_per_month: Commits per month |
|
583 | 582 | label_commits_per_author: Commits per author |
|
584 | 583 | label_view_diff: View differences |
|
585 | 584 | label_diff_inline: inline |
|
586 | 585 | label_diff_side_by_side: side by side |
|
587 | 586 | label_options: Options |
|
588 | 587 | label_copy_workflow_from: Copy workflow from |
|
589 | 588 | label_permissions_report: Permissions report |
|
590 | 589 | label_watched_issues: Watched issues |
|
591 | 590 | label_related_issues: Related issues |
|
592 | 591 | label_applied_status: Applied status |
|
593 | 592 | label_loading: Loading... |
|
594 | 593 | label_relation_new: New relation |
|
595 | 594 | label_relation_delete: Delete relation |
|
596 | 595 | label_relates_to: related to |
|
597 | 596 | label_duplicates: duplicates |
|
598 | 597 | label_duplicated_by: duplicated by |
|
599 | 598 | label_blocks: blocks |
|
600 | 599 | label_blocked_by: blocked by |
|
601 | 600 | label_precedes: precedes |
|
602 | 601 | label_follows: follows |
|
603 | 602 | label_end_to_start: end to start |
|
604 | 603 | label_end_to_end: end to end |
|
605 | 604 | label_start_to_start: start to start |
|
606 | 605 | label_start_to_end: start to end |
|
607 | 606 | label_stay_logged_in: Stay logged in |
|
608 | 607 | label_disabled: disabled |
|
609 | 608 | label_show_completed_versions: Show completed versions |
|
610 | 609 | label_me: me |
|
611 | 610 | label_board: Forum |
|
612 | 611 | label_board_new: New forum |
|
613 | 612 | label_board_plural: Forums |
|
614 | 613 | label_topic_plural: Topics |
|
615 | 614 | label_message_plural: Messages |
|
616 | 615 | label_message_last: Last message |
|
617 | 616 | label_message_new: New message |
|
618 | 617 | label_message_posted: Message added |
|
619 | 618 | label_reply_plural: Replies |
|
620 | 619 | label_send_information: Send account information to the user |
|
621 | 620 | label_year: Year |
|
622 | 621 | label_month: Month |
|
623 | 622 | label_week: Week |
|
624 | 623 | label_date_from: From |
|
625 | 624 | label_date_to: To |
|
626 | 625 | label_language_based: Based on user's language |
|
627 | 626 | label_sort_by: "Sort by {{value}}" |
|
628 | 627 | label_send_test_email: Send a test email |
|
629 | 628 | label_feeds_access_key_created_on: "RSS access key created {{value}} ago" |
|
630 | 629 | label_module_plural: Modules |
|
631 | 630 | label_added_time_by: "Added by {{author}} {{age}} ago" |
|
632 | 631 | label_updated_time_by: "Updated by {{author}} {{age}} ago" |
|
633 | 632 | label_updated_time: "Updated {{value}} ago" |
|
634 | 633 | label_jump_to_a_project: Jump to a project... |
|
635 | 634 | label_file_plural: Files |
|
636 | 635 | label_changeset_plural: Changesets |
|
637 | 636 | label_default_columns: Default columns |
|
638 | 637 | label_no_change_option: (No change) |
|
639 | 638 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
640 | 639 | label_theme: Theme |
|
641 | 640 | label_default: Default |
|
642 | 641 | label_search_titles_only: Search titles only |
|
643 | 642 | label_user_mail_option_all: "For any event on all my projects" |
|
644 | 643 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
645 | 644 | label_user_mail_option_none: "Only for things I watch or I'm involved in" |
|
646 | 645 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
647 | 646 | label_registration_activation_by_email: account activation by email |
|
648 | 647 | label_registration_manual_activation: manual account activation |
|
649 | 648 | label_registration_automatic_activation: automatic account activation |
|
650 | 649 | label_display_per_page: "Per page: {{value}}" |
|
651 | 650 | label_age: Age |
|
652 | 651 | label_change_properties: Change properties |
|
653 | 652 | label_general: General |
|
654 | 653 | label_more: More |
|
655 | 654 | label_scm: SCM |
|
656 | 655 | label_plugins: Plugins |
|
657 | 656 | label_ldap_authentication: LDAP authentication |
|
658 | 657 | label_downloads_abbr: D/L |
|
659 | 658 | label_optional_description: Optional description |
|
660 | 659 | label_add_another_file: Add another file |
|
661 | 660 | label_preferences: Preferences |
|
662 | 661 | label_chronological_order: In chronological order |
|
663 | 662 | label_reverse_chronological_order: In reverse chronological order |
|
664 | 663 | label_planning: Planning |
|
665 | 664 | label_incoming_emails: Incoming emails |
|
666 | 665 | label_generate_key: Generate a key |
|
667 | 666 | label_issue_watchers: Watchers |
|
668 | 667 | label_example: Example |
|
669 | 668 | label_display: Display |
|
670 | 669 | label_sort: Sort |
|
671 | 670 | label_ascending: Ascending |
|
672 | 671 | label_descending: Descending |
|
673 | 672 | label_date_from_to: From {{start}} to {{end}} |
|
674 | 673 | |
|
675 | 674 | button_login: Login |
|
676 | 675 | button_submit: Submit |
|
677 | 676 | button_save: Save |
|
678 | 677 | button_check_all: Check all |
|
679 | 678 | button_uncheck_all: Uncheck all |
|
680 | 679 | button_delete: Delete |
|
681 | 680 | button_create: Create |
|
682 | 681 | button_create_and_continue: Create and continue |
|
683 | 682 | button_test: Test |
|
684 | 683 | button_edit: Edit |
|
685 | 684 | button_add: Add |
|
686 | 685 | button_change: Change |
|
687 | 686 | button_apply: Apply |
|
688 | 687 | button_clear: Clear |
|
689 | 688 | button_lock: Lock |
|
690 | 689 | button_unlock: Unlock |
|
691 | 690 | button_download: Download |
|
692 | 691 | button_list: List |
|
693 | 692 | button_view: View |
|
694 | 693 | button_move: Move |
|
695 | 694 | button_back: Back |
|
696 | 695 | button_cancel: Cancel |
|
697 | 696 | button_activate: Activate |
|
698 | 697 | button_sort: Sort |
|
699 | 698 | button_log_time: Log time |
|
700 | 699 | button_rollback: Rollback to this version |
|
701 | 700 | button_watch: Watch |
|
702 | 701 | button_unwatch: Unwatch |
|
703 | 702 | button_reply: Reply |
|
704 | 703 | button_archive: Archive |
|
705 | 704 | button_unarchive: Unarchive |
|
706 | 705 | button_reset: Reset |
|
707 | 706 | button_rename: Rename |
|
708 | 707 | button_change_password: Change password |
|
709 | 708 | button_copy: Copy |
|
710 | 709 | button_annotate: Annotate |
|
711 | 710 | button_update: Update |
|
712 | 711 | button_configure: Configure |
|
713 | 712 | button_quote: Quote |
|
714 | 713 | |
|
715 | 714 | status_active: active |
|
716 | 715 | status_registered: registered |
|
717 | 716 | status_locked: locked |
|
718 | 717 | |
|
719 | 718 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
720 | 719 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
721 | 720 | text_min_max_length_info: 0 means no restriction |
|
722 | 721 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data ? |
|
723 | 722 | text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted." |
|
724 | 723 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
725 | 724 | text_are_you_sure: Are you sure ? |
|
726 | 725 | text_journal_changed: "changed from {{old}} to {{new}}" |
|
727 | 726 | text_journal_set_to: "set to {{value}}" |
|
728 | 727 | text_journal_deleted: deleted |
|
729 | 728 | text_tip_task_begin_day: task beginning this day |
|
730 | 729 | text_tip_task_end_day: task ending this day |
|
731 | 730 | text_tip_task_begin_end_day: task beginning and ending this day |
|
732 | 731 | text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.' |
|
733 | 732 | text_caracters_maximum: "{{count}} characters maximum." |
|
734 | 733 | text_caracters_minimum: "Must be at least {{count}} characters long." |
|
735 | 734 | text_length_between: "Length between {{min}} and {{max}} characters." |
|
736 | 735 | text_tracker_no_workflow: No workflow defined for this tracker |
|
737 | 736 | text_unallowed_characters: Unallowed characters |
|
738 | 737 | text_comma_separated: Multiple values allowed (comma separated). |
|
739 | 738 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
740 | 739 | text_issue_added: "Issue {{id}} has been reported by {{author}}." |
|
741 | 740 | text_issue_updated: "Issue {{id}} has been updated by {{author}}." |
|
742 | 741 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ? |
|
743 | 742 | text_issue_category_destroy_question: "Some issues ({{count}}) are assigned to this category. What do you want to do ?" |
|
744 | 743 | text_issue_category_destroy_assignments: Remove category assignments |
|
745 | 744 | text_issue_category_reassign_to: Reassign issues to this category |
|
746 | 745 | text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." |
|
747 | 746 | text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." |
|
748 | 747 | text_load_default_configuration: Load the default configuration |
|
749 | 748 | text_status_changed_by_changeset: "Applied in changeset {{value}}." |
|
750 | 749 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?' |
|
751 | 750 | text_select_project_modules: 'Select modules to enable for this project:' |
|
752 | 751 | text_default_administrator_account_changed: Default administrator account changed |
|
753 | 752 | text_file_repository_writable: Attachments directory writable |
|
754 | 753 | text_plugin_assets_writable: Plugin assets directory writable |
|
755 | 754 | text_rmagick_available: RMagick available (optional) |
|
756 | 755 | text_destroy_time_entries_question: "{{hours}} hours were reported on the issues you are about to delete. What do you want to do ?" |
|
757 | 756 | text_destroy_time_entries: Delete reported hours |
|
758 | 757 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
759 | 758 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
760 | 759 | text_user_wrote: "{{value}} wrote:" |
|
761 | 760 | text_enumeration_destroy_question: "{{count}} objects are assigned to this value." |
|
762 | 761 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
763 | 762 | text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them." |
|
764 | 763 | text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." |
|
765 | 764 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
766 | 765 | text_custom_field_possible_values_info: 'One line for each value' |
|
767 | 766 | text_wiki_page_destroy_question: "This page has {{descendants}} child page(s) and descendant(s). What do you want to do?" |
|
768 | 767 | text_wiki_page_nullify_children: "Keep child pages as root pages" |
|
769 | 768 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" |
|
770 | 769 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" |
|
771 | 770 | |
|
772 | 771 | default_role_manager: Manager |
|
773 | 772 | default_role_developper: Developer |
|
774 | 773 | default_role_reporter: Reporter |
|
775 | 774 | default_tracker_bug: Bug |
|
776 | 775 | default_tracker_feature: Feature |
|
777 | 776 | default_tracker_support: Support |
|
778 | 777 | default_issue_status_new: New |
|
779 | 778 | default_issue_status_assigned: Assigned |
|
780 | 779 | default_issue_status_resolved: Resolved |
|
781 | 780 | default_issue_status_feedback: Feedback |
|
782 | 781 | default_issue_status_closed: Closed |
|
783 | 782 | default_issue_status_rejected: Rejected |
|
784 | 783 | default_doc_category_user: User documentation |
|
785 | 784 | default_doc_category_tech: Technical documentation |
|
786 | 785 | default_priority_low: Low |
|
787 | 786 | default_priority_normal: Normal |
|
788 | 787 | default_priority_high: High |
|
789 | 788 | default_priority_urgent: Urgent |
|
790 | 789 | default_priority_immediate: Immediate |
|
791 | 790 | default_activity_design: Design |
|
792 | 791 | default_activity_development: Development |
|
793 | 792 | |
|
794 | 793 | enumeration_issue_priorities: Issue priorities |
|
795 | 794 | enumeration_doc_categories: Document categories |
|
796 | 795 | enumeration_activities: Activities (time tracking) |
General Comments 0
You need to be logged in to leave comments.
Login now