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