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