##// END OF EJS Templates
Link to assigned issues on user profiles (#3398)....
Jean-Philippe Lang -
r14335:2fd9aa5f66de
parent child
Show More
@@ -1,75 +1,81
1 1 <div class="contextual">
2 2 <%= link_to(l(:button_edit), edit_user_path(@user), :class => 'icon icon-edit') if User.current.admin? %>
3 3 </div>
4 4
5 5 <h2><%= avatar @user, :size => "50" %> <%= @user.name %></h2>
6 6
7 7 <div class="splitcontentleft">
8 8 <ul>
9 9 <% if User.current.admin? %>
10 10 <li><%=l(:field_login)%>: <%= @user.login %></li>
11 11 <% end %>
12 12 <% unless @user.pref.hide_mail %>
13 13 <li><%=l(:field_mail)%>: <%= mail_to(@user.mail, nil, :encode => 'javascript') %></li>
14 14 <% end %>
15 15 <% @user.visible_custom_field_values.each do |custom_value| %>
16 16 <% if !custom_value.value.blank? %>
17 17 <li><%= custom_value.custom_field.name %>: <%= show_value(custom_value) %></li>
18 18 <% end %>
19 19 <% end %>
20 20 <li><%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %></li>
21 21 <% unless @user.last_login_on.nil? %>
22 22 <li><%=l(:field_last_login_on)%>: <%= format_date(@user.last_login_on) %></li>
23 23 <% end %>
24 24 </ul>
25 25
26 <h3><%=l(:label_issue_plural)%></h3>
27 <ul>
28 <li><%= link_to l(:label_assigned_issues),
29 issues_path(:set_filter => 1, :assigned_to_id => 'me', :sort => 'priority:desc,updated_on:desc') %>:
30 <%= Issue.visible.open.where(:assigned_to_id => ([@user.id] + @user.group_ids)).count %>
31 <li><%= link_to l(:label_reported_issues),
32 issues_path(:set_filter => 1, :status_id => '*', :author_id => @user.id) %>:
33 <%= Issue.visible.where(:author_id => @user.id).count %>
34 </ul>
35
26 36 <% unless @memberships.empty? %>
27 37 <h3><%=l(:label_project_plural)%></h3>
28 38 <ul>
29 39 <% for membership in @memberships %>
30 40 <li><%= link_to_project(membership.project) %>
31 41 (<%= membership.roles.sort.collect(&:to_s).join(', ') %>, <%= format_date(membership.created_on) %>)</li>
32 42 <% end %>
33 43 </ul>
34 44 <% end %>
35 45 <%= call_hook :view_account_left_bottom, :user => @user %>
36 46 </div>
37 47
38 48 <div class="splitcontentright">
39 49
40 50 <% unless @events_by_day.empty? %>
41 51 <h3><%= link_to l(:label_activity), :controller => 'activities',
42 52 :action => 'index', :id => nil, :user_id => @user,
43 53 :from => @events_by_day.keys.first %></h3>
44 54
45 <p>
46 <%=l(:label_reported_issues)%>: <%= Issue.where(:author_id => @user.id).count %>
47 </p>
48
49 55 <div id="activity">
50 56 <% @events_by_day.keys.sort.reverse.each do |day| %>
51 57 <h4><%= format_activity_day(day) %></h4>
52 58 <dl>
53 59 <% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
54 60 <dt class="<%= e.event_type %>">
55 61 <span class="time"><%= format_time(e.event_datetime, false) %></span>
56 62 <%= content_tag('span', e.project, :class => 'project') %>
57 63 <%= link_to format_activity_title(e.event_title), e.event_url %></dt>
58 64 <dd><span class="description"><%= format_activity_description(e.event_description) %></span></dd>
59 65 <% end -%>
60 66 </dl>
61 67 <% end -%>
62 68 </div>
63 69
64 70 <% other_formats_links do |f| %>
65 71 <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => nil, :user_id => @user, :key => User.current.rss_key} %>
66 72 <% end %>
67 73
68 74 <% content_for :header_tags do %>
69 75 <%= auto_discovery_link_tag(:atom, :controller => 'activities', :action => 'index', :user_id => @user, :format => :atom, :key => User.current.rss_key) %>
70 76 <% end %>
71 77 <% end %>
72 78 <%= call_hook :view_account_right_bottom, :user => @user %>
73 79 </div>
74 80
75 81 <% html_title @user.name %>
@@ -1,1168 +1,1169
1 1 en:
2 2 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
3 3 direction: ltr
4 4 date:
5 5 formats:
6 6 # Use the strftime parameters for formats.
7 7 # When no format has been given, it uses default.
8 8 # You can provide other formats here if you like!
9 9 default: "%m/%d/%Y"
10 10 short: "%b %d"
11 11 long: "%B %d, %Y"
12 12
13 13 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
14 14 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
15 15
16 16 # Don't forget the nil at the beginning; there's no such thing as a 0th month
17 17 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
18 18 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
19 19 # Used in date_select and datime_select.
20 20 order:
21 21 - :year
22 22 - :month
23 23 - :day
24 24
25 25 time:
26 26 formats:
27 27 default: "%m/%d/%Y %I:%M %p"
28 28 time: "%I:%M %p"
29 29 short: "%d %b %H:%M"
30 30 long: "%B %d, %Y %H:%M"
31 31 am: "am"
32 32 pm: "pm"
33 33
34 34 datetime:
35 35 distance_in_words:
36 36 half_a_minute: "half a minute"
37 37 less_than_x_seconds:
38 38 one: "less than 1 second"
39 39 other: "less than %{count} seconds"
40 40 x_seconds:
41 41 one: "1 second"
42 42 other: "%{count} seconds"
43 43 less_than_x_minutes:
44 44 one: "less than a minute"
45 45 other: "less than %{count} minutes"
46 46 x_minutes:
47 47 one: "1 minute"
48 48 other: "%{count} minutes"
49 49 about_x_hours:
50 50 one: "about 1 hour"
51 51 other: "about %{count} hours"
52 52 x_hours:
53 53 one: "1 hour"
54 54 other: "%{count} hours"
55 55 x_days:
56 56 one: "1 day"
57 57 other: "%{count} days"
58 58 about_x_months:
59 59 one: "about 1 month"
60 60 other: "about %{count} months"
61 61 x_months:
62 62 one: "1 month"
63 63 other: "%{count} months"
64 64 about_x_years:
65 65 one: "about 1 year"
66 66 other: "about %{count} years"
67 67 over_x_years:
68 68 one: "over 1 year"
69 69 other: "over %{count} years"
70 70 almost_x_years:
71 71 one: "almost 1 year"
72 72 other: "almost %{count} years"
73 73
74 74 number:
75 75 format:
76 76 separator: "."
77 77 delimiter: ""
78 78 precision: 3
79 79
80 80 human:
81 81 format:
82 82 delimiter: ""
83 83 precision: 3
84 84 storage_units:
85 85 format: "%n %u"
86 86 units:
87 87 byte:
88 88 one: "Byte"
89 89 other: "Bytes"
90 90 kb: "KB"
91 91 mb: "MB"
92 92 gb: "GB"
93 93 tb: "TB"
94 94
95 95 # Used in array.to_sentence.
96 96 support:
97 97 array:
98 98 sentence_connector: "and"
99 99 skip_last_comma: false
100 100
101 101 activerecord:
102 102 errors:
103 103 template:
104 104 header:
105 105 one: "1 error prohibited this %{model} from being saved"
106 106 other: "%{count} errors prohibited this %{model} from being saved"
107 107 messages:
108 108 inclusion: "is not included in the list"
109 109 exclusion: "is reserved"
110 110 invalid: "is invalid"
111 111 confirmation: "doesn't match confirmation"
112 112 accepted: "must be accepted"
113 113 empty: "cannot be empty"
114 114 blank: "cannot be blank"
115 115 too_long: "is too long (maximum is %{count} characters)"
116 116 too_short: "is too short (minimum is %{count} characters)"
117 117 wrong_length: "is the wrong length (should be %{count} characters)"
118 118 taken: "has already been taken"
119 119 not_a_number: "is not a number"
120 120 not_a_date: "is not a valid date"
121 121 greater_than: "must be greater than %{count}"
122 122 greater_than_or_equal_to: "must be greater than or equal to %{count}"
123 123 equal_to: "must be equal to %{count}"
124 124 less_than: "must be less than %{count}"
125 125 less_than_or_equal_to: "must be less than or equal to %{count}"
126 126 odd: "must be odd"
127 127 even: "must be even"
128 128 greater_than_start_date: "must be greater than start date"
129 129 not_same_project: "doesn't belong to the same project"
130 130 circular_dependency: "This relation would create a circular dependency"
131 131 cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks"
132 132 earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
133 133
134 134 actionview_instancetag_blank_option: Please select
135 135
136 136 general_text_No: 'No'
137 137 general_text_Yes: 'Yes'
138 138 general_text_no: 'no'
139 139 general_text_yes: 'yes'
140 140 general_lang_name: 'English'
141 141 general_csv_separator: ','
142 142 general_csv_decimal_separator: '.'
143 143 general_csv_encoding: ISO-8859-1
144 144 general_pdf_fontname: freesans
145 145 general_first_day_of_week: '7'
146 146
147 147 notice_account_updated: Account was successfully updated.
148 148 notice_account_invalid_creditentials: Invalid user or password
149 149 notice_account_password_updated: Password was successfully updated.
150 150 notice_account_wrong_password: Wrong password
151 151 notice_account_register_done: Account was successfully created. An email containing the instructions to activate your account was sent to %{email}.
152 152 notice_account_unknown_email: Unknown user.
153 153 notice_account_not_activated_yet: You haven't activated your account yet. If you want to receive a new activation email, please <a href="%{url}">click this link</a>.
154 154 notice_account_locked: Your account is locked.
155 155 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
156 156 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
157 157 notice_account_activated: Your account has been activated. You can now log in.
158 158 notice_successful_create: Successful creation.
159 159 notice_successful_update: Successful update.
160 160 notice_successful_delete: Successful deletion.
161 161 notice_successful_connection: Successful connection.
162 162 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
163 163 notice_locking_conflict: Data has been updated by another user.
164 164 notice_not_authorized: You are not authorized to access this page.
165 165 notice_not_authorized_archived_project: The project you're trying to access has been archived.
166 166 notice_email_sent: "An email was sent to %{value}"
167 167 notice_email_error: "An error occurred while sending mail (%{value})"
168 168 notice_feeds_access_key_reseted: Your Atom access key was reset.
169 169 notice_api_access_key_reseted: Your API access key was reset.
170 170 notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}."
171 171 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
172 172 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
173 173 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
174 174 notice_account_pending: "Your account was created and is now pending administrator approval."
175 175 notice_default_data_loaded: Default configuration successfully loaded.
176 176 notice_unable_delete_version: Unable to delete version.
177 177 notice_unable_delete_time_entry: Unable to delete time log entry.
178 178 notice_issue_done_ratios_updated: Issue done ratios updated.
179 179 notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})"
180 180 notice_issue_successful_create: "Issue %{id} created."
181 181 notice_issue_update_conflict: "The issue has been updated by an other user while you were editing it."
182 182 notice_account_deleted: "Your account has been permanently deleted."
183 183 notice_user_successful_create: "User %{id} created."
184 184 notice_new_password_must_be_different: The new password must be different from the current password
185 185 notice_import_finished: "All %{count} items have been imported."
186 186 notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported."
187 187
188 188 error_can_t_load_default_data: "Default configuration could not be loaded: %{value}"
189 189 error_scm_not_found: "The entry or revision was not found in the repository."
190 190 error_scm_command_failed: "An error occurred when trying to access the repository: %{value}"
191 191 error_scm_annotate: "The entry does not exist or cannot be annotated."
192 192 error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size."
193 193 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
194 194 error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.'
195 195 error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").'
196 196 error_can_not_delete_custom_field: Unable to delete custom field
197 197 error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted."
198 198 error_can_not_remove_role: "This role is in use and cannot be deleted."
199 199 error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened'
200 200 error_can_not_archive_project: This project cannot be archived
201 201 error_issue_done_ratios_not_updated: "Issue done ratios not updated."
202 202 error_workflow_copy_source: 'Please select a source tracker or role'
203 203 error_workflow_copy_target: 'Please select target tracker(s) and role(s)'
204 204 error_unable_delete_issue_status: 'Unable to delete issue status'
205 205 error_unable_to_connect: "Unable to connect (%{value})"
206 206 error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})"
207 207 error_session_expired: "Your session has expired. Please login again."
208 208 warning_attachments_not_saved: "%{count} file(s) could not be saved."
209 209 error_password_expired: "Your password has expired or the administrator requires you to change it."
210 210 error_invalid_file_encoding: "The file is not a valid %{encoding} encoded file"
211 211 error_invalid_csv_file_or_settings: "The file is not a CSV file or does not match the settings below"
212 212 error_can_not_read_import_file: "An error occurred while reading the file to import"
213 213
214 214 mail_subject_lost_password: "Your %{value} password"
215 215 mail_body_lost_password: 'To change your password, click on the following link:'
216 216 mail_subject_register: "Your %{value} account activation"
217 217 mail_body_register: 'To activate your account, click on the following link:'
218 218 mail_body_account_information_external: "You can use your %{value} account to log in."
219 219 mail_body_account_information: Your account information
220 220 mail_subject_account_activation_request: "%{value} account activation request"
221 221 mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:"
222 222 mail_subject_reminder: "%{count} issue(s) due in the next %{days} days"
223 223 mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:"
224 224 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
225 225 mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}."
226 226 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
227 227 mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}."
228 228
229 229 field_name: Name
230 230 field_description: Description
231 231 field_summary: Summary
232 232 field_is_required: Required
233 233 field_firstname: First name
234 234 field_lastname: Last name
235 235 field_mail: Email
236 236 field_address: Email
237 237 field_filename: File
238 238 field_filesize: Size
239 239 field_downloads: Downloads
240 240 field_author: Author
241 241 field_created_on: Created
242 242 field_updated_on: Updated
243 243 field_closed_on: Closed
244 244 field_field_format: Format
245 245 field_is_for_all: For all projects
246 246 field_possible_values: Possible values
247 247 field_regexp: Regular expression
248 248 field_min_length: Minimum length
249 249 field_max_length: Maximum length
250 250 field_value: Value
251 251 field_category: Category
252 252 field_title: Title
253 253 field_project: Project
254 254 field_issue: Issue
255 255 field_status: Status
256 256 field_notes: Notes
257 257 field_is_closed: Issue closed
258 258 field_is_default: Default value
259 259 field_tracker: Tracker
260 260 field_subject: Subject
261 261 field_due_date: Due date
262 262 field_assigned_to: Assignee
263 263 field_priority: Priority
264 264 field_fixed_version: Target version
265 265 field_user: User
266 266 field_principal: Principal
267 267 field_role: Role
268 268 field_homepage: Homepage
269 269 field_is_public: Public
270 270 field_parent: Subproject of
271 271 field_is_in_roadmap: Issues displayed in roadmap
272 272 field_login: Login
273 273 field_mail_notification: Email notifications
274 274 field_admin: Administrator
275 275 field_last_login_on: Last connection
276 276 field_language: Language
277 277 field_effective_date: Date
278 278 field_password: Password
279 279 field_new_password: New password
280 280 field_password_confirmation: Confirmation
281 281 field_version: Version
282 282 field_type: Type
283 283 field_host: Host
284 284 field_port: Port
285 285 field_account: Account
286 286 field_base_dn: Base DN
287 287 field_attr_login: Login attribute
288 288 field_attr_firstname: Firstname attribute
289 289 field_attr_lastname: Lastname attribute
290 290 field_attr_mail: Email attribute
291 291 field_onthefly: On-the-fly user creation
292 292 field_start_date: Start date
293 293 field_done_ratio: "% Done"
294 294 field_auth_source: Authentication mode
295 295 field_hide_mail: Hide my email address
296 296 field_comments: Comment
297 297 field_url: URL
298 298 field_start_page: Start page
299 299 field_subproject: Subproject
300 300 field_hours: Hours
301 301 field_activity: Activity
302 302 field_spent_on: Date
303 303 field_identifier: Identifier
304 304 field_is_filter: Used as a filter
305 305 field_issue_to: Related issue
306 306 field_delay: Delay
307 307 field_assignable: Issues can be assigned to this role
308 308 field_redirect_existing_links: Redirect existing links
309 309 field_estimated_hours: Estimated time
310 310 field_column_names: Columns
311 311 field_time_entries: Log time
312 312 field_time_zone: Time zone
313 313 field_searchable: Searchable
314 314 field_default_value: Default value
315 315 field_comments_sorting: Display comments
316 316 field_parent_title: Parent page
317 317 field_editable: Editable
318 318 field_watcher: Watcher
319 319 field_identity_url: OpenID URL
320 320 field_content: Content
321 321 field_group_by: Group results by
322 322 field_sharing: Sharing
323 323 field_parent_issue: Parent task
324 324 field_member_of_group: "Assignee's group"
325 325 field_assigned_to_role: "Assignee's role"
326 326 field_text: Text field
327 327 field_visible: Visible
328 328 field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text"
329 329 field_issues_visibility: Issues visibility
330 330 field_is_private: Private
331 331 field_commit_logs_encoding: Commit messages encoding
332 332 field_scm_path_encoding: Path encoding
333 333 field_path_to_repository: Path to repository
334 334 field_root_directory: Root directory
335 335 field_cvsroot: CVSROOT
336 336 field_cvs_module: Module
337 337 field_repository_is_default: Main repository
338 338 field_multiple: Multiple values
339 339 field_auth_source_ldap_filter: LDAP filter
340 340 field_core_fields: Standard fields
341 341 field_timeout: "Timeout (in seconds)"
342 342 field_board_parent: Parent forum
343 343 field_private_notes: Private notes
344 344 field_inherit_members: Inherit members
345 345 field_generate_password: Generate password
346 346 field_must_change_passwd: Must change password at next logon
347 347 field_default_status: Default status
348 348 field_users_visibility: Users visibility
349 349 field_time_entries_visibility: Time logs visibility
350 350 field_total_estimated_hours: Total estimated time
351 351
352 352 setting_app_title: Application title
353 353 setting_app_subtitle: Application subtitle
354 354 setting_welcome_text: Welcome text
355 355 setting_default_language: Default language
356 356 setting_login_required: Authentication required
357 357 setting_self_registration: Self-registration
358 358 setting_attachment_max_size: Maximum attachment size
359 359 setting_issues_export_limit: Issues export limit
360 360 setting_mail_from: Emission email address
361 361 setting_bcc_recipients: Blind carbon copy recipients (bcc)
362 362 setting_plain_text_mail: Plain text mail (no HTML)
363 363 setting_host_name: Host name and path
364 364 setting_text_formatting: Text formatting
365 365 setting_wiki_compression: Wiki history compression
366 366 setting_feeds_limit: Maximum number of items in Atom feeds
367 367 setting_default_projects_public: New projects are public by default
368 368 setting_autofetch_changesets: Fetch commits automatically
369 369 setting_sys_api_enabled: Enable WS for repository management
370 370 setting_commit_ref_keywords: Referencing keywords
371 371 setting_commit_fix_keywords: Fixing keywords
372 372 setting_autologin: Autologin
373 373 setting_date_format: Date format
374 374 setting_time_format: Time format
375 375 setting_cross_project_issue_relations: Allow cross-project issue relations
376 376 setting_cross_project_subtasks: Allow cross-project subtasks
377 377 setting_issue_list_default_columns: Default columns displayed on the issue list
378 378 setting_repositories_encodings: Attachments and repositories encodings
379 379 setting_emails_header: Email header
380 380 setting_emails_footer: Email footer
381 381 setting_protocol: Protocol
382 382 setting_per_page_options: Objects per page options
383 383 setting_user_format: Users display format
384 384 setting_activity_days_default: Days displayed on project activity
385 385 setting_display_subprojects_issues: Display subprojects issues on main projects by default
386 386 setting_enabled_scm: Enabled SCM
387 387 setting_mail_handler_body_delimiters: "Truncate emails after one of these lines"
388 388 setting_mail_handler_api_enabled: Enable WS for incoming emails
389 389 setting_mail_handler_api_key: API key
390 390 setting_sequential_project_identifiers: Generate sequential project identifiers
391 391 setting_gravatar_enabled: Use Gravatar user icons
392 392 setting_gravatar_default: Default Gravatar image
393 393 setting_diff_max_lines_displayed: Maximum number of diff lines displayed
394 394 setting_file_max_size_displayed: Maximum size of text files displayed inline
395 395 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
396 396 setting_openid: Allow OpenID login and registration
397 397 setting_password_max_age: Require password change after
398 398 setting_password_min_length: Minimum password length
399 399 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
400 400 setting_default_projects_modules: Default enabled modules for new projects
401 401 setting_issue_done_ratio: Calculate the issue done ratio with
402 402 setting_issue_done_ratio_issue_field: Use the issue field
403 403 setting_issue_done_ratio_issue_status: Use the issue status
404 404 setting_start_of_week: Start calendars on
405 405 setting_rest_api_enabled: Enable REST web service
406 406 setting_cache_formatted_text: Cache formatted text
407 407 setting_default_notification_option: Default notification option
408 408 setting_commit_logtime_enabled: Enable time logging
409 409 setting_commit_logtime_activity_id: Activity for logged time
410 410 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
411 411 setting_issue_group_assignment: Allow issue assignment to groups
412 412 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
413 413 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
414 414 setting_unsubscribe: Allow users to delete their own account
415 415 setting_session_lifetime: Session maximum lifetime
416 416 setting_session_timeout: Session inactivity timeout
417 417 setting_thumbnails_enabled: Display attachment thumbnails
418 418 setting_thumbnails_size: Thumbnails size (in pixels)
419 419 setting_non_working_week_days: Non-working days
420 420 setting_jsonp_enabled: Enable JSONP support
421 421 setting_default_projects_tracker_ids: Default trackers for new projects
422 422 setting_mail_handler_excluded_filenames: Exclude attachments by name
423 423 setting_force_default_language_for_anonymous: Force default language for anonymous users
424 424 setting_force_default_language_for_loggedin: Force default language for logged-in users
425 425 setting_link_copied_issue: Link issues on copy
426 426 setting_max_additional_emails: Maximum number of additional email addresses
427 427 setting_search_results_per_page: Search results per page
428 428
429 429 permission_add_project: Create project
430 430 permission_add_subprojects: Create subprojects
431 431 permission_edit_project: Edit project
432 432 permission_close_project: Close / reopen the project
433 433 permission_select_project_modules: Select project modules
434 434 permission_manage_members: Manage members
435 435 permission_manage_project_activities: Manage project activities
436 436 permission_manage_versions: Manage versions
437 437 permission_manage_categories: Manage issue categories
438 438 permission_view_issues: View Issues
439 439 permission_add_issues: Add issues
440 440 permission_edit_issues: Edit issues
441 441 permission_copy_issues: Copy issues
442 442 permission_manage_issue_relations: Manage issue relations
443 443 permission_set_issues_private: Set issues public or private
444 444 permission_set_own_issues_private: Set own issues public or private
445 445 permission_add_issue_notes: Add notes
446 446 permission_edit_issue_notes: Edit notes
447 447 permission_edit_own_issue_notes: Edit own notes
448 448 permission_view_private_notes: View private notes
449 449 permission_set_notes_private: Set notes as private
450 450 permission_move_issues: Move issues
451 451 permission_delete_issues: Delete issues
452 452 permission_manage_public_queries: Manage public queries
453 453 permission_save_queries: Save queries
454 454 permission_view_gantt: View gantt chart
455 455 permission_view_calendar: View calendar
456 456 permission_view_issue_watchers: View watchers list
457 457 permission_add_issue_watchers: Add watchers
458 458 permission_delete_issue_watchers: Delete watchers
459 459 permission_log_time: Log spent time
460 460 permission_view_time_entries: View spent time
461 461 permission_edit_time_entries: Edit time logs
462 462 permission_edit_own_time_entries: Edit own time logs
463 463 permission_manage_news: Manage news
464 464 permission_comment_news: Comment news
465 465 permission_view_documents: View documents
466 466 permission_add_documents: Add documents
467 467 permission_edit_documents: Edit documents
468 468 permission_delete_documents: Delete documents
469 469 permission_manage_files: Manage files
470 470 permission_view_files: View files
471 471 permission_manage_wiki: Manage wiki
472 472 permission_rename_wiki_pages: Rename wiki pages
473 473 permission_delete_wiki_pages: Delete wiki pages
474 474 permission_view_wiki_pages: View wiki
475 475 permission_view_wiki_edits: View wiki history
476 476 permission_edit_wiki_pages: Edit wiki pages
477 477 permission_delete_wiki_pages_attachments: Delete attachments
478 478 permission_protect_wiki_pages: Protect wiki pages
479 479 permission_manage_repository: Manage repository
480 480 permission_browse_repository: Browse repository
481 481 permission_view_changesets: View changesets
482 482 permission_commit_access: Commit access
483 483 permission_manage_boards: Manage forums
484 484 permission_view_messages: View messages
485 485 permission_add_messages: Post messages
486 486 permission_edit_messages: Edit messages
487 487 permission_edit_own_messages: Edit own messages
488 488 permission_delete_messages: Delete messages
489 489 permission_delete_own_messages: Delete own messages
490 490 permission_export_wiki_pages: Export wiki pages
491 491 permission_manage_subtasks: Manage subtasks
492 492 permission_manage_related_issues: Manage related issues
493 493 permission_import_issues: Import issues
494 494
495 495 project_module_issue_tracking: Issue tracking
496 496 project_module_time_tracking: Time tracking
497 497 project_module_news: News
498 498 project_module_documents: Documents
499 499 project_module_files: Files
500 500 project_module_wiki: Wiki
501 501 project_module_repository: Repository
502 502 project_module_boards: Forums
503 503 project_module_calendar: Calendar
504 504 project_module_gantt: Gantt
505 505
506 506 label_user: User
507 507 label_user_plural: Users
508 508 label_user_new: New user
509 509 label_user_anonymous: Anonymous
510 510 label_project: Project
511 511 label_project_new: New project
512 512 label_project_plural: Projects
513 513 label_x_projects:
514 514 zero: no projects
515 515 one: 1 project
516 516 other: "%{count} projects"
517 517 label_project_all: All Projects
518 518 label_project_latest: Latest projects
519 519 label_issue: Issue
520 520 label_issue_new: New issue
521 521 label_issue_plural: Issues
522 522 label_issue_view_all: View all issues
523 523 label_issues_by: "Issues by %{value}"
524 524 label_issue_added: Issue added
525 525 label_issue_updated: Issue updated
526 526 label_issue_note_added: Note added
527 527 label_issue_status_updated: Status updated
528 528 label_issue_assigned_to_updated: Assignee updated
529 529 label_issue_priority_updated: Priority updated
530 530 label_document: Document
531 531 label_document_new: New document
532 532 label_document_plural: Documents
533 533 label_document_added: Document added
534 534 label_role: Role
535 535 label_role_plural: Roles
536 536 label_role_new: New role
537 537 label_role_and_permissions: Roles and permissions
538 538 label_role_anonymous: Anonymous
539 539 label_role_non_member: Non member
540 540 label_member: Member
541 541 label_member_new: New member
542 542 label_member_plural: Members
543 543 label_tracker: Tracker
544 544 label_tracker_plural: Trackers
545 545 label_tracker_new: New tracker
546 546 label_workflow: Workflow
547 547 label_issue_status: Issue status
548 548 label_issue_status_plural: Issue statuses
549 549 label_issue_status_new: New status
550 550 label_issue_category: Issue category
551 551 label_issue_category_plural: Issue categories
552 552 label_issue_category_new: New category
553 553 label_custom_field: Custom field
554 554 label_custom_field_plural: Custom fields
555 555 label_custom_field_new: New custom field
556 556 label_enumerations: Enumerations
557 557 label_enumeration_new: New value
558 558 label_information: Information
559 559 label_information_plural: Information
560 560 label_please_login: Please log in
561 561 label_register: Register
562 562 label_login_with_open_id_option: or login with OpenID
563 563 label_password_lost: Lost password
564 564 label_password_required: Confirm your password to continue
565 565 label_home: Home
566 566 label_my_page: My page
567 567 label_my_account: My account
568 568 label_my_projects: My projects
569 569 label_my_page_block: My page block
570 570 label_administration: Administration
571 571 label_login: Sign in
572 572 label_logout: Sign out
573 573 label_help: Help
574 574 label_reported_issues: Reported issues
575 label_assigned_issues: Assigned issues
575 576 label_assigned_to_me_issues: Issues assigned to me
576 577 label_last_login: Last connection
577 578 label_registered_on: Registered on
578 579 label_activity: Activity
579 580 label_overall_activity: Overall activity
580 581 label_user_activity: "%{value}'s activity"
581 582 label_new: New
582 583 label_logged_as: Logged in as
583 584 label_environment: Environment
584 585 label_authentication: Authentication
585 586 label_auth_source: Authentication mode
586 587 label_auth_source_new: New authentication mode
587 588 label_auth_source_plural: Authentication modes
588 589 label_subproject_plural: Subprojects
589 590 label_subproject_new: New subproject
590 591 label_and_its_subprojects: "%{value} and its subprojects"
591 592 label_min_max_length: Min - Max length
592 593 label_list: List
593 594 label_date: Date
594 595 label_integer: Integer
595 596 label_float: Float
596 597 label_boolean: Boolean
597 598 label_string: Text
598 599 label_text: Long text
599 600 label_attribute: Attribute
600 601 label_attribute_plural: Attributes
601 602 label_no_data: No data to display
602 603 label_change_status: Change status
603 604 label_history: History
604 605 label_attachment: File
605 606 label_attachment_new: New file
606 607 label_attachment_delete: Delete file
607 608 label_attachment_plural: Files
608 609 label_file_added: File added
609 610 label_report: Report
610 611 label_report_plural: Reports
611 612 label_news: News
612 613 label_news_new: Add news
613 614 label_news_plural: News
614 615 label_news_latest: Latest news
615 616 label_news_view_all: View all news
616 617 label_news_added: News added
617 618 label_news_comment_added: Comment added to a news
618 619 label_settings: Settings
619 620 label_overview: Overview
620 621 label_version: Version
621 622 label_version_new: New version
622 623 label_version_plural: Versions
623 624 label_close_versions: Close completed versions
624 625 label_confirmation: Confirmation
625 626 label_export_to: 'Also available in:'
626 627 label_read: Read...
627 628 label_public_projects: Public projects
628 629 label_open_issues: open
629 630 label_open_issues_plural: open
630 631 label_closed_issues: closed
631 632 label_closed_issues_plural: closed
632 633 label_x_open_issues_abbr_on_total:
633 634 zero: 0 open / %{total}
634 635 one: 1 open / %{total}
635 636 other: "%{count} open / %{total}"
636 637 label_x_open_issues_abbr:
637 638 zero: 0 open
638 639 one: 1 open
639 640 other: "%{count} open"
640 641 label_x_closed_issues_abbr:
641 642 zero: 0 closed
642 643 one: 1 closed
643 644 other: "%{count} closed"
644 645 label_x_issues:
645 646 zero: 0 issues
646 647 one: 1 issue
647 648 other: "%{count} issues"
648 649 label_total: Total
649 650 label_total_plural: Totals
650 651 label_total_time: Total time
651 652 label_permissions: Permissions
652 653 label_current_status: Current status
653 654 label_new_statuses_allowed: New statuses allowed
654 655 label_all: all
655 656 label_any: any
656 657 label_none: none
657 658 label_nobody: nobody
658 659 label_next: Next
659 660 label_previous: Previous
660 661 label_used_by: Used by
661 662 label_details: Details
662 663 label_add_note: Add a note
663 664 label_calendar: Calendar
664 665 label_months_from: months from
665 666 label_gantt: Gantt
666 667 label_internal: Internal
667 668 label_last_changes: "last %{count} changes"
668 669 label_change_view_all: View all changes
669 670 label_personalize_page: Personalize this page
670 671 label_comment: Comment
671 672 label_comment_plural: Comments
672 673 label_x_comments:
673 674 zero: no comments
674 675 one: 1 comment
675 676 other: "%{count} comments"
676 677 label_comment_add: Add a comment
677 678 label_comment_added: Comment added
678 679 label_comment_delete: Delete comments
679 680 label_query: Custom query
680 681 label_query_plural: Custom queries
681 682 label_query_new: New query
682 683 label_my_queries: My custom queries
683 684 label_filter_add: Add filter
684 685 label_filter_plural: Filters
685 686 label_equals: is
686 687 label_not_equals: is not
687 688 label_in_less_than: in less than
688 689 label_in_more_than: in more than
689 690 label_in_the_next_days: in the next
690 691 label_in_the_past_days: in the past
691 692 label_greater_or_equal: '>='
692 693 label_less_or_equal: '<='
693 694 label_between: between
694 695 label_in: in
695 696 label_today: today
696 697 label_all_time: all time
697 698 label_yesterday: yesterday
698 699 label_this_week: this week
699 700 label_last_week: last week
700 701 label_last_n_weeks: "last %{count} weeks"
701 702 label_last_n_days: "last %{count} days"
702 703 label_this_month: this month
703 704 label_last_month: last month
704 705 label_this_year: this year
705 706 label_date_range: Date range
706 707 label_less_than_ago: less than days ago
707 708 label_more_than_ago: more than days ago
708 709 label_ago: days ago
709 710 label_contains: contains
710 711 label_not_contains: doesn't contain
711 712 label_any_issues_in_project: any issues in project
712 713 label_any_issues_not_in_project: any issues not in project
713 714 label_no_issues_in_project: no issues in project
714 715 label_day_plural: days
715 716 label_repository: Repository
716 717 label_repository_new: New repository
717 718 label_repository_plural: Repositories
718 719 label_browse: Browse
719 720 label_branch: Branch
720 721 label_tag: Tag
721 722 label_revision: Revision
722 723 label_revision_plural: Revisions
723 724 label_revision_id: "Revision %{value}"
724 725 label_associated_revisions: Associated revisions
725 726 label_added: added
726 727 label_modified: modified
727 728 label_copied: copied
728 729 label_renamed: renamed
729 730 label_deleted: deleted
730 731 label_latest_revision: Latest revision
731 732 label_latest_revision_plural: Latest revisions
732 733 label_view_revisions: View revisions
733 734 label_view_all_revisions: View all revisions
734 735 label_max_size: Maximum size
735 736 label_sort_highest: Move to top
736 737 label_sort_higher: Move up
737 738 label_sort_lower: Move down
738 739 label_sort_lowest: Move to bottom
739 740 label_roadmap: Roadmap
740 741 label_roadmap_due_in: "Due in %{value}"
741 742 label_roadmap_overdue: "%{value} late"
742 743 label_roadmap_no_issues: No issues for this version
743 744 label_search: Search
744 745 label_result_plural: Results
745 746 label_all_words: All words
746 747 label_wiki: Wiki
747 748 label_wiki_edit: Wiki edit
748 749 label_wiki_edit_plural: Wiki edits
749 750 label_wiki_page: Wiki page
750 751 label_wiki_page_plural: Wiki pages
751 752 label_index_by_title: Index by title
752 753 label_index_by_date: Index by date
753 754 label_current_version: Current version
754 755 label_preview: Preview
755 756 label_feed_plural: Feeds
756 757 label_changes_details: Details of all changes
757 758 label_issue_tracking: Issue tracking
758 759 label_spent_time: Spent time
759 760 label_total_spent_time: Total spent time
760 761 label_overall_spent_time: Overall spent time
761 762 label_f_hour: "%{value} hour"
762 763 label_f_hour_plural: "%{value} hours"
763 764 label_time_tracking: Time tracking
764 765 label_change_plural: Changes
765 766 label_statistics: Statistics
766 767 label_commits_per_month: Commits per month
767 768 label_commits_per_author: Commits per author
768 769 label_diff: diff
769 770 label_view_diff: View differences
770 771 label_diff_inline: inline
771 772 label_diff_side_by_side: side by side
772 773 label_options: Options
773 774 label_copy_workflow_from: Copy workflow from
774 775 label_permissions_report: Permissions report
775 776 label_watched_issues: Watched issues
776 777 label_related_issues: Related issues
777 778 label_applied_status: Applied status
778 779 label_loading: Loading...
779 780 label_relation_new: New relation
780 781 label_relation_delete: Delete relation
781 782 label_relates_to: Related to
782 783 label_duplicates: Duplicates
783 784 label_duplicated_by: Duplicated by
784 785 label_blocks: Blocks
785 786 label_blocked_by: Blocked by
786 787 label_precedes: Precedes
787 788 label_follows: Follows
788 789 label_copied_to: Copied to
789 790 label_copied_from: Copied from
790 791 label_end_to_start: end to start
791 792 label_end_to_end: end to end
792 793 label_start_to_start: start to start
793 794 label_start_to_end: start to end
794 795 label_stay_logged_in: Stay logged in
795 796 label_disabled: disabled
796 797 label_show_completed_versions: Show completed versions
797 798 label_me: me
798 799 label_board: Forum
799 800 label_board_new: New forum
800 801 label_board_plural: Forums
801 802 label_board_locked: Locked
802 803 label_board_sticky: Sticky
803 804 label_topic_plural: Topics
804 805 label_message_plural: Messages
805 806 label_message_last: Last message
806 807 label_message_new: New message
807 808 label_message_posted: Message added
808 809 label_reply_plural: Replies
809 810 label_send_information: Send account information to the user
810 811 label_year: Year
811 812 label_month: Month
812 813 label_week: Week
813 814 label_date_from: From
814 815 label_date_to: To
815 816 label_language_based: Based on user's language
816 817 label_sort_by: "Sort by %{value}"
817 818 label_send_test_email: Send a test email
818 819 label_feeds_access_key: Atom access key
819 820 label_missing_feeds_access_key: Missing a Atom access key
820 821 label_feeds_access_key_created_on: "Atom access key created %{value} ago"
821 822 label_module_plural: Modules
822 823 label_added_time_by: "Added by %{author} %{age} ago"
823 824 label_updated_time_by: "Updated by %{author} %{age} ago"
824 825 label_updated_time: "Updated %{value} ago"
825 826 label_jump_to_a_project: Jump to a project...
826 827 label_file_plural: Files
827 828 label_changeset_plural: Changesets
828 829 label_default_columns: Default columns
829 830 label_no_change_option: (No change)
830 831 label_bulk_edit_selected_issues: Bulk edit selected issues
831 832 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
832 833 label_theme: Theme
833 834 label_default: Default
834 835 label_search_titles_only: Search titles only
835 836 label_user_mail_option_all: "For any event on all my projects"
836 837 label_user_mail_option_selected: "For any event on the selected projects only..."
837 838 label_user_mail_option_none: "No events"
838 839 label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in"
839 840 label_user_mail_option_only_assigned: "Only for things I am assigned to"
840 841 label_user_mail_option_only_owner: "Only for things I am the owner of"
841 842 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
842 843 label_registration_activation_by_email: account activation by email
843 844 label_registration_manual_activation: manual account activation
844 845 label_registration_automatic_activation: automatic account activation
845 846 label_display_per_page: "Per page: %{value}"
846 847 label_age: Age
847 848 label_change_properties: Change properties
848 849 label_general: General
849 850 label_more: More
850 851 label_scm: SCM
851 852 label_plugins: Plugins
852 853 label_ldap_authentication: LDAP authentication
853 854 label_downloads_abbr: D/L
854 855 label_optional_description: Optional description
855 856 label_add_another_file: Add another file
856 857 label_preferences: Preferences
857 858 label_chronological_order: In chronological order
858 859 label_reverse_chronological_order: In reverse chronological order
859 860 label_planning: Planning
860 861 label_incoming_emails: Incoming emails
861 862 label_generate_key: Generate a key
862 863 label_issue_watchers: Watchers
863 864 label_example: Example
864 865 label_display: Display
865 866 label_sort: Sort
866 867 label_ascending: Ascending
867 868 label_descending: Descending
868 869 label_date_from_to: From %{start} to %{end}
869 870 label_wiki_content_added: Wiki page added
870 871 label_wiki_content_updated: Wiki page updated
871 872 label_group: Group
872 873 label_group_plural: Groups
873 874 label_group_new: New group
874 875 label_group_anonymous: Anonymous users
875 876 label_group_non_member: Non member users
876 877 label_time_entry_plural: Spent time
877 878 label_version_sharing_none: Not shared
878 879 label_version_sharing_descendants: With subprojects
879 880 label_version_sharing_hierarchy: With project hierarchy
880 881 label_version_sharing_tree: With project tree
881 882 label_version_sharing_system: With all projects
882 883 label_update_issue_done_ratios: Update issue done ratios
883 884 label_copy_source: Source
884 885 label_copy_target: Target
885 886 label_copy_same_as_target: Same as target
886 887 label_display_used_statuses_only: Only display statuses that are used by this tracker
887 888 label_api_access_key: API access key
888 889 label_missing_api_access_key: Missing an API access key
889 890 label_api_access_key_created_on: "API access key created %{value} ago"
890 891 label_profile: Profile
891 892 label_subtask_plural: Subtasks
892 893 label_project_copy_notifications: Send email notifications during the project copy
893 894 label_principal_search: "Search for user or group:"
894 895 label_user_search: "Search for user:"
895 896 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
896 897 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
897 898 label_issues_visibility_all: All issues
898 899 label_issues_visibility_public: All non private issues
899 900 label_issues_visibility_own: Issues created by or assigned to the user
900 901 label_git_report_last_commit: Report last commit for files and directories
901 902 label_parent_revision: Parent
902 903 label_child_revision: Child
903 904 label_export_options: "%{export_format} export options"
904 905 label_copy_attachments: Copy attachments
905 906 label_copy_subtasks: Copy subtasks
906 907 label_item_position: "%{position} of %{count}"
907 908 label_completed_versions: Completed versions
908 909 label_search_for_watchers: Search for watchers to add
909 910 label_session_expiration: Session expiration
910 911 label_show_closed_projects: View closed projects
911 912 label_status_transitions: Status transitions
912 913 label_fields_permissions: Fields permissions
913 914 label_readonly: Read-only
914 915 label_required: Required
915 916 label_hidden: Hidden
916 917 label_attribute_of_project: "Project's %{name}"
917 918 label_attribute_of_issue: "Issue's %{name}"
918 919 label_attribute_of_author: "Author's %{name}"
919 920 label_attribute_of_assigned_to: "Assignee's %{name}"
920 921 label_attribute_of_user: "User's %{name}"
921 922 label_attribute_of_fixed_version: "Target version's %{name}"
922 923 label_cross_project_descendants: With subprojects
923 924 label_cross_project_tree: With project tree
924 925 label_cross_project_hierarchy: With project hierarchy
925 926 label_cross_project_system: With all projects
926 927 label_gantt_progress_line: Progress line
927 928 label_visibility_private: to me only
928 929 label_visibility_roles: to these roles only
929 930 label_visibility_public: to any users
930 931 label_link: Link
931 932 label_only: only
932 933 label_drop_down_list: drop-down list
933 934 label_checkboxes: checkboxes
934 935 label_radio_buttons: radio buttons
935 936 label_link_values_to: Link values to URL
936 937 label_custom_field_select_type: Select the type of object to which the custom field is to be attached
937 938 label_check_for_updates: Check for updates
938 939 label_latest_compatible_version: Latest compatible version
939 940 label_unknown_plugin: Unknown plugin
940 941 label_add_projects: Add projects
941 942 label_users_visibility_all: All active users
942 943 label_users_visibility_members_of_visible_projects: Members of visible projects
943 944 label_edit_attachments: Edit attached files
944 945 label_link_copied_issue: Link copied issue
945 946 label_ask: Ask
946 947 label_search_attachments_yes: Search attachment filenames and descriptions
947 948 label_search_attachments_no: Do not search attachments
948 949 label_search_attachments_only: Search attachments only
949 950 label_search_open_issues_only: Open issues only
950 951 label_email_address_plural: Emails
951 952 label_email_address_add: Add email address
952 953 label_enable_notifications: Enable notifications
953 954 label_disable_notifications: Disable notifications
954 955 label_blank_value: blank
955 956 label_parent_task_attributes: Parent tasks attributes
956 957 label_parent_task_attributes_derived: Calculated from subtasks
957 958 label_parent_task_attributes_independent: Independent of subtasks
958 959 label_time_entries_visibility_all: All time entries
959 960 label_time_entries_visibility_own: Time entries created by the user
960 961 label_member_management: Member management
961 962 label_member_management_all_roles: All roles
962 963 label_member_management_selected_roles_only: Only these roles
963 964 label_import_issues: Import issues
964 965 label_select_file_to_import: Select the file to import
965 966 label_fields_separator: Field separator
966 967 label_fields_wrapper: Field wrapper
967 968 label_encoding: Encoding
968 969 label_comma_char: Comma
969 970 label_semi_colon_char: Semi colon
970 971 label_quote_char: Quote
971 972 label_double_quote_char: Double quote
972 973 label_fields_mapping: Fields mapping
973 974 label_file_content_preview: File content preview
974 975 label_create_missing_values: Create missing values
975 976 label_api: API
976 977
977 978 button_login: Login
978 979 button_submit: Submit
979 980 button_save: Save
980 981 button_check_all: Check all
981 982 button_uncheck_all: Uncheck all
982 983 button_collapse_all: Collapse all
983 984 button_expand_all: Expand all
984 985 button_delete: Delete
985 986 button_create: Create
986 987 button_create_and_continue: Create and continue
987 988 button_test: Test
988 989 button_edit: Edit
989 990 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
990 991 button_add: Add
991 992 button_change: Change
992 993 button_apply: Apply
993 994 button_clear: Clear
994 995 button_lock: Lock
995 996 button_unlock: Unlock
996 997 button_download: Download
997 998 button_list: List
998 999 button_view: View
999 1000 button_move: Move
1000 1001 button_move_and_follow: Move and follow
1001 1002 button_back: Back
1002 1003 button_cancel: Cancel
1003 1004 button_activate: Activate
1004 1005 button_sort: Sort
1005 1006 button_log_time: Log time
1006 1007 button_rollback: Rollback to this version
1007 1008 button_watch: Watch
1008 1009 button_unwatch: Unwatch
1009 1010 button_reply: Reply
1010 1011 button_archive: Archive
1011 1012 button_unarchive: Unarchive
1012 1013 button_reset: Reset
1013 1014 button_rename: Rename
1014 1015 button_change_password: Change password
1015 1016 button_copy: Copy
1016 1017 button_copy_and_follow: Copy and follow
1017 1018 button_annotate: Annotate
1018 1019 button_update: Update
1019 1020 button_configure: Configure
1020 1021 button_quote: Quote
1021 1022 button_duplicate: Duplicate
1022 1023 button_show: Show
1023 1024 button_hide: Hide
1024 1025 button_edit_section: Edit this section
1025 1026 button_export: Export
1026 1027 button_delete_my_account: Delete my account
1027 1028 button_close: Close
1028 1029 button_reopen: Reopen
1029 1030 button_import: Import
1030 1031
1031 1032 status_active: active
1032 1033 status_registered: registered
1033 1034 status_locked: locked
1034 1035
1035 1036 project_status_active: active
1036 1037 project_status_closed: closed
1037 1038 project_status_archived: archived
1038 1039
1039 1040 version_status_open: open
1040 1041 version_status_locked: locked
1041 1042 version_status_closed: closed
1042 1043
1043 1044 field_active: Active
1044 1045
1045 1046 text_select_mail_notifications: Select actions for which email notifications should be sent.
1046 1047 text_regexp_info: eg. ^[A-Z0-9]+$
1047 1048 text_min_max_length_info: 0 means no restriction
1048 1049 text_project_destroy_confirmation: Are you sure you want to delete this project and related data?
1049 1050 text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted."
1050 1051 text_workflow_edit: Select a role and a tracker to edit the workflow
1051 1052 text_are_you_sure: Are you sure?
1052 1053 text_journal_changed: "%{label} changed from %{old} to %{new}"
1053 1054 text_journal_changed_no_detail: "%{label} updated"
1054 1055 text_journal_set_to: "%{label} set to %{value}"
1055 1056 text_journal_deleted: "%{label} deleted (%{old})"
1056 1057 text_journal_added: "%{label} %{value} added"
1057 1058 text_tip_issue_begin_day: issue beginning this day
1058 1059 text_tip_issue_end_day: issue ending this day
1059 1060 text_tip_issue_begin_end_day: issue beginning and ending this day
1060 1061 text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter.<br />Once saved, the identifier cannot be changed.'
1061 1062 text_caracters_maximum: "%{count} characters maximum."
1062 1063 text_caracters_minimum: "Must be at least %{count} characters long."
1063 1064 text_length_between: "Length between %{min} and %{max} characters."
1064 1065 text_tracker_no_workflow: No workflow defined for this tracker
1065 1066 text_unallowed_characters: Unallowed characters
1066 1067 text_comma_separated: Multiple values allowed (comma separated).
1067 1068 text_line_separated: Multiple values allowed (one line for each value).
1068 1069 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
1069 1070 text_issue_added: "Issue %{id} has been reported by %{author}."
1070 1071 text_issue_updated: "Issue %{id} has been updated by %{author}."
1071 1072 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content?
1072 1073 text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?"
1073 1074 text_issue_category_destroy_assignments: Remove category assignments
1074 1075 text_issue_category_reassign_to: Reassign issues to this category
1075 1076 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)."
1076 1077 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."
1077 1078 text_load_default_configuration: Load the default configuration
1078 1079 text_status_changed_by_changeset: "Applied in changeset %{value}."
1079 1080 text_time_logged_by_changeset: "Applied in changeset %{value}."
1080 1081 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?'
1081 1082 text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)."
1082 1083 text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?'
1083 1084 text_select_project_modules: 'Select modules to enable for this project:'
1084 1085 text_default_administrator_account_changed: Default administrator account changed
1085 1086 text_file_repository_writable: Attachments directory writable
1086 1087 text_plugin_assets_writable: Plugin assets directory writable
1087 1088 text_rmagick_available: RMagick available (optional)
1088 1089 text_convert_available: ImageMagick convert available (optional)
1089 1090 text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?"
1090 1091 text_destroy_time_entries: Delete reported hours
1091 1092 text_assign_time_entries_to_project: Assign reported hours to the project
1092 1093 text_reassign_time_entries: 'Reassign reported hours to this issue:'
1093 1094 text_user_wrote: "%{value} wrote:"
1094 1095 text_enumeration_destroy_question: "%{count} objects are assigned to this value."
1095 1096 text_enumeration_category_reassign_to: 'Reassign them to this value:'
1096 1097 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them."
1097 1098 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."
1098 1099 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
1099 1100 text_custom_field_possible_values_info: 'One line for each value'
1100 1101 text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?"
1101 1102 text_wiki_page_nullify_children: "Keep child pages as root pages"
1102 1103 text_wiki_page_destroy_children: "Delete child pages and all their descendants"
1103 1104 text_wiki_page_reassign_children: "Reassign child pages to this parent page"
1104 1105 text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
1105 1106 text_zoom_in: Zoom in
1106 1107 text_zoom_out: Zoom out
1107 1108 text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page."
1108 1109 text_scm_path_encoding_note: "Default: UTF-8"
1109 1110 text_subversion_repository_note: "Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://"
1110 1111 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
1111 1112 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
1112 1113 text_scm_command: Command
1113 1114 text_scm_command_version: Version
1114 1115 text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it.
1115 1116 text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel.
1116 1117 text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)"
1117 1118 text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes"
1118 1119 text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}"
1119 1120 text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it."
1120 1121 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1121 1122 text_project_closed: This project is closed and read-only.
1122 1123 text_turning_multiple_off: "If you disable multiple values, multiple values will be removed in order to preserve only one value per item."
1123 1124
1124 1125 default_role_manager: Manager
1125 1126 default_role_developer: Developer
1126 1127 default_role_reporter: Reporter
1127 1128 default_tracker_bug: Bug
1128 1129 default_tracker_feature: Feature
1129 1130 default_tracker_support: Support
1130 1131 default_issue_status_new: New
1131 1132 default_issue_status_in_progress: In Progress
1132 1133 default_issue_status_resolved: Resolved
1133 1134 default_issue_status_feedback: Feedback
1134 1135 default_issue_status_closed: Closed
1135 1136 default_issue_status_rejected: Rejected
1136 1137 default_doc_category_user: User documentation
1137 1138 default_doc_category_tech: Technical documentation
1138 1139 default_priority_low: Low
1139 1140 default_priority_normal: Normal
1140 1141 default_priority_high: High
1141 1142 default_priority_urgent: Urgent
1142 1143 default_priority_immediate: Immediate
1143 1144 default_activity_design: Design
1144 1145 default_activity_development: Development
1145 1146
1146 1147 enumeration_issue_priorities: Issue priorities
1147 1148 enumeration_doc_categories: Document categories
1148 1149 enumeration_activities: Activities (time tracking)
1149 1150 enumeration_system_activity: System Activity
1150 1151 description_filter: Filter
1151 1152 description_search: Searchfield
1152 1153 description_choose_project: Projects
1153 1154 description_project_scope: Search scope
1154 1155 description_notes: Notes
1155 1156 description_message_content: Message content
1156 1157 description_query_sort_criteria_attribute: Sort attribute
1157 1158 description_query_sort_criteria_direction: Sort direction
1158 1159 description_user_mail_notification: Mail notification settings
1159 1160 description_available_columns: Available Columns
1160 1161 description_selected_columns: Selected Columns
1161 1162 description_all_columns: All Columns
1162 1163 description_issue_category_reassign: Choose issue category
1163 1164 description_wiki_subpages_reassign: Choose new parent page
1164 1165 description_date_range_list: Choose range from list
1165 1166 description_date_range_interval: Choose range by selecting start and end date
1166 1167 description_date_from: Enter start date
1167 1168 description_date_to: Enter end date
1168 1169 text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.'
General Comments 0
You need to be logged in to leave comments. Login now