##// END OF EJS Templates
Removes untranslated string....
Jean-Philippe Lang -
r2631:fba02769f3e8
parent child
Show More
@@ -1,16 +1,16
1 <h2><%=l(:label_project_copy)%></h2>
1 <h2><%=l(:label_project_new)%></h2>
2
2
3 <% labelled_tabular_form_for :project, @project, :url => { :action => "copy" } do |f| %>
3 <% labelled_tabular_form_for :project, @project, :url => { :action => "copy" } do |f| %>
4 <%= render :partial => 'form', :locals => { :f => f } %>
4 <%= render :partial => 'form', :locals => { :f => f } %>
5
5
6 <fieldset class="box"><legend><%= l(:label_module_plural) %></legend>
6 <fieldset class="box"><legend><%= l(:label_module_plural) %></legend>
7 <% Redmine::AccessControl.available_project_modules.each do |m| %>
7 <% Redmine::AccessControl.available_project_modules.each do |m| %>
8 <label class="floating">
8 <label class="floating">
9 <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %>
9 <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %>
10 <%= l_or_humanize(m, :prefix => "project_module_") %>
10 <%= l_or_humanize(m, :prefix => "project_module_") %>
11 </label>
11 </label>
12 <% end %>
12 <% end %>
13 </fieldset>
13 </fieldset>
14
14
15 <%= submit_tag l(:button_copy) %>
15 <%= submit_tag l(:button_copy) %>
16 <% end %>
16 <% end %>
@@ -1,796 +1,795
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 (maximum is {{count}} characters)"
79 too_long: "is too long (maximum is {{count}} characters)"
80 too_short: "is too short (minimum is {{count}} characters)"
80 too_short: "is too short (minimum is {{count}} characters)"
81 wrong_length: "is the wrong length (should be {{count}} characters)"
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 field_group_by: Group results by
245 field_group_by: Group results by
246
246
247 setting_app_title: Application title
247 setting_app_title: Application title
248 setting_app_subtitle: Application subtitle
248 setting_app_subtitle: Application subtitle
249 setting_welcome_text: Welcome text
249 setting_welcome_text: Welcome text
250 setting_default_language: Default language
250 setting_default_language: Default language
251 setting_login_required: Authentication required
251 setting_login_required: Authentication required
252 setting_self_registration: Self-registration
252 setting_self_registration: Self-registration
253 setting_attachment_max_size: Attachment max. size
253 setting_attachment_max_size: Attachment max. size
254 setting_issues_export_limit: Issues export limit
254 setting_issues_export_limit: Issues export limit
255 setting_mail_from: Emission email address
255 setting_mail_from: Emission email address
256 setting_bcc_recipients: Blind carbon copy recipients (bcc)
256 setting_bcc_recipients: Blind carbon copy recipients (bcc)
257 setting_plain_text_mail: Plain text mail (no HTML)
257 setting_plain_text_mail: Plain text mail (no HTML)
258 setting_host_name: Host name and path
258 setting_host_name: Host name and path
259 setting_text_formatting: Text formatting
259 setting_text_formatting: Text formatting
260 setting_wiki_compression: Wiki history compression
260 setting_wiki_compression: Wiki history compression
261 setting_feeds_limit: Feed content limit
261 setting_feeds_limit: Feed content limit
262 setting_default_projects_public: New projects are public by default
262 setting_default_projects_public: New projects are public by default
263 setting_autofetch_changesets: Autofetch commits
263 setting_autofetch_changesets: Autofetch commits
264 setting_sys_api_enabled: Enable WS for repository management
264 setting_sys_api_enabled: Enable WS for repository management
265 setting_commit_ref_keywords: Referencing keywords
265 setting_commit_ref_keywords: Referencing keywords
266 setting_commit_fix_keywords: Fixing keywords
266 setting_commit_fix_keywords: Fixing keywords
267 setting_autologin: Autologin
267 setting_autologin: Autologin
268 setting_date_format: Date format
268 setting_date_format: Date format
269 setting_time_format: Time format
269 setting_time_format: Time format
270 setting_cross_project_issue_relations: Allow cross-project issue relations
270 setting_cross_project_issue_relations: Allow cross-project issue relations
271 setting_issue_list_default_columns: Default columns displayed on the issue list
271 setting_issue_list_default_columns: Default columns displayed on the issue list
272 setting_repositories_encodings: Repositories encodings
272 setting_repositories_encodings: Repositories encodings
273 setting_commit_logs_encoding: Commit messages encoding
273 setting_commit_logs_encoding: Commit messages encoding
274 setting_emails_footer: Emails footer
274 setting_emails_footer: Emails footer
275 setting_protocol: Protocol
275 setting_protocol: Protocol
276 setting_per_page_options: Objects per page options
276 setting_per_page_options: Objects per page options
277 setting_user_format: Users display format
277 setting_user_format: Users display format
278 setting_activity_days_default: Days displayed on project activity
278 setting_activity_days_default: Days displayed on project activity
279 setting_display_subprojects_issues: Display subprojects issues on main projects by default
279 setting_display_subprojects_issues: Display subprojects issues on main projects by default
280 setting_enabled_scm: Enabled SCM
280 setting_enabled_scm: Enabled SCM
281 setting_mail_handler_api_enabled: Enable WS for incoming emails
281 setting_mail_handler_api_enabled: Enable WS for incoming emails
282 setting_mail_handler_api_key: API key
282 setting_mail_handler_api_key: API key
283 setting_sequential_project_identifiers: Generate sequential project identifiers
283 setting_sequential_project_identifiers: Generate sequential project identifiers
284 setting_gravatar_enabled: Use Gravatar user icons
284 setting_gravatar_enabled: Use Gravatar user icons
285 setting_diff_max_lines_displayed: Max number of diff lines displayed
285 setting_diff_max_lines_displayed: Max number of diff lines displayed
286 setting_file_max_size_displayed: Max size of text files displayed inline
286 setting_file_max_size_displayed: Max size of text files displayed inline
287 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
287 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
288 setting_openid: Allow OpenID login and registration
288 setting_openid: Allow OpenID login and registration
289 setting_password_min_length: Minimum password length
289 setting_password_min_length: Minimum password length
290
290
291 permission_edit_project: Edit project
291 permission_edit_project: Edit project
292 permission_select_project_modules: Select project modules
292 permission_select_project_modules: Select project modules
293 permission_manage_members: Manage members
293 permission_manage_members: Manage members
294 permission_manage_versions: Manage versions
294 permission_manage_versions: Manage versions
295 permission_manage_categories: Manage issue categories
295 permission_manage_categories: Manage issue categories
296 permission_add_issues: Add issues
296 permission_add_issues: Add issues
297 permission_edit_issues: Edit issues
297 permission_edit_issues: Edit issues
298 permission_manage_issue_relations: Manage issue relations
298 permission_manage_issue_relations: Manage issue relations
299 permission_add_issue_notes: Add notes
299 permission_add_issue_notes: Add notes
300 permission_edit_issue_notes: Edit notes
300 permission_edit_issue_notes: Edit notes
301 permission_edit_own_issue_notes: Edit own notes
301 permission_edit_own_issue_notes: Edit own notes
302 permission_move_issues: Move issues
302 permission_move_issues: Move issues
303 permission_delete_issues: Delete issues
303 permission_delete_issues: Delete issues
304 permission_manage_public_queries: Manage public queries
304 permission_manage_public_queries: Manage public queries
305 permission_save_queries: Save queries
305 permission_save_queries: Save queries
306 permission_view_gantt: View gantt chart
306 permission_view_gantt: View gantt chart
307 permission_view_calendar: View calender
307 permission_view_calendar: View calender
308 permission_view_issue_watchers: View watchers list
308 permission_view_issue_watchers: View watchers list
309 permission_add_issue_watchers: Add watchers
309 permission_add_issue_watchers: Add watchers
310 permission_log_time: Log spent time
310 permission_log_time: Log spent time
311 permission_view_time_entries: View spent time
311 permission_view_time_entries: View spent time
312 permission_edit_time_entries: Edit time logs
312 permission_edit_time_entries: Edit time logs
313 permission_edit_own_time_entries: Edit own time logs
313 permission_edit_own_time_entries: Edit own time logs
314 permission_manage_news: Manage news
314 permission_manage_news: Manage news
315 permission_comment_news: Comment news
315 permission_comment_news: Comment news
316 permission_manage_documents: Manage documents
316 permission_manage_documents: Manage documents
317 permission_view_documents: View documents
317 permission_view_documents: View documents
318 permission_manage_files: Manage files
318 permission_manage_files: Manage files
319 permission_view_files: View files
319 permission_view_files: View files
320 permission_manage_wiki: Manage wiki
320 permission_manage_wiki: Manage wiki
321 permission_rename_wiki_pages: Rename wiki pages
321 permission_rename_wiki_pages: Rename wiki pages
322 permission_delete_wiki_pages: Delete wiki pages
322 permission_delete_wiki_pages: Delete wiki pages
323 permission_view_wiki_pages: View wiki
323 permission_view_wiki_pages: View wiki
324 permission_view_wiki_edits: View wiki history
324 permission_view_wiki_edits: View wiki history
325 permission_edit_wiki_pages: Edit wiki pages
325 permission_edit_wiki_pages: Edit wiki pages
326 permission_delete_wiki_pages_attachments: Delete attachments
326 permission_delete_wiki_pages_attachments: Delete attachments
327 permission_protect_wiki_pages: Protect wiki pages
327 permission_protect_wiki_pages: Protect wiki pages
328 permission_manage_repository: Manage repository
328 permission_manage_repository: Manage repository
329 permission_browse_repository: Browse repository
329 permission_browse_repository: Browse repository
330 permission_view_changesets: View changesets
330 permission_view_changesets: View changesets
331 permission_commit_access: Commit access
331 permission_commit_access: Commit access
332 permission_manage_boards: Manage boards
332 permission_manage_boards: Manage boards
333 permission_view_messages: View messages
333 permission_view_messages: View messages
334 permission_add_messages: Post messages
334 permission_add_messages: Post messages
335 permission_edit_messages: Edit messages
335 permission_edit_messages: Edit messages
336 permission_edit_own_messages: Edit own messages
336 permission_edit_own_messages: Edit own messages
337 permission_delete_messages: Delete messages
337 permission_delete_messages: Delete messages
338 permission_delete_own_messages: Delete own messages
338 permission_delete_own_messages: Delete own messages
339
339
340 project_module_issue_tracking: Issue tracking
340 project_module_issue_tracking: Issue tracking
341 project_module_time_tracking: Time tracking
341 project_module_time_tracking: Time tracking
342 project_module_news: News
342 project_module_news: News
343 project_module_documents: Documents
343 project_module_documents: Documents
344 project_module_files: Files
344 project_module_files: Files
345 project_module_wiki: Wiki
345 project_module_wiki: Wiki
346 project_module_repository: Repository
346 project_module_repository: Repository
347 project_module_boards: Boards
347 project_module_boards: Boards
348
348
349 label_user: User
349 label_user: User
350 label_user_plural: Users
350 label_user_plural: Users
351 label_user_new: New user
351 label_user_new: New user
352 label_project: Project
352 label_project: Project
353 label_project_new: New project
353 label_project_new: New project
354 label_project_copy: Copy project
355 label_project_plural: Projects
354 label_project_plural: Projects
356 label_x_projects:
355 label_x_projects:
357 zero: no projects
356 zero: no projects
358 one: 1 project
357 one: 1 project
359 other: "{{count}} projects"
358 other: "{{count}} projects"
360 label_project_all: All Projects
359 label_project_all: All Projects
361 label_project_latest: Latest projects
360 label_project_latest: Latest projects
362 label_issue: Issue
361 label_issue: Issue
363 label_issue_new: New issue
362 label_issue_new: New issue
364 label_issue_plural: Issues
363 label_issue_plural: Issues
365 label_issue_view_all: View all issues
364 label_issue_view_all: View all issues
366 label_issues_by: "Issues by {{value}}"
365 label_issues_by: "Issues by {{value}}"
367 label_issue_added: Issue added
366 label_issue_added: Issue added
368 label_issue_updated: Issue updated
367 label_issue_updated: Issue updated
369 label_document: Document
368 label_document: Document
370 label_document_new: New document
369 label_document_new: New document
371 label_document_plural: Documents
370 label_document_plural: Documents
372 label_document_added: Document added
371 label_document_added: Document added
373 label_role: Role
372 label_role: Role
374 label_role_plural: Roles
373 label_role_plural: Roles
375 label_role_new: New role
374 label_role_new: New role
376 label_role_and_permissions: Roles and permissions
375 label_role_and_permissions: Roles and permissions
377 label_member: Member
376 label_member: Member
378 label_member_new: New member
377 label_member_new: New member
379 label_member_plural: Members
378 label_member_plural: Members
380 label_tracker: Tracker
379 label_tracker: Tracker
381 label_tracker_plural: Trackers
380 label_tracker_plural: Trackers
382 label_tracker_new: New tracker
381 label_tracker_new: New tracker
383 label_workflow: Workflow
382 label_workflow: Workflow
384 label_issue_status: Issue status
383 label_issue_status: Issue status
385 label_issue_status_plural: Issue statuses
384 label_issue_status_plural: Issue statuses
386 label_issue_status_new: New status
385 label_issue_status_new: New status
387 label_issue_category: Issue category
386 label_issue_category: Issue category
388 label_issue_category_plural: Issue categories
387 label_issue_category_plural: Issue categories
389 label_issue_category_new: New category
388 label_issue_category_new: New category
390 label_custom_field: Custom field
389 label_custom_field: Custom field
391 label_custom_field_plural: Custom fields
390 label_custom_field_plural: Custom fields
392 label_custom_field_new: New custom field
391 label_custom_field_new: New custom field
393 label_enumerations: Enumerations
392 label_enumerations: Enumerations
394 label_enumeration_new: New value
393 label_enumeration_new: New value
395 label_information: Information
394 label_information: Information
396 label_information_plural: Information
395 label_information_plural: Information
397 label_please_login: Please log in
396 label_please_login: Please log in
398 label_register: Register
397 label_register: Register
399 label_login_with_open_id_option: or login with OpenID
398 label_login_with_open_id_option: or login with OpenID
400 label_password_lost: Lost password
399 label_password_lost: Lost password
401 label_home: Home
400 label_home: Home
402 label_my_page: My page
401 label_my_page: My page
403 label_my_account: My account
402 label_my_account: My account
404 label_my_projects: My projects
403 label_my_projects: My projects
405 label_administration: Administration
404 label_administration: Administration
406 label_login: Sign in
405 label_login: Sign in
407 label_logout: Sign out
406 label_logout: Sign out
408 label_help: Help
407 label_help: Help
409 label_reported_issues: Reported issues
408 label_reported_issues: Reported issues
410 label_assigned_to_me_issues: Issues assigned to me
409 label_assigned_to_me_issues: Issues assigned to me
411 label_last_login: Last connection
410 label_last_login: Last connection
412 label_registered_on: Registered on
411 label_registered_on: Registered on
413 label_activity: Activity
412 label_activity: Activity
414 label_overall_activity: Overall activity
413 label_overall_activity: Overall activity
415 label_user_activity: "{{value}}'s activity"
414 label_user_activity: "{{value}}'s activity"
416 label_new: New
415 label_new: New
417 label_logged_as: Logged in as
416 label_logged_as: Logged in as
418 label_environment: Environment
417 label_environment: Environment
419 label_authentication: Authentication
418 label_authentication: Authentication
420 label_auth_source: Authentication mode
419 label_auth_source: Authentication mode
421 label_auth_source_new: New authentication mode
420 label_auth_source_new: New authentication mode
422 label_auth_source_plural: Authentication modes
421 label_auth_source_plural: Authentication modes
423 label_subproject_plural: Subprojects
422 label_subproject_plural: Subprojects
424 label_and_its_subprojects: "{{value}} and its subprojects"
423 label_and_its_subprojects: "{{value}} and its subprojects"
425 label_min_max_length: Min - Max length
424 label_min_max_length: Min - Max length
426 label_list: List
425 label_list: List
427 label_date: Date
426 label_date: Date
428 label_integer: Integer
427 label_integer: Integer
429 label_float: Float
428 label_float: Float
430 label_boolean: Boolean
429 label_boolean: Boolean
431 label_string: Text
430 label_string: Text
432 label_text: Long text
431 label_text: Long text
433 label_attribute: Attribute
432 label_attribute: Attribute
434 label_attribute_plural: Attributes
433 label_attribute_plural: Attributes
435 label_download: "{{count}} Download"
434 label_download: "{{count}} Download"
436 label_download_plural: "{{count}} Downloads"
435 label_download_plural: "{{count}} Downloads"
437 label_no_data: No data to display
436 label_no_data: No data to display
438 label_change_status: Change status
437 label_change_status: Change status
439 label_history: History
438 label_history: History
440 label_attachment: File
439 label_attachment: File
441 label_attachment_new: New file
440 label_attachment_new: New file
442 label_attachment_delete: Delete file
441 label_attachment_delete: Delete file
443 label_attachment_plural: Files
442 label_attachment_plural: Files
444 label_file_added: File added
443 label_file_added: File added
445 label_report: Report
444 label_report: Report
446 label_report_plural: Reports
445 label_report_plural: Reports
447 label_news: News
446 label_news: News
448 label_news_new: Add news
447 label_news_new: Add news
449 label_news_plural: News
448 label_news_plural: News
450 label_news_latest: Latest news
449 label_news_latest: Latest news
451 label_news_view_all: View all news
450 label_news_view_all: View all news
452 label_news_added: News added
451 label_news_added: News added
453 label_change_log: Change log
452 label_change_log: Change log
454 label_settings: Settings
453 label_settings: Settings
455 label_overview: Overview
454 label_overview: Overview
456 label_version: Version
455 label_version: Version
457 label_version_new: New version
456 label_version_new: New version
458 label_version_plural: Versions
457 label_version_plural: Versions
459 label_confirmation: Confirmation
458 label_confirmation: Confirmation
460 label_export_to: 'Also available in:'
459 label_export_to: 'Also available in:'
461 label_read: Read...
460 label_read: Read...
462 label_public_projects: Public projects
461 label_public_projects: Public projects
463 label_open_issues: open
462 label_open_issues: open
464 label_open_issues_plural: open
463 label_open_issues_plural: open
465 label_closed_issues: closed
464 label_closed_issues: closed
466 label_closed_issues_plural: closed
465 label_closed_issues_plural: closed
467 label_x_open_issues_abbr_on_total:
466 label_x_open_issues_abbr_on_total:
468 zero: 0 open / {{total}}
467 zero: 0 open / {{total}}
469 one: 1 open / {{total}}
468 one: 1 open / {{total}}
470 other: "{{count}} open / {{total}}"
469 other: "{{count}} open / {{total}}"
471 label_x_open_issues_abbr:
470 label_x_open_issues_abbr:
472 zero: 0 open
471 zero: 0 open
473 one: 1 open
472 one: 1 open
474 other: "{{count}} open"
473 other: "{{count}} open"
475 label_x_closed_issues_abbr:
474 label_x_closed_issues_abbr:
476 zero: 0 closed
475 zero: 0 closed
477 one: 1 closed
476 one: 1 closed
478 other: "{{count}} closed"
477 other: "{{count}} closed"
479 label_total: Total
478 label_total: Total
480 label_permissions: Permissions
479 label_permissions: Permissions
481 label_current_status: Current status
480 label_current_status: Current status
482 label_new_statuses_allowed: New statuses allowed
481 label_new_statuses_allowed: New statuses allowed
483 label_all: all
482 label_all: all
484 label_none: none
483 label_none: none
485 label_nobody: nobody
484 label_nobody: nobody
486 label_next: Next
485 label_next: Next
487 label_previous: Previous
486 label_previous: Previous
488 label_used_by: Used by
487 label_used_by: Used by
489 label_details: Details
488 label_details: Details
490 label_add_note: Add a note
489 label_add_note: Add a note
491 label_per_page: Per page
490 label_per_page: Per page
492 label_calendar: Calendar
491 label_calendar: Calendar
493 label_months_from: months from
492 label_months_from: months from
494 label_gantt: Gantt
493 label_gantt: Gantt
495 label_internal: Internal
494 label_internal: Internal
496 label_last_changes: "last {{count}} changes"
495 label_last_changes: "last {{count}} changes"
497 label_change_view_all: View all changes
496 label_change_view_all: View all changes
498 label_personalize_page: Personalize this page
497 label_personalize_page: Personalize this page
499 label_comment: Comment
498 label_comment: Comment
500 label_comment_plural: Comments
499 label_comment_plural: Comments
501 label_x_comments:
500 label_x_comments:
502 zero: no comments
501 zero: no comments
503 one: 1 comment
502 one: 1 comment
504 other: "{{count}} comments"
503 other: "{{count}} comments"
505 label_comment_add: Add a comment
504 label_comment_add: Add a comment
506 label_comment_added: Comment added
505 label_comment_added: Comment added
507 label_comment_delete: Delete comments
506 label_comment_delete: Delete comments
508 label_query: Custom query
507 label_query: Custom query
509 label_query_plural: Custom queries
508 label_query_plural: Custom queries
510 label_query_new: New query
509 label_query_new: New query
511 label_filter_add: Add filter
510 label_filter_add: Add filter
512 label_filter_plural: Filters
511 label_filter_plural: Filters
513 label_equals: is
512 label_equals: is
514 label_not_equals: is not
513 label_not_equals: is not
515 label_in_less_than: in less than
514 label_in_less_than: in less than
516 label_in_more_than: in more than
515 label_in_more_than: in more than
517 label_greater_or_equal: '>='
516 label_greater_or_equal: '>='
518 label_less_or_equal: '<='
517 label_less_or_equal: '<='
519 label_in: in
518 label_in: in
520 label_today: today
519 label_today: today
521 label_all_time: all time
520 label_all_time: all time
522 label_yesterday: yesterday
521 label_yesterday: yesterday
523 label_this_week: this week
522 label_this_week: this week
524 label_last_week: last week
523 label_last_week: last week
525 label_last_n_days: "last {{count}} days"
524 label_last_n_days: "last {{count}} days"
526 label_this_month: this month
525 label_this_month: this month
527 label_last_month: last month
526 label_last_month: last month
528 label_this_year: this year
527 label_this_year: this year
529 label_date_range: Date range
528 label_date_range: Date range
530 label_less_than_ago: less than days ago
529 label_less_than_ago: less than days ago
531 label_more_than_ago: more than days ago
530 label_more_than_ago: more than days ago
532 label_ago: days ago
531 label_ago: days ago
533 label_contains: contains
532 label_contains: contains
534 label_not_contains: doesn't contain
533 label_not_contains: doesn't contain
535 label_day_plural: days
534 label_day_plural: days
536 label_repository: Repository
535 label_repository: Repository
537 label_repository_plural: Repositories
536 label_repository_plural: Repositories
538 label_browse: Browse
537 label_browse: Browse
539 label_modification: "{{count}} change"
538 label_modification: "{{count}} change"
540 label_modification_plural: "{{count}} changes"
539 label_modification_plural: "{{count}} changes"
541 label_revision: Revision
540 label_revision: Revision
542 label_revision_plural: Revisions
541 label_revision_plural: Revisions
543 label_associated_revisions: Associated revisions
542 label_associated_revisions: Associated revisions
544 label_added: added
543 label_added: added
545 label_modified: modified
544 label_modified: modified
546 label_copied: copied
545 label_copied: copied
547 label_renamed: renamed
546 label_renamed: renamed
548 label_deleted: deleted
547 label_deleted: deleted
549 label_latest_revision: Latest revision
548 label_latest_revision: Latest revision
550 label_latest_revision_plural: Latest revisions
549 label_latest_revision_plural: Latest revisions
551 label_view_revisions: View revisions
550 label_view_revisions: View revisions
552 label_max_size: Maximum size
551 label_max_size: Maximum size
553 label_sort_highest: Move to top
552 label_sort_highest: Move to top
554 label_sort_higher: Move up
553 label_sort_higher: Move up
555 label_sort_lower: Move down
554 label_sort_lower: Move down
556 label_sort_lowest: Move to bottom
555 label_sort_lowest: Move to bottom
557 label_roadmap: Roadmap
556 label_roadmap: Roadmap
558 label_roadmap_due_in: "Due in {{value}}"
557 label_roadmap_due_in: "Due in {{value}}"
559 label_roadmap_overdue: "{{value}} late"
558 label_roadmap_overdue: "{{value}} late"
560 label_roadmap_no_issues: No issues for this version
559 label_roadmap_no_issues: No issues for this version
561 label_search: Search
560 label_search: Search
562 label_result_plural: Results
561 label_result_plural: Results
563 label_all_words: All words
562 label_all_words: All words
564 label_wiki: Wiki
563 label_wiki: Wiki
565 label_wiki_edit: Wiki edit
564 label_wiki_edit: Wiki edit
566 label_wiki_edit_plural: Wiki edits
565 label_wiki_edit_plural: Wiki edits
567 label_wiki_page: Wiki page
566 label_wiki_page: Wiki page
568 label_wiki_page_plural: Wiki pages
567 label_wiki_page_plural: Wiki pages
569 label_index_by_title: Index by title
568 label_index_by_title: Index by title
570 label_index_by_date: Index by date
569 label_index_by_date: Index by date
571 label_current_version: Current version
570 label_current_version: Current version
572 label_preview: Preview
571 label_preview: Preview
573 label_feed_plural: Feeds
572 label_feed_plural: Feeds
574 label_changes_details: Details of all changes
573 label_changes_details: Details of all changes
575 label_issue_tracking: Issue tracking
574 label_issue_tracking: Issue tracking
576 label_spent_time: Spent time
575 label_spent_time: Spent time
577 label_f_hour: "{{value}} hour"
576 label_f_hour: "{{value}} hour"
578 label_f_hour_plural: "{{value}} hours"
577 label_f_hour_plural: "{{value}} hours"
579 label_time_tracking: Time tracking
578 label_time_tracking: Time tracking
580 label_change_plural: Changes
579 label_change_plural: Changes
581 label_statistics: Statistics
580 label_statistics: Statistics
582 label_commits_per_month: Commits per month
581 label_commits_per_month: Commits per month
583 label_commits_per_author: Commits per author
582 label_commits_per_author: Commits per author
584 label_view_diff: View differences
583 label_view_diff: View differences
585 label_diff_inline: inline
584 label_diff_inline: inline
586 label_diff_side_by_side: side by side
585 label_diff_side_by_side: side by side
587 label_options: Options
586 label_options: Options
588 label_copy_workflow_from: Copy workflow from
587 label_copy_workflow_from: Copy workflow from
589 label_permissions_report: Permissions report
588 label_permissions_report: Permissions report
590 label_watched_issues: Watched issues
589 label_watched_issues: Watched issues
591 label_related_issues: Related issues
590 label_related_issues: Related issues
592 label_applied_status: Applied status
591 label_applied_status: Applied status
593 label_loading: Loading...
592 label_loading: Loading...
594 label_relation_new: New relation
593 label_relation_new: New relation
595 label_relation_delete: Delete relation
594 label_relation_delete: Delete relation
596 label_relates_to: related to
595 label_relates_to: related to
597 label_duplicates: duplicates
596 label_duplicates: duplicates
598 label_duplicated_by: duplicated by
597 label_duplicated_by: duplicated by
599 label_blocks: blocks
598 label_blocks: blocks
600 label_blocked_by: blocked by
599 label_blocked_by: blocked by
601 label_precedes: precedes
600 label_precedes: precedes
602 label_follows: follows
601 label_follows: follows
603 label_end_to_start: end to start
602 label_end_to_start: end to start
604 label_end_to_end: end to end
603 label_end_to_end: end to end
605 label_start_to_start: start to start
604 label_start_to_start: start to start
606 label_start_to_end: start to end
605 label_start_to_end: start to end
607 label_stay_logged_in: Stay logged in
606 label_stay_logged_in: Stay logged in
608 label_disabled: disabled
607 label_disabled: disabled
609 label_show_completed_versions: Show completed versions
608 label_show_completed_versions: Show completed versions
610 label_me: me
609 label_me: me
611 label_board: Forum
610 label_board: Forum
612 label_board_new: New forum
611 label_board_new: New forum
613 label_board_plural: Forums
612 label_board_plural: Forums
614 label_topic_plural: Topics
613 label_topic_plural: Topics
615 label_message_plural: Messages
614 label_message_plural: Messages
616 label_message_last: Last message
615 label_message_last: Last message
617 label_message_new: New message
616 label_message_new: New message
618 label_message_posted: Message added
617 label_message_posted: Message added
619 label_reply_plural: Replies
618 label_reply_plural: Replies
620 label_send_information: Send account information to the user
619 label_send_information: Send account information to the user
621 label_year: Year
620 label_year: Year
622 label_month: Month
621 label_month: Month
623 label_week: Week
622 label_week: Week
624 label_date_from: From
623 label_date_from: From
625 label_date_to: To
624 label_date_to: To
626 label_language_based: Based on user's language
625 label_language_based: Based on user's language
627 label_sort_by: "Sort by {{value}}"
626 label_sort_by: "Sort by {{value}}"
628 label_send_test_email: Send a test email
627 label_send_test_email: Send a test email
629 label_feeds_access_key_created_on: "RSS access key created {{value}} ago"
628 label_feeds_access_key_created_on: "RSS access key created {{value}} ago"
630 label_module_plural: Modules
629 label_module_plural: Modules
631 label_added_time_by: "Added by {{author}} {{age}} ago"
630 label_added_time_by: "Added by {{author}} {{age}} ago"
632 label_updated_time_by: "Updated by {{author}} {{age}} ago"
631 label_updated_time_by: "Updated by {{author}} {{age}} ago"
633 label_updated_time: "Updated {{value}} ago"
632 label_updated_time: "Updated {{value}} ago"
634 label_jump_to_a_project: Jump to a project...
633 label_jump_to_a_project: Jump to a project...
635 label_file_plural: Files
634 label_file_plural: Files
636 label_changeset_plural: Changesets
635 label_changeset_plural: Changesets
637 label_default_columns: Default columns
636 label_default_columns: Default columns
638 label_no_change_option: (No change)
637 label_no_change_option: (No change)
639 label_bulk_edit_selected_issues: Bulk edit selected issues
638 label_bulk_edit_selected_issues: Bulk edit selected issues
640 label_theme: Theme
639 label_theme: Theme
641 label_default: Default
640 label_default: Default
642 label_search_titles_only: Search titles only
641 label_search_titles_only: Search titles only
643 label_user_mail_option_all: "For any event on all my projects"
642 label_user_mail_option_all: "For any event on all my projects"
644 label_user_mail_option_selected: "For any event on the selected projects only..."
643 label_user_mail_option_selected: "For any event on the selected projects only..."
645 label_user_mail_option_none: "Only for things I watch or I'm involved in"
644 label_user_mail_option_none: "Only for things I watch or I'm involved in"
646 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
645 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
647 label_registration_activation_by_email: account activation by email
646 label_registration_activation_by_email: account activation by email
648 label_registration_manual_activation: manual account activation
647 label_registration_manual_activation: manual account activation
649 label_registration_automatic_activation: automatic account activation
648 label_registration_automatic_activation: automatic account activation
650 label_display_per_page: "Per page: {{value}}"
649 label_display_per_page: "Per page: {{value}}"
651 label_age: Age
650 label_age: Age
652 label_change_properties: Change properties
651 label_change_properties: Change properties
653 label_general: General
652 label_general: General
654 label_more: More
653 label_more: More
655 label_scm: SCM
654 label_scm: SCM
656 label_plugins: Plugins
655 label_plugins: Plugins
657 label_ldap_authentication: LDAP authentication
656 label_ldap_authentication: LDAP authentication
658 label_downloads_abbr: D/L
657 label_downloads_abbr: D/L
659 label_optional_description: Optional description
658 label_optional_description: Optional description
660 label_add_another_file: Add another file
659 label_add_another_file: Add another file
661 label_preferences: Preferences
660 label_preferences: Preferences
662 label_chronological_order: In chronological order
661 label_chronological_order: In chronological order
663 label_reverse_chronological_order: In reverse chronological order
662 label_reverse_chronological_order: In reverse chronological order
664 label_planning: Planning
663 label_planning: Planning
665 label_incoming_emails: Incoming emails
664 label_incoming_emails: Incoming emails
666 label_generate_key: Generate a key
665 label_generate_key: Generate a key
667 label_issue_watchers: Watchers
666 label_issue_watchers: Watchers
668 label_example: Example
667 label_example: Example
669 label_display: Display
668 label_display: Display
670 label_sort: Sort
669 label_sort: Sort
671 label_ascending: Ascending
670 label_ascending: Ascending
672 label_descending: Descending
671 label_descending: Descending
673 label_date_from_to: From {{start}} to {{end}}
672 label_date_from_to: From {{start}} to {{end}}
674
673
675 button_login: Login
674 button_login: Login
676 button_submit: Submit
675 button_submit: Submit
677 button_save: Save
676 button_save: Save
678 button_check_all: Check all
677 button_check_all: Check all
679 button_uncheck_all: Uncheck all
678 button_uncheck_all: Uncheck all
680 button_delete: Delete
679 button_delete: Delete
681 button_create: Create
680 button_create: Create
682 button_create_and_continue: Create and continue
681 button_create_and_continue: Create and continue
683 button_test: Test
682 button_test: Test
684 button_edit: Edit
683 button_edit: Edit
685 button_add: Add
684 button_add: Add
686 button_change: Change
685 button_change: Change
687 button_apply: Apply
686 button_apply: Apply
688 button_clear: Clear
687 button_clear: Clear
689 button_lock: Lock
688 button_lock: Lock
690 button_unlock: Unlock
689 button_unlock: Unlock
691 button_download: Download
690 button_download: Download
692 button_list: List
691 button_list: List
693 button_view: View
692 button_view: View
694 button_move: Move
693 button_move: Move
695 button_back: Back
694 button_back: Back
696 button_cancel: Cancel
695 button_cancel: Cancel
697 button_activate: Activate
696 button_activate: Activate
698 button_sort: Sort
697 button_sort: Sort
699 button_log_time: Log time
698 button_log_time: Log time
700 button_rollback: Rollback to this version
699 button_rollback: Rollback to this version
701 button_watch: Watch
700 button_watch: Watch
702 button_unwatch: Unwatch
701 button_unwatch: Unwatch
703 button_reply: Reply
702 button_reply: Reply
704 button_archive: Archive
703 button_archive: Archive
705 button_unarchive: Unarchive
704 button_unarchive: Unarchive
706 button_reset: Reset
705 button_reset: Reset
707 button_rename: Rename
706 button_rename: Rename
708 button_change_password: Change password
707 button_change_password: Change password
709 button_copy: Copy
708 button_copy: Copy
710 button_annotate: Annotate
709 button_annotate: Annotate
711 button_update: Update
710 button_update: Update
712 button_configure: Configure
711 button_configure: Configure
713 button_quote: Quote
712 button_quote: Quote
714
713
715 status_active: active
714 status_active: active
716 status_registered: registered
715 status_registered: registered
717 status_locked: locked
716 status_locked: locked
718
717
719 text_select_mail_notifications: Select actions for which email notifications should be sent.
718 text_select_mail_notifications: Select actions for which email notifications should be sent.
720 text_regexp_info: eg. ^[A-Z0-9]+$
719 text_regexp_info: eg. ^[A-Z0-9]+$
721 text_min_max_length_info: 0 means no restriction
720 text_min_max_length_info: 0 means no restriction
722 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
721 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
723 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted."
722 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted."
724 text_workflow_edit: Select a role and a tracker to edit the workflow
723 text_workflow_edit: Select a role and a tracker to edit the workflow
725 text_are_you_sure: Are you sure ?
724 text_are_you_sure: Are you sure ?
726 text_journal_changed: "changed from {{old}} to {{new}}"
725 text_journal_changed: "changed from {{old}} to {{new}}"
727 text_journal_set_to: "set to {{value}}"
726 text_journal_set_to: "set to {{value}}"
728 text_journal_deleted: deleted
727 text_journal_deleted: deleted
729 text_tip_task_begin_day: task beginning this day
728 text_tip_task_begin_day: task beginning this day
730 text_tip_task_end_day: task ending this day
729 text_tip_task_end_day: task ending this day
731 text_tip_task_begin_end_day: task beginning and ending this day
730 text_tip_task_begin_end_day: task beginning and ending this day
732 text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.'
731 text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.'
733 text_caracters_maximum: "{{count}} characters maximum."
732 text_caracters_maximum: "{{count}} characters maximum."
734 text_caracters_minimum: "Must be at least {{count}} characters long."
733 text_caracters_minimum: "Must be at least {{count}} characters long."
735 text_length_between: "Length between {{min}} and {{max}} characters."
734 text_length_between: "Length between {{min}} and {{max}} characters."
736 text_tracker_no_workflow: No workflow defined for this tracker
735 text_tracker_no_workflow: No workflow defined for this tracker
737 text_unallowed_characters: Unallowed characters
736 text_unallowed_characters: Unallowed characters
738 text_comma_separated: Multiple values allowed (comma separated).
737 text_comma_separated: Multiple values allowed (comma separated).
739 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
738 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
740 text_issue_added: "Issue {{id}} has been reported by {{author}}."
739 text_issue_added: "Issue {{id}} has been reported by {{author}}."
741 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
740 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
742 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
741 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
743 text_issue_category_destroy_question: "Some issues ({{count}}) are assigned to this category. What do you want to do ?"
742 text_issue_category_destroy_question: "Some issues ({{count}}) are assigned to this category. What do you want to do ?"
744 text_issue_category_destroy_assignments: Remove category assignments
743 text_issue_category_destroy_assignments: Remove category assignments
745 text_issue_category_reassign_to: Reassign issues to this category
744 text_issue_category_reassign_to: Reassign issues to this category
746 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)."
745 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
747 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."
746 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
748 text_load_default_configuration: Load the default configuration
747 text_load_default_configuration: Load the default configuration
749 text_status_changed_by_changeset: "Applied in changeset {{value}}."
748 text_status_changed_by_changeset: "Applied in changeset {{value}}."
750 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
749 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
751 text_select_project_modules: 'Select modules to enable for this project:'
750 text_select_project_modules: 'Select modules to enable for this project:'
752 text_default_administrator_account_changed: Default administrator account changed
751 text_default_administrator_account_changed: Default administrator account changed
753 text_file_repository_writable: Attachments directory writable
752 text_file_repository_writable: Attachments directory writable
754 text_plugin_assets_writable: Plugin assets directory writable
753 text_plugin_assets_writable: Plugin assets directory writable
755 text_rmagick_available: RMagick available (optional)
754 text_rmagick_available: RMagick available (optional)
756 text_destroy_time_entries_question: "{{hours}} hours were reported on the issues you are about to delete. What do you want to do ?"
755 text_destroy_time_entries_question: "{{hours}} hours were reported on the issues you are about to delete. What do you want to do ?"
757 text_destroy_time_entries: Delete reported hours
756 text_destroy_time_entries: Delete reported hours
758 text_assign_time_entries_to_project: Assign reported hours to the project
757 text_assign_time_entries_to_project: Assign reported hours to the project
759 text_reassign_time_entries: 'Reassign reported hours to this issue:'
758 text_reassign_time_entries: 'Reassign reported hours to this issue:'
760 text_user_wrote: "{{value}} wrote:"
759 text_user_wrote: "{{value}} wrote:"
761 text_enumeration_destroy_question: "{{count}} objects are assigned to this value."
760 text_enumeration_destroy_question: "{{count}} objects are assigned to this value."
762 text_enumeration_category_reassign_to: 'Reassign them to this value:'
761 text_enumeration_category_reassign_to: 'Reassign them to this value:'
763 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."
762 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
764 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."
763 text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped."
765 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
764 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
766 text_custom_field_possible_values_info: 'One line for each value'
765 text_custom_field_possible_values_info: 'One line for each value'
767 text_wiki_page_destroy_question: "This page has {{descendants}} child page(s) and descendant(s). What do you want to do?"
766 text_wiki_page_destroy_question: "This page has {{descendants}} child page(s) and descendant(s). What do you want to do?"
768 text_wiki_page_nullify_children: "Keep child pages as root pages"
767 text_wiki_page_nullify_children: "Keep child pages as root pages"
769 text_wiki_page_destroy_children: "Delete child pages and all their descendants"
768 text_wiki_page_destroy_children: "Delete child pages and all their descendants"
770 text_wiki_page_reassign_children: "Reassign child pages to this parent page"
769 text_wiki_page_reassign_children: "Reassign child pages to this parent page"
771
770
772 default_role_manager: Manager
771 default_role_manager: Manager
773 default_role_developper: Developer
772 default_role_developper: Developer
774 default_role_reporter: Reporter
773 default_role_reporter: Reporter
775 default_tracker_bug: Bug
774 default_tracker_bug: Bug
776 default_tracker_feature: Feature
775 default_tracker_feature: Feature
777 default_tracker_support: Support
776 default_tracker_support: Support
778 default_issue_status_new: New
777 default_issue_status_new: New
779 default_issue_status_assigned: Assigned
778 default_issue_status_assigned: Assigned
780 default_issue_status_resolved: Resolved
779 default_issue_status_resolved: Resolved
781 default_issue_status_feedback: Feedback
780 default_issue_status_feedback: Feedback
782 default_issue_status_closed: Closed
781 default_issue_status_closed: Closed
783 default_issue_status_rejected: Rejected
782 default_issue_status_rejected: Rejected
784 default_doc_category_user: User documentation
783 default_doc_category_user: User documentation
785 default_doc_category_tech: Technical documentation
784 default_doc_category_tech: Technical documentation
786 default_priority_low: Low
785 default_priority_low: Low
787 default_priority_normal: Normal
786 default_priority_normal: Normal
788 default_priority_high: High
787 default_priority_high: High
789 default_priority_urgent: Urgent
788 default_priority_urgent: Urgent
790 default_priority_immediate: Immediate
789 default_priority_immediate: Immediate
791 default_activity_design: Design
790 default_activity_design: Design
792 default_activity_development: Development
791 default_activity_development: Development
793
792
794 enumeration_issue_priorities: Issue priorities
793 enumeration_issue_priorities: Issue priorities
795 enumeration_doc_categories: Document categories
794 enumeration_doc_categories: Document categories
796 enumeration_activities: Activities (time tracking)
795 enumeration_activities: Activities (time tracking)
General Comments 0
You need to be logged in to leave comments. Login now