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