@@ -1,122 +1,122 | |||||
1 | # Redmine - project management software |
|
1 | # Redmine - project management software | |
2 | # Copyright (C) 2006-2013 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2013 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software |
|
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 |
|
17 | |||
18 | class TimeEntryQuery < Query |
|
18 | class TimeEntryQuery < Query | |
19 |
|
19 | |||
20 | self.queried_class = TimeEntry |
|
20 | self.queried_class = TimeEntry | |
21 |
|
21 | |||
22 | self.available_columns = [ |
|
22 | self.available_columns = [ | |
23 | QueryColumn.new(:project, :sortable => "#{Project.table_name}.name", :groupable => true), |
|
23 | QueryColumn.new(:project, :sortable => "#{Project.table_name}.name", :groupable => true), | |
24 | QueryColumn.new(:spent_on, :sortable => ["#{TimeEntry.table_name}.spent_on", "#{TimeEntry.table_name}.created_on"], :default_order => 'desc', :groupable => true), |
|
24 | QueryColumn.new(:spent_on, :sortable => ["#{TimeEntry.table_name}.spent_on", "#{TimeEntry.table_name}.created_on"], :default_order => 'desc', :groupable => true), | |
25 | QueryColumn.new(:user, :sortable => lambda {User.fields_for_order_statement}, :groupable => true), |
|
25 | QueryColumn.new(:user, :sortable => lambda {User.fields_for_order_statement}, :groupable => true), | |
26 | QueryColumn.new(:activity, :sortable => "#{TimeEntryActivity.table_name}.position", :groupable => true), |
|
26 | QueryColumn.new(:activity, :sortable => "#{TimeEntryActivity.table_name}.position", :groupable => true), | |
27 | QueryColumn.new(:issue, :sortable => "#{Issue.table_name}.id"), |
|
27 | QueryColumn.new(:issue, :sortable => "#{Issue.table_name}.id"), | |
28 | QueryColumn.new(:comments), |
|
28 | QueryColumn.new(:comments), | |
29 | QueryColumn.new(:hours, :sortable => "#{TimeEntry.table_name}.hours"), |
|
29 | QueryColumn.new(:hours, :sortable => "#{TimeEntry.table_name}.hours"), | |
30 | ] |
|
30 | ] | |
31 |
|
31 | |||
32 | def initialize(attributes=nil, *args) |
|
32 | def initialize(attributes=nil, *args) | |
33 | super attributes |
|
33 | super attributes | |
34 | self.filters ||= {} |
|
34 | self.filters ||= {} | |
35 | add_filter('spent_on', '*') unless filters.present? |
|
35 | add_filter('spent_on', '*') unless filters.present? | |
36 | end |
|
36 | end | |
37 |
|
37 | |||
38 | def available_filters |
|
38 | def available_filters | |
39 | return @available_filters if @available_filters |
|
39 | return @available_filters if @available_filters | |
40 | @available_filters = { |
|
40 | @available_filters = { | |
41 | "spent_on" => { :type => :date_past, :order => 0 }, |
|
41 | "spent_on" => { :type => :date_past, :order => 0 }, | |
42 | "comments" => { :type => :text, :order => 5 }, |
|
42 | "comments" => { :type => :text, :order => 5 }, | |
43 | "hours" => { :type => :float, :order => 6 } |
|
43 | "hours" => { :type => :float, :order => 6 } | |
44 | } |
|
44 | } | |
45 |
|
45 | |||
46 | principals = [] |
|
46 | principals = [] | |
47 | if project |
|
47 | if project | |
48 | principals += project.principals.sort |
|
48 | principals += project.principals.sort | |
49 | unless project.leaf? |
|
49 | unless project.leaf? | |
50 | subprojects = project.descendants.visible.all |
|
50 | subprojects = project.descendants.visible.all | |
51 | if subprojects.any? |
|
51 | if subprojects.any? | |
52 | @available_filters["subproject_id"] = { |
|
52 | @available_filters["subproject_id"] = { | |
53 | :type => :list_subprojects, :order => 1, |
|
53 | :type => :list_subprojects, :order => 1, | |
54 | :values => subprojects.collect{|s| [s.name, s.id.to_s] } |
|
54 | :values => subprojects.collect{|s| [s.name, s.id.to_s] } | |
55 | } |
|
55 | } | |
56 | principals += Principal.member_of(subprojects) |
|
56 | principals += Principal.member_of(subprojects) | |
57 | end |
|
57 | end | |
58 | end |
|
58 | end | |
59 | else |
|
59 | else | |
60 | if all_projects.any? |
|
60 | if all_projects.any? | |
61 | # members of visible projects |
|
61 | # members of visible projects | |
62 | principals += Principal.member_of(all_projects) |
|
62 | principals += Principal.member_of(all_projects) | |
63 | # project filter |
|
63 | # project filter | |
64 | project_values = [] |
|
64 | project_values = [] | |
65 | if User.current.logged? && User.current.memberships.any? |
|
65 | if User.current.logged? && User.current.memberships.any? | |
66 | project_values << ["<< #{l(:label_my_projects).downcase} >>", "mine"] |
|
66 | project_values << ["<< #{l(:label_my_projects).downcase} >>", "mine"] | |
67 | end |
|
67 | end | |
68 | project_values += all_projects_values |
|
68 | project_values += all_projects_values | |
69 | @available_filters["project_id"] = { |
|
69 | @available_filters["project_id"] = { | |
70 | :type => :list, :order => 1, :values => project_values |
|
70 | :type => :list, :order => 1, :values => project_values | |
71 | } unless project_values.empty? |
|
71 | } unless project_values.empty? | |
72 | end |
|
72 | end | |
73 | end |
|
73 | end | |
74 | principals.uniq! |
|
74 | principals.uniq! | |
75 | principals.sort! |
|
75 | principals.sort! | |
76 | users = principals.select {|p| p.is_a?(User)} |
|
76 | users = principals.select {|p| p.is_a?(User)} | |
77 |
|
77 | |||
78 | users_values = [] |
|
78 | users_values = [] | |
79 | users_values << ["<< #{l(:label_me)} >>", "me"] if User.current.logged? |
|
79 | users_values << ["<< #{l(:label_me)} >>", "me"] if User.current.logged? | |
80 | users_values += users.collect{|s| [s.name, s.id.to_s] } |
|
80 | users_values += users.collect{|s| [s.name, s.id.to_s] } | |
81 | @available_filters["user_id"] = { |
|
81 | @available_filters["user_id"] = { | |
82 | :type => :list_optional, :order => 2, :values => users_values |
|
82 | :type => :list_optional, :order => 2, :values => users_values | |
83 | } unless users_values.empty? |
|
83 | } unless users_values.empty? | |
84 |
|
84 | |||
85 | activities = (project ? project.activities : TimeEntryActivity.shared.active) |
|
85 | activities = (project ? project.activities : TimeEntryActivity.shared.active) | |
86 | @available_filters["activity_id"] = { |
|
86 | @available_filters["activity_id"] = { | |
87 | :type => :list, :order => 3, :values => activities.map {|a| [a.name, a.id.to_s]} |
|
87 | :type => :list, :order => 3, :values => activities.map {|a| [a.name, a.id.to_s]} | |
88 | } unless activities.empty? |
|
88 | } unless activities.empty? | |
89 |
|
89 | |||
90 | add_custom_fields_filters(TimeEntryCustomField.where(:is_filter => true).all) |
|
90 | add_custom_fields_filters(TimeEntryCustomField.where(:is_filter => true).all) | |
91 | add_associations_custom_fields_filters :project, :user |
|
91 | add_associations_custom_fields_filters :project, :issue, :user | |
92 |
|
92 | |||
93 | @available_filters.each do |field, options| |
|
93 | @available_filters.each do |field, options| | |
94 | options[:name] ||= l(options[:label] || "field_#{field}".gsub(/_id$/, '')) |
|
94 | options[:name] ||= l(options[:label] || "field_#{field}".gsub(/_id$/, '')) | |
95 | end |
|
95 | end | |
96 | @available_filters |
|
96 | @available_filters | |
97 | end |
|
97 | end | |
98 |
|
98 | |||
99 | def available_columns |
|
99 | def available_columns | |
100 | return @available_columns if @available_columns |
|
100 | return @available_columns if @available_columns | |
101 | @available_columns = self.class.available_columns.dup |
|
101 | @available_columns = self.class.available_columns.dup | |
102 | @available_columns += TimeEntryCustomField.all.map {|cf| QueryCustomFieldColumn.new(cf) } |
|
102 | @available_columns += TimeEntryCustomField.all.map {|cf| QueryCustomFieldColumn.new(cf) } | |
103 | @available_columns |
|
103 | @available_columns | |
104 | end |
|
104 | end | |
105 |
|
105 | |||
106 | def default_columns_names |
|
106 | def default_columns_names | |
107 | @default_columns_names ||= [:project, :spent_on, :user, :activity, :issue, :comments, :hours] |
|
107 | @default_columns_names ||= [:project, :spent_on, :user, :activity, :issue, :comments, :hours] | |
108 | end |
|
108 | end | |
109 |
|
109 | |||
110 | # Accepts :from/:to params as shortcut filters |
|
110 | # Accepts :from/:to params as shortcut filters | |
111 | def build_from_params(params) |
|
111 | def build_from_params(params) | |
112 | super |
|
112 | super | |
113 | if params[:from].present? && params[:to].present? |
|
113 | if params[:from].present? && params[:to].present? | |
114 | add_filter('spent_on', '><', [params[:from], params[:to]]) |
|
114 | add_filter('spent_on', '><', [params[:from], params[:to]]) | |
115 | elsif params[:from].present? |
|
115 | elsif params[:from].present? | |
116 | add_filter('spent_on', '>=', [params[:from]]) |
|
116 | add_filter('spent_on', '>=', [params[:from]]) | |
117 | elsif params[:to].present? |
|
117 | elsif params[:to].present? | |
118 | add_filter('spent_on', '<=', [params[:to]]) |
|
118 | add_filter('spent_on', '<=', [params[:to]]) | |
119 | end |
|
119 | end | |
120 | self |
|
120 | self | |
121 | end |
|
121 | end | |
122 | end |
|
122 | end |
@@ -1,1075 +1,1076 | |||||
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: "can't be empty" |
|
113 | empty: "can't be empty" | |
114 | blank: "can't be blank" |
|
114 | blank: "can't 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 |
|
132 | |||
133 | actionview_instancetag_blank_option: Please select |
|
133 | actionview_instancetag_blank_option: Please select | |
134 |
|
134 | |||
135 | general_text_No: 'No' |
|
135 | general_text_No: 'No' | |
136 | general_text_Yes: 'Yes' |
|
136 | general_text_Yes: 'Yes' | |
137 | general_text_no: 'no' |
|
137 | general_text_no: 'no' | |
138 | general_text_yes: 'yes' |
|
138 | general_text_yes: 'yes' | |
139 | general_lang_name: 'English' |
|
139 | general_lang_name: 'English' | |
140 | general_csv_separator: ',' |
|
140 | general_csv_separator: ',' | |
141 | general_csv_decimal_separator: '.' |
|
141 | general_csv_decimal_separator: '.' | |
142 | general_csv_encoding: ISO-8859-1 |
|
142 | general_csv_encoding: ISO-8859-1 | |
143 | general_pdf_encoding: UTF-8 |
|
143 | general_pdf_encoding: UTF-8 | |
144 | general_first_day_of_week: '7' |
|
144 | general_first_day_of_week: '7' | |
145 |
|
145 | |||
146 | notice_account_updated: Account was successfully updated. |
|
146 | notice_account_updated: Account was successfully updated. | |
147 | notice_account_invalid_creditentials: Invalid user or password |
|
147 | notice_account_invalid_creditentials: Invalid user or password | |
148 | notice_account_password_updated: Password was successfully updated. |
|
148 | notice_account_password_updated: Password was successfully updated. | |
149 | notice_account_wrong_password: Wrong password |
|
149 | notice_account_wrong_password: Wrong password | |
150 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. |
|
150 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. | |
151 | notice_account_unknown_email: Unknown user. |
|
151 | notice_account_unknown_email: Unknown user. | |
152 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
152 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
153 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
153 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
154 | notice_account_activated: Your account has been activated. You can now log in. |
|
154 | notice_account_activated: Your account has been activated. You can now log in. | |
155 | notice_successful_create: Successful creation. |
|
155 | notice_successful_create: Successful creation. | |
156 | notice_successful_update: Successful update. |
|
156 | notice_successful_update: Successful update. | |
157 | notice_successful_delete: Successful deletion. |
|
157 | notice_successful_delete: Successful deletion. | |
158 | notice_successful_connection: Successful connection. |
|
158 | notice_successful_connection: Successful connection. | |
159 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
159 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. | |
160 | notice_locking_conflict: Data has been updated by another user. |
|
160 | notice_locking_conflict: Data has been updated by another user. | |
161 | notice_not_authorized: You are not authorized to access this page. |
|
161 | notice_not_authorized: You are not authorized to access this page. | |
162 | notice_not_authorized_archived_project: The project you're trying to access has been archived. |
|
162 | notice_not_authorized_archived_project: The project you're trying to access has been archived. | |
163 | notice_email_sent: "An email was sent to %{value}" |
|
163 | notice_email_sent: "An email was sent to %{value}" | |
164 | notice_email_error: "An error occurred while sending mail (%{value})" |
|
164 | notice_email_error: "An error occurred while sending mail (%{value})" | |
165 | notice_feeds_access_key_reseted: Your RSS access key was reset. |
|
165 | notice_feeds_access_key_reseted: Your RSS access key was reset. | |
166 | notice_api_access_key_reseted: Your API access key was reset. |
|
166 | notice_api_access_key_reseted: Your API access key was reset. | |
167 | notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." |
|
167 | notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." | |
168 | notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." |
|
168 | notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." | |
169 | notice_failed_to_save_members: "Failed to save member(s): %{errors}." |
|
169 | notice_failed_to_save_members: "Failed to save member(s): %{errors}." | |
170 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." |
|
170 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." | |
171 | notice_account_pending: "Your account was created and is now pending administrator approval." |
|
171 | notice_account_pending: "Your account was created and is now pending administrator approval." | |
172 | notice_default_data_loaded: Default configuration successfully loaded. |
|
172 | notice_default_data_loaded: Default configuration successfully loaded. | |
173 | notice_unable_delete_version: Unable to delete version. |
|
173 | notice_unable_delete_version: Unable to delete version. | |
174 | notice_unable_delete_time_entry: Unable to delete time log entry. |
|
174 | notice_unable_delete_time_entry: Unable to delete time log entry. | |
175 | notice_issue_done_ratios_updated: Issue done ratios updated. |
|
175 | notice_issue_done_ratios_updated: Issue done ratios updated. | |
176 | notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" |
|
176 | notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" | |
177 | notice_issue_successful_create: "Issue %{id} created." |
|
177 | notice_issue_successful_create: "Issue %{id} created." | |
178 | notice_issue_update_conflict: "The issue has been updated by an other user while you were editing it." |
|
178 | notice_issue_update_conflict: "The issue has been updated by an other user while you were editing it." | |
179 | notice_account_deleted: "Your account has been permanently deleted." |
|
179 | notice_account_deleted: "Your account has been permanently deleted." | |
180 | notice_user_successful_create: "User %{id} created." |
|
180 | notice_user_successful_create: "User %{id} created." | |
181 |
|
181 | |||
182 | error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" |
|
182 | error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" | |
183 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
183 | error_scm_not_found: "The entry or revision was not found in the repository." | |
184 | error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" |
|
184 | error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" | |
185 | error_scm_annotate: "The entry does not exist or cannot be annotated." |
|
185 | error_scm_annotate: "The entry does not exist or cannot be annotated." | |
186 | error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." |
|
186 | error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." | |
187 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
187 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' | |
188 | error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' |
|
188 | error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' | |
189 | error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' |
|
189 | error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' | |
190 | error_can_not_delete_custom_field: Unable to delete custom field |
|
190 | error_can_not_delete_custom_field: Unable to delete custom field | |
191 | error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." |
|
191 | error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." | |
192 | error_can_not_remove_role: "This role is in use and cannot be deleted." |
|
192 | error_can_not_remove_role: "This role is in use and cannot be deleted." | |
193 | error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' |
|
193 | error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' | |
194 | error_can_not_archive_project: This project cannot be archived |
|
194 | error_can_not_archive_project: This project cannot be archived | |
195 | error_issue_done_ratios_not_updated: "Issue done ratios not updated." |
|
195 | error_issue_done_ratios_not_updated: "Issue done ratios not updated." | |
196 | error_workflow_copy_source: 'Please select a source tracker or role' |
|
196 | error_workflow_copy_source: 'Please select a source tracker or role' | |
197 | error_workflow_copy_target: 'Please select target tracker(s) and role(s)' |
|
197 | error_workflow_copy_target: 'Please select target tracker(s) and role(s)' | |
198 | error_unable_delete_issue_status: 'Unable to delete issue status' |
|
198 | error_unable_delete_issue_status: 'Unable to delete issue status' | |
199 | error_unable_to_connect: "Unable to connect (%{value})" |
|
199 | error_unable_to_connect: "Unable to connect (%{value})" | |
200 | error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" |
|
200 | error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" | |
201 | error_session_expired: "Your session has expired. Please login again." |
|
201 | error_session_expired: "Your session has expired. Please login again." | |
202 | warning_attachments_not_saved: "%{count} file(s) could not be saved." |
|
202 | warning_attachments_not_saved: "%{count} file(s) could not be saved." | |
203 |
|
203 | |||
204 | mail_subject_lost_password: "Your %{value} password" |
|
204 | mail_subject_lost_password: "Your %{value} password" | |
205 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
205 | mail_body_lost_password: 'To change your password, click on the following link:' | |
206 | mail_subject_register: "Your %{value} account activation" |
|
206 | mail_subject_register: "Your %{value} account activation" | |
207 | mail_body_register: 'To activate your account, click on the following link:' |
|
207 | mail_body_register: 'To activate your account, click on the following link:' | |
208 | mail_body_account_information_external: "You can use your %{value} account to log in." |
|
208 | mail_body_account_information_external: "You can use your %{value} account to log in." | |
209 | mail_body_account_information: Your account information |
|
209 | mail_body_account_information: Your account information | |
210 | mail_subject_account_activation_request: "%{value} account activation request" |
|
210 | mail_subject_account_activation_request: "%{value} account activation request" | |
211 | mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" |
|
211 | mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" | |
212 | mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" |
|
212 | mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" | |
213 | mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" |
|
213 | mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" | |
214 | mail_subject_wiki_content_added: "'%{id}' wiki page has been added" |
|
214 | mail_subject_wiki_content_added: "'%{id}' wiki page has been added" | |
215 | mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." |
|
215 | mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." | |
216 | mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" |
|
216 | mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" | |
217 | mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
|
217 | mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." | |
218 |
|
218 | |||
219 | field_name: Name |
|
219 | field_name: Name | |
220 | field_description: Description |
|
220 | field_description: Description | |
221 | field_summary: Summary |
|
221 | field_summary: Summary | |
222 | field_is_required: Required |
|
222 | field_is_required: Required | |
223 | field_firstname: First name |
|
223 | field_firstname: First name | |
224 | field_lastname: Last name |
|
224 | field_lastname: Last name | |
225 | field_mail: Email |
|
225 | field_mail: Email | |
226 | field_filename: File |
|
226 | field_filename: File | |
227 | field_filesize: Size |
|
227 | field_filesize: Size | |
228 | field_downloads: Downloads |
|
228 | field_downloads: Downloads | |
229 | field_author: Author |
|
229 | field_author: Author | |
230 | field_created_on: Created |
|
230 | field_created_on: Created | |
231 | field_updated_on: Updated |
|
231 | field_updated_on: Updated | |
232 | field_field_format: Format |
|
232 | field_field_format: Format | |
233 | field_is_for_all: For all projects |
|
233 | field_is_for_all: For all projects | |
234 | field_possible_values: Possible values |
|
234 | field_possible_values: Possible values | |
235 | field_regexp: Regular expression |
|
235 | field_regexp: Regular expression | |
236 | field_min_length: Minimum length |
|
236 | field_min_length: Minimum length | |
237 | field_max_length: Maximum length |
|
237 | field_max_length: Maximum length | |
238 | field_value: Value |
|
238 | field_value: Value | |
239 | field_category: Category |
|
239 | field_category: Category | |
240 | field_title: Title |
|
240 | field_title: Title | |
241 | field_project: Project |
|
241 | field_project: Project | |
242 | field_issue: Issue |
|
242 | field_issue: Issue | |
243 | field_status: Status |
|
243 | field_status: Status | |
244 | field_notes: Notes |
|
244 | field_notes: Notes | |
245 | field_is_closed: Issue closed |
|
245 | field_is_closed: Issue closed | |
246 | field_is_default: Default value |
|
246 | field_is_default: Default value | |
247 | field_tracker: Tracker |
|
247 | field_tracker: Tracker | |
248 | field_subject: Subject |
|
248 | field_subject: Subject | |
249 | field_due_date: Due date |
|
249 | field_due_date: Due date | |
250 | field_assigned_to: Assignee |
|
250 | field_assigned_to: Assignee | |
251 | field_priority: Priority |
|
251 | field_priority: Priority | |
252 | field_fixed_version: Target version |
|
252 | field_fixed_version: Target version | |
253 | field_user: User |
|
253 | field_user: User | |
254 | field_principal: Principal |
|
254 | field_principal: Principal | |
255 | field_role: Role |
|
255 | field_role: Role | |
256 | field_homepage: Homepage |
|
256 | field_homepage: Homepage | |
257 | field_is_public: Public |
|
257 | field_is_public: Public | |
258 | field_parent: Subproject of |
|
258 | field_parent: Subproject of | |
259 | field_is_in_roadmap: Issues displayed in roadmap |
|
259 | field_is_in_roadmap: Issues displayed in roadmap | |
260 | field_login: Login |
|
260 | field_login: Login | |
261 | field_mail_notification: Email notifications |
|
261 | field_mail_notification: Email notifications | |
262 | field_admin: Administrator |
|
262 | field_admin: Administrator | |
263 | field_last_login_on: Last connection |
|
263 | field_last_login_on: Last connection | |
264 | field_language: Language |
|
264 | field_language: Language | |
265 | field_effective_date: Date |
|
265 | field_effective_date: Date | |
266 | field_password: Password |
|
266 | field_password: Password | |
267 | field_new_password: New password |
|
267 | field_new_password: New password | |
268 | field_password_confirmation: Confirmation |
|
268 | field_password_confirmation: Confirmation | |
269 | field_version: Version |
|
269 | field_version: Version | |
270 | field_type: Type |
|
270 | field_type: Type | |
271 | field_host: Host |
|
271 | field_host: Host | |
272 | field_port: Port |
|
272 | field_port: Port | |
273 | field_account: Account |
|
273 | field_account: Account | |
274 | field_base_dn: Base DN |
|
274 | field_base_dn: Base DN | |
275 | field_attr_login: Login attribute |
|
275 | field_attr_login: Login attribute | |
276 | field_attr_firstname: Firstname attribute |
|
276 | field_attr_firstname: Firstname attribute | |
277 | field_attr_lastname: Lastname attribute |
|
277 | field_attr_lastname: Lastname attribute | |
278 | field_attr_mail: Email attribute |
|
278 | field_attr_mail: Email attribute | |
279 | field_onthefly: On-the-fly user creation |
|
279 | field_onthefly: On-the-fly user creation | |
280 | field_start_date: Start date |
|
280 | field_start_date: Start date | |
281 | field_done_ratio: "% Done" |
|
281 | field_done_ratio: "% Done" | |
282 | field_auth_source: Authentication mode |
|
282 | field_auth_source: Authentication mode | |
283 | field_hide_mail: Hide my email address |
|
283 | field_hide_mail: Hide my email address | |
284 | field_comments: Comment |
|
284 | field_comments: Comment | |
285 | field_url: URL |
|
285 | field_url: URL | |
286 | field_start_page: Start page |
|
286 | field_start_page: Start page | |
287 | field_subproject: Subproject |
|
287 | field_subproject: Subproject | |
288 | field_hours: Hours |
|
288 | field_hours: Hours | |
289 | field_activity: Activity |
|
289 | field_activity: Activity | |
290 | field_spent_on: Date |
|
290 | field_spent_on: Date | |
291 | field_identifier: Identifier |
|
291 | field_identifier: Identifier | |
292 | field_is_filter: Used as a filter |
|
292 | field_is_filter: Used as a filter | |
293 | field_issue_to: Related issue |
|
293 | field_issue_to: Related issue | |
294 | field_delay: Delay |
|
294 | field_delay: Delay | |
295 | field_assignable: Issues can be assigned to this role |
|
295 | field_assignable: Issues can be assigned to this role | |
296 | field_redirect_existing_links: Redirect existing links |
|
296 | field_redirect_existing_links: Redirect existing links | |
297 | field_estimated_hours: Estimated time |
|
297 | field_estimated_hours: Estimated time | |
298 | field_column_names: Columns |
|
298 | field_column_names: Columns | |
299 | field_time_entries: Log time |
|
299 | field_time_entries: Log time | |
300 | field_time_zone: Time zone |
|
300 | field_time_zone: Time zone | |
301 | field_searchable: Searchable |
|
301 | field_searchable: Searchable | |
302 | field_default_value: Default value |
|
302 | field_default_value: Default value | |
303 | field_comments_sorting: Display comments |
|
303 | field_comments_sorting: Display comments | |
304 | field_parent_title: Parent page |
|
304 | field_parent_title: Parent page | |
305 | field_editable: Editable |
|
305 | field_editable: Editable | |
306 | field_watcher: Watcher |
|
306 | field_watcher: Watcher | |
307 | field_identity_url: OpenID URL |
|
307 | field_identity_url: OpenID URL | |
308 | field_content: Content |
|
308 | field_content: Content | |
309 | field_group_by: Group results by |
|
309 | field_group_by: Group results by | |
310 | field_sharing: Sharing |
|
310 | field_sharing: Sharing | |
311 | field_parent_issue: Parent task |
|
311 | field_parent_issue: Parent task | |
312 | field_member_of_group: "Assignee's group" |
|
312 | field_member_of_group: "Assignee's group" | |
313 | field_assigned_to_role: "Assignee's role" |
|
313 | field_assigned_to_role: "Assignee's role" | |
314 | field_text: Text field |
|
314 | field_text: Text field | |
315 | field_visible: Visible |
|
315 | field_visible: Visible | |
316 | field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
|
316 | field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" | |
317 | field_issues_visibility: Issues visibility |
|
317 | field_issues_visibility: Issues visibility | |
318 | field_is_private: Private |
|
318 | field_is_private: Private | |
319 | field_commit_logs_encoding: Commit messages encoding |
|
319 | field_commit_logs_encoding: Commit messages encoding | |
320 | field_scm_path_encoding: Path encoding |
|
320 | field_scm_path_encoding: Path encoding | |
321 | field_path_to_repository: Path to repository |
|
321 | field_path_to_repository: Path to repository | |
322 | field_root_directory: Root directory |
|
322 | field_root_directory: Root directory | |
323 | field_cvsroot: CVSROOT |
|
323 | field_cvsroot: CVSROOT | |
324 | field_cvs_module: Module |
|
324 | field_cvs_module: Module | |
325 | field_repository_is_default: Main repository |
|
325 | field_repository_is_default: Main repository | |
326 | field_multiple: Multiple values |
|
326 | field_multiple: Multiple values | |
327 | field_auth_source_ldap_filter: LDAP filter |
|
327 | field_auth_source_ldap_filter: LDAP filter | |
328 | field_core_fields: Standard fields |
|
328 | field_core_fields: Standard fields | |
329 | field_timeout: "Timeout (in seconds)" |
|
329 | field_timeout: "Timeout (in seconds)" | |
330 | field_board_parent: Parent forum |
|
330 | field_board_parent: Parent forum | |
331 | field_private_notes: Private notes |
|
331 | field_private_notes: Private notes | |
332 |
|
332 | |||
333 | setting_app_title: Application title |
|
333 | setting_app_title: Application title | |
334 | setting_app_subtitle: Application subtitle |
|
334 | setting_app_subtitle: Application subtitle | |
335 | setting_welcome_text: Welcome text |
|
335 | setting_welcome_text: Welcome text | |
336 | setting_default_language: Default language |
|
336 | setting_default_language: Default language | |
337 | setting_login_required: Authentication required |
|
337 | setting_login_required: Authentication required | |
338 | setting_self_registration: Self-registration |
|
338 | setting_self_registration: Self-registration | |
339 | setting_attachment_max_size: Maximum attachment size |
|
339 | setting_attachment_max_size: Maximum attachment size | |
340 | setting_issues_export_limit: Issues export limit |
|
340 | setting_issues_export_limit: Issues export limit | |
341 | setting_mail_from: Emission email address |
|
341 | setting_mail_from: Emission email address | |
342 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
342 | setting_bcc_recipients: Blind carbon copy recipients (bcc) | |
343 | setting_plain_text_mail: Plain text mail (no HTML) |
|
343 | setting_plain_text_mail: Plain text mail (no HTML) | |
344 | setting_host_name: Host name and path |
|
344 | setting_host_name: Host name and path | |
345 | setting_text_formatting: Text formatting |
|
345 | setting_text_formatting: Text formatting | |
346 | setting_wiki_compression: Wiki history compression |
|
346 | setting_wiki_compression: Wiki history compression | |
347 | setting_feeds_limit: Maximum number of items in Atom feeds |
|
347 | setting_feeds_limit: Maximum number of items in Atom feeds | |
348 | setting_default_projects_public: New projects are public by default |
|
348 | setting_default_projects_public: New projects are public by default | |
349 | setting_autofetch_changesets: Fetch commits automatically |
|
349 | setting_autofetch_changesets: Fetch commits automatically | |
350 | setting_sys_api_enabled: Enable WS for repository management |
|
350 | setting_sys_api_enabled: Enable WS for repository management | |
351 | setting_commit_ref_keywords: Referencing keywords |
|
351 | setting_commit_ref_keywords: Referencing keywords | |
352 | setting_commit_fix_keywords: Fixing keywords |
|
352 | setting_commit_fix_keywords: Fixing keywords | |
353 | setting_autologin: Autologin |
|
353 | setting_autologin: Autologin | |
354 | setting_date_format: Date format |
|
354 | setting_date_format: Date format | |
355 | setting_time_format: Time format |
|
355 | setting_time_format: Time format | |
356 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
356 | setting_cross_project_issue_relations: Allow cross-project issue relations | |
357 | setting_cross_project_subtasks: Allow cross-project subtasks |
|
357 | setting_cross_project_subtasks: Allow cross-project subtasks | |
358 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
358 | setting_issue_list_default_columns: Default columns displayed on the issue list | |
359 | setting_repositories_encodings: Attachments and repositories encodings |
|
359 | setting_repositories_encodings: Attachments and repositories encodings | |
360 | setting_emails_header: Emails header |
|
360 | setting_emails_header: Emails header | |
361 | setting_emails_footer: Emails footer |
|
361 | setting_emails_footer: Emails footer | |
362 | setting_protocol: Protocol |
|
362 | setting_protocol: Protocol | |
363 | setting_per_page_options: Objects per page options |
|
363 | setting_per_page_options: Objects per page options | |
364 | setting_user_format: Users display format |
|
364 | setting_user_format: Users display format | |
365 | setting_activity_days_default: Days displayed on project activity |
|
365 | setting_activity_days_default: Days displayed on project activity | |
366 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
366 | setting_display_subprojects_issues: Display subprojects issues on main projects by default | |
367 | setting_enabled_scm: Enabled SCM |
|
367 | setting_enabled_scm: Enabled SCM | |
368 | setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
368 | setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" | |
369 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
369 | setting_mail_handler_api_enabled: Enable WS for incoming emails | |
370 | setting_mail_handler_api_key: API key |
|
370 | setting_mail_handler_api_key: API key | |
371 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
371 | setting_sequential_project_identifiers: Generate sequential project identifiers | |
372 | setting_gravatar_enabled: Use Gravatar user icons |
|
372 | setting_gravatar_enabled: Use Gravatar user icons | |
373 | setting_gravatar_default: Default Gravatar image |
|
373 | setting_gravatar_default: Default Gravatar image | |
374 | setting_diff_max_lines_displayed: Maximum number of diff lines displayed |
|
374 | setting_diff_max_lines_displayed: Maximum number of diff lines displayed | |
375 | setting_file_max_size_displayed: Maximum size of text files displayed inline |
|
375 | setting_file_max_size_displayed: Maximum size of text files displayed inline | |
376 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
376 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log | |
377 | setting_openid: Allow OpenID login and registration |
|
377 | setting_openid: Allow OpenID login and registration | |
378 | setting_password_min_length: Minimum password length |
|
378 | setting_password_min_length: Minimum password length | |
379 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
379 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project | |
380 | setting_default_projects_modules: Default enabled modules for new projects |
|
380 | setting_default_projects_modules: Default enabled modules for new projects | |
381 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
381 | setting_issue_done_ratio: Calculate the issue done ratio with | |
382 | setting_issue_done_ratio_issue_field: Use the issue field |
|
382 | setting_issue_done_ratio_issue_field: Use the issue field | |
383 | setting_issue_done_ratio_issue_status: Use the issue status |
|
383 | setting_issue_done_ratio_issue_status: Use the issue status | |
384 | setting_start_of_week: Start calendars on |
|
384 | setting_start_of_week: Start calendars on | |
385 | setting_rest_api_enabled: Enable REST web service |
|
385 | setting_rest_api_enabled: Enable REST web service | |
386 | setting_cache_formatted_text: Cache formatted text |
|
386 | setting_cache_formatted_text: Cache formatted text | |
387 | setting_default_notification_option: Default notification option |
|
387 | setting_default_notification_option: Default notification option | |
388 | setting_commit_logtime_enabled: Enable time logging |
|
388 | setting_commit_logtime_enabled: Enable time logging | |
389 | setting_commit_logtime_activity_id: Activity for logged time |
|
389 | setting_commit_logtime_activity_id: Activity for logged time | |
390 | setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
390 | setting_gantt_items_limit: Maximum number of items displayed on the gantt chart | |
391 | setting_issue_group_assignment: Allow issue assignment to groups |
|
391 | setting_issue_group_assignment: Allow issue assignment to groups | |
392 | setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues |
|
392 | setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues | |
393 | setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed |
|
393 | setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed | |
394 | setting_unsubscribe: Allow users to delete their own account |
|
394 | setting_unsubscribe: Allow users to delete their own account | |
395 | setting_session_lifetime: Session maximum lifetime |
|
395 | setting_session_lifetime: Session maximum lifetime | |
396 | setting_session_timeout: Session inactivity timeout |
|
396 | setting_session_timeout: Session inactivity timeout | |
397 | setting_thumbnails_enabled: Display attachment thumbnails |
|
397 | setting_thumbnails_enabled: Display attachment thumbnails | |
398 | setting_thumbnails_size: Thumbnails size (in pixels) |
|
398 | setting_thumbnails_size: Thumbnails size (in pixels) | |
399 | setting_non_working_week_days: Non-working days |
|
399 | setting_non_working_week_days: Non-working days | |
400 |
|
400 | |||
401 | permission_add_project: Create project |
|
401 | permission_add_project: Create project | |
402 | permission_add_subprojects: Create subprojects |
|
402 | permission_add_subprojects: Create subprojects | |
403 | permission_edit_project: Edit project |
|
403 | permission_edit_project: Edit project | |
404 | permission_close_project: Close / reopen the project |
|
404 | permission_close_project: Close / reopen the project | |
405 | permission_select_project_modules: Select project modules |
|
405 | permission_select_project_modules: Select project modules | |
406 | permission_manage_members: Manage members |
|
406 | permission_manage_members: Manage members | |
407 | permission_manage_project_activities: Manage project activities |
|
407 | permission_manage_project_activities: Manage project activities | |
408 | permission_manage_versions: Manage versions |
|
408 | permission_manage_versions: Manage versions | |
409 | permission_manage_categories: Manage issue categories |
|
409 | permission_manage_categories: Manage issue categories | |
410 | permission_view_issues: View Issues |
|
410 | permission_view_issues: View Issues | |
411 | permission_add_issues: Add issues |
|
411 | permission_add_issues: Add issues | |
412 | permission_edit_issues: Edit issues |
|
412 | permission_edit_issues: Edit issues | |
413 | permission_manage_issue_relations: Manage issue relations |
|
413 | permission_manage_issue_relations: Manage issue relations | |
414 | permission_set_issues_private: Set issues public or private |
|
414 | permission_set_issues_private: Set issues public or private | |
415 | permission_set_own_issues_private: Set own issues public or private |
|
415 | permission_set_own_issues_private: Set own issues public or private | |
416 | permission_add_issue_notes: Add notes |
|
416 | permission_add_issue_notes: Add notes | |
417 | permission_edit_issue_notes: Edit notes |
|
417 | permission_edit_issue_notes: Edit notes | |
418 | permission_edit_own_issue_notes: Edit own notes |
|
418 | permission_edit_own_issue_notes: Edit own notes | |
419 | permission_view_private_notes: View private notes |
|
419 | permission_view_private_notes: View private notes | |
420 | permission_set_notes_private: Set notes as private |
|
420 | permission_set_notes_private: Set notes as private | |
421 | permission_move_issues: Move issues |
|
421 | permission_move_issues: Move issues | |
422 | permission_delete_issues: Delete issues |
|
422 | permission_delete_issues: Delete issues | |
423 | permission_manage_public_queries: Manage public queries |
|
423 | permission_manage_public_queries: Manage public queries | |
424 | permission_save_queries: Save queries |
|
424 | permission_save_queries: Save queries | |
425 | permission_view_gantt: View gantt chart |
|
425 | permission_view_gantt: View gantt chart | |
426 | permission_view_calendar: View calendar |
|
426 | permission_view_calendar: View calendar | |
427 | permission_view_issue_watchers: View watchers list |
|
427 | permission_view_issue_watchers: View watchers list | |
428 | permission_add_issue_watchers: Add watchers |
|
428 | permission_add_issue_watchers: Add watchers | |
429 | permission_delete_issue_watchers: Delete watchers |
|
429 | permission_delete_issue_watchers: Delete watchers | |
430 | permission_log_time: Log spent time |
|
430 | permission_log_time: Log spent time | |
431 | permission_view_time_entries: View spent time |
|
431 | permission_view_time_entries: View spent time | |
432 | permission_edit_time_entries: Edit time logs |
|
432 | permission_edit_time_entries: Edit time logs | |
433 | permission_edit_own_time_entries: Edit own time logs |
|
433 | permission_edit_own_time_entries: Edit own time logs | |
434 | permission_manage_news: Manage news |
|
434 | permission_manage_news: Manage news | |
435 | permission_comment_news: Comment news |
|
435 | permission_comment_news: Comment news | |
436 | permission_manage_documents: Manage documents |
|
436 | permission_manage_documents: Manage documents | |
437 | permission_view_documents: View documents |
|
437 | permission_view_documents: View documents | |
438 | permission_manage_files: Manage files |
|
438 | permission_manage_files: Manage files | |
439 | permission_view_files: View files |
|
439 | permission_view_files: View files | |
440 | permission_manage_wiki: Manage wiki |
|
440 | permission_manage_wiki: Manage wiki | |
441 | permission_rename_wiki_pages: Rename wiki pages |
|
441 | permission_rename_wiki_pages: Rename wiki pages | |
442 | permission_delete_wiki_pages: Delete wiki pages |
|
442 | permission_delete_wiki_pages: Delete wiki pages | |
443 | permission_view_wiki_pages: View wiki |
|
443 | permission_view_wiki_pages: View wiki | |
444 | permission_view_wiki_edits: View wiki history |
|
444 | permission_view_wiki_edits: View wiki history | |
445 | permission_edit_wiki_pages: Edit wiki pages |
|
445 | permission_edit_wiki_pages: Edit wiki pages | |
446 | permission_delete_wiki_pages_attachments: Delete attachments |
|
446 | permission_delete_wiki_pages_attachments: Delete attachments | |
447 | permission_protect_wiki_pages: Protect wiki pages |
|
447 | permission_protect_wiki_pages: Protect wiki pages | |
448 | permission_manage_repository: Manage repository |
|
448 | permission_manage_repository: Manage repository | |
449 | permission_browse_repository: Browse repository |
|
449 | permission_browse_repository: Browse repository | |
450 | permission_view_changesets: View changesets |
|
450 | permission_view_changesets: View changesets | |
451 | permission_commit_access: Commit access |
|
451 | permission_commit_access: Commit access | |
452 | permission_manage_boards: Manage forums |
|
452 | permission_manage_boards: Manage forums | |
453 | permission_view_messages: View messages |
|
453 | permission_view_messages: View messages | |
454 | permission_add_messages: Post messages |
|
454 | permission_add_messages: Post messages | |
455 | permission_edit_messages: Edit messages |
|
455 | permission_edit_messages: Edit messages | |
456 | permission_edit_own_messages: Edit own messages |
|
456 | permission_edit_own_messages: Edit own messages | |
457 | permission_delete_messages: Delete messages |
|
457 | permission_delete_messages: Delete messages | |
458 | permission_delete_own_messages: Delete own messages |
|
458 | permission_delete_own_messages: Delete own messages | |
459 | permission_export_wiki_pages: Export wiki pages |
|
459 | permission_export_wiki_pages: Export wiki pages | |
460 | permission_manage_subtasks: Manage subtasks |
|
460 | permission_manage_subtasks: Manage subtasks | |
461 | permission_manage_related_issues: Manage related issues |
|
461 | permission_manage_related_issues: Manage related issues | |
462 |
|
462 | |||
463 | project_module_issue_tracking: Issue tracking |
|
463 | project_module_issue_tracking: Issue tracking | |
464 | project_module_time_tracking: Time tracking |
|
464 | project_module_time_tracking: Time tracking | |
465 | project_module_news: News |
|
465 | project_module_news: News | |
466 | project_module_documents: Documents |
|
466 | project_module_documents: Documents | |
467 | project_module_files: Files |
|
467 | project_module_files: Files | |
468 | project_module_wiki: Wiki |
|
468 | project_module_wiki: Wiki | |
469 | project_module_repository: Repository |
|
469 | project_module_repository: Repository | |
470 | project_module_boards: Forums |
|
470 | project_module_boards: Forums | |
471 | project_module_calendar: Calendar |
|
471 | project_module_calendar: Calendar | |
472 | project_module_gantt: Gantt |
|
472 | project_module_gantt: Gantt | |
473 |
|
473 | |||
474 | label_user: User |
|
474 | label_user: User | |
475 | label_user_plural: Users |
|
475 | label_user_plural: Users | |
476 | label_user_new: New user |
|
476 | label_user_new: New user | |
477 | label_user_anonymous: Anonymous |
|
477 | label_user_anonymous: Anonymous | |
478 | label_project: Project |
|
478 | label_project: Project | |
479 | label_project_new: New project |
|
479 | label_project_new: New project | |
480 | label_project_plural: Projects |
|
480 | label_project_plural: Projects | |
481 | label_x_projects: |
|
481 | label_x_projects: | |
482 | zero: no projects |
|
482 | zero: no projects | |
483 | one: 1 project |
|
483 | one: 1 project | |
484 | other: "%{count} projects" |
|
484 | other: "%{count} projects" | |
485 | label_project_all: All Projects |
|
485 | label_project_all: All Projects | |
486 | label_project_latest: Latest projects |
|
486 | label_project_latest: Latest projects | |
487 | label_issue: Issue |
|
487 | label_issue: Issue | |
488 | label_issue_new: New issue |
|
488 | label_issue_new: New issue | |
489 | label_issue_plural: Issues |
|
489 | label_issue_plural: Issues | |
490 | label_issue_view_all: View all issues |
|
490 | label_issue_view_all: View all issues | |
491 | label_issues_by: "Issues by %{value}" |
|
491 | label_issues_by: "Issues by %{value}" | |
492 | label_issue_added: Issue added |
|
492 | label_issue_added: Issue added | |
493 | label_issue_updated: Issue updated |
|
493 | label_issue_updated: Issue updated | |
494 | label_issue_note_added: Note added |
|
494 | label_issue_note_added: Note added | |
495 | label_issue_status_updated: Status updated |
|
495 | label_issue_status_updated: Status updated | |
496 | label_issue_priority_updated: Priority updated |
|
496 | label_issue_priority_updated: Priority updated | |
497 | label_document: Document |
|
497 | label_document: Document | |
498 | label_document_new: New document |
|
498 | label_document_new: New document | |
499 | label_document_plural: Documents |
|
499 | label_document_plural: Documents | |
500 | label_document_added: Document added |
|
500 | label_document_added: Document added | |
501 | label_role: Role |
|
501 | label_role: Role | |
502 | label_role_plural: Roles |
|
502 | label_role_plural: Roles | |
503 | label_role_new: New role |
|
503 | label_role_new: New role | |
504 | label_role_and_permissions: Roles and permissions |
|
504 | label_role_and_permissions: Roles and permissions | |
505 | label_role_anonymous: Anonymous |
|
505 | label_role_anonymous: Anonymous | |
506 | label_role_non_member: Non member |
|
506 | label_role_non_member: Non member | |
507 | label_member: Member |
|
507 | label_member: Member | |
508 | label_member_new: New member |
|
508 | label_member_new: New member | |
509 | label_member_plural: Members |
|
509 | label_member_plural: Members | |
510 | label_tracker: Tracker |
|
510 | label_tracker: Tracker | |
511 | label_tracker_plural: Trackers |
|
511 | label_tracker_plural: Trackers | |
512 | label_tracker_new: New tracker |
|
512 | label_tracker_new: New tracker | |
513 | label_workflow: Workflow |
|
513 | label_workflow: Workflow | |
514 | label_issue_status: Issue status |
|
514 | label_issue_status: Issue status | |
515 | label_issue_status_plural: Issue statuses |
|
515 | label_issue_status_plural: Issue statuses | |
516 | label_issue_status_new: New status |
|
516 | label_issue_status_new: New status | |
517 | label_issue_category: Issue category |
|
517 | label_issue_category: Issue category | |
518 | label_issue_category_plural: Issue categories |
|
518 | label_issue_category_plural: Issue categories | |
519 | label_issue_category_new: New category |
|
519 | label_issue_category_new: New category | |
520 | label_custom_field: Custom field |
|
520 | label_custom_field: Custom field | |
521 | label_custom_field_plural: Custom fields |
|
521 | label_custom_field_plural: Custom fields | |
522 | label_custom_field_new: New custom field |
|
522 | label_custom_field_new: New custom field | |
523 | label_enumerations: Enumerations |
|
523 | label_enumerations: Enumerations | |
524 | label_enumeration_new: New value |
|
524 | label_enumeration_new: New value | |
525 | label_information: Information |
|
525 | label_information: Information | |
526 | label_information_plural: Information |
|
526 | label_information_plural: Information | |
527 | label_please_login: Please log in |
|
527 | label_please_login: Please log in | |
528 | label_register: Register |
|
528 | label_register: Register | |
529 | label_login_with_open_id_option: or login with OpenID |
|
529 | label_login_with_open_id_option: or login with OpenID | |
530 | label_password_lost: Lost password |
|
530 | label_password_lost: Lost password | |
531 | label_home: Home |
|
531 | label_home: Home | |
532 | label_my_page: My page |
|
532 | label_my_page: My page | |
533 | label_my_account: My account |
|
533 | label_my_account: My account | |
534 | label_my_projects: My projects |
|
534 | label_my_projects: My projects | |
535 | label_my_page_block: My page block |
|
535 | label_my_page_block: My page block | |
536 | label_administration: Administration |
|
536 | label_administration: Administration | |
537 | label_login: Sign in |
|
537 | label_login: Sign in | |
538 | label_logout: Sign out |
|
538 | label_logout: Sign out | |
539 | label_help: Help |
|
539 | label_help: Help | |
540 | label_reported_issues: Reported issues |
|
540 | label_reported_issues: Reported issues | |
541 | label_assigned_to_me_issues: Issues assigned to me |
|
541 | label_assigned_to_me_issues: Issues assigned to me | |
542 | label_last_login: Last connection |
|
542 | label_last_login: Last connection | |
543 | label_registered_on: Registered on |
|
543 | label_registered_on: Registered on | |
544 | label_activity: Activity |
|
544 | label_activity: Activity | |
545 | label_overall_activity: Overall activity |
|
545 | label_overall_activity: Overall activity | |
546 | label_user_activity: "%{value}'s activity" |
|
546 | label_user_activity: "%{value}'s activity" | |
547 | label_new: New |
|
547 | label_new: New | |
548 | label_logged_as: Logged in as |
|
548 | label_logged_as: Logged in as | |
549 | label_environment: Environment |
|
549 | label_environment: Environment | |
550 | label_authentication: Authentication |
|
550 | label_authentication: Authentication | |
551 | label_auth_source: Authentication mode |
|
551 | label_auth_source: Authentication mode | |
552 | label_auth_source_new: New authentication mode |
|
552 | label_auth_source_new: New authentication mode | |
553 | label_auth_source_plural: Authentication modes |
|
553 | label_auth_source_plural: Authentication modes | |
554 | label_subproject_plural: Subprojects |
|
554 | label_subproject_plural: Subprojects | |
555 | label_subproject_new: New subproject |
|
555 | label_subproject_new: New subproject | |
556 | label_and_its_subprojects: "%{value} and its subprojects" |
|
556 | label_and_its_subprojects: "%{value} and its subprojects" | |
557 | label_min_max_length: Min - Max length |
|
557 | label_min_max_length: Min - Max length | |
558 | label_list: List |
|
558 | label_list: List | |
559 | label_date: Date |
|
559 | label_date: Date | |
560 | label_integer: Integer |
|
560 | label_integer: Integer | |
561 | label_float: Float |
|
561 | label_float: Float | |
562 | label_boolean: Boolean |
|
562 | label_boolean: Boolean | |
563 | label_string: Text |
|
563 | label_string: Text | |
564 | label_text: Long text |
|
564 | label_text: Long text | |
565 | label_attribute: Attribute |
|
565 | label_attribute: Attribute | |
566 | label_attribute_plural: Attributes |
|
566 | label_attribute_plural: Attributes | |
567 | label_no_data: No data to display |
|
567 | label_no_data: No data to display | |
568 | label_change_status: Change status |
|
568 | label_change_status: Change status | |
569 | label_history: History |
|
569 | label_history: History | |
570 | label_attachment: File |
|
570 | label_attachment: File | |
571 | label_attachment_new: New file |
|
571 | label_attachment_new: New file | |
572 | label_attachment_delete: Delete file |
|
572 | label_attachment_delete: Delete file | |
573 | label_attachment_plural: Files |
|
573 | label_attachment_plural: Files | |
574 | label_file_added: File added |
|
574 | label_file_added: File added | |
575 | label_report: Report |
|
575 | label_report: Report | |
576 | label_report_plural: Reports |
|
576 | label_report_plural: Reports | |
577 | label_news: News |
|
577 | label_news: News | |
578 | label_news_new: Add news |
|
578 | label_news_new: Add news | |
579 | label_news_plural: News |
|
579 | label_news_plural: News | |
580 | label_news_latest: Latest news |
|
580 | label_news_latest: Latest news | |
581 | label_news_view_all: View all news |
|
581 | label_news_view_all: View all news | |
582 | label_news_added: News added |
|
582 | label_news_added: News added | |
583 | label_news_comment_added: Comment added to a news |
|
583 | label_news_comment_added: Comment added to a news | |
584 | label_settings: Settings |
|
584 | label_settings: Settings | |
585 | label_overview: Overview |
|
585 | label_overview: Overview | |
586 | label_version: Version |
|
586 | label_version: Version | |
587 | label_version_new: New version |
|
587 | label_version_new: New version | |
588 | label_version_plural: Versions |
|
588 | label_version_plural: Versions | |
589 | label_close_versions: Close completed versions |
|
589 | label_close_versions: Close completed versions | |
590 | label_confirmation: Confirmation |
|
590 | label_confirmation: Confirmation | |
591 | label_export_to: 'Also available in:' |
|
591 | label_export_to: 'Also available in:' | |
592 | label_read: Read... |
|
592 | label_read: Read... | |
593 | label_public_projects: Public projects |
|
593 | label_public_projects: Public projects | |
594 | label_open_issues: open |
|
594 | label_open_issues: open | |
595 | label_open_issues_plural: open |
|
595 | label_open_issues_plural: open | |
596 | label_closed_issues: closed |
|
596 | label_closed_issues: closed | |
597 | label_closed_issues_plural: closed |
|
597 | label_closed_issues_plural: closed | |
598 | label_x_open_issues_abbr_on_total: |
|
598 | label_x_open_issues_abbr_on_total: | |
599 | zero: 0 open / %{total} |
|
599 | zero: 0 open / %{total} | |
600 | one: 1 open / %{total} |
|
600 | one: 1 open / %{total} | |
601 | other: "%{count} open / %{total}" |
|
601 | other: "%{count} open / %{total}" | |
602 | label_x_open_issues_abbr: |
|
602 | label_x_open_issues_abbr: | |
603 | zero: 0 open |
|
603 | zero: 0 open | |
604 | one: 1 open |
|
604 | one: 1 open | |
605 | other: "%{count} open" |
|
605 | other: "%{count} open" | |
606 | label_x_closed_issues_abbr: |
|
606 | label_x_closed_issues_abbr: | |
607 | zero: 0 closed |
|
607 | zero: 0 closed | |
608 | one: 1 closed |
|
608 | one: 1 closed | |
609 | other: "%{count} closed" |
|
609 | other: "%{count} closed" | |
610 | label_x_issues: |
|
610 | label_x_issues: | |
611 | zero: 0 issues |
|
611 | zero: 0 issues | |
612 | one: 1 issue |
|
612 | one: 1 issue | |
613 | other: "%{count} issues" |
|
613 | other: "%{count} issues" | |
614 | label_total: Total |
|
614 | label_total: Total | |
615 | label_permissions: Permissions |
|
615 | label_permissions: Permissions | |
616 | label_current_status: Current status |
|
616 | label_current_status: Current status | |
617 | label_new_statuses_allowed: New statuses allowed |
|
617 | label_new_statuses_allowed: New statuses allowed | |
618 | label_all: all |
|
618 | label_all: all | |
619 | label_any: any |
|
619 | label_any: any | |
620 | label_none: none |
|
620 | label_none: none | |
621 | label_nobody: nobody |
|
621 | label_nobody: nobody | |
622 | label_next: Next |
|
622 | label_next: Next | |
623 | label_previous: Previous |
|
623 | label_previous: Previous | |
624 | label_used_by: Used by |
|
624 | label_used_by: Used by | |
625 | label_details: Details |
|
625 | label_details: Details | |
626 | label_add_note: Add a note |
|
626 | label_add_note: Add a note | |
627 | label_per_page: Per page |
|
627 | label_per_page: Per page | |
628 | label_calendar: Calendar |
|
628 | label_calendar: Calendar | |
629 | label_months_from: months from |
|
629 | label_months_from: months from | |
630 | label_gantt: Gantt |
|
630 | label_gantt: Gantt | |
631 | label_internal: Internal |
|
631 | label_internal: Internal | |
632 | label_last_changes: "last %{count} changes" |
|
632 | label_last_changes: "last %{count} changes" | |
633 | label_change_view_all: View all changes |
|
633 | label_change_view_all: View all changes | |
634 | label_personalize_page: Personalize this page |
|
634 | label_personalize_page: Personalize this page | |
635 | label_comment: Comment |
|
635 | label_comment: Comment | |
636 | label_comment_plural: Comments |
|
636 | label_comment_plural: Comments | |
637 | label_x_comments: |
|
637 | label_x_comments: | |
638 | zero: no comments |
|
638 | zero: no comments | |
639 | one: 1 comment |
|
639 | one: 1 comment | |
640 | other: "%{count} comments" |
|
640 | other: "%{count} comments" | |
641 | label_comment_add: Add a comment |
|
641 | label_comment_add: Add a comment | |
642 | label_comment_added: Comment added |
|
642 | label_comment_added: Comment added | |
643 | label_comment_delete: Delete comments |
|
643 | label_comment_delete: Delete comments | |
644 | label_query: Custom query |
|
644 | label_query: Custom query | |
645 | label_query_plural: Custom queries |
|
645 | label_query_plural: Custom queries | |
646 | label_query_new: New query |
|
646 | label_query_new: New query | |
647 | label_my_queries: My custom queries |
|
647 | label_my_queries: My custom queries | |
648 | label_filter_add: Add filter |
|
648 | label_filter_add: Add filter | |
649 | label_filter_plural: Filters |
|
649 | label_filter_plural: Filters | |
650 | label_equals: is |
|
650 | label_equals: is | |
651 | label_not_equals: is not |
|
651 | label_not_equals: is not | |
652 | label_in_less_than: in less than |
|
652 | label_in_less_than: in less than | |
653 | label_in_more_than: in more than |
|
653 | label_in_more_than: in more than | |
654 | label_in_the_next_days: in the next |
|
654 | label_in_the_next_days: in the next | |
655 | label_in_the_past_days: in the past |
|
655 | label_in_the_past_days: in the past | |
656 | label_greater_or_equal: '>=' |
|
656 | label_greater_or_equal: '>=' | |
657 | label_less_or_equal: '<=' |
|
657 | label_less_or_equal: '<=' | |
658 | label_between: between |
|
658 | label_between: between | |
659 | label_in: in |
|
659 | label_in: in | |
660 | label_today: today |
|
660 | label_today: today | |
661 | label_all_time: all time |
|
661 | label_all_time: all time | |
662 | label_yesterday: yesterday |
|
662 | label_yesterday: yesterday | |
663 | label_this_week: this week |
|
663 | label_this_week: this week | |
664 | label_last_week: last week |
|
664 | label_last_week: last week | |
665 | label_last_n_weeks: "last %{count} weeks" |
|
665 | label_last_n_weeks: "last %{count} weeks" | |
666 | label_last_n_days: "last %{count} days" |
|
666 | label_last_n_days: "last %{count} days" | |
667 | label_this_month: this month |
|
667 | label_this_month: this month | |
668 | label_last_month: last month |
|
668 | label_last_month: last month | |
669 | label_this_year: this year |
|
669 | label_this_year: this year | |
670 | label_date_range: Date range |
|
670 | label_date_range: Date range | |
671 | label_less_than_ago: less than days ago |
|
671 | label_less_than_ago: less than days ago | |
672 | label_more_than_ago: more than days ago |
|
672 | label_more_than_ago: more than days ago | |
673 | label_ago: days ago |
|
673 | label_ago: days ago | |
674 | label_contains: contains |
|
674 | label_contains: contains | |
675 | label_not_contains: doesn't contain |
|
675 | label_not_contains: doesn't contain | |
676 | label_any_issues_in_project: any issues in project |
|
676 | label_any_issues_in_project: any issues in project | |
677 | label_any_issues_not_in_project: any issues not in project |
|
677 | label_any_issues_not_in_project: any issues not in project | |
678 | label_no_issues_in_project: no issues in project |
|
678 | label_no_issues_in_project: no issues in project | |
679 | label_day_plural: days |
|
679 | label_day_plural: days | |
680 | label_repository: Repository |
|
680 | label_repository: Repository | |
681 | label_repository_new: New repository |
|
681 | label_repository_new: New repository | |
682 | label_repository_plural: Repositories |
|
682 | label_repository_plural: Repositories | |
683 | label_browse: Browse |
|
683 | label_browse: Browse | |
684 | label_branch: Branch |
|
684 | label_branch: Branch | |
685 | label_tag: Tag |
|
685 | label_tag: Tag | |
686 | label_revision: Revision |
|
686 | label_revision: Revision | |
687 | label_revision_plural: Revisions |
|
687 | label_revision_plural: Revisions | |
688 | label_revision_id: "Revision %{value}" |
|
688 | label_revision_id: "Revision %{value}" | |
689 | label_associated_revisions: Associated revisions |
|
689 | label_associated_revisions: Associated revisions | |
690 | label_added: added |
|
690 | label_added: added | |
691 | label_modified: modified |
|
691 | label_modified: modified | |
692 | label_copied: copied |
|
692 | label_copied: copied | |
693 | label_renamed: renamed |
|
693 | label_renamed: renamed | |
694 | label_deleted: deleted |
|
694 | label_deleted: deleted | |
695 | label_latest_revision: Latest revision |
|
695 | label_latest_revision: Latest revision | |
696 | label_latest_revision_plural: Latest revisions |
|
696 | label_latest_revision_plural: Latest revisions | |
697 | label_view_revisions: View revisions |
|
697 | label_view_revisions: View revisions | |
698 | label_view_all_revisions: View all revisions |
|
698 | label_view_all_revisions: View all revisions | |
699 | label_max_size: Maximum size |
|
699 | label_max_size: Maximum size | |
700 | label_sort_highest: Move to top |
|
700 | label_sort_highest: Move to top | |
701 | label_sort_higher: Move up |
|
701 | label_sort_higher: Move up | |
702 | label_sort_lower: Move down |
|
702 | label_sort_lower: Move down | |
703 | label_sort_lowest: Move to bottom |
|
703 | label_sort_lowest: Move to bottom | |
704 | label_roadmap: Roadmap |
|
704 | label_roadmap: Roadmap | |
705 | label_roadmap_due_in: "Due in %{value}" |
|
705 | label_roadmap_due_in: "Due in %{value}" | |
706 | label_roadmap_overdue: "%{value} late" |
|
706 | label_roadmap_overdue: "%{value} late" | |
707 | label_roadmap_no_issues: No issues for this version |
|
707 | label_roadmap_no_issues: No issues for this version | |
708 | label_search: Search |
|
708 | label_search: Search | |
709 | label_result_plural: Results |
|
709 | label_result_plural: Results | |
710 | label_all_words: All words |
|
710 | label_all_words: All words | |
711 | label_wiki: Wiki |
|
711 | label_wiki: Wiki | |
712 | label_wiki_edit: Wiki edit |
|
712 | label_wiki_edit: Wiki edit | |
713 | label_wiki_edit_plural: Wiki edits |
|
713 | label_wiki_edit_plural: Wiki edits | |
714 | label_wiki_page: Wiki page |
|
714 | label_wiki_page: Wiki page | |
715 | label_wiki_page_plural: Wiki pages |
|
715 | label_wiki_page_plural: Wiki pages | |
716 | label_index_by_title: Index by title |
|
716 | label_index_by_title: Index by title | |
717 | label_index_by_date: Index by date |
|
717 | label_index_by_date: Index by date | |
718 | label_current_version: Current version |
|
718 | label_current_version: Current version | |
719 | label_preview: Preview |
|
719 | label_preview: Preview | |
720 | label_feed_plural: Feeds |
|
720 | label_feed_plural: Feeds | |
721 | label_changes_details: Details of all changes |
|
721 | label_changes_details: Details of all changes | |
722 | label_issue_tracking: Issue tracking |
|
722 | label_issue_tracking: Issue tracking | |
723 | label_spent_time: Spent time |
|
723 | label_spent_time: Spent time | |
724 | label_overall_spent_time: Overall spent time |
|
724 | label_overall_spent_time: Overall spent time | |
725 | label_f_hour: "%{value} hour" |
|
725 | label_f_hour: "%{value} hour" | |
726 | label_f_hour_plural: "%{value} hours" |
|
726 | label_f_hour_plural: "%{value} hours" | |
727 | label_time_tracking: Time tracking |
|
727 | label_time_tracking: Time tracking | |
728 | label_change_plural: Changes |
|
728 | label_change_plural: Changes | |
729 | label_statistics: Statistics |
|
729 | label_statistics: Statistics | |
730 | label_commits_per_month: Commits per month |
|
730 | label_commits_per_month: Commits per month | |
731 | label_commits_per_author: Commits per author |
|
731 | label_commits_per_author: Commits per author | |
732 | label_diff: diff |
|
732 | label_diff: diff | |
733 | label_view_diff: View differences |
|
733 | label_view_diff: View differences | |
734 | label_diff_inline: inline |
|
734 | label_diff_inline: inline | |
735 | label_diff_side_by_side: side by side |
|
735 | label_diff_side_by_side: side by side | |
736 | label_options: Options |
|
736 | label_options: Options | |
737 | label_copy_workflow_from: Copy workflow from |
|
737 | label_copy_workflow_from: Copy workflow from | |
738 | label_permissions_report: Permissions report |
|
738 | label_permissions_report: Permissions report | |
739 | label_watched_issues: Watched issues |
|
739 | label_watched_issues: Watched issues | |
740 | label_related_issues: Related issues |
|
740 | label_related_issues: Related issues | |
741 | label_applied_status: Applied status |
|
741 | label_applied_status: Applied status | |
742 | label_loading: Loading... |
|
742 | label_loading: Loading... | |
743 | label_relation_new: New relation |
|
743 | label_relation_new: New relation | |
744 | label_relation_delete: Delete relation |
|
744 | label_relation_delete: Delete relation | |
745 | label_relates_to: Related to |
|
745 | label_relates_to: Related to | |
746 | label_duplicates: Duplicates |
|
746 | label_duplicates: Duplicates | |
747 | label_duplicated_by: Duplicated by |
|
747 | label_duplicated_by: Duplicated by | |
748 | label_blocks: Blocks |
|
748 | label_blocks: Blocks | |
749 | label_blocked_by: Blocked by |
|
749 | label_blocked_by: Blocked by | |
750 | label_precedes: Precedes |
|
750 | label_precedes: Precedes | |
751 | label_follows: Follows |
|
751 | label_follows: Follows | |
752 | label_copied_to: Copied to |
|
752 | label_copied_to: Copied to | |
753 | label_copied_from: Copied from |
|
753 | label_copied_from: Copied from | |
754 | label_end_to_start: end to start |
|
754 | label_end_to_start: end to start | |
755 | label_end_to_end: end to end |
|
755 | label_end_to_end: end to end | |
756 | label_start_to_start: start to start |
|
756 | label_start_to_start: start to start | |
757 | label_start_to_end: start to end |
|
757 | label_start_to_end: start to end | |
758 | label_stay_logged_in: Stay logged in |
|
758 | label_stay_logged_in: Stay logged in | |
759 | label_disabled: disabled |
|
759 | label_disabled: disabled | |
760 | label_show_completed_versions: Show completed versions |
|
760 | label_show_completed_versions: Show completed versions | |
761 | label_me: me |
|
761 | label_me: me | |
762 | label_board: Forum |
|
762 | label_board: Forum | |
763 | label_board_new: New forum |
|
763 | label_board_new: New forum | |
764 | label_board_plural: Forums |
|
764 | label_board_plural: Forums | |
765 | label_board_locked: Locked |
|
765 | label_board_locked: Locked | |
766 | label_board_sticky: Sticky |
|
766 | label_board_sticky: Sticky | |
767 | label_topic_plural: Topics |
|
767 | label_topic_plural: Topics | |
768 | label_message_plural: Messages |
|
768 | label_message_plural: Messages | |
769 | label_message_last: Last message |
|
769 | label_message_last: Last message | |
770 | label_message_new: New message |
|
770 | label_message_new: New message | |
771 | label_message_posted: Message added |
|
771 | label_message_posted: Message added | |
772 | label_reply_plural: Replies |
|
772 | label_reply_plural: Replies | |
773 | label_send_information: Send account information to the user |
|
773 | label_send_information: Send account information to the user | |
774 | label_year: Year |
|
774 | label_year: Year | |
775 | label_month: Month |
|
775 | label_month: Month | |
776 | label_week: Week |
|
776 | label_week: Week | |
777 | label_date_from: From |
|
777 | label_date_from: From | |
778 | label_date_to: To |
|
778 | label_date_to: To | |
779 | label_language_based: Based on user's language |
|
779 | label_language_based: Based on user's language | |
780 | label_sort_by: "Sort by %{value}" |
|
780 | label_sort_by: "Sort by %{value}" | |
781 | label_send_test_email: Send a test email |
|
781 | label_send_test_email: Send a test email | |
782 | label_feeds_access_key: RSS access key |
|
782 | label_feeds_access_key: RSS access key | |
783 | label_missing_feeds_access_key: Missing a RSS access key |
|
783 | label_missing_feeds_access_key: Missing a RSS access key | |
784 | label_feeds_access_key_created_on: "RSS access key created %{value} ago" |
|
784 | label_feeds_access_key_created_on: "RSS access key created %{value} ago" | |
785 | label_module_plural: Modules |
|
785 | label_module_plural: Modules | |
786 | label_added_time_by: "Added by %{author} %{age} ago" |
|
786 | label_added_time_by: "Added by %{author} %{age} ago" | |
787 | label_updated_time_by: "Updated by %{author} %{age} ago" |
|
787 | label_updated_time_by: "Updated by %{author} %{age} ago" | |
788 | label_updated_time: "Updated %{value} ago" |
|
788 | label_updated_time: "Updated %{value} ago" | |
789 | label_jump_to_a_project: Jump to a project... |
|
789 | label_jump_to_a_project: Jump to a project... | |
790 | label_file_plural: Files |
|
790 | label_file_plural: Files | |
791 | label_changeset_plural: Changesets |
|
791 | label_changeset_plural: Changesets | |
792 | label_default_columns: Default columns |
|
792 | label_default_columns: Default columns | |
793 | label_no_change_option: (No change) |
|
793 | label_no_change_option: (No change) | |
794 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
794 | label_bulk_edit_selected_issues: Bulk edit selected issues | |
795 | label_bulk_edit_selected_time_entries: Bulk edit selected time entries |
|
795 | label_bulk_edit_selected_time_entries: Bulk edit selected time entries | |
796 | label_theme: Theme |
|
796 | label_theme: Theme | |
797 | label_default: Default |
|
797 | label_default: Default | |
798 | label_search_titles_only: Search titles only |
|
798 | label_search_titles_only: Search titles only | |
799 | label_user_mail_option_all: "For any event on all my projects" |
|
799 | label_user_mail_option_all: "For any event on all my projects" | |
800 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
800 | label_user_mail_option_selected: "For any event on the selected projects only..." | |
801 | label_user_mail_option_none: "No events" |
|
801 | label_user_mail_option_none: "No events" | |
802 | label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" |
|
802 | label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" | |
803 | label_user_mail_option_only_assigned: "Only for things I am assigned to" |
|
803 | label_user_mail_option_only_assigned: "Only for things I am assigned to" | |
804 | label_user_mail_option_only_owner: "Only for things I am the owner of" |
|
804 | label_user_mail_option_only_owner: "Only for things I am the owner of" | |
805 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
805 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" | |
806 | label_registration_activation_by_email: account activation by email |
|
806 | label_registration_activation_by_email: account activation by email | |
807 | label_registration_manual_activation: manual account activation |
|
807 | label_registration_manual_activation: manual account activation | |
808 | label_registration_automatic_activation: automatic account activation |
|
808 | label_registration_automatic_activation: automatic account activation | |
809 | label_display_per_page: "Per page: %{value}" |
|
809 | label_display_per_page: "Per page: %{value}" | |
810 | label_age: Age |
|
810 | label_age: Age | |
811 | label_change_properties: Change properties |
|
811 | label_change_properties: Change properties | |
812 | label_general: General |
|
812 | label_general: General | |
813 | label_more: More |
|
813 | label_more: More | |
814 | label_scm: SCM |
|
814 | label_scm: SCM | |
815 | label_plugins: Plugins |
|
815 | label_plugins: Plugins | |
816 | label_ldap_authentication: LDAP authentication |
|
816 | label_ldap_authentication: LDAP authentication | |
817 | label_downloads_abbr: D/L |
|
817 | label_downloads_abbr: D/L | |
818 | label_optional_description: Optional description |
|
818 | label_optional_description: Optional description | |
819 | label_add_another_file: Add another file |
|
819 | label_add_another_file: Add another file | |
820 | label_preferences: Preferences |
|
820 | label_preferences: Preferences | |
821 | label_chronological_order: In chronological order |
|
821 | label_chronological_order: In chronological order | |
822 | label_reverse_chronological_order: In reverse chronological order |
|
822 | label_reverse_chronological_order: In reverse chronological order | |
823 | label_planning: Planning |
|
823 | label_planning: Planning | |
824 | label_incoming_emails: Incoming emails |
|
824 | label_incoming_emails: Incoming emails | |
825 | label_generate_key: Generate a key |
|
825 | label_generate_key: Generate a key | |
826 | label_issue_watchers: Watchers |
|
826 | label_issue_watchers: Watchers | |
827 | label_example: Example |
|
827 | label_example: Example | |
828 | label_display: Display |
|
828 | label_display: Display | |
829 | label_sort: Sort |
|
829 | label_sort: Sort | |
830 | label_ascending: Ascending |
|
830 | label_ascending: Ascending | |
831 | label_descending: Descending |
|
831 | label_descending: Descending | |
832 | label_date_from_to: From %{start} to %{end} |
|
832 | label_date_from_to: From %{start} to %{end} | |
833 | label_wiki_content_added: Wiki page added |
|
833 | label_wiki_content_added: Wiki page added | |
834 | label_wiki_content_updated: Wiki page updated |
|
834 | label_wiki_content_updated: Wiki page updated | |
835 | label_group: Group |
|
835 | label_group: Group | |
836 | label_group_plural: Groups |
|
836 | label_group_plural: Groups | |
837 | label_group_new: New group |
|
837 | label_group_new: New group | |
838 | label_time_entry_plural: Spent time |
|
838 | label_time_entry_plural: Spent time | |
839 | label_version_sharing_none: Not shared |
|
839 | label_version_sharing_none: Not shared | |
840 | label_version_sharing_descendants: With subprojects |
|
840 | label_version_sharing_descendants: With subprojects | |
841 | label_version_sharing_hierarchy: With project hierarchy |
|
841 | label_version_sharing_hierarchy: With project hierarchy | |
842 | label_version_sharing_tree: With project tree |
|
842 | label_version_sharing_tree: With project tree | |
843 | label_version_sharing_system: With all projects |
|
843 | label_version_sharing_system: With all projects | |
844 | label_update_issue_done_ratios: Update issue done ratios |
|
844 | label_update_issue_done_ratios: Update issue done ratios | |
845 | label_copy_source: Source |
|
845 | label_copy_source: Source | |
846 | label_copy_target: Target |
|
846 | label_copy_target: Target | |
847 | label_copy_same_as_target: Same as target |
|
847 | label_copy_same_as_target: Same as target | |
848 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
848 | label_display_used_statuses_only: Only display statuses that are used by this tracker | |
849 | label_api_access_key: API access key |
|
849 | label_api_access_key: API access key | |
850 | label_missing_api_access_key: Missing an API access key |
|
850 | label_missing_api_access_key: Missing an API access key | |
851 | label_api_access_key_created_on: "API access key created %{value} ago" |
|
851 | label_api_access_key_created_on: "API access key created %{value} ago" | |
852 | label_profile: Profile |
|
852 | label_profile: Profile | |
853 | label_subtask_plural: Subtasks |
|
853 | label_subtask_plural: Subtasks | |
854 | label_project_copy_notifications: Send email notifications during the project copy |
|
854 | label_project_copy_notifications: Send email notifications during the project copy | |
855 | label_principal_search: "Search for user or group:" |
|
855 | label_principal_search: "Search for user or group:" | |
856 | label_user_search: "Search for user:" |
|
856 | label_user_search: "Search for user:" | |
857 | label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author |
|
857 | label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author | |
858 | label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee |
|
858 | label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee | |
859 | label_issues_visibility_all: All issues |
|
859 | label_issues_visibility_all: All issues | |
860 | label_issues_visibility_public: All non private issues |
|
860 | label_issues_visibility_public: All non private issues | |
861 | label_issues_visibility_own: Issues created by or assigned to the user |
|
861 | label_issues_visibility_own: Issues created by or assigned to the user | |
862 | label_git_report_last_commit: Report last commit for files and directories |
|
862 | label_git_report_last_commit: Report last commit for files and directories | |
863 | label_parent_revision: Parent |
|
863 | label_parent_revision: Parent | |
864 | label_child_revision: Child |
|
864 | label_child_revision: Child | |
865 | label_export_options: "%{export_format} export options" |
|
865 | label_export_options: "%{export_format} export options" | |
866 | label_copy_attachments: Copy attachments |
|
866 | label_copy_attachments: Copy attachments | |
867 | label_copy_subtasks: Copy subtasks |
|
867 | label_copy_subtasks: Copy subtasks | |
868 | label_item_position: "%{position} of %{count}" |
|
868 | label_item_position: "%{position} of %{count}" | |
869 | label_completed_versions: Completed versions |
|
869 | label_completed_versions: Completed versions | |
870 | label_search_for_watchers: Search for watchers to add |
|
870 | label_search_for_watchers: Search for watchers to add | |
871 | label_session_expiration: Session expiration |
|
871 | label_session_expiration: Session expiration | |
872 | label_show_closed_projects: View closed projects |
|
872 | label_show_closed_projects: View closed projects | |
873 | label_status_transitions: Status transitions |
|
873 | label_status_transitions: Status transitions | |
874 | label_fields_permissions: Fields permissions |
|
874 | label_fields_permissions: Fields permissions | |
875 | label_readonly: Read-only |
|
875 | label_readonly: Read-only | |
876 | label_required: Required |
|
876 | label_required: Required | |
877 | label_attribute_of_project: "Project's %{name}" |
|
877 | label_attribute_of_project: "Project's %{name}" | |
|
878 | label_attribute_of_issue: "Issue's %{name}" | |||
878 | label_attribute_of_author: "Author's %{name}" |
|
879 | label_attribute_of_author: "Author's %{name}" | |
879 | label_attribute_of_assigned_to: "Assignee's %{name}" |
|
880 | label_attribute_of_assigned_to: "Assignee's %{name}" | |
880 | label_attribute_of_user: "User's %{name}" |
|
881 | label_attribute_of_user: "User's %{name}" | |
881 | label_attribute_of_fixed_version: "Target version's %{name}" |
|
882 | label_attribute_of_fixed_version: "Target version's %{name}" | |
882 | label_cross_project_descendants: With subprojects |
|
883 | label_cross_project_descendants: With subprojects | |
883 | label_cross_project_tree: With project tree |
|
884 | label_cross_project_tree: With project tree | |
884 | label_cross_project_hierarchy: With project hierarchy |
|
885 | label_cross_project_hierarchy: With project hierarchy | |
885 | label_cross_project_system: With all projects |
|
886 | label_cross_project_system: With all projects | |
886 |
|
887 | |||
887 | button_login: Login |
|
888 | button_login: Login | |
888 | button_submit: Submit |
|
889 | button_submit: Submit | |
889 | button_save: Save |
|
890 | button_save: Save | |
890 | button_check_all: Check all |
|
891 | button_check_all: Check all | |
891 | button_uncheck_all: Uncheck all |
|
892 | button_uncheck_all: Uncheck all | |
892 | button_collapse_all: Collapse all |
|
893 | button_collapse_all: Collapse all | |
893 | button_expand_all: Expand all |
|
894 | button_expand_all: Expand all | |
894 | button_delete: Delete |
|
895 | button_delete: Delete | |
895 | button_create: Create |
|
896 | button_create: Create | |
896 | button_create_and_continue: Create and continue |
|
897 | button_create_and_continue: Create and continue | |
897 | button_test: Test |
|
898 | button_test: Test | |
898 | button_edit: Edit |
|
899 | button_edit: Edit | |
899 | button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" |
|
900 | button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" | |
900 | button_add: Add |
|
901 | button_add: Add | |
901 | button_change: Change |
|
902 | button_change: Change | |
902 | button_apply: Apply |
|
903 | button_apply: Apply | |
903 | button_clear: Clear |
|
904 | button_clear: Clear | |
904 | button_lock: Lock |
|
905 | button_lock: Lock | |
905 | button_unlock: Unlock |
|
906 | button_unlock: Unlock | |
906 | button_download: Download |
|
907 | button_download: Download | |
907 | button_list: List |
|
908 | button_list: List | |
908 | button_view: View |
|
909 | button_view: View | |
909 | button_move: Move |
|
910 | button_move: Move | |
910 | button_move_and_follow: Move and follow |
|
911 | button_move_and_follow: Move and follow | |
911 | button_back: Back |
|
912 | button_back: Back | |
912 | button_cancel: Cancel |
|
913 | button_cancel: Cancel | |
913 | button_activate: Activate |
|
914 | button_activate: Activate | |
914 | button_sort: Sort |
|
915 | button_sort: Sort | |
915 | button_log_time: Log time |
|
916 | button_log_time: Log time | |
916 | button_rollback: Rollback to this version |
|
917 | button_rollback: Rollback to this version | |
917 | button_watch: Watch |
|
918 | button_watch: Watch | |
918 | button_unwatch: Unwatch |
|
919 | button_unwatch: Unwatch | |
919 | button_reply: Reply |
|
920 | button_reply: Reply | |
920 | button_archive: Archive |
|
921 | button_archive: Archive | |
921 | button_unarchive: Unarchive |
|
922 | button_unarchive: Unarchive | |
922 | button_reset: Reset |
|
923 | button_reset: Reset | |
923 | button_rename: Rename |
|
924 | button_rename: Rename | |
924 | button_change_password: Change password |
|
925 | button_change_password: Change password | |
925 | button_copy: Copy |
|
926 | button_copy: Copy | |
926 | button_copy_and_follow: Copy and follow |
|
927 | button_copy_and_follow: Copy and follow | |
927 | button_annotate: Annotate |
|
928 | button_annotate: Annotate | |
928 | button_update: Update |
|
929 | button_update: Update | |
929 | button_configure: Configure |
|
930 | button_configure: Configure | |
930 | button_quote: Quote |
|
931 | button_quote: Quote | |
931 | button_duplicate: Duplicate |
|
932 | button_duplicate: Duplicate | |
932 | button_show: Show |
|
933 | button_show: Show | |
933 | button_hide: Hide |
|
934 | button_hide: Hide | |
934 | button_edit_section: Edit this section |
|
935 | button_edit_section: Edit this section | |
935 | button_export: Export |
|
936 | button_export: Export | |
936 | button_delete_my_account: Delete my account |
|
937 | button_delete_my_account: Delete my account | |
937 | button_close: Close |
|
938 | button_close: Close | |
938 | button_reopen: Reopen |
|
939 | button_reopen: Reopen | |
939 |
|
940 | |||
940 | status_active: active |
|
941 | status_active: active | |
941 | status_registered: registered |
|
942 | status_registered: registered | |
942 | status_locked: locked |
|
943 | status_locked: locked | |
943 |
|
944 | |||
944 | project_status_active: active |
|
945 | project_status_active: active | |
945 | project_status_closed: closed |
|
946 | project_status_closed: closed | |
946 | project_status_archived: archived |
|
947 | project_status_archived: archived | |
947 |
|
948 | |||
948 | version_status_open: open |
|
949 | version_status_open: open | |
949 | version_status_locked: locked |
|
950 | version_status_locked: locked | |
950 | version_status_closed: closed |
|
951 | version_status_closed: closed | |
951 |
|
952 | |||
952 | field_active: Active |
|
953 | field_active: Active | |
953 |
|
954 | |||
954 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
955 | text_select_mail_notifications: Select actions for which email notifications should be sent. | |
955 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
956 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
956 | text_min_max_length_info: 0 means no restriction |
|
957 | text_min_max_length_info: 0 means no restriction | |
957 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data? |
|
958 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data? | |
958 | text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." |
|
959 | text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." | |
959 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
960 | text_workflow_edit: Select a role and a tracker to edit the workflow | |
960 | text_are_you_sure: Are you sure? |
|
961 | text_are_you_sure: Are you sure? | |
961 | text_journal_changed: "%{label} changed from %{old} to %{new}" |
|
962 | text_journal_changed: "%{label} changed from %{old} to %{new}" | |
962 | text_journal_changed_no_detail: "%{label} updated" |
|
963 | text_journal_changed_no_detail: "%{label} updated" | |
963 | text_journal_set_to: "%{label} set to %{value}" |
|
964 | text_journal_set_to: "%{label} set to %{value}" | |
964 | text_journal_deleted: "%{label} deleted (%{old})" |
|
965 | text_journal_deleted: "%{label} deleted (%{old})" | |
965 | text_journal_added: "%{label} %{value} added" |
|
966 | text_journal_added: "%{label} %{value} added" | |
966 | text_tip_issue_begin_day: issue beginning this day |
|
967 | text_tip_issue_begin_day: issue beginning this day | |
967 | text_tip_issue_end_day: issue ending this day |
|
968 | text_tip_issue_end_day: issue ending this day | |
968 | text_tip_issue_begin_end_day: issue beginning and ending this day |
|
969 | text_tip_issue_begin_end_day: issue beginning and ending this day | |
969 | 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.' |
|
970 | 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.' | |
970 | text_caracters_maximum: "%{count} characters maximum." |
|
971 | text_caracters_maximum: "%{count} characters maximum." | |
971 | text_caracters_minimum: "Must be at least %{count} characters long." |
|
972 | text_caracters_minimum: "Must be at least %{count} characters long." | |
972 | text_length_between: "Length between %{min} and %{max} characters." |
|
973 | text_length_between: "Length between %{min} and %{max} characters." | |
973 | text_tracker_no_workflow: No workflow defined for this tracker |
|
974 | text_tracker_no_workflow: No workflow defined for this tracker | |
974 | text_unallowed_characters: Unallowed characters |
|
975 | text_unallowed_characters: Unallowed characters | |
975 | text_comma_separated: Multiple values allowed (comma separated). |
|
976 | text_comma_separated: Multiple values allowed (comma separated). | |
976 | text_line_separated: Multiple values allowed (one line for each value). |
|
977 | text_line_separated: Multiple values allowed (one line for each value). | |
977 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
978 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
978 | text_issue_added: "Issue %{id} has been reported by %{author}." |
|
979 | text_issue_added: "Issue %{id} has been reported by %{author}." | |
979 | text_issue_updated: "Issue %{id} has been updated by %{author}." |
|
980 | text_issue_updated: "Issue %{id} has been updated by %{author}." | |
980 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? |
|
981 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? | |
981 | text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" |
|
982 | text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" | |
982 | text_issue_category_destroy_assignments: Remove category assignments |
|
983 | text_issue_category_destroy_assignments: Remove category assignments | |
983 | text_issue_category_reassign_to: Reassign issues to this category |
|
984 | text_issue_category_reassign_to: Reassign issues to this category | |
984 | 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)." |
|
985 | 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)." | |
985 | 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." |
|
986 | 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." | |
986 | text_load_default_configuration: Load the default configuration |
|
987 | text_load_default_configuration: Load the default configuration | |
987 | text_status_changed_by_changeset: "Applied in changeset %{value}." |
|
988 | text_status_changed_by_changeset: "Applied in changeset %{value}." | |
988 | text_time_logged_by_changeset: "Applied in changeset %{value}." |
|
989 | text_time_logged_by_changeset: "Applied in changeset %{value}." | |
989 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' |
|
990 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' | |
990 | text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." |
|
991 | text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." | |
991 | text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' |
|
992 | text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' | |
992 | text_select_project_modules: 'Select modules to enable for this project:' |
|
993 | text_select_project_modules: 'Select modules to enable for this project:' | |
993 | text_default_administrator_account_changed: Default administrator account changed |
|
994 | text_default_administrator_account_changed: Default administrator account changed | |
994 | text_file_repository_writable: Attachments directory writable |
|
995 | text_file_repository_writable: Attachments directory writable | |
995 | text_plugin_assets_writable: Plugin assets directory writable |
|
996 | text_plugin_assets_writable: Plugin assets directory writable | |
996 | text_rmagick_available: RMagick available (optional) |
|
997 | text_rmagick_available: RMagick available (optional) | |
997 | text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" |
|
998 | text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" | |
998 | text_destroy_time_entries: Delete reported hours |
|
999 | text_destroy_time_entries: Delete reported hours | |
999 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
1000 | text_assign_time_entries_to_project: Assign reported hours to the project | |
1000 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
1001 | text_reassign_time_entries: 'Reassign reported hours to this issue:' | |
1001 | text_user_wrote: "%{value} wrote:" |
|
1002 | text_user_wrote: "%{value} wrote:" | |
1002 | text_enumeration_destroy_question: "%{count} objects are assigned to this value." |
|
1003 | text_enumeration_destroy_question: "%{count} objects are assigned to this value." | |
1003 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
1004 | text_enumeration_category_reassign_to: 'Reassign them to this value:' | |
1004 | 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." |
|
1005 | 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." | |
1005 | 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." |
|
1006 | 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." | |
1006 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
1007 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' | |
1007 | text_custom_field_possible_values_info: 'One line for each value' |
|
1008 | text_custom_field_possible_values_info: 'One line for each value' | |
1008 | text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" |
|
1009 | text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" | |
1009 | text_wiki_page_nullify_children: "Keep child pages as root pages" |
|
1010 | text_wiki_page_nullify_children: "Keep child pages as root pages" | |
1010 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" |
|
1011 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" | |
1011 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" |
|
1012 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" | |
1012 | 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?" |
|
1013 | 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?" | |
1013 | text_zoom_in: Zoom in |
|
1014 | text_zoom_in: Zoom in | |
1014 | text_zoom_out: Zoom out |
|
1015 | text_zoom_out: Zoom out | |
1015 | text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." |
|
1016 | text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." | |
1016 | text_scm_path_encoding_note: "Default: UTF-8" |
|
1017 | text_scm_path_encoding_note: "Default: UTF-8" | |
1017 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
1018 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) | |
1018 | text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) |
|
1019 | text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) | |
1019 | text_scm_command: Command |
|
1020 | text_scm_command: Command | |
1020 | text_scm_command_version: Version |
|
1021 | text_scm_command_version: Version | |
1021 | text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it. |
|
1022 | text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it. | |
1022 | text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel. |
|
1023 | text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel. | |
1023 | text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)" |
|
1024 | text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)" | |
1024 | text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes" |
|
1025 | text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes" | |
1025 | text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}" |
|
1026 | text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}" | |
1026 | text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it." |
|
1027 | text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it." | |
1027 | text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." |
|
1028 | text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." | |
1028 | text_project_closed: This project is closed and read-only. |
|
1029 | text_project_closed: This project is closed and read-only. | |
1029 | text_turning_multiple_off: "If you disable multiple values, duplicate values will be removed in order to preserve only one value per item." |
|
1030 | text_turning_multiple_off: "If you disable multiple values, duplicate values will be removed in order to preserve only one value per item." | |
1030 |
|
1031 | |||
1031 | default_role_manager: Manager |
|
1032 | default_role_manager: Manager | |
1032 | default_role_developer: Developer |
|
1033 | default_role_developer: Developer | |
1033 | default_role_reporter: Reporter |
|
1034 | default_role_reporter: Reporter | |
1034 | default_tracker_bug: Bug |
|
1035 | default_tracker_bug: Bug | |
1035 | default_tracker_feature: Feature |
|
1036 | default_tracker_feature: Feature | |
1036 | default_tracker_support: Support |
|
1037 | default_tracker_support: Support | |
1037 | default_issue_status_new: New |
|
1038 | default_issue_status_new: New | |
1038 | default_issue_status_in_progress: In Progress |
|
1039 | default_issue_status_in_progress: In Progress | |
1039 | default_issue_status_resolved: Resolved |
|
1040 | default_issue_status_resolved: Resolved | |
1040 | default_issue_status_feedback: Feedback |
|
1041 | default_issue_status_feedback: Feedback | |
1041 | default_issue_status_closed: Closed |
|
1042 | default_issue_status_closed: Closed | |
1042 | default_issue_status_rejected: Rejected |
|
1043 | default_issue_status_rejected: Rejected | |
1043 | default_doc_category_user: User documentation |
|
1044 | default_doc_category_user: User documentation | |
1044 | default_doc_category_tech: Technical documentation |
|
1045 | default_doc_category_tech: Technical documentation | |
1045 | default_priority_low: Low |
|
1046 | default_priority_low: Low | |
1046 | default_priority_normal: Normal |
|
1047 | default_priority_normal: Normal | |
1047 | default_priority_high: High |
|
1048 | default_priority_high: High | |
1048 | default_priority_urgent: Urgent |
|
1049 | default_priority_urgent: Urgent | |
1049 | default_priority_immediate: Immediate |
|
1050 | default_priority_immediate: Immediate | |
1050 | default_activity_design: Design |
|
1051 | default_activity_design: Design | |
1051 | default_activity_development: Development |
|
1052 | default_activity_development: Development | |
1052 |
|
1053 | |||
1053 | enumeration_issue_priorities: Issue priorities |
|
1054 | enumeration_issue_priorities: Issue priorities | |
1054 | enumeration_doc_categories: Document categories |
|
1055 | enumeration_doc_categories: Document categories | |
1055 | enumeration_activities: Activities (time tracking) |
|
1056 | enumeration_activities: Activities (time tracking) | |
1056 | enumeration_system_activity: System Activity |
|
1057 | enumeration_system_activity: System Activity | |
1057 | description_filter: Filter |
|
1058 | description_filter: Filter | |
1058 | description_search: Searchfield |
|
1059 | description_search: Searchfield | |
1059 | description_choose_project: Projects |
|
1060 | description_choose_project: Projects | |
1060 | description_project_scope: Search scope |
|
1061 | description_project_scope: Search scope | |
1061 | description_notes: Notes |
|
1062 | description_notes: Notes | |
1062 | description_message_content: Message content |
|
1063 | description_message_content: Message content | |
1063 | description_query_sort_criteria_attribute: Sort attribute |
|
1064 | description_query_sort_criteria_attribute: Sort attribute | |
1064 | description_query_sort_criteria_direction: Sort direction |
|
1065 | description_query_sort_criteria_direction: Sort direction | |
1065 | description_user_mail_notification: Mail notification settings |
|
1066 | description_user_mail_notification: Mail notification settings | |
1066 | description_available_columns: Available Columns |
|
1067 | description_available_columns: Available Columns | |
1067 | description_selected_columns: Selected Columns |
|
1068 | description_selected_columns: Selected Columns | |
1068 | description_all_columns: All Columns |
|
1069 | description_all_columns: All Columns | |
1069 | description_issue_category_reassign: Choose issue category |
|
1070 | description_issue_category_reassign: Choose issue category | |
1070 | description_wiki_subpages_reassign: Choose new parent page |
|
1071 | description_wiki_subpages_reassign: Choose new parent page | |
1071 | description_date_range_list: Choose range from list |
|
1072 | description_date_range_list: Choose range from list | |
1072 | description_date_range_interval: Choose range by selecting start and end date |
|
1073 | description_date_range_interval: Choose range by selecting start and end date | |
1073 | description_date_from: Enter start date |
|
1074 | description_date_from: Enter start date | |
1074 | description_date_to: Enter end date |
|
1075 | description_date_to: Enter end date | |
1075 | text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.' |
|
1076 | text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.' |
@@ -1,1093 +1,1094 | |||||
1 | # French translations for Ruby on Rails |
|
1 | # French translations for Ruby on Rails | |
2 | # by Christian Lescuyer (christian@flyingcoders.com) |
|
2 | # by Christian Lescuyer (christian@flyingcoders.com) | |
3 | # contributor: Sebastien Grosjean - ZenCocoon.com |
|
3 | # contributor: Sebastien Grosjean - ZenCocoon.com | |
4 | # contributor: Thibaut Cuvelier - Developpez.com |
|
4 | # contributor: Thibaut Cuvelier - Developpez.com | |
5 |
|
5 | |||
6 | fr: |
|
6 | fr: | |
7 | direction: ltr |
|
7 | direction: ltr | |
8 | date: |
|
8 | date: | |
9 | formats: |
|
9 | formats: | |
10 | default: "%d/%m/%Y" |
|
10 | default: "%d/%m/%Y" | |
11 | short: "%e %b" |
|
11 | short: "%e %b" | |
12 | long: "%e %B %Y" |
|
12 | long: "%e %B %Y" | |
13 | long_ordinal: "%e %B %Y" |
|
13 | long_ordinal: "%e %B %Y" | |
14 | only_day: "%e" |
|
14 | only_day: "%e" | |
15 |
|
15 | |||
16 | day_names: [dimanche, lundi, mardi, mercredi, jeudi, vendredi, samedi] |
|
16 | day_names: [dimanche, lundi, mardi, mercredi, jeudi, vendredi, samedi] | |
17 | abbr_day_names: [dim, lun, mar, mer, jeu, ven, sam] |
|
17 | abbr_day_names: [dim, lun, mar, mer, jeu, ven, sam] | |
18 | month_names: [~, janvier, fΓ©vrier, mars, avril, mai, juin, juillet, aoΓ»t, septembre, octobre, novembre, dΓ©cembre] |
|
18 | month_names: [~, janvier, fΓ©vrier, mars, avril, mai, juin, juillet, aoΓ»t, septembre, octobre, novembre, dΓ©cembre] | |
19 | abbr_month_names: [~, jan., fΓ©v., mar., avr., mai, juin, juil., aoΓ»t, sept., oct., nov., dΓ©c.] |
|
19 | abbr_month_names: [~, jan., fΓ©v., mar., avr., mai, juin, juil., aoΓ»t, sept., oct., nov., dΓ©c.] | |
20 | order: |
|
20 | order: | |
21 | - :day |
|
21 | - :day | |
22 | - :month |
|
22 | - :month | |
23 | - :year |
|
23 | - :year | |
24 |
|
24 | |||
25 | time: |
|
25 | time: | |
26 | formats: |
|
26 | formats: | |
27 | default: "%d/%m/%Y %H:%M" |
|
27 | default: "%d/%m/%Y %H:%M" | |
28 | time: "%H:%M" |
|
28 | time: "%H:%M" | |
29 | short: "%d %b %H:%M" |
|
29 | short: "%d %b %H:%M" | |
30 | long: "%A %d %B %Y %H:%M:%S %Z" |
|
30 | long: "%A %d %B %Y %H:%M:%S %Z" | |
31 | long_ordinal: "%A %d %B %Y %H:%M:%S %Z" |
|
31 | long_ordinal: "%A %d %B %Y %H:%M:%S %Z" | |
32 | only_second: "%S" |
|
32 | only_second: "%S" | |
33 | am: 'am' |
|
33 | am: 'am' | |
34 | pm: 'pm' |
|
34 | pm: 'pm' | |
35 |
|
35 | |||
36 | datetime: |
|
36 | datetime: | |
37 | distance_in_words: |
|
37 | distance_in_words: | |
38 | half_a_minute: "30 secondes" |
|
38 | half_a_minute: "30 secondes" | |
39 | less_than_x_seconds: |
|
39 | less_than_x_seconds: | |
40 | zero: "moins d'une seconde" |
|
40 | zero: "moins d'une seconde" | |
41 | one: "moins d'uneΒ seconde" |
|
41 | one: "moins d'uneΒ seconde" | |
42 | other: "moins de %{count}Β secondes" |
|
42 | other: "moins de %{count}Β secondes" | |
43 | x_seconds: |
|
43 | x_seconds: | |
44 | one: "1Β seconde" |
|
44 | one: "1Β seconde" | |
45 | other: "%{count}Β secondes" |
|
45 | other: "%{count}Β secondes" | |
46 | less_than_x_minutes: |
|
46 | less_than_x_minutes: | |
47 | zero: "moins d'une minute" |
|
47 | zero: "moins d'une minute" | |
48 | one: "moins d'uneΒ minute" |
|
48 | one: "moins d'uneΒ minute" | |
49 | other: "moins de %{count}Β minutes" |
|
49 | other: "moins de %{count}Β minutes" | |
50 | x_minutes: |
|
50 | x_minutes: | |
51 | one: "1Β minute" |
|
51 | one: "1Β minute" | |
52 | other: "%{count}Β minutes" |
|
52 | other: "%{count}Β minutes" | |
53 | about_x_hours: |
|
53 | about_x_hours: | |
54 | one: "environ une heure" |
|
54 | one: "environ une heure" | |
55 | other: "environ %{count}Β heures" |
|
55 | other: "environ %{count}Β heures" | |
56 | x_hours: |
|
56 | x_hours: | |
57 | one: "une heure" |
|
57 | one: "une heure" | |
58 | other: "%{count}Β heures" |
|
58 | other: "%{count}Β heures" | |
59 | x_days: |
|
59 | x_days: | |
60 | one: "unΒ jour" |
|
60 | one: "unΒ jour" | |
61 | other: "%{count}Β jours" |
|
61 | other: "%{count}Β jours" | |
62 | about_x_months: |
|
62 | about_x_months: | |
63 | one: "environ un mois" |
|
63 | one: "environ un mois" | |
64 | other: "environ %{count}Β mois" |
|
64 | other: "environ %{count}Β mois" | |
65 | x_months: |
|
65 | x_months: | |
66 | one: "unΒ mois" |
|
66 | one: "unΒ mois" | |
67 | other: "%{count}Β mois" |
|
67 | other: "%{count}Β mois" | |
68 | about_x_years: |
|
68 | about_x_years: | |
69 | one: "environ un an" |
|
69 | one: "environ un an" | |
70 | other: "environ %{count}Β ans" |
|
70 | other: "environ %{count}Β ans" | |
71 | over_x_years: |
|
71 | over_x_years: | |
72 | one: "plus d'un an" |
|
72 | one: "plus d'un an" | |
73 | other: "plus de %{count}Β ans" |
|
73 | other: "plus de %{count}Β ans" | |
74 | almost_x_years: |
|
74 | almost_x_years: | |
75 | one: "presqu'un an" |
|
75 | one: "presqu'un an" | |
76 | other: "presque %{count} ans" |
|
76 | other: "presque %{count} ans" | |
77 | prompts: |
|
77 | prompts: | |
78 | year: "AnnΓ©e" |
|
78 | year: "AnnΓ©e" | |
79 | month: "Mois" |
|
79 | month: "Mois" | |
80 | day: "Jour" |
|
80 | day: "Jour" | |
81 | hour: "Heure" |
|
81 | hour: "Heure" | |
82 | minute: "Minute" |
|
82 | minute: "Minute" | |
83 | second: "Seconde" |
|
83 | second: "Seconde" | |
84 |
|
84 | |||
85 | number: |
|
85 | number: | |
86 | format: |
|
86 | format: | |
87 | precision: 3 |
|
87 | precision: 3 | |
88 | separator: ',' |
|
88 | separator: ',' | |
89 | delimiter: 'Β ' |
|
89 | delimiter: 'Β ' | |
90 | currency: |
|
90 | currency: | |
91 | format: |
|
91 | format: | |
92 | unit: 'β¬' |
|
92 | unit: 'β¬' | |
93 | precision: 2 |
|
93 | precision: 2 | |
94 | format: '%nΒ %u' |
|
94 | format: '%nΒ %u' | |
95 | human: |
|
95 | human: | |
96 | format: |
|
96 | format: | |
97 | precision: 3 |
|
97 | precision: 3 | |
98 | storage_units: |
|
98 | storage_units: | |
99 | format: "%n %u" |
|
99 | format: "%n %u" | |
100 | units: |
|
100 | units: | |
101 | byte: |
|
101 | byte: | |
102 | one: "octet" |
|
102 | one: "octet" | |
103 | other: "octet" |
|
103 | other: "octet" | |
104 | kb: "ko" |
|
104 | kb: "ko" | |
105 | mb: "Mo" |
|
105 | mb: "Mo" | |
106 | gb: "Go" |
|
106 | gb: "Go" | |
107 | tb: "To" |
|
107 | tb: "To" | |
108 |
|
108 | |||
109 | support: |
|
109 | support: | |
110 | array: |
|
110 | array: | |
111 | sentence_connector: 'et' |
|
111 | sentence_connector: 'et' | |
112 | skip_last_comma: true |
|
112 | skip_last_comma: true | |
113 | word_connector: ", " |
|
113 | word_connector: ", " | |
114 | two_words_connector: " et " |
|
114 | two_words_connector: " et " | |
115 | last_word_connector: " et " |
|
115 | last_word_connector: " et " | |
116 |
|
116 | |||
117 | activerecord: |
|
117 | activerecord: | |
118 | errors: |
|
118 | errors: | |
119 | template: |
|
119 | template: | |
120 | header: |
|
120 | header: | |
121 | one: "Impossible d'enregistrer %{model} : une erreur" |
|
121 | one: "Impossible d'enregistrer %{model} : une erreur" | |
122 | other: "Impossible d'enregistrer %{model} : %{count} erreurs." |
|
122 | other: "Impossible d'enregistrer %{model} : %{count} erreurs." | |
123 | body: "Veuillez vΓ©rifier les champs suivantsΒ :" |
|
123 | body: "Veuillez vΓ©rifier les champs suivantsΒ :" | |
124 | messages: |
|
124 | messages: | |
125 | inclusion: "n'est pas inclus(e) dans la liste" |
|
125 | inclusion: "n'est pas inclus(e) dans la liste" | |
126 | exclusion: "n'est pas disponible" |
|
126 | exclusion: "n'est pas disponible" | |
127 | invalid: "n'est pas valide" |
|
127 | invalid: "n'est pas valide" | |
128 | confirmation: "ne concorde pas avec la confirmation" |
|
128 | confirmation: "ne concorde pas avec la confirmation" | |
129 | accepted: "doit Γͺtre acceptΓ©(e)" |
|
129 | accepted: "doit Γͺtre acceptΓ©(e)" | |
130 | empty: "doit Γͺtre renseignΓ©(e)" |
|
130 | empty: "doit Γͺtre renseignΓ©(e)" | |
131 | blank: "doit Γͺtre renseignΓ©(e)" |
|
131 | blank: "doit Γͺtre renseignΓ©(e)" | |
132 | too_long: "est trop long (pas plus de %{count} caractères)" |
|
132 | too_long: "est trop long (pas plus de %{count} caractères)" | |
133 | too_short: "est trop court (au moins %{count} caractères)" |
|
133 | too_short: "est trop court (au moins %{count} caractères)" | |
134 | wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)" |
|
134 | wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)" | |
135 | taken: "est dΓ©jΓ utilisΓ©" |
|
135 | taken: "est dΓ©jΓ utilisΓ©" | |
136 | not_a_number: "n'est pas un nombre" |
|
136 | not_a_number: "n'est pas un nombre" | |
137 | not_a_date: "n'est pas une date valide" |
|
137 | not_a_date: "n'est pas une date valide" | |
138 | greater_than: "doit Γͺtre supΓ©rieur Γ %{count}" |
|
138 | greater_than: "doit Γͺtre supΓ©rieur Γ %{count}" | |
139 | greater_than_or_equal_to: "doit Γͺtre supΓ©rieur ou Γ©gal Γ %{count}" |
|
139 | greater_than_or_equal_to: "doit Γͺtre supΓ©rieur ou Γ©gal Γ %{count}" | |
140 | equal_to: "doit Γͺtre Γ©gal Γ %{count}" |
|
140 | equal_to: "doit Γͺtre Γ©gal Γ %{count}" | |
141 | less_than: "doit Γͺtre infΓ©rieur Γ %{count}" |
|
141 | less_than: "doit Γͺtre infΓ©rieur Γ %{count}" | |
142 | less_than_or_equal_to: "doit Γͺtre infΓ©rieur ou Γ©gal Γ %{count}" |
|
142 | less_than_or_equal_to: "doit Γͺtre infΓ©rieur ou Γ©gal Γ %{count}" | |
143 | odd: "doit Γͺtre impair" |
|
143 | odd: "doit Γͺtre impair" | |
144 | even: "doit Γͺtre pair" |
|
144 | even: "doit Γͺtre pair" | |
145 | greater_than_start_date: "doit Γͺtre postΓ©rieure Γ la date de dΓ©but" |
|
145 | greater_than_start_date: "doit Γͺtre postΓ©rieure Γ la date de dΓ©but" | |
146 | not_same_project: "n'appartient pas au mΓͺme projet" |
|
146 | not_same_project: "n'appartient pas au mΓͺme projet" | |
147 | circular_dependency: "Cette relation crΓ©erait une dΓ©pendance circulaire" |
|
147 | circular_dependency: "Cette relation crΓ©erait une dΓ©pendance circulaire" | |
148 | cant_link_an_issue_with_a_descendant: "Une demande ne peut pas Γͺtre liΓ©e Γ l'une de ses sous-tΓ’ches" |
|
148 | cant_link_an_issue_with_a_descendant: "Une demande ne peut pas Γͺtre liΓ©e Γ l'une de ses sous-tΓ’ches" | |
149 |
|
149 | |||
150 | actionview_instancetag_blank_option: Choisir |
|
150 | actionview_instancetag_blank_option: Choisir | |
151 |
|
151 | |||
152 | general_text_No: 'Non' |
|
152 | general_text_No: 'Non' | |
153 | general_text_Yes: 'Oui' |
|
153 | general_text_Yes: 'Oui' | |
154 | general_text_no: 'non' |
|
154 | general_text_no: 'non' | |
155 | general_text_yes: 'oui' |
|
155 | general_text_yes: 'oui' | |
156 | general_lang_name: 'FranΓ§ais' |
|
156 | general_lang_name: 'FranΓ§ais' | |
157 | general_csv_separator: ';' |
|
157 | general_csv_separator: ';' | |
158 | general_csv_decimal_separator: ',' |
|
158 | general_csv_decimal_separator: ',' | |
159 | general_csv_encoding: ISO-8859-1 |
|
159 | general_csv_encoding: ISO-8859-1 | |
160 | general_pdf_encoding: UTF-8 |
|
160 | general_pdf_encoding: UTF-8 | |
161 | general_first_day_of_week: '1' |
|
161 | general_first_day_of_week: '1' | |
162 |
|
162 | |||
163 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
163 | notice_account_updated: Le compte a été mis à jour avec succès. | |
164 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
164 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. | |
165 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
165 | notice_account_password_updated: Mot de passe mis à jour avec succès. | |
166 | notice_account_wrong_password: Mot de passe incorrect |
|
166 | notice_account_wrong_password: Mot de passe incorrect | |
167 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a Γ©tΓ© envoyΓ©. |
|
167 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a Γ©tΓ© envoyΓ©. | |
168 | notice_account_unknown_email: Aucun compte ne correspond Γ cette adresse. |
|
168 | notice_account_unknown_email: Aucun compte ne correspond Γ cette adresse. | |
169 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
169 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. | |
170 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a Γ©tΓ© envoyΓ©. |
|
170 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a Γ©tΓ© envoyΓ©. | |
171 | notice_account_activated: Votre compte a Γ©tΓ© activΓ©. Vous pouvez Γ prΓ©sent vous connecter. |
|
171 | notice_account_activated: Votre compte a Γ©tΓ© activΓ©. Vous pouvez Γ prΓ©sent vous connecter. | |
172 | notice_successful_create: Création effectuée avec succès. |
|
172 | notice_successful_create: Création effectuée avec succès. | |
173 | notice_successful_update: Mise à jour effectuée avec succès. |
|
173 | notice_successful_update: Mise à jour effectuée avec succès. | |
174 | notice_successful_delete: Suppression effectuée avec succès. |
|
174 | notice_successful_delete: Suppression effectuée avec succès. | |
175 | notice_successful_connection: Connexion rΓ©ussie. |
|
175 | notice_successful_connection: Connexion rΓ©ussie. | |
176 | notice_file_not_found: "La page Γ laquelle vous souhaitez accΓ©der n'existe pas ou a Γ©tΓ© supprimΓ©e." |
|
176 | notice_file_not_found: "La page Γ laquelle vous souhaitez accΓ©der n'existe pas ou a Γ©tΓ© supprimΓ©e." | |
177 | notice_locking_conflict: Les donnΓ©es ont Γ©tΓ© mises Γ jour par un autre utilisateur. Mise Γ jour impossible. |
|
177 | notice_locking_conflict: Les donnΓ©es ont Γ©tΓ© mises Γ jour par un autre utilisateur. Mise Γ jour impossible. | |
178 | notice_not_authorized: "Vous n'Γͺtes pas autorisΓ© Γ accΓ©der Γ cette page." |
|
178 | notice_not_authorized: "Vous n'Γͺtes pas autorisΓ© Γ accΓ©der Γ cette page." | |
179 | notice_not_authorized_archived_project: Le projet auquel vous tentez d'accΓ©der a Γ©tΓ© archivΓ©. |
|
179 | notice_not_authorized_archived_project: Le projet auquel vous tentez d'accΓ©der a Γ©tΓ© archivΓ©. | |
180 | notice_email_sent: "Un email a Γ©tΓ© envoyΓ© Γ %{value}" |
|
180 | notice_email_sent: "Un email a Γ©tΓ© envoyΓ© Γ %{value}" | |
181 | notice_email_error: "Erreur lors de l'envoi de l'email (%{value})" |
|
181 | notice_email_error: "Erreur lors de l'envoi de l'email (%{value})" | |
182 | notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée." |
|
182 | notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée." | |
183 | notice_failed_to_save_issues: "%{count} demande(s) sur les %{total} sΓ©lectionnΓ©es n'ont pas pu Γͺtre mise(s) Γ jour : %{ids}." |
|
183 | notice_failed_to_save_issues: "%{count} demande(s) sur les %{total} sΓ©lectionnΓ©es n'ont pas pu Γͺtre mise(s) Γ jour : %{ids}." | |
184 | notice_failed_to_save_time_entries: "%{count} temps passΓ©(s) sur les %{total} sΓ©lectionnΓ©s n'ont pas pu Γͺtre mis Γ jour: %{ids}." |
|
184 | notice_failed_to_save_time_entries: "%{count} temps passΓ©(s) sur les %{total} sΓ©lectionnΓ©s n'ont pas pu Γͺtre mis Γ jour: %{ids}." | |
185 | notice_no_issue_selected: "Aucune demande sΓ©lectionnΓ©e ! Cochez les demandes que vous voulez mettre Γ jour." |
|
185 | notice_no_issue_selected: "Aucune demande sΓ©lectionnΓ©e ! Cochez les demandes que vous voulez mettre Γ jour." | |
186 | notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur." |
|
186 | notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur." | |
187 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. |
|
187 | notice_default_data_loaded: Paramétrage par défaut chargé avec succès. | |
188 | notice_unable_delete_version: Impossible de supprimer cette version. |
|
188 | notice_unable_delete_version: Impossible de supprimer cette version. | |
189 | notice_issue_done_ratios_updated: L'avancement des demandes a Γ©tΓ© mis Γ jour. |
|
189 | notice_issue_done_ratios_updated: L'avancement des demandes a Γ©tΓ© mis Γ jour. | |
190 | notice_api_access_key_reseted: Votre clé d'accès API a été réinitialisée. |
|
190 | notice_api_access_key_reseted: Votre clé d'accès API a été réinitialisée. | |
191 | notice_gantt_chart_truncated: "Le diagramme a Γ©tΓ© tronquΓ© car il excΓ¨de le nombre maximal d'Γ©lΓ©ments pouvant Γͺtre affichΓ©s (%{max})" |
|
191 | notice_gantt_chart_truncated: "Le diagramme a Γ©tΓ© tronquΓ© car il excΓ¨de le nombre maximal d'Γ©lΓ©ments pouvant Γͺtre affichΓ©s (%{max})" | |
192 | notice_issue_successful_create: "Demande %{id} créée." |
|
192 | notice_issue_successful_create: "Demande %{id} créée." | |
193 | notice_issue_update_conflict: "La demande a Γ©tΓ© mise Γ jour par un autre utilisateur pendant que vous la modifiez." |
|
193 | notice_issue_update_conflict: "La demande a Γ©tΓ© mise Γ jour par un autre utilisateur pendant que vous la modifiez." | |
194 | notice_account_deleted: "Votre compte a Γ©tΓ© dΓ©finitivement supprimΓ©." |
|
194 | notice_account_deleted: "Votre compte a Γ©tΓ© dΓ©finitivement supprimΓ©." | |
195 | notice_user_successful_create: "Utilisateur %{id} créé." |
|
195 | notice_user_successful_create: "Utilisateur %{id} créé." | |
196 |
|
196 | |||
197 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramΓ©trage : %{value}" |
|
197 | error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramΓ©trage : %{value}" | |
198 | error_scm_not_found: "L'entrΓ©e et/ou la rΓ©vision demandΓ©e n'existe pas dans le dΓ©pΓ΄t." |
|
198 | error_scm_not_found: "L'entrΓ©e et/ou la rΓ©vision demandΓ©e n'existe pas dans le dΓ©pΓ΄t." | |
199 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt : %{value}" |
|
199 | error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt : %{value}" | |
200 | error_scm_annotate: "L'entrΓ©e n'existe pas ou ne peut pas Γͺtre annotΓ©e." |
|
200 | error_scm_annotate: "L'entrΓ©e n'existe pas ou ne peut pas Γͺtre annotΓ©e." | |
201 | error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas Γ ce projet" |
|
201 | error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas Γ ce projet" | |
202 | error_can_not_reopen_issue_on_closed_version: 'Une demande assignΓ©e Γ une version fermΓ©e ne peut pas Γͺtre rΓ©ouverte' |
|
202 | error_can_not_reopen_issue_on_closed_version: 'Une demande assignΓ©e Γ une version fermΓ©e ne peut pas Γͺtre rΓ©ouverte' | |
203 | error_can_not_archive_project: "Ce projet ne peut pas Γͺtre archivΓ©" |
|
203 | error_can_not_archive_project: "Ce projet ne peut pas Γͺtre archivΓ©" | |
204 | error_workflow_copy_source: 'Veuillez sΓ©lectionner un tracker et/ou un rΓ΄le source' |
|
204 | error_workflow_copy_source: 'Veuillez sΓ©lectionner un tracker et/ou un rΓ΄le source' | |
205 | error_workflow_copy_target: 'Veuillez sΓ©lectionner les trackers et rΓ΄les cibles' |
|
205 | error_workflow_copy_target: 'Veuillez sΓ©lectionner les trackers et rΓ΄les cibles' | |
206 | error_issue_done_ratios_not_updated: L'avancement des demandes n'a pas pu Γͺtre mis Γ jour. |
|
206 | error_issue_done_ratios_not_updated: L'avancement des demandes n'a pas pu Γͺtre mis Γ jour. | |
207 | error_attachment_too_big: Ce fichier ne peut pas Γͺtre attachΓ© car il excΓ¨de la taille maximale autorisΓ©e (%{max_size}) |
|
207 | error_attachment_too_big: Ce fichier ne peut pas Γͺtre attachΓ© car il excΓ¨de la taille maximale autorisΓ©e (%{max_size}) | |
208 | error_session_expired: "Votre session a expirΓ©. Veuillez vous reconnecter." |
|
208 | error_session_expired: "Votre session a expirΓ©. Veuillez vous reconnecter." | |
209 |
|
209 | |||
210 | warning_attachments_not_saved: "%{count} fichier(s) n'ont pas pu Γͺtre sauvegardΓ©s." |
|
210 | warning_attachments_not_saved: "%{count} fichier(s) n'ont pas pu Γͺtre sauvegardΓ©s." | |
211 |
|
211 | |||
212 | mail_subject_lost_password: "Votre mot de passe %{value}" |
|
212 | mail_subject_lost_password: "Votre mot de passe %{value}" | |
213 | mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant :' |
|
213 | mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant :' | |
214 | mail_subject_register: "Activation de votre compte %{value}" |
|
214 | mail_subject_register: "Activation de votre compte %{value}" | |
215 | mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant :' |
|
215 | mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant :' | |
216 | mail_body_account_information_external: "Vous pouvez utiliser votre compte %{value} pour vous connecter." |
|
216 | mail_body_account_information_external: "Vous pouvez utiliser votre compte %{value} pour vous connecter." | |
217 | mail_body_account_information: Paramètres de connexion de votre compte |
|
217 | mail_body_account_information: Paramètres de connexion de votre compte | |
218 | mail_subject_account_activation_request: "Demande d'activation d'un compte %{value}" |
|
218 | mail_subject_account_activation_request: "Demande d'activation d'un compte %{value}" | |
219 | mail_body_account_activation_request: "Un nouvel utilisateur (%{value}) s'est inscrit. Son compte nΓ©cessite votre approbation :" |
|
219 | mail_body_account_activation_request: "Un nouvel utilisateur (%{value}) s'est inscrit. Son compte nΓ©cessite votre approbation :" | |
220 | mail_subject_reminder: "%{count} demande(s) arrivent Γ Γ©chΓ©ance (%{days})" |
|
220 | mail_subject_reminder: "%{count} demande(s) arrivent Γ Γ©chΓ©ance (%{days})" | |
221 | mail_body_reminder: "%{count} demande(s) qui vous sont assignΓ©es arrivent Γ Γ©chΓ©ance dans les %{days} prochains jours :" |
|
221 | mail_body_reminder: "%{count} demande(s) qui vous sont assignΓ©es arrivent Γ Γ©chΓ©ance dans les %{days} prochains jours :" | |
222 | mail_subject_wiki_content_added: "Page wiki '%{id}' ajoutΓ©e" |
|
222 | mail_subject_wiki_content_added: "Page wiki '%{id}' ajoutΓ©e" | |
223 | mail_body_wiki_content_added: "La page wiki '%{id}' a Γ©tΓ© ajoutΓ©e par %{author}." |
|
223 | mail_body_wiki_content_added: "La page wiki '%{id}' a Γ©tΓ© ajoutΓ©e par %{author}." | |
224 | mail_subject_wiki_content_updated: "Page wiki '%{id}' mise Γ jour" |
|
224 | mail_subject_wiki_content_updated: "Page wiki '%{id}' mise Γ jour" | |
225 | mail_body_wiki_content_updated: "La page wiki '%{id}' a Γ©tΓ© mise Γ jour par %{author}." |
|
225 | mail_body_wiki_content_updated: "La page wiki '%{id}' a Γ©tΓ© mise Γ jour par %{author}." | |
226 |
|
226 | |||
227 |
|
227 | |||
228 | field_name: Nom |
|
228 | field_name: Nom | |
229 | field_description: Description |
|
229 | field_description: Description | |
230 | field_summary: RΓ©sumΓ© |
|
230 | field_summary: RΓ©sumΓ© | |
231 | field_is_required: Obligatoire |
|
231 | field_is_required: Obligatoire | |
232 | field_firstname: PrΓ©nom |
|
232 | field_firstname: PrΓ©nom | |
233 | field_lastname: Nom |
|
233 | field_lastname: Nom | |
234 | field_mail: "Email " |
|
234 | field_mail: "Email " | |
235 | field_filename: Fichier |
|
235 | field_filename: Fichier | |
236 | field_filesize: Taille |
|
236 | field_filesize: Taille | |
237 | field_downloads: TΓ©lΓ©chargements |
|
237 | field_downloads: TΓ©lΓ©chargements | |
238 | field_author: Auteur |
|
238 | field_author: Auteur | |
239 | field_created_on: "Créé " |
|
239 | field_created_on: "Créé " | |
240 | field_updated_on: "Mis-Γ -jour " |
|
240 | field_updated_on: "Mis-Γ -jour " | |
241 | field_field_format: Format |
|
241 | field_field_format: Format | |
242 | field_is_for_all: Pour tous les projets |
|
242 | field_is_for_all: Pour tous les projets | |
243 | field_possible_values: Valeurs possibles |
|
243 | field_possible_values: Valeurs possibles | |
244 | field_regexp: Expression régulière |
|
244 | field_regexp: Expression régulière | |
245 | field_min_length: Longueur minimum |
|
245 | field_min_length: Longueur minimum | |
246 | field_max_length: Longueur maximum |
|
246 | field_max_length: Longueur maximum | |
247 | field_value: Valeur |
|
247 | field_value: Valeur | |
248 | field_category: CatΓ©gorie |
|
248 | field_category: CatΓ©gorie | |
249 | field_title: Titre |
|
249 | field_title: Titre | |
250 | field_project: Projet |
|
250 | field_project: Projet | |
251 | field_issue: Demande |
|
251 | field_issue: Demande | |
252 | field_status: Statut |
|
252 | field_status: Statut | |
253 | field_notes: Notes |
|
253 | field_notes: Notes | |
254 | field_is_closed: Demande fermΓ©e |
|
254 | field_is_closed: Demande fermΓ©e | |
255 | field_is_default: Valeur par dΓ©faut |
|
255 | field_is_default: Valeur par dΓ©faut | |
256 | field_tracker: Tracker |
|
256 | field_tracker: Tracker | |
257 | field_subject: Sujet |
|
257 | field_subject: Sujet | |
258 | field_due_date: EchΓ©ance |
|
258 | field_due_date: EchΓ©ance | |
259 | field_assigned_to: AssignΓ© Γ |
|
259 | field_assigned_to: AssignΓ© Γ | |
260 | field_priority: PrioritΓ© |
|
260 | field_priority: PrioritΓ© | |
261 | field_fixed_version: Version cible |
|
261 | field_fixed_version: Version cible | |
262 | field_user: Utilisateur |
|
262 | field_user: Utilisateur | |
263 | field_role: RΓ΄le |
|
263 | field_role: RΓ΄le | |
264 | field_homepage: "Site web " |
|
264 | field_homepage: "Site web " | |
265 | field_is_public: Public |
|
265 | field_is_public: Public | |
266 | field_parent: Sous-projet de |
|
266 | field_parent: Sous-projet de | |
267 | field_is_in_roadmap: Demandes affichΓ©es dans la roadmap |
|
267 | field_is_in_roadmap: Demandes affichΓ©es dans la roadmap | |
268 | field_login: "Identifiant " |
|
268 | field_login: "Identifiant " | |
269 | field_mail_notification: Notifications par mail |
|
269 | field_mail_notification: Notifications par mail | |
270 | field_admin: Administrateur |
|
270 | field_admin: Administrateur | |
271 | field_last_login_on: "Dernière connexion " |
|
271 | field_last_login_on: "Dernière connexion " | |
272 | field_language: Langue |
|
272 | field_language: Langue | |
273 | field_effective_date: Date |
|
273 | field_effective_date: Date | |
274 | field_password: Mot de passe |
|
274 | field_password: Mot de passe | |
275 | field_new_password: Nouveau mot de passe |
|
275 | field_new_password: Nouveau mot de passe | |
276 | field_password_confirmation: Confirmation |
|
276 | field_password_confirmation: Confirmation | |
277 | field_version: Version |
|
277 | field_version: Version | |
278 | field_type: Type |
|
278 | field_type: Type | |
279 | field_host: HΓ΄te |
|
279 | field_host: HΓ΄te | |
280 | field_port: Port |
|
280 | field_port: Port | |
281 | field_account: Compte |
|
281 | field_account: Compte | |
282 | field_base_dn: Base DN |
|
282 | field_base_dn: Base DN | |
283 | field_attr_login: Attribut Identifiant |
|
283 | field_attr_login: Attribut Identifiant | |
284 | field_attr_firstname: Attribut PrΓ©nom |
|
284 | field_attr_firstname: Attribut PrΓ©nom | |
285 | field_attr_lastname: Attribut Nom |
|
285 | field_attr_lastname: Attribut Nom | |
286 | field_attr_mail: Attribut Email |
|
286 | field_attr_mail: Attribut Email | |
287 | field_onthefly: CrΓ©ation des utilisateurs Γ la volΓ©e |
|
287 | field_onthefly: CrΓ©ation des utilisateurs Γ la volΓ©e | |
288 | field_start_date: DΓ©but |
|
288 | field_start_date: DΓ©but | |
289 | field_done_ratio: "% rΓ©alisΓ©" |
|
289 | field_done_ratio: "% rΓ©alisΓ©" | |
290 | field_auth_source: Mode d'authentification |
|
290 | field_auth_source: Mode d'authentification | |
291 | field_hide_mail: Cacher mon adresse mail |
|
291 | field_hide_mail: Cacher mon adresse mail | |
292 | field_comments: Commentaire |
|
292 | field_comments: Commentaire | |
293 | field_url: URL |
|
293 | field_url: URL | |
294 | field_start_page: Page de dΓ©marrage |
|
294 | field_start_page: Page de dΓ©marrage | |
295 | field_subproject: Sous-projet |
|
295 | field_subproject: Sous-projet | |
296 | field_hours: Heures |
|
296 | field_hours: Heures | |
297 | field_activity: ActivitΓ© |
|
297 | field_activity: ActivitΓ© | |
298 | field_spent_on: Date |
|
298 | field_spent_on: Date | |
299 | field_identifier: Identifiant |
|
299 | field_identifier: Identifiant | |
300 | field_is_filter: UtilisΓ© comme filtre |
|
300 | field_is_filter: UtilisΓ© comme filtre | |
301 | field_issue_to: Demande liΓ©e |
|
301 | field_issue_to: Demande liΓ©e | |
302 | field_delay: Retard |
|
302 | field_delay: Retard | |
303 | field_assignable: Demandes assignables Γ ce rΓ΄le |
|
303 | field_assignable: Demandes assignables Γ ce rΓ΄le | |
304 | field_redirect_existing_links: Rediriger les liens existants |
|
304 | field_redirect_existing_links: Rediriger les liens existants | |
305 | field_estimated_hours: Temps estimΓ© |
|
305 | field_estimated_hours: Temps estimΓ© | |
306 | field_column_names: Colonnes |
|
306 | field_column_names: Colonnes | |
307 | field_time_zone: Fuseau horaire |
|
307 | field_time_zone: Fuseau horaire | |
308 | field_searchable: UtilisΓ© pour les recherches |
|
308 | field_searchable: UtilisΓ© pour les recherches | |
309 | field_default_value: Valeur par dΓ©faut |
|
309 | field_default_value: Valeur par dΓ©faut | |
310 | field_comments_sorting: Afficher les commentaires |
|
310 | field_comments_sorting: Afficher les commentaires | |
311 | field_parent_title: Page parent |
|
311 | field_parent_title: Page parent | |
312 | field_editable: Modifiable |
|
312 | field_editable: Modifiable | |
313 | field_watcher: Observateur |
|
313 | field_watcher: Observateur | |
314 | field_identity_url: URL OpenID |
|
314 | field_identity_url: URL OpenID | |
315 | field_content: Contenu |
|
315 | field_content: Contenu | |
316 | field_group_by: Grouper par |
|
316 | field_group_by: Grouper par | |
317 | field_sharing: Partage |
|
317 | field_sharing: Partage | |
318 | field_active: Actif |
|
318 | field_active: Actif | |
319 | field_parent_issue: TΓ’che parente |
|
319 | field_parent_issue: TΓ’che parente | |
320 | field_visible: Visible |
|
320 | field_visible: Visible | |
321 | field_warn_on_leaving_unsaved: "M'avertir lorsque je quitte une page contenant du texte non sauvegardΓ©" |
|
321 | field_warn_on_leaving_unsaved: "M'avertir lorsque je quitte une page contenant du texte non sauvegardΓ©" | |
322 | field_issues_visibility: VisibilitΓ© des demandes |
|
322 | field_issues_visibility: VisibilitΓ© des demandes | |
323 | field_is_private: PrivΓ©e |
|
323 | field_is_private: PrivΓ©e | |
324 | field_commit_logs_encoding: Encodage des messages de commit |
|
324 | field_commit_logs_encoding: Encodage des messages de commit | |
325 | field_repository_is_default: DΓ©pΓ΄t principal |
|
325 | field_repository_is_default: DΓ©pΓ΄t principal | |
326 | field_multiple: Valeurs multiples |
|
326 | field_multiple: Valeurs multiples | |
327 | field_auth_source_ldap_filter: Filtre LDAP |
|
327 | field_auth_source_ldap_filter: Filtre LDAP | |
328 | field_core_fields: Champs standards |
|
328 | field_core_fields: Champs standards | |
329 | field_timeout: "Timeout (en secondes)" |
|
329 | field_timeout: "Timeout (en secondes)" | |
330 | field_board_parent: Forum parent |
|
330 | field_board_parent: Forum parent | |
331 | field_private_notes: Notes privΓ©es |
|
331 | field_private_notes: Notes privΓ©es | |
332 |
|
332 | |||
333 | setting_app_title: Titre de l'application |
|
333 | setting_app_title: Titre de l'application | |
334 | setting_app_subtitle: Sous-titre de l'application |
|
334 | setting_app_subtitle: Sous-titre de l'application | |
335 | setting_welcome_text: Texte d'accueil |
|
335 | setting_welcome_text: Texte d'accueil | |
336 | setting_default_language: Langue par dΓ©faut |
|
336 | setting_default_language: Langue par dΓ©faut | |
337 | setting_login_required: Authentification obligatoire |
|
337 | setting_login_required: Authentification obligatoire | |
338 | setting_self_registration: Inscription des nouveaux utilisateurs |
|
338 | setting_self_registration: Inscription des nouveaux utilisateurs | |
339 | setting_attachment_max_size: Taille maximale des fichiers |
|
339 | setting_attachment_max_size: Taille maximale des fichiers | |
340 | setting_issues_export_limit: Limite d'exportation des demandes |
|
340 | setting_issues_export_limit: Limite d'exportation des demandes | |
341 | setting_mail_from: Adresse d'Γ©mission |
|
341 | setting_mail_from: Adresse d'Γ©mission | |
342 | setting_bcc_recipients: Destinataires en copie cachΓ©e (cci) |
|
342 | setting_bcc_recipients: Destinataires en copie cachΓ©e (cci) | |
343 | setting_plain_text_mail: Mail en texte brut (non HTML) |
|
343 | setting_plain_text_mail: Mail en texte brut (non HTML) | |
344 | setting_host_name: Nom d'hΓ΄te et chemin |
|
344 | setting_host_name: Nom d'hΓ΄te et chemin | |
345 | setting_text_formatting: Formatage du texte |
|
345 | setting_text_formatting: Formatage du texte | |
346 | setting_wiki_compression: Compression de l'historique des pages wiki |
|
346 | setting_wiki_compression: Compression de l'historique des pages wiki | |
347 | setting_feeds_limit: Nombre maximal d'Γ©lΓ©ments dans les flux Atom |
|
347 | setting_feeds_limit: Nombre maximal d'Γ©lΓ©ments dans les flux Atom | |
348 | setting_default_projects_public: DΓ©finir les nouveaux projets comme publics par dΓ©faut |
|
348 | setting_default_projects_public: DΓ©finir les nouveaux projets comme publics par dΓ©faut | |
349 | setting_autofetch_changesets: RΓ©cupΓ©ration automatique des commits |
|
349 | setting_autofetch_changesets: RΓ©cupΓ©ration automatique des commits | |
350 | setting_sys_api_enabled: Activer les WS pour la gestion des dΓ©pΓ΄ts |
|
350 | setting_sys_api_enabled: Activer les WS pour la gestion des dΓ©pΓ΄ts | |
351 | setting_commit_ref_keywords: Mots-clΓ©s de rΓ©fΓ©rencement |
|
351 | setting_commit_ref_keywords: Mots-clΓ©s de rΓ©fΓ©rencement | |
352 | setting_commit_fix_keywords: Mots-clΓ©s de rΓ©solution |
|
352 | setting_commit_fix_keywords: Mots-clΓ©s de rΓ©solution | |
353 | setting_autologin: DurΓ©e maximale de connexion automatique |
|
353 | setting_autologin: DurΓ©e maximale de connexion automatique | |
354 | setting_date_format: Format de date |
|
354 | setting_date_format: Format de date | |
355 | setting_time_format: Format d'heure |
|
355 | setting_time_format: Format d'heure | |
356 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de diffΓ©rents projets |
|
356 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de diffΓ©rents projets | |
357 | setting_cross_project_subtasks: Autoriser les sous-tΓ’ches dans des projets diffΓ©rents |
|
357 | setting_cross_project_subtasks: Autoriser les sous-tΓ’ches dans des projets diffΓ©rents | |
358 | setting_issue_list_default_columns: Colonnes affichΓ©es par dΓ©faut sur la liste des demandes |
|
358 | setting_issue_list_default_columns: Colonnes affichΓ©es par dΓ©faut sur la liste des demandes | |
359 | setting_emails_footer: Pied-de-page des emails |
|
359 | setting_emails_footer: Pied-de-page des emails | |
360 | setting_protocol: Protocole |
|
360 | setting_protocol: Protocole | |
361 | setting_per_page_options: Options d'objets affichΓ©s par page |
|
361 | setting_per_page_options: Options d'objets affichΓ©s par page | |
362 | setting_user_format: Format d'affichage des utilisateurs |
|
362 | setting_user_format: Format d'affichage des utilisateurs | |
363 | setting_activity_days_default: Nombre de jours affichΓ©s sur l'activitΓ© des projets |
|
363 | setting_activity_days_default: Nombre de jours affichΓ©s sur l'activitΓ© des projets | |
364 | setting_display_subprojects_issues: Afficher par dΓ©faut les demandes des sous-projets sur les projets principaux |
|
364 | setting_display_subprojects_issues: Afficher par dΓ©faut les demandes des sous-projets sur les projets principaux | |
365 | setting_enabled_scm: SCM activΓ©s |
|
365 | setting_enabled_scm: SCM activΓ©s | |
366 | setting_mail_handler_body_delimiters: "Tronquer les emails après l'une de ces lignes" |
|
366 | setting_mail_handler_body_delimiters: "Tronquer les emails après l'une de ces lignes" | |
367 | setting_mail_handler_api_enabled: "Activer le WS pour la rΓ©ception d'emails" |
|
367 | setting_mail_handler_api_enabled: "Activer le WS pour la rΓ©ception d'emails" | |
368 | setting_mail_handler_api_key: ClΓ© de protection de l'API |
|
368 | setting_mail_handler_api_key: ClΓ© de protection de l'API | |
369 | setting_sequential_project_identifiers: GΓ©nΓ©rer des identifiants de projet sΓ©quentiels |
|
369 | setting_sequential_project_identifiers: GΓ©nΓ©rer des identifiants de projet sΓ©quentiels | |
370 | setting_gravatar_enabled: Afficher les Gravatar des utilisateurs |
|
370 | setting_gravatar_enabled: Afficher les Gravatar des utilisateurs | |
371 | setting_diff_max_lines_displayed: Nombre maximum de lignes de diff affichΓ©es |
|
371 | setting_diff_max_lines_displayed: Nombre maximum de lignes de diff affichΓ©es | |
372 | setting_file_max_size_displayed: Taille maximum des fichiers texte affichΓ©s en ligne |
|
372 | setting_file_max_size_displayed: Taille maximum des fichiers texte affichΓ©s en ligne | |
373 | setting_repository_log_display_limit: "Nombre maximum de rΓ©visions affichΓ©es sur l'historique d'un fichier" |
|
373 | setting_repository_log_display_limit: "Nombre maximum de rΓ©visions affichΓ©es sur l'historique d'un fichier" | |
374 | setting_openid: "Autoriser l'authentification et l'enregistrement OpenID" |
|
374 | setting_openid: "Autoriser l'authentification et l'enregistrement OpenID" | |
375 | setting_password_min_length: Longueur minimum des mots de passe |
|
375 | setting_password_min_length: Longueur minimum des mots de passe | |
376 | setting_new_project_user_role_id: RΓ΄le donnΓ© Γ un utilisateur non-administrateur qui crΓ©e un projet |
|
376 | setting_new_project_user_role_id: RΓ΄le donnΓ© Γ un utilisateur non-administrateur qui crΓ©e un projet | |
377 | setting_default_projects_modules: Modules activΓ©s par dΓ©faut pour les nouveaux projets |
|
377 | setting_default_projects_modules: Modules activΓ©s par dΓ©faut pour les nouveaux projets | |
378 | setting_issue_done_ratio: Calcul de l'avancement des demandes |
|
378 | setting_issue_done_ratio: Calcul de l'avancement des demandes | |
379 | setting_issue_done_ratio_issue_status: Utiliser le statut |
|
379 | setting_issue_done_ratio_issue_status: Utiliser le statut | |
380 | setting_issue_done_ratio_issue_field: 'Utiliser le champ % effectuΓ©' |
|
380 | setting_issue_done_ratio_issue_field: 'Utiliser le champ % effectuΓ©' | |
381 | setting_rest_api_enabled: Activer l'API REST |
|
381 | setting_rest_api_enabled: Activer l'API REST | |
382 | setting_gravatar_default: Image Gravatar par dΓ©faut |
|
382 | setting_gravatar_default: Image Gravatar par dΓ©faut | |
383 | setting_start_of_week: Jour de dΓ©but des calendriers |
|
383 | setting_start_of_week: Jour de dΓ©but des calendriers | |
384 | setting_cache_formatted_text: Mettre en cache le texte formatΓ© |
|
384 | setting_cache_formatted_text: Mettre en cache le texte formatΓ© | |
385 | setting_commit_logtime_enabled: Permettre la saisie de temps |
|
385 | setting_commit_logtime_enabled: Permettre la saisie de temps | |
386 | setting_commit_logtime_activity_id: ActivitΓ© pour le temps saisi |
|
386 | setting_commit_logtime_activity_id: ActivitΓ© pour le temps saisi | |
387 | setting_gantt_items_limit: Nombre maximum d'Γ©lΓ©ments affichΓ©s sur le gantt |
|
387 | setting_gantt_items_limit: Nombre maximum d'Γ©lΓ©ments affichΓ©s sur le gantt | |
388 | setting_issue_group_assignment: Permettre l'assignement des demandes aux groupes |
|
388 | setting_issue_group_assignment: Permettre l'assignement des demandes aux groupes | |
389 | setting_default_issue_start_date_to_creation_date: Donner Γ la date de dΓ©but d'une nouvelle demande la valeur de la date du jour |
|
389 | setting_default_issue_start_date_to_creation_date: Donner Γ la date de dΓ©but d'une nouvelle demande la valeur de la date du jour | |
390 | setting_commit_cross_project_ref: Permettre le rΓ©fΓ©rencement et la rΓ©solution des demandes de tous les autres projets |
|
390 | setting_commit_cross_project_ref: Permettre le rΓ©fΓ©rencement et la rΓ©solution des demandes de tous les autres projets | |
391 | setting_unsubscribe: Permettre aux utilisateurs de supprimer leur propre compte |
|
391 | setting_unsubscribe: Permettre aux utilisateurs de supprimer leur propre compte | |
392 | setting_session_lifetime: DurΓ©e de vie maximale des sessions |
|
392 | setting_session_lifetime: DurΓ©e de vie maximale des sessions | |
393 | setting_session_timeout: DurΓ©e maximale d'inactivitΓ© |
|
393 | setting_session_timeout: DurΓ©e maximale d'inactivitΓ© | |
394 | setting_thumbnails_enabled: Afficher les vignettes des images |
|
394 | setting_thumbnails_enabled: Afficher les vignettes des images | |
395 | setting_thumbnails_size: Taille des vignettes (en pixels) |
|
395 | setting_thumbnails_size: Taille des vignettes (en pixels) | |
396 | setting_non_working_week_days: Jours non travaillΓ©s |
|
396 | setting_non_working_week_days: Jours non travaillΓ©s | |
397 |
|
397 | |||
398 | permission_add_project: CrΓ©er un projet |
|
398 | permission_add_project: CrΓ©er un projet | |
399 | permission_add_subprojects: CrΓ©er des sous-projets |
|
399 | permission_add_subprojects: CrΓ©er des sous-projets | |
400 | permission_edit_project: Modifier le projet |
|
400 | permission_edit_project: Modifier le projet | |
401 | permission_close_project: Fermer / rΓ©ouvrir le projet |
|
401 | permission_close_project: Fermer / rΓ©ouvrir le projet | |
402 | permission_select_project_modules: Choisir les modules |
|
402 | permission_select_project_modules: Choisir les modules | |
403 | permission_manage_members: GΓ©rer les membres |
|
403 | permission_manage_members: GΓ©rer les membres | |
404 | permission_manage_versions: GΓ©rer les versions |
|
404 | permission_manage_versions: GΓ©rer les versions | |
405 | permission_manage_categories: GΓ©rer les catΓ©gories de demandes |
|
405 | permission_manage_categories: GΓ©rer les catΓ©gories de demandes | |
406 | permission_view_issues: Voir les demandes |
|
406 | permission_view_issues: Voir les demandes | |
407 | permission_add_issues: CrΓ©er des demandes |
|
407 | permission_add_issues: CrΓ©er des demandes | |
408 | permission_edit_issues: Modifier les demandes |
|
408 | permission_edit_issues: Modifier les demandes | |
409 | permission_manage_issue_relations: GΓ©rer les relations |
|
409 | permission_manage_issue_relations: GΓ©rer les relations | |
410 | permission_set_issues_private: Rendre les demandes publiques ou privΓ©es |
|
410 | permission_set_issues_private: Rendre les demandes publiques ou privΓ©es | |
411 | permission_set_own_issues_private: Rendre ses propres demandes publiques ou privΓ©es |
|
411 | permission_set_own_issues_private: Rendre ses propres demandes publiques ou privΓ©es | |
412 | permission_add_issue_notes: Ajouter des notes |
|
412 | permission_add_issue_notes: Ajouter des notes | |
413 | permission_edit_issue_notes: Modifier les notes |
|
413 | permission_edit_issue_notes: Modifier les notes | |
414 | permission_edit_own_issue_notes: Modifier ses propres notes |
|
414 | permission_edit_own_issue_notes: Modifier ses propres notes | |
415 | permission_view_private_notes: Voir les notes privΓ©es |
|
415 | permission_view_private_notes: Voir les notes privΓ©es | |
416 | permission_set_notes_private: Rendre les notes privΓ©es |
|
416 | permission_set_notes_private: Rendre les notes privΓ©es | |
417 | permission_move_issues: DΓ©placer les demandes |
|
417 | permission_move_issues: DΓ©placer les demandes | |
418 | permission_delete_issues: Supprimer les demandes |
|
418 | permission_delete_issues: Supprimer les demandes | |
419 | permission_manage_public_queries: GΓ©rer les requΓͺtes publiques |
|
419 | permission_manage_public_queries: GΓ©rer les requΓͺtes publiques | |
420 | permission_save_queries: Sauvegarder les requΓͺtes |
|
420 | permission_save_queries: Sauvegarder les requΓͺtes | |
421 | permission_view_gantt: Voir le gantt |
|
421 | permission_view_gantt: Voir le gantt | |
422 | permission_view_calendar: Voir le calendrier |
|
422 | permission_view_calendar: Voir le calendrier | |
423 | permission_view_issue_watchers: Voir la liste des observateurs |
|
423 | permission_view_issue_watchers: Voir la liste des observateurs | |
424 | permission_add_issue_watchers: Ajouter des observateurs |
|
424 | permission_add_issue_watchers: Ajouter des observateurs | |
425 | permission_delete_issue_watchers: Supprimer des observateurs |
|
425 | permission_delete_issue_watchers: Supprimer des observateurs | |
426 | permission_log_time: Saisir le temps passΓ© |
|
426 | permission_log_time: Saisir le temps passΓ© | |
427 | permission_view_time_entries: Voir le temps passΓ© |
|
427 | permission_view_time_entries: Voir le temps passΓ© | |
428 | permission_edit_time_entries: Modifier les temps passΓ©s |
|
428 | permission_edit_time_entries: Modifier les temps passΓ©s | |
429 | permission_edit_own_time_entries: Modifier son propre temps passΓ© |
|
429 | permission_edit_own_time_entries: Modifier son propre temps passΓ© | |
430 | permission_manage_news: GΓ©rer les annonces |
|
430 | permission_manage_news: GΓ©rer les annonces | |
431 | permission_comment_news: Commenter les annonces |
|
431 | permission_comment_news: Commenter les annonces | |
432 | permission_manage_documents: GΓ©rer les documents |
|
432 | permission_manage_documents: GΓ©rer les documents | |
433 | permission_view_documents: Voir les documents |
|
433 | permission_view_documents: Voir les documents | |
434 | permission_manage_files: GΓ©rer les fichiers |
|
434 | permission_manage_files: GΓ©rer les fichiers | |
435 | permission_view_files: Voir les fichiers |
|
435 | permission_view_files: Voir les fichiers | |
436 | permission_manage_wiki: GΓ©rer le wiki |
|
436 | permission_manage_wiki: GΓ©rer le wiki | |
437 | permission_rename_wiki_pages: Renommer les pages |
|
437 | permission_rename_wiki_pages: Renommer les pages | |
438 | permission_delete_wiki_pages: Supprimer les pages |
|
438 | permission_delete_wiki_pages: Supprimer les pages | |
439 | permission_view_wiki_pages: Voir le wiki |
|
439 | permission_view_wiki_pages: Voir le wiki | |
440 | permission_view_wiki_edits: "Voir l'historique des modifications" |
|
440 | permission_view_wiki_edits: "Voir l'historique des modifications" | |
441 | permission_edit_wiki_pages: Modifier les pages |
|
441 | permission_edit_wiki_pages: Modifier les pages | |
442 | permission_delete_wiki_pages_attachments: Supprimer les fichiers joints |
|
442 | permission_delete_wiki_pages_attachments: Supprimer les fichiers joints | |
443 | permission_protect_wiki_pages: ProtΓ©ger les pages |
|
443 | permission_protect_wiki_pages: ProtΓ©ger les pages | |
444 | permission_manage_repository: GΓ©rer le dΓ©pΓ΄t de sources |
|
444 | permission_manage_repository: GΓ©rer le dΓ©pΓ΄t de sources | |
445 | permission_browse_repository: Parcourir les sources |
|
445 | permission_browse_repository: Parcourir les sources | |
446 | permission_view_changesets: Voir les rΓ©visions |
|
446 | permission_view_changesets: Voir les rΓ©visions | |
447 | permission_commit_access: Droit de commit |
|
447 | permission_commit_access: Droit de commit | |
448 | permission_manage_boards: GΓ©rer les forums |
|
448 | permission_manage_boards: GΓ©rer les forums | |
449 | permission_view_messages: Voir les messages |
|
449 | permission_view_messages: Voir les messages | |
450 | permission_add_messages: Poster un message |
|
450 | permission_add_messages: Poster un message | |
451 | permission_edit_messages: Modifier les messages |
|
451 | permission_edit_messages: Modifier les messages | |
452 | permission_edit_own_messages: Modifier ses propres messages |
|
452 | permission_edit_own_messages: Modifier ses propres messages | |
453 | permission_delete_messages: Supprimer les messages |
|
453 | permission_delete_messages: Supprimer les messages | |
454 | permission_delete_own_messages: Supprimer ses propres messages |
|
454 | permission_delete_own_messages: Supprimer ses propres messages | |
455 | permission_export_wiki_pages: Exporter les pages |
|
455 | permission_export_wiki_pages: Exporter les pages | |
456 | permission_manage_project_activities: GΓ©rer les activitΓ©s |
|
456 | permission_manage_project_activities: GΓ©rer les activitΓ©s | |
457 | permission_manage_subtasks: GΓ©rer les sous-tΓ’ches |
|
457 | permission_manage_subtasks: GΓ©rer les sous-tΓ’ches | |
458 | permission_manage_related_issues: GΓ©rer les demandes associΓ©es |
|
458 | permission_manage_related_issues: GΓ©rer les demandes associΓ©es | |
459 |
|
459 | |||
460 | project_module_issue_tracking: Suivi des demandes |
|
460 | project_module_issue_tracking: Suivi des demandes | |
461 | project_module_time_tracking: Suivi du temps passΓ© |
|
461 | project_module_time_tracking: Suivi du temps passΓ© | |
462 | project_module_news: Publication d'annonces |
|
462 | project_module_news: Publication d'annonces | |
463 | project_module_documents: Publication de documents |
|
463 | project_module_documents: Publication de documents | |
464 | project_module_files: Publication de fichiers |
|
464 | project_module_files: Publication de fichiers | |
465 | project_module_wiki: Wiki |
|
465 | project_module_wiki: Wiki | |
466 | project_module_repository: DΓ©pΓ΄t de sources |
|
466 | project_module_repository: DΓ©pΓ΄t de sources | |
467 | project_module_boards: Forums de discussion |
|
467 | project_module_boards: Forums de discussion | |
468 |
|
468 | |||
469 | label_user: Utilisateur |
|
469 | label_user: Utilisateur | |
470 | label_user_plural: Utilisateurs |
|
470 | label_user_plural: Utilisateurs | |
471 | label_user_new: Nouvel utilisateur |
|
471 | label_user_new: Nouvel utilisateur | |
472 | label_user_anonymous: Anonyme |
|
472 | label_user_anonymous: Anonyme | |
473 | label_project: Projet |
|
473 | label_project: Projet | |
474 | label_project_new: Nouveau projet |
|
474 | label_project_new: Nouveau projet | |
475 | label_project_plural: Projets |
|
475 | label_project_plural: Projets | |
476 | label_x_projects: |
|
476 | label_x_projects: | |
477 | zero: aucun projet |
|
477 | zero: aucun projet | |
478 | one: un projet |
|
478 | one: un projet | |
479 | other: "%{count} projets" |
|
479 | other: "%{count} projets" | |
480 | label_project_all: Tous les projets |
|
480 | label_project_all: Tous les projets | |
481 | label_project_latest: Derniers projets |
|
481 | label_project_latest: Derniers projets | |
482 | label_issue: Demande |
|
482 | label_issue: Demande | |
483 | label_issue_new: Nouvelle demande |
|
483 | label_issue_new: Nouvelle demande | |
484 | label_issue_plural: Demandes |
|
484 | label_issue_plural: Demandes | |
485 | label_issue_view_all: Voir toutes les demandes |
|
485 | label_issue_view_all: Voir toutes les demandes | |
486 | label_issue_added: Demande ajoutΓ©e |
|
486 | label_issue_added: Demande ajoutΓ©e | |
487 | label_issue_updated: Demande mise Γ jour |
|
487 | label_issue_updated: Demande mise Γ jour | |
488 | label_issue_note_added: Note ajoutΓ©e |
|
488 | label_issue_note_added: Note ajoutΓ©e | |
489 | label_issue_status_updated: Statut changΓ© |
|
489 | label_issue_status_updated: Statut changΓ© | |
490 | label_issue_priority_updated: PrioritΓ© changΓ©e |
|
490 | label_issue_priority_updated: PrioritΓ© changΓ©e | |
491 | label_issues_by: "Demandes par %{value}" |
|
491 | label_issues_by: "Demandes par %{value}" | |
492 | label_document: Document |
|
492 | label_document: Document | |
493 | label_document_new: Nouveau document |
|
493 | label_document_new: Nouveau document | |
494 | label_document_plural: Documents |
|
494 | label_document_plural: Documents | |
495 | label_document_added: Document ajoutΓ© |
|
495 | label_document_added: Document ajoutΓ© | |
496 | label_role: RΓ΄le |
|
496 | label_role: RΓ΄le | |
497 | label_role_plural: RΓ΄les |
|
497 | label_role_plural: RΓ΄les | |
498 | label_role_new: Nouveau rΓ΄le |
|
498 | label_role_new: Nouveau rΓ΄le | |
499 | label_role_and_permissions: RΓ΄les et permissions |
|
499 | label_role_and_permissions: RΓ΄les et permissions | |
500 | label_role_anonymous: Anonyme |
|
500 | label_role_anonymous: Anonyme | |
501 | label_role_non_member: Non membre |
|
501 | label_role_non_member: Non membre | |
502 | label_member: Membre |
|
502 | label_member: Membre | |
503 | label_member_new: Nouveau membre |
|
503 | label_member_new: Nouveau membre | |
504 | label_member_plural: Membres |
|
504 | label_member_plural: Membres | |
505 | label_tracker: Tracker |
|
505 | label_tracker: Tracker | |
506 | label_tracker_plural: Trackers |
|
506 | label_tracker_plural: Trackers | |
507 | label_tracker_new: Nouveau tracker |
|
507 | label_tracker_new: Nouveau tracker | |
508 | label_workflow: Workflow |
|
508 | label_workflow: Workflow | |
509 | label_issue_status: Statut de demandes |
|
509 | label_issue_status: Statut de demandes | |
510 | label_issue_status_plural: Statuts de demandes |
|
510 | label_issue_status_plural: Statuts de demandes | |
511 | label_issue_status_new: Nouveau statut |
|
511 | label_issue_status_new: Nouveau statut | |
512 | label_issue_category: CatΓ©gorie de demandes |
|
512 | label_issue_category: CatΓ©gorie de demandes | |
513 | label_issue_category_plural: CatΓ©gories de demandes |
|
513 | label_issue_category_plural: CatΓ©gories de demandes | |
514 | label_issue_category_new: Nouvelle catΓ©gorie |
|
514 | label_issue_category_new: Nouvelle catΓ©gorie | |
515 | label_custom_field: Champ personnalisΓ© |
|
515 | label_custom_field: Champ personnalisΓ© | |
516 | label_custom_field_plural: Champs personnalisΓ©s |
|
516 | label_custom_field_plural: Champs personnalisΓ©s | |
517 | label_custom_field_new: Nouveau champ personnalisΓ© |
|
517 | label_custom_field_new: Nouveau champ personnalisΓ© | |
518 | label_enumerations: Listes de valeurs |
|
518 | label_enumerations: Listes de valeurs | |
519 | label_enumeration_new: Nouvelle valeur |
|
519 | label_enumeration_new: Nouvelle valeur | |
520 | label_information: Information |
|
520 | label_information: Information | |
521 | label_information_plural: Informations |
|
521 | label_information_plural: Informations | |
522 | label_please_login: Identification |
|
522 | label_please_login: Identification | |
523 | label_register: S'enregistrer |
|
523 | label_register: S'enregistrer | |
524 | label_login_with_open_id_option: S'authentifier avec OpenID |
|
524 | label_login_with_open_id_option: S'authentifier avec OpenID | |
525 | label_password_lost: Mot de passe perdu |
|
525 | label_password_lost: Mot de passe perdu | |
526 | label_home: Accueil |
|
526 | label_home: Accueil | |
527 | label_my_page: Ma page |
|
527 | label_my_page: Ma page | |
528 | label_my_account: Mon compte |
|
528 | label_my_account: Mon compte | |
529 | label_my_projects: Mes projets |
|
529 | label_my_projects: Mes projets | |
530 | label_my_page_block: Blocs disponibles |
|
530 | label_my_page_block: Blocs disponibles | |
531 | label_administration: Administration |
|
531 | label_administration: Administration | |
532 | label_login: Connexion |
|
532 | label_login: Connexion | |
533 | label_logout: DΓ©connexion |
|
533 | label_logout: DΓ©connexion | |
534 | label_help: Aide |
|
534 | label_help: Aide | |
535 | label_reported_issues: "Demandes soumises " |
|
535 | label_reported_issues: "Demandes soumises " | |
536 | label_assigned_to_me_issues: Demandes qui me sont assignΓ©es |
|
536 | label_assigned_to_me_issues: Demandes qui me sont assignΓ©es | |
537 | label_last_login: "Dernière connexion " |
|
537 | label_last_login: "Dernière connexion " | |
538 | label_registered_on: "Inscrit le " |
|
538 | label_registered_on: "Inscrit le " | |
539 | label_activity: ActivitΓ© |
|
539 | label_activity: ActivitΓ© | |
540 | label_overall_activity: ActivitΓ© globale |
|
540 | label_overall_activity: ActivitΓ© globale | |
541 | label_user_activity: "ActivitΓ© de %{value}" |
|
541 | label_user_activity: "ActivitΓ© de %{value}" | |
542 | label_new: Nouveau |
|
542 | label_new: Nouveau | |
543 | label_logged_as: ConnectΓ© en tant que |
|
543 | label_logged_as: ConnectΓ© en tant que | |
544 | label_environment: Environnement |
|
544 | label_environment: Environnement | |
545 | label_authentication: Authentification |
|
545 | label_authentication: Authentification | |
546 | label_auth_source: Mode d'authentification |
|
546 | label_auth_source: Mode d'authentification | |
547 | label_auth_source_new: Nouveau mode d'authentification |
|
547 | label_auth_source_new: Nouveau mode d'authentification | |
548 | label_auth_source_plural: Modes d'authentification |
|
548 | label_auth_source_plural: Modes d'authentification | |
549 | label_subproject_plural: Sous-projets |
|
549 | label_subproject_plural: Sous-projets | |
550 | label_subproject_new: Nouveau sous-projet |
|
550 | label_subproject_new: Nouveau sous-projet | |
551 | label_and_its_subprojects: "%{value} et ses sous-projets" |
|
551 | label_and_its_subprojects: "%{value} et ses sous-projets" | |
552 | label_min_max_length: Longueurs mini - maxi |
|
552 | label_min_max_length: Longueurs mini - maxi | |
553 | label_list: Liste |
|
553 | label_list: Liste | |
554 | label_date: Date |
|
554 | label_date: Date | |
555 | label_integer: Entier |
|
555 | label_integer: Entier | |
556 | label_float: Nombre dΓ©cimal |
|
556 | label_float: Nombre dΓ©cimal | |
557 | label_boolean: BoolΓ©en |
|
557 | label_boolean: BoolΓ©en | |
558 | label_string: Texte |
|
558 | label_string: Texte | |
559 | label_text: Texte long |
|
559 | label_text: Texte long | |
560 | label_attribute: Attribut |
|
560 | label_attribute: Attribut | |
561 | label_attribute_plural: Attributs |
|
561 | label_attribute_plural: Attributs | |
562 | label_no_data: Aucune donnΓ©e Γ afficher |
|
562 | label_no_data: Aucune donnΓ©e Γ afficher | |
563 | label_change_status: Changer le statut |
|
563 | label_change_status: Changer le statut | |
564 | label_history: Historique |
|
564 | label_history: Historique | |
565 | label_attachment: Fichier |
|
565 | label_attachment: Fichier | |
566 | label_attachment_new: Nouveau fichier |
|
566 | label_attachment_new: Nouveau fichier | |
567 | label_attachment_delete: Supprimer le fichier |
|
567 | label_attachment_delete: Supprimer le fichier | |
568 | label_attachment_plural: Fichiers |
|
568 | label_attachment_plural: Fichiers | |
569 | label_file_added: Fichier ajoutΓ© |
|
569 | label_file_added: Fichier ajoutΓ© | |
570 | label_report: Rapport |
|
570 | label_report: Rapport | |
571 | label_report_plural: Rapports |
|
571 | label_report_plural: Rapports | |
572 | label_news: Annonce |
|
572 | label_news: Annonce | |
573 | label_news_new: Nouvelle annonce |
|
573 | label_news_new: Nouvelle annonce | |
574 | label_news_plural: Annonces |
|
574 | label_news_plural: Annonces | |
575 | label_news_latest: Dernières annonces |
|
575 | label_news_latest: Dernières annonces | |
576 | label_news_view_all: Voir toutes les annonces |
|
576 | label_news_view_all: Voir toutes les annonces | |
577 | label_news_added: Annonce ajoutΓ©e |
|
577 | label_news_added: Annonce ajoutΓ©e | |
578 | label_news_comment_added: Commentaire ajoutΓ© Γ une annonce |
|
578 | label_news_comment_added: Commentaire ajoutΓ© Γ une annonce | |
579 | label_settings: Configuration |
|
579 | label_settings: Configuration | |
580 | label_overview: AperΓ§u |
|
580 | label_overview: AperΓ§u | |
581 | label_version: Version |
|
581 | label_version: Version | |
582 | label_version_new: Nouvelle version |
|
582 | label_version_new: Nouvelle version | |
583 | label_version_plural: Versions |
|
583 | label_version_plural: Versions | |
584 | label_confirmation: Confirmation |
|
584 | label_confirmation: Confirmation | |
585 | label_export_to: 'Formats disponibles :' |
|
585 | label_export_to: 'Formats disponibles :' | |
586 | label_read: Lire... |
|
586 | label_read: Lire... | |
587 | label_public_projects: Projets publics |
|
587 | label_public_projects: Projets publics | |
588 | label_open_issues: ouvert |
|
588 | label_open_issues: ouvert | |
589 | label_open_issues_plural: ouverts |
|
589 | label_open_issues_plural: ouverts | |
590 | label_closed_issues: fermΓ© |
|
590 | label_closed_issues: fermΓ© | |
591 | label_closed_issues_plural: fermΓ©s |
|
591 | label_closed_issues_plural: fermΓ©s | |
592 | label_x_open_issues_abbr_on_total: |
|
592 | label_x_open_issues_abbr_on_total: | |
593 | zero: 0 ouverte sur %{total} |
|
593 | zero: 0 ouverte sur %{total} | |
594 | one: 1 ouverte sur %{total} |
|
594 | one: 1 ouverte sur %{total} | |
595 | other: "%{count} ouvertes sur %{total}" |
|
595 | other: "%{count} ouvertes sur %{total}" | |
596 | label_x_open_issues_abbr: |
|
596 | label_x_open_issues_abbr: | |
597 | zero: 0 ouverte |
|
597 | zero: 0 ouverte | |
598 | one: 1 ouverte |
|
598 | one: 1 ouverte | |
599 | other: "%{count} ouvertes" |
|
599 | other: "%{count} ouvertes" | |
600 | label_x_closed_issues_abbr: |
|
600 | label_x_closed_issues_abbr: | |
601 | zero: 0 fermΓ©e |
|
601 | zero: 0 fermΓ©e | |
602 | one: 1 fermΓ©e |
|
602 | one: 1 fermΓ©e | |
603 | other: "%{count} fermΓ©es" |
|
603 | other: "%{count} fermΓ©es" | |
604 | label_x_issues: |
|
604 | label_x_issues: | |
605 | zero: 0 demande |
|
605 | zero: 0 demande | |
606 | one: 1 demande |
|
606 | one: 1 demande | |
607 | other: "%{count} demandes" |
|
607 | other: "%{count} demandes" | |
608 | label_total: Total |
|
608 | label_total: Total | |
609 | label_permissions: Permissions |
|
609 | label_permissions: Permissions | |
610 | label_current_status: Statut actuel |
|
610 | label_current_status: Statut actuel | |
611 | label_new_statuses_allowed: Nouveaux statuts autorisΓ©s |
|
611 | label_new_statuses_allowed: Nouveaux statuts autorisΓ©s | |
612 | label_all: tous |
|
612 | label_all: tous | |
613 | label_any: tous |
|
613 | label_any: tous | |
614 | label_none: aucun |
|
614 | label_none: aucun | |
615 | label_nobody: personne |
|
615 | label_nobody: personne | |
616 | label_next: Suivant |
|
616 | label_next: Suivant | |
617 | label_previous: PrΓ©cΓ©dent |
|
617 | label_previous: PrΓ©cΓ©dent | |
618 | label_used_by: UtilisΓ© par |
|
618 | label_used_by: UtilisΓ© par | |
619 | label_details: DΓ©tails |
|
619 | label_details: DΓ©tails | |
620 | label_add_note: Ajouter une note |
|
620 | label_add_note: Ajouter une note | |
621 | label_per_page: Par page |
|
621 | label_per_page: Par page | |
622 | label_calendar: Calendrier |
|
622 | label_calendar: Calendrier | |
623 | label_months_from: mois depuis |
|
623 | label_months_from: mois depuis | |
624 | label_gantt: Gantt |
|
624 | label_gantt: Gantt | |
625 | label_internal: Interne |
|
625 | label_internal: Interne | |
626 | label_last_changes: "%{count} derniers changements" |
|
626 | label_last_changes: "%{count} derniers changements" | |
627 | label_change_view_all: Voir tous les changements |
|
627 | label_change_view_all: Voir tous les changements | |
628 | label_personalize_page: Personnaliser cette page |
|
628 | label_personalize_page: Personnaliser cette page | |
629 | label_comment: Commentaire |
|
629 | label_comment: Commentaire | |
630 | label_comment_plural: Commentaires |
|
630 | label_comment_plural: Commentaires | |
631 | label_x_comments: |
|
631 | label_x_comments: | |
632 | zero: aucun commentaire |
|
632 | zero: aucun commentaire | |
633 | one: un commentaire |
|
633 | one: un commentaire | |
634 | other: "%{count} commentaires" |
|
634 | other: "%{count} commentaires" | |
635 | label_comment_add: Ajouter un commentaire |
|
635 | label_comment_add: Ajouter un commentaire | |
636 | label_comment_added: Commentaire ajoutΓ© |
|
636 | label_comment_added: Commentaire ajoutΓ© | |
637 | label_comment_delete: Supprimer les commentaires |
|
637 | label_comment_delete: Supprimer les commentaires | |
638 | label_query: Rapport personnalisΓ© |
|
638 | label_query: Rapport personnalisΓ© | |
639 | label_query_plural: Rapports personnalisΓ©s |
|
639 | label_query_plural: Rapports personnalisΓ©s | |
640 | label_query_new: Nouveau rapport |
|
640 | label_query_new: Nouveau rapport | |
641 | label_my_queries: Mes rapports personnalisΓ©s |
|
641 | label_my_queries: Mes rapports personnalisΓ©s | |
642 | label_filter_add: "Ajouter le filtre " |
|
642 | label_filter_add: "Ajouter le filtre " | |
643 | label_filter_plural: Filtres |
|
643 | label_filter_plural: Filtres | |
644 | label_equals: Γ©gal |
|
644 | label_equals: Γ©gal | |
645 | label_not_equals: diffΓ©rent |
|
645 | label_not_equals: diffΓ©rent | |
646 | label_in_less_than: dans moins de |
|
646 | label_in_less_than: dans moins de | |
647 | label_in_more_than: dans plus de |
|
647 | label_in_more_than: dans plus de | |
648 | label_in_the_next_days: dans les prochains jours |
|
648 | label_in_the_next_days: dans les prochains jours | |
649 | label_in_the_past_days: dans les derniers jours |
|
649 | label_in_the_past_days: dans les derniers jours | |
650 | label_in: dans |
|
650 | label_in: dans | |
651 | label_today: aujourd'hui |
|
651 | label_today: aujourd'hui | |
652 | label_all_time: toute la pΓ©riode |
|
652 | label_all_time: toute la pΓ©riode | |
653 | label_yesterday: hier |
|
653 | label_yesterday: hier | |
654 | label_this_week: cette semaine |
|
654 | label_this_week: cette semaine | |
655 | label_last_week: la semaine dernière |
|
655 | label_last_week: la semaine dernière | |
656 | label_last_n_weeks: "les %{count} dernières semaines" |
|
656 | label_last_n_weeks: "les %{count} dernières semaines" | |
657 | label_last_n_days: "les %{count} derniers jours" |
|
657 | label_last_n_days: "les %{count} derniers jours" | |
658 | label_this_month: ce mois-ci |
|
658 | label_this_month: ce mois-ci | |
659 | label_last_month: le mois dernier |
|
659 | label_last_month: le mois dernier | |
660 | label_this_year: cette annΓ©e |
|
660 | label_this_year: cette annΓ©e | |
661 | label_date_range: PΓ©riode |
|
661 | label_date_range: PΓ©riode | |
662 | label_less_than_ago: il y a moins de |
|
662 | label_less_than_ago: il y a moins de | |
663 | label_more_than_ago: il y a plus de |
|
663 | label_more_than_ago: il y a plus de | |
664 | label_ago: il y a |
|
664 | label_ago: il y a | |
665 | label_contains: contient |
|
665 | label_contains: contient | |
666 | label_not_contains: ne contient pas |
|
666 | label_not_contains: ne contient pas | |
667 | label_any_issues_in_project: une demande du projet |
|
667 | label_any_issues_in_project: une demande du projet | |
668 | label_any_issues_not_in_project: une demande hors du projet |
|
668 | label_any_issues_not_in_project: une demande hors du projet | |
669 | label_no_issues_in_project: aucune demande du projet |
|
669 | label_no_issues_in_project: aucune demande du projet | |
670 | label_day_plural: jours |
|
670 | label_day_plural: jours | |
671 | label_repository: DΓ©pΓ΄t |
|
671 | label_repository: DΓ©pΓ΄t | |
672 | label_repository_new: Nouveau dΓ©pΓ΄t |
|
672 | label_repository_new: Nouveau dΓ©pΓ΄t | |
673 | label_repository_plural: DΓ©pΓ΄ts |
|
673 | label_repository_plural: DΓ©pΓ΄ts | |
674 | label_browse: Parcourir |
|
674 | label_browse: Parcourir | |
675 | label_revision: "RΓ©vision " |
|
675 | label_revision: "RΓ©vision " | |
676 | label_revision_plural: RΓ©visions |
|
676 | label_revision_plural: RΓ©visions | |
677 | label_associated_revisions: RΓ©visions associΓ©es |
|
677 | label_associated_revisions: RΓ©visions associΓ©es | |
678 | label_added: ajoutΓ© |
|
678 | label_added: ajoutΓ© | |
679 | label_modified: modifiΓ© |
|
679 | label_modified: modifiΓ© | |
680 | label_copied: copiΓ© |
|
680 | label_copied: copiΓ© | |
681 | label_renamed: renommΓ© |
|
681 | label_renamed: renommΓ© | |
682 | label_deleted: supprimΓ© |
|
682 | label_deleted: supprimΓ© | |
683 | label_latest_revision: Dernière révision |
|
683 | label_latest_revision: Dernière révision | |
684 | label_latest_revision_plural: Dernières révisions |
|
684 | label_latest_revision_plural: Dernières révisions | |
685 | label_view_revisions: Voir les rΓ©visions |
|
685 | label_view_revisions: Voir les rΓ©visions | |
686 | label_max_size: Taille maximale |
|
686 | label_max_size: Taille maximale | |
687 | label_sort_highest: Remonter en premier |
|
687 | label_sort_highest: Remonter en premier | |
688 | label_sort_higher: Remonter |
|
688 | label_sort_higher: Remonter | |
689 | label_sort_lower: Descendre |
|
689 | label_sort_lower: Descendre | |
690 | label_sort_lowest: Descendre en dernier |
|
690 | label_sort_lowest: Descendre en dernier | |
691 | label_roadmap: Roadmap |
|
691 | label_roadmap: Roadmap | |
692 | label_roadmap_due_in: "ΓchΓ©ance dans %{value}" |
|
692 | label_roadmap_due_in: "ΓchΓ©ance dans %{value}" | |
693 | label_roadmap_overdue: "En retard de %{value}" |
|
693 | label_roadmap_overdue: "En retard de %{value}" | |
694 | label_roadmap_no_issues: Aucune demande pour cette version |
|
694 | label_roadmap_no_issues: Aucune demande pour cette version | |
695 | label_search: "Recherche " |
|
695 | label_search: "Recherche " | |
696 | label_result_plural: RΓ©sultats |
|
696 | label_result_plural: RΓ©sultats | |
697 | label_all_words: Tous les mots |
|
697 | label_all_words: Tous les mots | |
698 | label_wiki: Wiki |
|
698 | label_wiki: Wiki | |
699 | label_wiki_edit: RΓ©vision wiki |
|
699 | label_wiki_edit: RΓ©vision wiki | |
700 | label_wiki_edit_plural: RΓ©visions wiki |
|
700 | label_wiki_edit_plural: RΓ©visions wiki | |
701 | label_wiki_page: Page wiki |
|
701 | label_wiki_page: Page wiki | |
702 | label_wiki_page_plural: Pages wiki |
|
702 | label_wiki_page_plural: Pages wiki | |
703 | label_index_by_title: Index par titre |
|
703 | label_index_by_title: Index par titre | |
704 | label_index_by_date: Index par date |
|
704 | label_index_by_date: Index par date | |
705 | label_current_version: Version actuelle |
|
705 | label_current_version: Version actuelle | |
706 | label_preview: PrΓ©visualisation |
|
706 | label_preview: PrΓ©visualisation | |
707 | label_feed_plural: Flux RSS |
|
707 | label_feed_plural: Flux RSS | |
708 | label_changes_details: DΓ©tails de tous les changements |
|
708 | label_changes_details: DΓ©tails de tous les changements | |
709 | label_issue_tracking: Suivi des demandes |
|
709 | label_issue_tracking: Suivi des demandes | |
710 | label_spent_time: Temps passΓ© |
|
710 | label_spent_time: Temps passΓ© | |
711 | label_f_hour: "%{value} heure" |
|
711 | label_f_hour: "%{value} heure" | |
712 | label_f_hour_plural: "%{value} heures" |
|
712 | label_f_hour_plural: "%{value} heures" | |
713 | label_time_tracking: Suivi du temps |
|
713 | label_time_tracking: Suivi du temps | |
714 | label_change_plural: Changements |
|
714 | label_change_plural: Changements | |
715 | label_statistics: Statistiques |
|
715 | label_statistics: Statistiques | |
716 | label_commits_per_month: Commits par mois |
|
716 | label_commits_per_month: Commits par mois | |
717 | label_commits_per_author: Commits par auteur |
|
717 | label_commits_per_author: Commits par auteur | |
718 | label_view_diff: Voir les diffΓ©rences |
|
718 | label_view_diff: Voir les diffΓ©rences | |
719 | label_diff_inline: en ligne |
|
719 | label_diff_inline: en ligne | |
720 | label_diff_side_by_side: cΓ΄te Γ cΓ΄te |
|
720 | label_diff_side_by_side: cΓ΄te Γ cΓ΄te | |
721 | label_options: Options |
|
721 | label_options: Options | |
722 | label_copy_workflow_from: Copier le workflow de |
|
722 | label_copy_workflow_from: Copier le workflow de | |
723 | label_permissions_report: Synthèse des permissions |
|
723 | label_permissions_report: Synthèse des permissions | |
724 | label_watched_issues: Demandes surveillΓ©es |
|
724 | label_watched_issues: Demandes surveillΓ©es | |
725 | label_related_issues: Demandes liΓ©es |
|
725 | label_related_issues: Demandes liΓ©es | |
726 | label_applied_status: Statut appliquΓ© |
|
726 | label_applied_status: Statut appliquΓ© | |
727 | label_loading: Chargement... |
|
727 | label_loading: Chargement... | |
728 | label_relation_new: Nouvelle relation |
|
728 | label_relation_new: Nouvelle relation | |
729 | label_relation_delete: Supprimer la relation |
|
729 | label_relation_delete: Supprimer la relation | |
730 | label_relates_to: LiΓ© Γ |
|
730 | label_relates_to: LiΓ© Γ | |
731 | label_duplicates: Duplique |
|
731 | label_duplicates: Duplique | |
732 | label_duplicated_by: DupliquΓ© par |
|
732 | label_duplicated_by: DupliquΓ© par | |
733 | label_blocks: Bloque |
|
733 | label_blocks: Bloque | |
734 | label_blocked_by: BloquΓ© par |
|
734 | label_blocked_by: BloquΓ© par | |
735 | label_precedes: Précède |
|
735 | label_precedes: Précède | |
736 | label_follows: Suit |
|
736 | label_follows: Suit | |
737 | label_copied_to: CopiΓ© vers |
|
737 | label_copied_to: CopiΓ© vers | |
738 | label_copied_from: CopiΓ© depuis |
|
738 | label_copied_from: CopiΓ© depuis | |
739 | label_end_to_start: fin Γ dΓ©but |
|
739 | label_end_to_start: fin Γ dΓ©but | |
740 | label_end_to_end: fin Γ fin |
|
740 | label_end_to_end: fin Γ fin | |
741 | label_start_to_start: dΓ©but Γ dΓ©but |
|
741 | label_start_to_start: dΓ©but Γ dΓ©but | |
742 | label_start_to_end: dΓ©but Γ fin |
|
742 | label_start_to_end: dΓ©but Γ fin | |
743 | label_stay_logged_in: Rester connectΓ© |
|
743 | label_stay_logged_in: Rester connectΓ© | |
744 | label_disabled: dΓ©sactivΓ© |
|
744 | label_disabled: dΓ©sactivΓ© | |
745 | label_show_completed_versions: Voir les versions passΓ©es |
|
745 | label_show_completed_versions: Voir les versions passΓ©es | |
746 | label_me: moi |
|
746 | label_me: moi | |
747 | label_board: Forum |
|
747 | label_board: Forum | |
748 | label_board_new: Nouveau forum |
|
748 | label_board_new: Nouveau forum | |
749 | label_board_plural: Forums |
|
749 | label_board_plural: Forums | |
750 | label_topic_plural: Discussions |
|
750 | label_topic_plural: Discussions | |
751 | label_message_plural: Messages |
|
751 | label_message_plural: Messages | |
752 | label_message_last: Dernier message |
|
752 | label_message_last: Dernier message | |
753 | label_message_new: Nouveau message |
|
753 | label_message_new: Nouveau message | |
754 | label_message_posted: Message ajoutΓ© |
|
754 | label_message_posted: Message ajoutΓ© | |
755 | label_reply_plural: RΓ©ponses |
|
755 | label_reply_plural: RΓ©ponses | |
756 | label_send_information: Envoyer les informations Γ l'utilisateur |
|
756 | label_send_information: Envoyer les informations Γ l'utilisateur | |
757 | label_year: AnnΓ©e |
|
757 | label_year: AnnΓ©e | |
758 | label_month: Mois |
|
758 | label_month: Mois | |
759 | label_week: Semaine |
|
759 | label_week: Semaine | |
760 | label_date_from: Du |
|
760 | label_date_from: Du | |
761 | label_date_to: Au |
|
761 | label_date_to: Au | |
762 | label_language_based: BasΓ© sur la langue de l'utilisateur |
|
762 | label_language_based: BasΓ© sur la langue de l'utilisateur | |
763 | label_sort_by: "Trier par %{value}" |
|
763 | label_sort_by: "Trier par %{value}" | |
764 | label_send_test_email: Envoyer un email de test |
|
764 | label_send_test_email: Envoyer un email de test | |
765 | label_feeds_access_key_created_on: "Clé d'accès RSS créée il y a %{value}" |
|
765 | label_feeds_access_key_created_on: "Clé d'accès RSS créée il y a %{value}" | |
766 | label_module_plural: Modules |
|
766 | label_module_plural: Modules | |
767 | label_added_time_by: "AjoutΓ© par %{author} il y a %{age}" |
|
767 | label_added_time_by: "AjoutΓ© par %{author} il y a %{age}" | |
768 | label_updated_time_by: "Mis Γ jour par %{author} il y a %{age}" |
|
768 | label_updated_time_by: "Mis Γ jour par %{author} il y a %{age}" | |
769 | label_updated_time: "Mis Γ jour il y a %{value}" |
|
769 | label_updated_time: "Mis Γ jour il y a %{value}" | |
770 | label_jump_to_a_project: Aller Γ un projet... |
|
770 | label_jump_to_a_project: Aller Γ un projet... | |
771 | label_file_plural: Fichiers |
|
771 | label_file_plural: Fichiers | |
772 | label_changeset_plural: RΓ©visions |
|
772 | label_changeset_plural: RΓ©visions | |
773 | label_default_columns: Colonnes par dΓ©faut |
|
773 | label_default_columns: Colonnes par dΓ©faut | |
774 | label_no_change_option: (Pas de changement) |
|
774 | label_no_change_option: (Pas de changement) | |
775 | label_bulk_edit_selected_issues: Modifier les demandes sΓ©lectionnΓ©es |
|
775 | label_bulk_edit_selected_issues: Modifier les demandes sΓ©lectionnΓ©es | |
776 | label_theme: Thème |
|
776 | label_theme: Thème | |
777 | label_default: DΓ©faut |
|
777 | label_default: DΓ©faut | |
778 | label_search_titles_only: Uniquement dans les titres |
|
778 | label_search_titles_only: Uniquement dans les titres | |
779 | label_user_mail_option_all: "Pour tous les Γ©vΓ©nements de tous mes projets" |
|
779 | label_user_mail_option_all: "Pour tous les Γ©vΓ©nements de tous mes projets" | |
780 | label_user_mail_option_selected: "Pour tous les Γ©vΓ©nements des projets sΓ©lectionnΓ©s..." |
|
780 | label_user_mail_option_selected: "Pour tous les Γ©vΓ©nements des projets sΓ©lectionnΓ©s..." | |
781 | label_user_mail_no_self_notified: "Je ne veux pas Γͺtre notifiΓ© des changements que j'effectue" |
|
781 | label_user_mail_no_self_notified: "Je ne veux pas Γͺtre notifiΓ© des changements que j'effectue" | |
782 | label_registration_activation_by_email: activation du compte par email |
|
782 | label_registration_activation_by_email: activation du compte par email | |
783 | label_registration_manual_activation: activation manuelle du compte |
|
783 | label_registration_manual_activation: activation manuelle du compte | |
784 | label_registration_automatic_activation: activation automatique du compte |
|
784 | label_registration_automatic_activation: activation automatique du compte | |
785 | label_display_per_page: "Par page : %{value}" |
|
785 | label_display_per_page: "Par page : %{value}" | |
786 | label_age: Γge |
|
786 | label_age: Γge | |
787 | label_change_properties: Changer les propriΓ©tΓ©s |
|
787 | label_change_properties: Changer les propriΓ©tΓ©s | |
788 | label_general: GΓ©nΓ©ral |
|
788 | label_general: GΓ©nΓ©ral | |
789 | label_more: Plus |
|
789 | label_more: Plus | |
790 | label_scm: SCM |
|
790 | label_scm: SCM | |
791 | label_plugins: Plugins |
|
791 | label_plugins: Plugins | |
792 | label_ldap_authentication: Authentification LDAP |
|
792 | label_ldap_authentication: Authentification LDAP | |
793 | label_downloads_abbr: D/L |
|
793 | label_downloads_abbr: D/L | |
794 | label_optional_description: Description facultative |
|
794 | label_optional_description: Description facultative | |
795 | label_add_another_file: Ajouter un autre fichier |
|
795 | label_add_another_file: Ajouter un autre fichier | |
796 | label_preferences: PrΓ©fΓ©rences |
|
796 | label_preferences: PrΓ©fΓ©rences | |
797 | label_chronological_order: Dans l'ordre chronologique |
|
797 | label_chronological_order: Dans l'ordre chronologique | |
798 | label_reverse_chronological_order: Dans l'ordre chronologique inverse |
|
798 | label_reverse_chronological_order: Dans l'ordre chronologique inverse | |
799 | label_planning: Planning |
|
799 | label_planning: Planning | |
800 | label_incoming_emails: Emails entrants |
|
800 | label_incoming_emails: Emails entrants | |
801 | label_generate_key: GΓ©nΓ©rer une clΓ© |
|
801 | label_generate_key: GΓ©nΓ©rer une clΓ© | |
802 | label_issue_watchers: Observateurs |
|
802 | label_issue_watchers: Observateurs | |
803 | label_example: Exemple |
|
803 | label_example: Exemple | |
804 | label_display: Affichage |
|
804 | label_display: Affichage | |
805 | label_sort: Tri |
|
805 | label_sort: Tri | |
806 | label_ascending: Croissant |
|
806 | label_ascending: Croissant | |
807 | label_descending: DΓ©croissant |
|
807 | label_descending: DΓ©croissant | |
808 | label_date_from_to: Du %{start} au %{end} |
|
808 | label_date_from_to: Du %{start} au %{end} | |
809 | label_wiki_content_added: Page wiki ajoutΓ©e |
|
809 | label_wiki_content_added: Page wiki ajoutΓ©e | |
810 | label_wiki_content_updated: Page wiki mise Γ jour |
|
810 | label_wiki_content_updated: Page wiki mise Γ jour | |
811 | label_group_plural: Groupes |
|
811 | label_group_plural: Groupes | |
812 | label_group: Groupe |
|
812 | label_group: Groupe | |
813 | label_group_new: Nouveau groupe |
|
813 | label_group_new: Nouveau groupe | |
814 | label_time_entry_plural: Temps passΓ© |
|
814 | label_time_entry_plural: Temps passΓ© | |
815 | label_version_sharing_none: Non partagΓ© |
|
815 | label_version_sharing_none: Non partagΓ© | |
816 | label_version_sharing_descendants: Avec les sous-projets |
|
816 | label_version_sharing_descendants: Avec les sous-projets | |
817 | label_version_sharing_hierarchy: Avec toute la hiΓ©rarchie |
|
817 | label_version_sharing_hierarchy: Avec toute la hiΓ©rarchie | |
818 | label_version_sharing_tree: Avec tout l'arbre |
|
818 | label_version_sharing_tree: Avec tout l'arbre | |
819 | label_version_sharing_system: Avec tous les projets |
|
819 | label_version_sharing_system: Avec tous les projets | |
820 | label_copy_source: Source |
|
820 | label_copy_source: Source | |
821 | label_copy_target: Cible |
|
821 | label_copy_target: Cible | |
822 | label_copy_same_as_target: Comme la cible |
|
822 | label_copy_same_as_target: Comme la cible | |
823 | label_update_issue_done_ratios: Mettre Γ jour l'avancement des demandes |
|
823 | label_update_issue_done_ratios: Mettre Γ jour l'avancement des demandes | |
824 | label_display_used_statuses_only: N'afficher que les statuts utilisΓ©s dans ce tracker |
|
824 | label_display_used_statuses_only: N'afficher que les statuts utilisΓ©s dans ce tracker | |
825 | label_api_access_key: Clé d'accès API |
|
825 | label_api_access_key: Clé d'accès API | |
826 | label_api_access_key_created_on: Clé d'accès API créée il y a %{value} |
|
826 | label_api_access_key_created_on: Clé d'accès API créée il y a %{value} | |
827 | label_feeds_access_key: Clé d'accès RSS |
|
827 | label_feeds_access_key: Clé d'accès RSS | |
828 | label_missing_api_access_key: Clé d'accès API manquante |
|
828 | label_missing_api_access_key: Clé d'accès API manquante | |
829 | label_missing_feeds_access_key: Clé d'accès RSS manquante |
|
829 | label_missing_feeds_access_key: Clé d'accès RSS manquante | |
830 | label_close_versions: Fermer les versions terminΓ©es |
|
830 | label_close_versions: Fermer les versions terminΓ©es | |
831 | label_revision_id: RΓ©vision %{value} |
|
831 | label_revision_id: RΓ©vision %{value} | |
832 | label_profile: Profil |
|
832 | label_profile: Profil | |
833 | label_subtask_plural: Sous-tΓ’ches |
|
833 | label_subtask_plural: Sous-tΓ’ches | |
834 | label_project_copy_notifications: Envoyer les notifications durant la copie du projet |
|
834 | label_project_copy_notifications: Envoyer les notifications durant la copie du projet | |
835 | label_principal_search: "Rechercher un utilisateur ou un groupe :" |
|
835 | label_principal_search: "Rechercher un utilisateur ou un groupe :" | |
836 | label_user_search: "Rechercher un utilisateur :" |
|
836 | label_user_search: "Rechercher un utilisateur :" | |
837 | label_additional_workflow_transitions_for_author: Autorisations supplémentaires lorsque l'utilisateur a créé la demande |
|
837 | label_additional_workflow_transitions_for_author: Autorisations supplémentaires lorsque l'utilisateur a créé la demande | |
838 | label_additional_workflow_transitions_for_assignee: Autorisations supplΓ©mentaires lorsque la demande est assignΓ©e Γ l'utilisateur |
|
838 | label_additional_workflow_transitions_for_assignee: Autorisations supplΓ©mentaires lorsque la demande est assignΓ©e Γ l'utilisateur | |
839 | label_issues_visibility_all: Toutes les demandes |
|
839 | label_issues_visibility_all: Toutes les demandes | |
840 | label_issues_visibility_public: Toutes les demandes non privΓ©es |
|
840 | label_issues_visibility_public: Toutes les demandes non privΓ©es | |
841 | label_issues_visibility_own: Demandes créées par ou assignées à l'utilisateur |
|
841 | label_issues_visibility_own: Demandes créées par ou assignées à l'utilisateur | |
842 | label_export_options: Options d'exportation %{export_format} |
|
842 | label_export_options: Options d'exportation %{export_format} | |
843 | label_copy_attachments: Copier les fichiers |
|
843 | label_copy_attachments: Copier les fichiers | |
844 | label_copy_subtasks: Copier les sous-tΓ’ches |
|
844 | label_copy_subtasks: Copier les sous-tΓ’ches | |
845 | label_item_position: "%{position} sur %{count}" |
|
845 | label_item_position: "%{position} sur %{count}" | |
846 | label_completed_versions: Versions passΓ©es |
|
846 | label_completed_versions: Versions passΓ©es | |
847 | label_session_expiration: Expiration des sessions |
|
847 | label_session_expiration: Expiration des sessions | |
848 | label_show_closed_projects: Voir les projets fermΓ©s |
|
848 | label_show_closed_projects: Voir les projets fermΓ©s | |
849 | label_status_transitions: Changements de statut |
|
849 | label_status_transitions: Changements de statut | |
850 | label_fields_permissions: Permissions sur les champs |
|
850 | label_fields_permissions: Permissions sur les champs | |
851 | label_readonly: Lecture |
|
851 | label_readonly: Lecture | |
852 | label_required: Obligatoire |
|
852 | label_required: Obligatoire | |
853 | label_attribute_of_project: "%{name} du projet" |
|
853 | label_attribute_of_project: "%{name} du projet" | |
|
854 | label_attribute_of_issue: "%{name} de la demande" | |||
854 | label_attribute_of_author: "%{name} de l'auteur" |
|
855 | label_attribute_of_author: "%{name} de l'auteur" | |
855 | label_attribute_of_assigned_to: "%{name} de l'assignΓ©" |
|
856 | label_attribute_of_assigned_to: "%{name} de l'assignΓ©" | |
856 | label_attribute_of_user: "%{name} de l'utilisateur" |
|
857 | label_attribute_of_user: "%{name} de l'utilisateur" | |
857 | label_attribute_of_fixed_version: "%{name} de la version cible" |
|
858 | label_attribute_of_fixed_version: "%{name} de la version cible" | |
858 | label_cross_project_descendants: Avec les sous-projets |
|
859 | label_cross_project_descendants: Avec les sous-projets | |
859 | label_cross_project_tree: Avec tout l'arbre |
|
860 | label_cross_project_tree: Avec tout l'arbre | |
860 | label_cross_project_hierarchy: Avec toute la hiΓ©rarchie |
|
861 | label_cross_project_hierarchy: Avec toute la hiΓ©rarchie | |
861 | label_cross_project_system: Avec tous les projets |
|
862 | label_cross_project_system: Avec tous les projets | |
862 |
|
863 | |||
863 | button_login: Connexion |
|
864 | button_login: Connexion | |
864 | button_submit: Soumettre |
|
865 | button_submit: Soumettre | |
865 | button_save: Sauvegarder |
|
866 | button_save: Sauvegarder | |
866 | button_check_all: Tout cocher |
|
867 | button_check_all: Tout cocher | |
867 | button_uncheck_all: Tout dΓ©cocher |
|
868 | button_uncheck_all: Tout dΓ©cocher | |
868 | button_collapse_all: Plier tout |
|
869 | button_collapse_all: Plier tout | |
869 | button_expand_all: DΓ©plier tout |
|
870 | button_expand_all: DΓ©plier tout | |
870 | button_delete: Supprimer |
|
871 | button_delete: Supprimer | |
871 | button_create: CrΓ©er |
|
872 | button_create: CrΓ©er | |
872 | button_create_and_continue: CrΓ©er et continuer |
|
873 | button_create_and_continue: CrΓ©er et continuer | |
873 | button_test: Tester |
|
874 | button_test: Tester | |
874 | button_edit: Modifier |
|
875 | button_edit: Modifier | |
875 | button_add: Ajouter |
|
876 | button_add: Ajouter | |
876 | button_change: Changer |
|
877 | button_change: Changer | |
877 | button_apply: Appliquer |
|
878 | button_apply: Appliquer | |
878 | button_clear: Effacer |
|
879 | button_clear: Effacer | |
879 | button_lock: Verrouiller |
|
880 | button_lock: Verrouiller | |
880 | button_unlock: DΓ©verrouiller |
|
881 | button_unlock: DΓ©verrouiller | |
881 | button_download: TΓ©lΓ©charger |
|
882 | button_download: TΓ©lΓ©charger | |
882 | button_list: Lister |
|
883 | button_list: Lister | |
883 | button_view: Voir |
|
884 | button_view: Voir | |
884 | button_move: DΓ©placer |
|
885 | button_move: DΓ©placer | |
885 | button_move_and_follow: DΓ©placer et suivre |
|
886 | button_move_and_follow: DΓ©placer et suivre | |
886 | button_back: Retour |
|
887 | button_back: Retour | |
887 | button_cancel: Annuler |
|
888 | button_cancel: Annuler | |
888 | button_activate: Activer |
|
889 | button_activate: Activer | |
889 | button_sort: Trier |
|
890 | button_sort: Trier | |
890 | button_log_time: Saisir temps |
|
891 | button_log_time: Saisir temps | |
891 | button_rollback: Revenir Γ cette version |
|
892 | button_rollback: Revenir Γ cette version | |
892 | button_watch: Surveiller |
|
893 | button_watch: Surveiller | |
893 | button_unwatch: Ne plus surveiller |
|
894 | button_unwatch: Ne plus surveiller | |
894 | button_reply: RΓ©pondre |
|
895 | button_reply: RΓ©pondre | |
895 | button_archive: Archiver |
|
896 | button_archive: Archiver | |
896 | button_unarchive: DΓ©sarchiver |
|
897 | button_unarchive: DΓ©sarchiver | |
897 | button_reset: RΓ©initialiser |
|
898 | button_reset: RΓ©initialiser | |
898 | button_rename: Renommer |
|
899 | button_rename: Renommer | |
899 | button_change_password: Changer de mot de passe |
|
900 | button_change_password: Changer de mot de passe | |
900 | button_copy: Copier |
|
901 | button_copy: Copier | |
901 | button_copy_and_follow: Copier et suivre |
|
902 | button_copy_and_follow: Copier et suivre | |
902 | button_annotate: Annoter |
|
903 | button_annotate: Annoter | |
903 | button_update: Mettre Γ jour |
|
904 | button_update: Mettre Γ jour | |
904 | button_configure: Configurer |
|
905 | button_configure: Configurer | |
905 | button_quote: Citer |
|
906 | button_quote: Citer | |
906 | button_duplicate: Dupliquer |
|
907 | button_duplicate: Dupliquer | |
907 | button_show: Afficher |
|
908 | button_show: Afficher | |
908 | button_hide: Cacher |
|
909 | button_hide: Cacher | |
909 | button_edit_section: Modifier cette section |
|
910 | button_edit_section: Modifier cette section | |
910 | button_export: Exporter |
|
911 | button_export: Exporter | |
911 | button_delete_my_account: Supprimer mon compte |
|
912 | button_delete_my_account: Supprimer mon compte | |
912 | button_close: Fermer |
|
913 | button_close: Fermer | |
913 | button_reopen: RΓ©ouvrir |
|
914 | button_reopen: RΓ©ouvrir | |
914 |
|
915 | |||
915 | status_active: actif |
|
916 | status_active: actif | |
916 | status_registered: enregistrΓ© |
|
917 | status_registered: enregistrΓ© | |
917 | status_locked: verrouillΓ© |
|
918 | status_locked: verrouillΓ© | |
918 |
|
919 | |||
919 | project_status_active: actif |
|
920 | project_status_active: actif | |
920 | project_status_closed: fermΓ© |
|
921 | project_status_closed: fermΓ© | |
921 | project_status_archived: archivΓ© |
|
922 | project_status_archived: archivΓ© | |
922 |
|
923 | |||
923 | version_status_open: ouvert |
|
924 | version_status_open: ouvert | |
924 | version_status_locked: verrouillΓ© |
|
925 | version_status_locked: verrouillΓ© | |
925 | version_status_closed: fermΓ© |
|
926 | version_status_closed: fermΓ© | |
926 |
|
927 | |||
927 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyΓ©e |
|
928 | text_select_mail_notifications: Actions pour lesquelles une notification par e-mail est envoyΓ©e | |
928 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
929 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
929 | text_min_max_length_info: 0 pour aucune restriction |
|
930 | text_min_max_length_info: 0 pour aucune restriction | |
930 | text_project_destroy_confirmation: Γtes-vous sΓ»r de vouloir supprimer ce projet et toutes ses donnΓ©es ? |
|
931 | text_project_destroy_confirmation: Γtes-vous sΓ»r de vouloir supprimer ce projet et toutes ses donnΓ©es ? | |
931 | text_subprojects_destroy_warning: "Ses sous-projets : %{value} seront Γ©galement supprimΓ©s." |
|
932 | text_subprojects_destroy_warning: "Ses sous-projets : %{value} seront Γ©galement supprimΓ©s." | |
932 | text_workflow_edit: SΓ©lectionner un tracker et un rΓ΄le pour Γ©diter le workflow |
|
933 | text_workflow_edit: SΓ©lectionner un tracker et un rΓ΄le pour Γ©diter le workflow | |
933 | text_are_you_sure: Γtes-vous sΓ»r ? |
|
934 | text_are_you_sure: Γtes-vous sΓ»r ? | |
934 | text_tip_issue_begin_day: tΓ’che commenΓ§ant ce jour |
|
935 | text_tip_issue_begin_day: tΓ’che commenΓ§ant ce jour | |
935 | text_tip_issue_end_day: tΓ’che finissant ce jour |
|
936 | text_tip_issue_end_day: tΓ’che finissant ce jour | |
936 | text_tip_issue_begin_end_day: tΓ’che commenΓ§ant et finissant ce jour |
|
937 | text_tip_issue_begin_end_day: tΓ’che commenΓ§ant et finissant ce jour | |
937 | text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et underscore sont autorisΓ©s, doit commencer par une minuscule.<br />Un fois sauvegardΓ©, l''identifiant ne pourra plus Γͺtre modifiΓ©.' |
|
938 | text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et underscore sont autorisΓ©s, doit commencer par une minuscule.<br />Un fois sauvegardΓ©, l''identifiant ne pourra plus Γͺtre modifiΓ©.' | |
938 | text_caracters_maximum: "%{count} caractères maximum." |
|
939 | text_caracters_maximum: "%{count} caractères maximum." | |
939 | text_caracters_minimum: "%{count} caractères minimum." |
|
940 | text_caracters_minimum: "%{count} caractères minimum." | |
940 | text_length_between: "Longueur comprise entre %{min} et %{max} caractères." |
|
941 | text_length_between: "Longueur comprise entre %{min} et %{max} caractères." | |
941 | text_tracker_no_workflow: Aucun worflow n'est dΓ©fini pour ce tracker |
|
942 | text_tracker_no_workflow: Aucun worflow n'est dΓ©fini pour ce tracker | |
942 | text_unallowed_characters: Caractères non autorisés |
|
943 | text_unallowed_characters: Caractères non autorisés | |
943 | text_comma_separated: Plusieurs valeurs possibles (sΓ©parΓ©es par des virgules). |
|
944 | text_comma_separated: Plusieurs valeurs possibles (sΓ©parΓ©es par des virgules). | |
944 | text_line_separated: Plusieurs valeurs possibles (une valeur par ligne). |
|
945 | text_line_separated: Plusieurs valeurs possibles (une valeur par ligne). | |
945 | text_issues_ref_in_commit_messages: RΓ©fΓ©rencement et rΓ©solution des demandes dans les commentaires de commits |
|
946 | text_issues_ref_in_commit_messages: RΓ©fΓ©rencement et rΓ©solution des demandes dans les commentaires de commits | |
946 | text_issue_added: "La demande %{id} a Γ©tΓ© soumise par %{author}." |
|
947 | text_issue_added: "La demande %{id} a Γ©tΓ© soumise par %{author}." | |
947 | text_issue_updated: "La demande %{id} a Γ©tΓ© mise Γ jour par %{author}." |
|
948 | text_issue_updated: "La demande %{id} a Γ©tΓ© mise Γ jour par %{author}." | |
948 | text_wiki_destroy_confirmation: Etes-vous sΓ»r de vouloir supprimer ce wiki et tout son contenu ? |
|
949 | text_wiki_destroy_confirmation: Etes-vous sΓ»r de vouloir supprimer ce wiki et tout son contenu ? | |
949 | text_issue_category_destroy_question: "%{count} demandes sont affectΓ©es Γ cette catΓ©gorie. Que voulez-vous faire ?" |
|
950 | text_issue_category_destroy_question: "%{count} demandes sont affectΓ©es Γ cette catΓ©gorie. Que voulez-vous faire ?" | |
950 | text_issue_category_destroy_assignments: N'affecter les demandes Γ aucune autre catΓ©gorie |
|
951 | text_issue_category_destroy_assignments: N'affecter les demandes Γ aucune autre catΓ©gorie | |
951 | text_issue_category_reassign_to: RΓ©affecter les demandes Γ cette catΓ©gorie |
|
952 | text_issue_category_reassign_to: RΓ©affecter les demandes Γ cette catΓ©gorie | |
952 | text_user_mail_option: "Pour les projets non sΓ©lectionnΓ©s, vous recevrez seulement des notifications pour ce que vous surveillez ou Γ quoi vous participez (exemple: demandes dont vous Γͺtes l'auteur ou la personne assignΓ©e)." |
|
953 | text_user_mail_option: "Pour les projets non sΓ©lectionnΓ©s, vous recevrez seulement des notifications pour ce que vous surveillez ou Γ quoi vous participez (exemple: demandes dont vous Γͺtes l'auteur ou la personne assignΓ©e)." | |
953 | text_no_configuration_data: "Les rΓ΄les, trackers, statuts et le workflow ne sont pas encore paramΓ©trΓ©s.\nIl est vivement recommandΓ© de charger le paramΓ©trage par defaut. Vous pourrez le modifier une fois chargΓ©." |
|
954 | text_no_configuration_data: "Les rΓ΄les, trackers, statuts et le workflow ne sont pas encore paramΓ©trΓ©s.\nIl est vivement recommandΓ© de charger le paramΓ©trage par defaut. Vous pourrez le modifier une fois chargΓ©." | |
954 | text_load_default_configuration: Charger le paramΓ©trage par dΓ©faut |
|
955 | text_load_default_configuration: Charger le paramΓ©trage par dΓ©faut | |
955 | text_status_changed_by_changeset: "AppliquΓ© par commit %{value}." |
|
956 | text_status_changed_by_changeset: "AppliquΓ© par commit %{value}." | |
956 | text_time_logged_by_changeset: "AppliquΓ© par commit %{value}" |
|
957 | text_time_logged_by_changeset: "AppliquΓ© par commit %{value}" | |
957 | text_issues_destroy_confirmation: 'Γtes-vous sΓ»r de vouloir supprimer la ou les demandes(s) selectionnΓ©e(s) ?' |
|
958 | text_issues_destroy_confirmation: 'Γtes-vous sΓ»r de vouloir supprimer la ou les demandes(s) selectionnΓ©e(s) ?' | |
958 | text_issues_destroy_descendants_confirmation: "Cela entrainera Γ©galement la suppression de %{count} sous-tΓ’che(s)." |
|
959 | text_issues_destroy_descendants_confirmation: "Cela entrainera Γ©galement la suppression de %{count} sous-tΓ’che(s)." | |
959 | text_select_project_modules: 'SΓ©lectionner les modules Γ activer pour ce projet :' |
|
960 | text_select_project_modules: 'SΓ©lectionner les modules Γ activer pour ce projet :' | |
960 | text_default_administrator_account_changed: Compte administrateur par dΓ©faut changΓ© |
|
961 | text_default_administrator_account_changed: Compte administrateur par dΓ©faut changΓ© | |
961 | text_file_repository_writable: RΓ©pertoire de stockage des fichiers accessible en Γ©criture |
|
962 | text_file_repository_writable: RΓ©pertoire de stockage des fichiers accessible en Γ©criture | |
962 | text_plugin_assets_writable: RΓ©pertoire public des plugins accessible en Γ©criture |
|
963 | text_plugin_assets_writable: RΓ©pertoire public des plugins accessible en Γ©criture | |
963 | text_rmagick_available: Bibliothèque RMagick présente (optionnelle) |
|
964 | text_rmagick_available: Bibliothèque RMagick présente (optionnelle) | |
964 | text_destroy_time_entries_question: "%{hours} heures ont Γ©tΓ© enregistrΓ©es sur les demandes Γ supprimer. Que voulez-vous faire ?" |
|
965 | text_destroy_time_entries_question: "%{hours} heures ont Γ©tΓ© enregistrΓ©es sur les demandes Γ supprimer. Que voulez-vous faire ?" | |
965 | text_destroy_time_entries: Supprimer les heures |
|
966 | text_destroy_time_entries: Supprimer les heures | |
966 | text_assign_time_entries_to_project: Reporter les heures sur le projet |
|
967 | text_assign_time_entries_to_project: Reporter les heures sur le projet | |
967 | text_reassign_time_entries: 'Reporter les heures sur cette demande:' |
|
968 | text_reassign_time_entries: 'Reporter les heures sur cette demande:' | |
968 | text_user_wrote: "%{value} a Γ©crit :" |
|
969 | text_user_wrote: "%{value} a Γ©crit :" | |
969 | text_enumeration_destroy_question: "Cette valeur est affectΓ©e Γ %{count} objets." |
|
970 | text_enumeration_destroy_question: "Cette valeur est affectΓ©e Γ %{count} objets." | |
970 | text_enumeration_category_reassign_to: 'RΓ©affecter les objets Γ cette valeur:' |
|
971 | text_enumeration_category_reassign_to: 'RΓ©affecter les objets Γ cette valeur:' | |
971 | text_email_delivery_not_configured: "L'envoi de mail n'est pas configurΓ©, les notifications sont dΓ©sactivΓ©es.\nConfigurez votre serveur SMTP dans config/configuration.yml et redΓ©marrez l'application pour les activer." |
|
972 | text_email_delivery_not_configured: "L'envoi de mail n'est pas configurΓ©, les notifications sont dΓ©sactivΓ©es.\nConfigurez votre serveur SMTP dans config/configuration.yml et redΓ©marrez l'application pour les activer." | |
972 | text_repository_usernames_mapping: "Vous pouvez sΓ©lectionner ou modifier l'utilisateur Redmine associΓ© Γ chaque nom d'utilisateur figurant dans l'historique du dΓ©pΓ΄t.\nLes utilisateurs avec le mΓͺme identifiant ou la mΓͺme adresse mail seront automatiquement associΓ©s." |
|
973 | text_repository_usernames_mapping: "Vous pouvez sΓ©lectionner ou modifier l'utilisateur Redmine associΓ© Γ chaque nom d'utilisateur figurant dans l'historique du dΓ©pΓ΄t.\nLes utilisateurs avec le mΓͺme identifiant ou la mΓͺme adresse mail seront automatiquement associΓ©s." | |
973 | text_diff_truncated: '... Ce diffΓ©rentiel a Γ©tΓ© tronquΓ© car il excΓ¨de la taille maximale pouvant Γͺtre affichΓ©e.' |
|
974 | text_diff_truncated: '... Ce diffΓ©rentiel a Γ©tΓ© tronquΓ© car il excΓ¨de la taille maximale pouvant Γͺtre affichΓ©e.' | |
974 | text_custom_field_possible_values_info: 'Une ligne par valeur' |
|
975 | text_custom_field_possible_values_info: 'Une ligne par valeur' | |
975 | text_wiki_page_destroy_question: "Cette page possède %{descendants} sous-page(s) et descendante(s). Que voulez-vous faire ?" |
|
976 | text_wiki_page_destroy_question: "Cette page possède %{descendants} sous-page(s) et descendante(s). Que voulez-vous faire ?" | |
976 | text_wiki_page_nullify_children: "Conserver les sous-pages en tant que pages racines" |
|
977 | text_wiki_page_nullify_children: "Conserver les sous-pages en tant que pages racines" | |
977 | text_wiki_page_destroy_children: "Supprimer les sous-pages et toutes leurs descedantes" |
|
978 | text_wiki_page_destroy_children: "Supprimer les sous-pages et toutes leurs descedantes" | |
978 | text_wiki_page_reassign_children: "RΓ©affecter les sous-pages Γ cette page" |
|
979 | text_wiki_page_reassign_children: "RΓ©affecter les sous-pages Γ cette page" | |
979 | text_own_membership_delete_confirmation: "Vous allez supprimer tout ou partie de vos permissions sur ce projet et ne serez peut-Γͺtre plus autorisΓ© Γ modifier ce projet.\nEtes-vous sΓ»r de vouloir continuer ?" |
|
980 | text_own_membership_delete_confirmation: "Vous allez supprimer tout ou partie de vos permissions sur ce projet et ne serez peut-Γͺtre plus autorisΓ© Γ modifier ce projet.\nEtes-vous sΓ»r de vouloir continuer ?" | |
980 | text_warn_on_leaving_unsaved: "Cette page contient du texte non sauvegardΓ© qui sera perdu si vous quittez la page." |
|
981 | text_warn_on_leaving_unsaved: "Cette page contient du texte non sauvegardΓ© qui sera perdu si vous quittez la page." | |
981 | text_issue_conflict_resolution_overwrite: "Appliquer quand mΓͺme ma mise Γ jour (les notes prΓ©cΓ©dentes seront conservΓ©es mais des changements pourront Γͺtre Γ©crasΓ©s)" |
|
982 | text_issue_conflict_resolution_overwrite: "Appliquer quand mΓͺme ma mise Γ jour (les notes prΓ©cΓ©dentes seront conservΓ©es mais des changements pourront Γͺtre Γ©crasΓ©s)" | |
982 | text_issue_conflict_resolution_add_notes: "Ajouter mes notes et ignorer mes autres changements" |
|
983 | text_issue_conflict_resolution_add_notes: "Ajouter mes notes et ignorer mes autres changements" | |
983 | text_issue_conflict_resolution_cancel: "Annuler ma mise Γ jour et rΓ©afficher %{link}" |
|
984 | text_issue_conflict_resolution_cancel: "Annuler ma mise Γ jour et rΓ©afficher %{link}" | |
984 | text_account_destroy_confirmation: "Γtes-vous sΓ»r de vouloir continuer ?\nVotre compte sera dΓ©finitivement supprimΓ©, sans aucune possibilitΓ© de le rΓ©activer." |
|
985 | text_account_destroy_confirmation: "Γtes-vous sΓ»r de vouloir continuer ?\nVotre compte sera dΓ©finitivement supprimΓ©, sans aucune possibilitΓ© de le rΓ©activer." | |
985 | text_session_expiration_settings: "Attention : le changement de ces paramètres peut entrainer l'expiration des sessions utilisateurs en cours, y compris la vôtre." |
|
986 | text_session_expiration_settings: "Attention : le changement de ces paramètres peut entrainer l'expiration des sessions utilisateurs en cours, y compris la vôtre." | |
986 | text_project_closed: Ce projet est fermΓ© et accessible en lecture seule. |
|
987 | text_project_closed: Ce projet est fermΓ© et accessible en lecture seule. | |
987 | text_turning_multiple_off: "Si vous dΓ©sactivez les valeurs multiples, les valeurs en double seront supprimΓ©es pour n'en conserver qu'une par objet." |
|
988 | text_turning_multiple_off: "Si vous dΓ©sactivez les valeurs multiples, les valeurs en double seront supprimΓ©es pour n'en conserver qu'une par objet." | |
988 |
|
989 | |||
989 | default_role_manager: "Manager " |
|
990 | default_role_manager: "Manager " | |
990 | default_role_developer: "DΓ©veloppeur " |
|
991 | default_role_developer: "DΓ©veloppeur " | |
991 | default_role_reporter: "Rapporteur " |
|
992 | default_role_reporter: "Rapporteur " | |
992 | default_tracker_bug: Anomalie |
|
993 | default_tracker_bug: Anomalie | |
993 | default_tracker_feature: Evolution |
|
994 | default_tracker_feature: Evolution | |
994 | default_tracker_support: Assistance |
|
995 | default_tracker_support: Assistance | |
995 | default_issue_status_new: Nouveau |
|
996 | default_issue_status_new: Nouveau | |
996 | default_issue_status_in_progress: En cours |
|
997 | default_issue_status_in_progress: En cours | |
997 | default_issue_status_resolved: RΓ©solu |
|
998 | default_issue_status_resolved: RΓ©solu | |
998 | default_issue_status_feedback: Commentaire |
|
999 | default_issue_status_feedback: Commentaire | |
999 | default_issue_status_closed: FermΓ© |
|
1000 | default_issue_status_closed: FermΓ© | |
1000 | default_issue_status_rejected: RejetΓ© |
|
1001 | default_issue_status_rejected: RejetΓ© | |
1001 | default_doc_category_user: Documentation utilisateur |
|
1002 | default_doc_category_user: Documentation utilisateur | |
1002 | default_doc_category_tech: Documentation technique |
|
1003 | default_doc_category_tech: Documentation technique | |
1003 | default_priority_low: Bas |
|
1004 | default_priority_low: Bas | |
1004 | default_priority_normal: Normal |
|
1005 | default_priority_normal: Normal | |
1005 | default_priority_high: Haut |
|
1006 | default_priority_high: Haut | |
1006 | default_priority_urgent: Urgent |
|
1007 | default_priority_urgent: Urgent | |
1007 | default_priority_immediate: ImmΓ©diat |
|
1008 | default_priority_immediate: ImmΓ©diat | |
1008 | default_activity_design: Conception |
|
1009 | default_activity_design: Conception | |
1009 | default_activity_development: DΓ©veloppement |
|
1010 | default_activity_development: DΓ©veloppement | |
1010 |
|
1011 | |||
1011 | enumeration_issue_priorities: PrioritΓ©s des demandes |
|
1012 | enumeration_issue_priorities: PrioritΓ©s des demandes | |
1012 | enumeration_doc_categories: CatΓ©gories des documents |
|
1013 | enumeration_doc_categories: CatΓ©gories des documents | |
1013 | enumeration_activities: ActivitΓ©s (suivi du temps) |
|
1014 | enumeration_activities: ActivitΓ©s (suivi du temps) | |
1014 | label_greater_or_equal: ">=" |
|
1015 | label_greater_or_equal: ">=" | |
1015 | label_less_or_equal: "<=" |
|
1016 | label_less_or_equal: "<=" | |
1016 | label_between: entre |
|
1017 | label_between: entre | |
1017 | label_view_all_revisions: Voir toutes les rΓ©visions |
|
1018 | label_view_all_revisions: Voir toutes les rΓ©visions | |
1018 | label_tag: Tag |
|
1019 | label_tag: Tag | |
1019 | label_branch: Branche |
|
1020 | label_branch: Branche | |
1020 | error_no_tracker_in_project: "Aucun tracker n'est associΓ© Γ ce projet. VΓ©rifier la configuration du projet." |
|
1021 | error_no_tracker_in_project: "Aucun tracker n'est associΓ© Γ ce projet. VΓ©rifier la configuration du projet." | |
1021 | error_no_default_issue_status: "Aucun statut de demande n'est dΓ©fini par dΓ©faut. VΓ©rifier votre configuration (Administration -> Statuts de demandes)." |
|
1022 | error_no_default_issue_status: "Aucun statut de demande n'est dΓ©fini par dΓ©faut. VΓ©rifier votre configuration (Administration -> Statuts de demandes)." | |
1022 | text_journal_changed: "%{label} changΓ© de %{old} Γ %{new}" |
|
1023 | text_journal_changed: "%{label} changΓ© de %{old} Γ %{new}" | |
1023 | text_journal_changed_no_detail: "%{label} mis Γ jour" |
|
1024 | text_journal_changed_no_detail: "%{label} mis Γ jour" | |
1024 | text_journal_set_to: "%{label} mis Γ %{value}" |
|
1025 | text_journal_set_to: "%{label} mis Γ %{value}" | |
1025 | text_journal_deleted: "%{label} %{old} supprimΓ©" |
|
1026 | text_journal_deleted: "%{label} %{old} supprimΓ©" | |
1026 | text_journal_added: "%{label} %{value} ajoutΓ©" |
|
1027 | text_journal_added: "%{label} %{value} ajoutΓ©" | |
1027 | enumeration_system_activity: Activité système |
|
1028 | enumeration_system_activity: Activité système | |
1028 | label_board_sticky: Sticky |
|
1029 | label_board_sticky: Sticky | |
1029 | label_board_locked: VerrouillΓ© |
|
1030 | label_board_locked: VerrouillΓ© | |
1030 | error_unable_delete_issue_status: Impossible de supprimer le statut de demande |
|
1031 | error_unable_delete_issue_status: Impossible de supprimer le statut de demande | |
1031 | error_can_not_delete_custom_field: Impossible de supprimer le champ personnalisΓ© |
|
1032 | error_can_not_delete_custom_field: Impossible de supprimer le champ personnalisΓ© | |
1032 | error_unable_to_connect: Connexion impossible (%{value}) |
|
1033 | error_unable_to_connect: Connexion impossible (%{value}) | |
1033 | error_can_not_remove_role: Ce rΓ΄le est utilisΓ© et ne peut pas Γͺtre supprimΓ©. |
|
1034 | error_can_not_remove_role: Ce rΓ΄le est utilisΓ© et ne peut pas Γͺtre supprimΓ©. | |
1034 | error_can_not_delete_tracker: Ce tracker contient des demandes et ne peut pas Γͺtre supprimΓ©. |
|
1035 | error_can_not_delete_tracker: Ce tracker contient des demandes et ne peut pas Γͺtre supprimΓ©. | |
1035 | field_principal: Principal |
|
1036 | field_principal: Principal | |
1036 | notice_failed_to_save_members: "Erreur lors de la sauvegarde des membres: %{errors}." |
|
1037 | notice_failed_to_save_members: "Erreur lors de la sauvegarde des membres: %{errors}." | |
1037 | text_zoom_out: Zoom arrière |
|
1038 | text_zoom_out: Zoom arrière | |
1038 | text_zoom_in: Zoom avant |
|
1039 | text_zoom_in: Zoom avant | |
1039 | notice_unable_delete_time_entry: Impossible de supprimer le temps passΓ©. |
|
1040 | notice_unable_delete_time_entry: Impossible de supprimer le temps passΓ©. | |
1040 | label_overall_spent_time: Temps passΓ© global |
|
1041 | label_overall_spent_time: Temps passΓ© global | |
1041 | field_time_entries: Temps passΓ© |
|
1042 | field_time_entries: Temps passΓ© | |
1042 | project_module_gantt: Gantt |
|
1043 | project_module_gantt: Gantt | |
1043 | project_module_calendar: Calendrier |
|
1044 | project_module_calendar: Calendrier | |
1044 | button_edit_associated_wikipage: "Modifier la page wiki associΓ©e: %{page_title}" |
|
1045 | button_edit_associated_wikipage: "Modifier la page wiki associΓ©e: %{page_title}" | |
1045 | field_text: Champ texte |
|
1046 | field_text: Champ texte | |
1046 | label_user_mail_option_only_owner: Seulement pour ce que j'ai créé |
|
1047 | label_user_mail_option_only_owner: Seulement pour ce que j'ai créé | |
1047 | setting_default_notification_option: Option de notification par dΓ©faut |
|
1048 | setting_default_notification_option: Option de notification par dΓ©faut | |
1048 | label_user_mail_option_only_my_events: Seulement pour ce que je surveille |
|
1049 | label_user_mail_option_only_my_events: Seulement pour ce que je surveille | |
1049 | label_user_mail_option_only_assigned: Seulement pour ce qui m'est assignΓ© |
|
1050 | label_user_mail_option_only_assigned: Seulement pour ce qui m'est assignΓ© | |
1050 | label_user_mail_option_none: Aucune notification |
|
1051 | label_user_mail_option_none: Aucune notification | |
1051 | field_member_of_group: Groupe de l'assignΓ© |
|
1052 | field_member_of_group: Groupe de l'assignΓ© | |
1052 | field_assigned_to_role: RΓ΄le de l'assignΓ© |
|
1053 | field_assigned_to_role: RΓ΄le de l'assignΓ© | |
1053 | setting_emails_header: En-tΓͺte des emails |
|
1054 | setting_emails_header: En-tΓͺte des emails | |
1054 | label_bulk_edit_selected_time_entries: Modifier les temps passΓ©s sΓ©lectionnΓ©s |
|
1055 | label_bulk_edit_selected_time_entries: Modifier les temps passΓ©s sΓ©lectionnΓ©s | |
1055 | text_time_entries_destroy_confirmation: "Etes-vous sΓ»r de vouloir supprimer les temps passΓ©s sΓ©lectionnΓ©s ?" |
|
1056 | text_time_entries_destroy_confirmation: "Etes-vous sΓ»r de vouloir supprimer les temps passΓ©s sΓ©lectionnΓ©s ?" | |
1056 | field_scm_path_encoding: Encodage des chemins |
|
1057 | field_scm_path_encoding: Encodage des chemins | |
1057 | text_scm_path_encoding_note: "DΓ©faut : UTF-8" |
|
1058 | text_scm_path_encoding_note: "DΓ©faut : UTF-8" | |
1058 | field_path_to_repository: Chemin du dΓ©pΓ΄t |
|
1059 | field_path_to_repository: Chemin du dΓ©pΓ΄t | |
1059 | field_root_directory: RΓ©pertoire racine |
|
1060 | field_root_directory: RΓ©pertoire racine | |
1060 | field_cvs_module: Module |
|
1061 | field_cvs_module: Module | |
1061 | field_cvsroot: CVSROOT |
|
1062 | field_cvsroot: CVSROOT | |
1062 | text_mercurial_repository_note: "DΓ©pΓ΄t local (exemples : /hgrepo, c:\\hgrepo)" |
|
1063 | text_mercurial_repository_note: "DΓ©pΓ΄t local (exemples : /hgrepo, c:\\hgrepo)" | |
1063 | text_scm_command: Commande |
|
1064 | text_scm_command: Commande | |
1064 | text_scm_command_version: Version |
|
1065 | text_scm_command_version: Version | |
1065 | label_git_report_last_commit: Afficher le dernier commit des fichiers et rΓ©pertoires |
|
1066 | label_git_report_last_commit: Afficher le dernier commit des fichiers et rΓ©pertoires | |
1066 | text_scm_config: Vous pouvez configurer les commandes des SCM dans config/configuration.yml. Redémarrer l'application après modification. |
|
1067 | text_scm_config: Vous pouvez configurer les commandes des SCM dans config/configuration.yml. Redémarrer l'application après modification. | |
1067 | text_scm_command_not_available: Ce SCM n'est pas disponible. Vérifier les paramètres dans la section administration. |
|
1068 | text_scm_command_not_available: Ce SCM n'est pas disponible. Vérifier les paramètres dans la section administration. | |
1068 | label_diff: diff |
|
1069 | label_diff: diff | |
1069 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
1070 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) | |
1070 | description_query_sort_criteria_direction: Ordre de tri |
|
1071 | description_query_sort_criteria_direction: Ordre de tri | |
1071 | description_project_scope: Périmètre de recherche |
|
1072 | description_project_scope: Périmètre de recherche | |
1072 | description_filter: Filtre |
|
1073 | description_filter: Filtre | |
1073 | description_user_mail_notification: Option de notification |
|
1074 | description_user_mail_notification: Option de notification | |
1074 | description_date_from: Date de dΓ©but |
|
1075 | description_date_from: Date de dΓ©but | |
1075 | description_message_content: Contenu du message |
|
1076 | description_message_content: Contenu du message | |
1076 | description_available_columns: Colonnes disponibles |
|
1077 | description_available_columns: Colonnes disponibles | |
1077 | description_all_columns: Toutes les colonnes |
|
1078 | description_all_columns: Toutes les colonnes | |
1078 | description_date_range_interval: Choisir une pΓ©riode |
|
1079 | description_date_range_interval: Choisir une pΓ©riode | |
1079 | description_issue_category_reassign: Choisir une catΓ©gorie |
|
1080 | description_issue_category_reassign: Choisir une catΓ©gorie | |
1080 | description_search: Champ de recherche |
|
1081 | description_search: Champ de recherche | |
1081 | description_notes: Notes |
|
1082 | description_notes: Notes | |
1082 | description_date_range_list: Choisir une pΓ©riode prΓ©dΓ©finie |
|
1083 | description_date_range_list: Choisir une pΓ©riode prΓ©dΓ©finie | |
1083 | description_choose_project: Projets |
|
1084 | description_choose_project: Projets | |
1084 | description_date_to: Date de fin |
|
1085 | description_date_to: Date de fin | |
1085 | description_query_sort_criteria_attribute: Critère de tri |
|
1086 | description_query_sort_criteria_attribute: Critère de tri | |
1086 | description_wiki_subpages_reassign: Choisir une nouvelle page parent |
|
1087 | description_wiki_subpages_reassign: Choisir une nouvelle page parent | |
1087 | description_selected_columns: Colonnes sΓ©lectionnΓ©es |
|
1088 | description_selected_columns: Colonnes sΓ©lectionnΓ©es | |
1088 | label_parent_revision: Parent |
|
1089 | label_parent_revision: Parent | |
1089 | label_child_revision: Enfant |
|
1090 | label_child_revision: Enfant | |
1090 | error_scm_annotate_big_text_file: Cette entrΓ©e ne peut pas Γͺtre annotΓ©e car elle excΓ¨de la taille maximale. |
|
1091 | error_scm_annotate_big_text_file: Cette entrΓ©e ne peut pas Γͺtre annotΓ©e car elle excΓ¨de la taille maximale. | |
1091 | setting_repositories_encodings: Encodages des fichiers et des dΓ©pΓ΄ts |
|
1092 | setting_repositories_encodings: Encodages des fichiers et des dΓ©pΓ΄ts | |
1092 | label_search_for_watchers: Rechercher des observateurs |
|
1093 | label_search_for_watchers: Rechercher des observateurs | |
1093 | text_repository_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et underscore sont autorisΓ©s.<br />Un fois sauvegardΓ©, l''identifiant ne pourra plus Γͺtre modifiΓ©.' |
|
1094 | text_repository_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et underscore sont autorisΓ©s.<br />Un fois sauvegardΓ©, l''identifiant ne pourra plus Γͺtre modifiΓ©.' |
@@ -1,712 +1,721 | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | # Redmine - project management software |
|
2 | # Redmine - project management software | |
3 | # Copyright (C) 2006-2013 Jean-Philippe Lang |
|
3 | # Copyright (C) 2006-2013 Jean-Philippe Lang | |
4 | # |
|
4 | # | |
5 | # This program is free software; you can redistribute it and/or |
|
5 | # This program is free software; you can redistribute it and/or | |
6 | # modify it under the terms of the GNU General Public License |
|
6 | # modify it under the terms of the GNU General Public License | |
7 | # as published by the Free Software Foundation; either version 2 |
|
7 | # as published by the Free Software Foundation; either version 2 | |
8 | # of the License, or (at your option) any later version. |
|
8 | # of the License, or (at your option) any later version. | |
9 | # |
|
9 | # | |
10 | # This program is distributed in the hope that it will be useful, |
|
10 | # This program is distributed in the hope that it will be useful, | |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. |
|
13 | # GNU General Public License for more details. | |
14 | # |
|
14 | # | |
15 | # You should have received a copy of the GNU General Public License |
|
15 | # You should have received a copy of the GNU General Public License | |
16 | # along with this program; if not, write to the Free Software |
|
16 | # along with this program; if not, write to the Free Software | |
17 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
18 |
|
18 | |||
19 | require File.expand_path('../../test_helper', __FILE__) |
|
19 | require File.expand_path('../../test_helper', __FILE__) | |
20 |
|
20 | |||
21 | class TimelogControllerTest < ActionController::TestCase |
|
21 | class TimelogControllerTest < ActionController::TestCase | |
22 | fixtures :projects, :enabled_modules, :roles, :members, |
|
22 | fixtures :projects, :enabled_modules, :roles, :members, | |
23 | :member_roles, :issues, :time_entries, :users, |
|
23 | :member_roles, :issues, :time_entries, :users, | |
24 | :trackers, :enumerations, :issue_statuses, |
|
24 | :trackers, :enumerations, :issue_statuses, | |
25 | :custom_fields, :custom_values |
|
25 | :custom_fields, :custom_values | |
26 |
|
26 | |||
27 | include Redmine::I18n |
|
27 | include Redmine::I18n | |
28 |
|
28 | |||
29 | def test_new_with_project_id |
|
29 | def test_new_with_project_id | |
30 | @request.session[:user_id] = 3 |
|
30 | @request.session[:user_id] = 3 | |
31 | get :new, :project_id => 1 |
|
31 | get :new, :project_id => 1 | |
32 | assert_response :success |
|
32 | assert_response :success | |
33 | assert_template 'new' |
|
33 | assert_template 'new' | |
34 | assert_select 'select[name=?]', 'time_entry[project_id]', 0 |
|
34 | assert_select 'select[name=?]', 'time_entry[project_id]', 0 | |
35 | assert_select 'input[name=?][value=1][type=hidden]', 'time_entry[project_id]' |
|
35 | assert_select 'input[name=?][value=1][type=hidden]', 'time_entry[project_id]' | |
36 | end |
|
36 | end | |
37 |
|
37 | |||
38 | def test_new_with_issue_id |
|
38 | def test_new_with_issue_id | |
39 | @request.session[:user_id] = 3 |
|
39 | @request.session[:user_id] = 3 | |
40 | get :new, :issue_id => 2 |
|
40 | get :new, :issue_id => 2 | |
41 | assert_response :success |
|
41 | assert_response :success | |
42 | assert_template 'new' |
|
42 | assert_template 'new' | |
43 | assert_select 'select[name=?]', 'time_entry[project_id]', 0 |
|
43 | assert_select 'select[name=?]', 'time_entry[project_id]', 0 | |
44 | assert_select 'input[name=?][value=1][type=hidden]', 'time_entry[project_id]' |
|
44 | assert_select 'input[name=?][value=1][type=hidden]', 'time_entry[project_id]' | |
45 | end |
|
45 | end | |
46 |
|
46 | |||
47 | def test_new_without_project |
|
47 | def test_new_without_project | |
48 | @request.session[:user_id] = 3 |
|
48 | @request.session[:user_id] = 3 | |
49 | get :new |
|
49 | get :new | |
50 | assert_response :success |
|
50 | assert_response :success | |
51 | assert_template 'new' |
|
51 | assert_template 'new' | |
52 | assert_select 'select[name=?]', 'time_entry[project_id]' |
|
52 | assert_select 'select[name=?]', 'time_entry[project_id]' | |
53 | assert_select 'input[name=?]', 'time_entry[project_id]', 0 |
|
53 | assert_select 'input[name=?]', 'time_entry[project_id]', 0 | |
54 | end |
|
54 | end | |
55 |
|
55 | |||
56 | def test_new_without_project_should_prefill_the_form |
|
56 | def test_new_without_project_should_prefill_the_form | |
57 | @request.session[:user_id] = 3 |
|
57 | @request.session[:user_id] = 3 | |
58 | get :new, :time_entry => {:project_id => '1'} |
|
58 | get :new, :time_entry => {:project_id => '1'} | |
59 | assert_response :success |
|
59 | assert_response :success | |
60 | assert_template 'new' |
|
60 | assert_template 'new' | |
61 | assert_select 'select[name=?]', 'time_entry[project_id]' do |
|
61 | assert_select 'select[name=?]', 'time_entry[project_id]' do | |
62 | assert_select 'option[value=1][selected=selected]' |
|
62 | assert_select 'option[value=1][selected=selected]' | |
63 | end |
|
63 | end | |
64 | assert_select 'input[name=?]', 'time_entry[project_id]', 0 |
|
64 | assert_select 'input[name=?]', 'time_entry[project_id]', 0 | |
65 | end |
|
65 | end | |
66 |
|
66 | |||
67 | def test_new_without_project_should_deny_without_permission |
|
67 | def test_new_without_project_should_deny_without_permission | |
68 | Role.all.each {|role| role.remove_permission! :log_time} |
|
68 | Role.all.each {|role| role.remove_permission! :log_time} | |
69 | @request.session[:user_id] = 3 |
|
69 | @request.session[:user_id] = 3 | |
70 |
|
70 | |||
71 | get :new |
|
71 | get :new | |
72 | assert_response 403 |
|
72 | assert_response 403 | |
73 | end |
|
73 | end | |
74 |
|
74 | |||
75 | def test_new_should_select_default_activity |
|
75 | def test_new_should_select_default_activity | |
76 | @request.session[:user_id] = 3 |
|
76 | @request.session[:user_id] = 3 | |
77 | get :new, :project_id => 1 |
|
77 | get :new, :project_id => 1 | |
78 | assert_response :success |
|
78 | assert_response :success | |
79 | assert_select 'select[name=?]', 'time_entry[activity_id]' do |
|
79 | assert_select 'select[name=?]', 'time_entry[activity_id]' do | |
80 | assert_select 'option[selected=selected]', :text => 'Development' |
|
80 | assert_select 'option[selected=selected]', :text => 'Development' | |
81 | end |
|
81 | end | |
82 | end |
|
82 | end | |
83 |
|
83 | |||
84 | def test_new_should_only_show_active_time_entry_activities |
|
84 | def test_new_should_only_show_active_time_entry_activities | |
85 | @request.session[:user_id] = 3 |
|
85 | @request.session[:user_id] = 3 | |
86 | get :new, :project_id => 1 |
|
86 | get :new, :project_id => 1 | |
87 | assert_response :success |
|
87 | assert_response :success | |
88 | assert_no_tag 'option', :content => 'Inactive Activity' |
|
88 | assert_no_tag 'option', :content => 'Inactive Activity' | |
89 | end |
|
89 | end | |
90 |
|
90 | |||
91 | def test_get_edit_existing_time |
|
91 | def test_get_edit_existing_time | |
92 | @request.session[:user_id] = 2 |
|
92 | @request.session[:user_id] = 2 | |
93 | get :edit, :id => 2, :project_id => nil |
|
93 | get :edit, :id => 2, :project_id => nil | |
94 | assert_response :success |
|
94 | assert_response :success | |
95 | assert_template 'edit' |
|
95 | assert_template 'edit' | |
96 | # Default activity selected |
|
96 | # Default activity selected | |
97 | assert_tag :tag => 'form', :attributes => { :action => '/projects/ecookbook/time_entries/2' } |
|
97 | assert_tag :tag => 'form', :attributes => { :action => '/projects/ecookbook/time_entries/2' } | |
98 | end |
|
98 | end | |
99 |
|
99 | |||
100 | def test_get_edit_with_an_existing_time_entry_with_inactive_activity |
|
100 | def test_get_edit_with_an_existing_time_entry_with_inactive_activity | |
101 | te = TimeEntry.find(1) |
|
101 | te = TimeEntry.find(1) | |
102 | te.activity = TimeEntryActivity.find_by_name("Inactive Activity") |
|
102 | te.activity = TimeEntryActivity.find_by_name("Inactive Activity") | |
103 | te.save! |
|
103 | te.save! | |
104 |
|
104 | |||
105 | @request.session[:user_id] = 1 |
|
105 | @request.session[:user_id] = 1 | |
106 | get :edit, :project_id => 1, :id => 1 |
|
106 | get :edit, :project_id => 1, :id => 1 | |
107 | assert_response :success |
|
107 | assert_response :success | |
108 | assert_template 'edit' |
|
108 | assert_template 'edit' | |
109 | # Blank option since nothing is pre-selected |
|
109 | # Blank option since nothing is pre-selected | |
110 | assert_tag :tag => 'option', :content => '--- Please select ---' |
|
110 | assert_tag :tag => 'option', :content => '--- Please select ---' | |
111 | end |
|
111 | end | |
112 |
|
112 | |||
113 | def test_post_create |
|
113 | def test_post_create | |
114 | # TODO: should POST to issuesβ time log instead of project. change form |
|
114 | # TODO: should POST to issuesβ time log instead of project. change form | |
115 | # and routing |
|
115 | # and routing | |
116 | @request.session[:user_id] = 3 |
|
116 | @request.session[:user_id] = 3 | |
117 | post :create, :project_id => 1, |
|
117 | post :create, :project_id => 1, | |
118 | :time_entry => {:comments => 'Some work on TimelogControllerTest', |
|
118 | :time_entry => {:comments => 'Some work on TimelogControllerTest', | |
119 | # Not the default activity |
|
119 | # Not the default activity | |
120 | :activity_id => '11', |
|
120 | :activity_id => '11', | |
121 | :spent_on => '2008-03-14', |
|
121 | :spent_on => '2008-03-14', | |
122 | :issue_id => '1', |
|
122 | :issue_id => '1', | |
123 | :hours => '7.3'} |
|
123 | :hours => '7.3'} | |
124 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
124 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
125 |
|
125 | |||
126 | i = Issue.find(1) |
|
126 | i = Issue.find(1) | |
127 | t = TimeEntry.find_by_comments('Some work on TimelogControllerTest') |
|
127 | t = TimeEntry.find_by_comments('Some work on TimelogControllerTest') | |
128 | assert_not_nil t |
|
128 | assert_not_nil t | |
129 | assert_equal 11, t.activity_id |
|
129 | assert_equal 11, t.activity_id | |
130 | assert_equal 7.3, t.hours |
|
130 | assert_equal 7.3, t.hours | |
131 | assert_equal 3, t.user_id |
|
131 | assert_equal 3, t.user_id | |
132 | assert_equal i, t.issue |
|
132 | assert_equal i, t.issue | |
133 | assert_equal i.project, t.project |
|
133 | assert_equal i.project, t.project | |
134 | end |
|
134 | end | |
135 |
|
135 | |||
136 | def test_post_create_with_blank_issue |
|
136 | def test_post_create_with_blank_issue | |
137 | # TODO: should POST to issuesβ time log instead of project. change form |
|
137 | # TODO: should POST to issuesβ time log instead of project. change form | |
138 | # and routing |
|
138 | # and routing | |
139 | @request.session[:user_id] = 3 |
|
139 | @request.session[:user_id] = 3 | |
140 | post :create, :project_id => 1, |
|
140 | post :create, :project_id => 1, | |
141 | :time_entry => {:comments => 'Some work on TimelogControllerTest', |
|
141 | :time_entry => {:comments => 'Some work on TimelogControllerTest', | |
142 | # Not the default activity |
|
142 | # Not the default activity | |
143 | :activity_id => '11', |
|
143 | :activity_id => '11', | |
144 | :issue_id => '', |
|
144 | :issue_id => '', | |
145 | :spent_on => '2008-03-14', |
|
145 | :spent_on => '2008-03-14', | |
146 | :hours => '7.3'} |
|
146 | :hours => '7.3'} | |
147 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
147 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
148 |
|
148 | |||
149 | t = TimeEntry.find_by_comments('Some work on TimelogControllerTest') |
|
149 | t = TimeEntry.find_by_comments('Some work on TimelogControllerTest') | |
150 | assert_not_nil t |
|
150 | assert_not_nil t | |
151 | assert_equal 11, t.activity_id |
|
151 | assert_equal 11, t.activity_id | |
152 | assert_equal 7.3, t.hours |
|
152 | assert_equal 7.3, t.hours | |
153 | assert_equal 3, t.user_id |
|
153 | assert_equal 3, t.user_id | |
154 | end |
|
154 | end | |
155 |
|
155 | |||
156 | def test_create_and_continue |
|
156 | def test_create_and_continue | |
157 | @request.session[:user_id] = 2 |
|
157 | @request.session[:user_id] = 2 | |
158 | post :create, :project_id => 1, |
|
158 | post :create, :project_id => 1, | |
159 | :time_entry => {:activity_id => '11', |
|
159 | :time_entry => {:activity_id => '11', | |
160 | :issue_id => '', |
|
160 | :issue_id => '', | |
161 | :spent_on => '2008-03-14', |
|
161 | :spent_on => '2008-03-14', | |
162 | :hours => '7.3'}, |
|
162 | :hours => '7.3'}, | |
163 | :continue => '1' |
|
163 | :continue => '1' | |
164 | assert_redirected_to '/projects/ecookbook/time_entries/new?time_entry%5Bactivity_id%5D=11&time_entry%5Bissue_id%5D=' |
|
164 | assert_redirected_to '/projects/ecookbook/time_entries/new?time_entry%5Bactivity_id%5D=11&time_entry%5Bissue_id%5D=' | |
165 | end |
|
165 | end | |
166 |
|
166 | |||
167 | def test_create_and_continue_with_issue_id |
|
167 | def test_create_and_continue_with_issue_id | |
168 | @request.session[:user_id] = 2 |
|
168 | @request.session[:user_id] = 2 | |
169 | post :create, :project_id => 1, |
|
169 | post :create, :project_id => 1, | |
170 | :time_entry => {:activity_id => '11', |
|
170 | :time_entry => {:activity_id => '11', | |
171 | :issue_id => '1', |
|
171 | :issue_id => '1', | |
172 | :spent_on => '2008-03-14', |
|
172 | :spent_on => '2008-03-14', | |
173 | :hours => '7.3'}, |
|
173 | :hours => '7.3'}, | |
174 | :continue => '1' |
|
174 | :continue => '1' | |
175 | assert_redirected_to '/projects/ecookbook/issues/1/time_entries/new?time_entry%5Bactivity_id%5D=11&time_entry%5Bissue_id%5D=1' |
|
175 | assert_redirected_to '/projects/ecookbook/issues/1/time_entries/new?time_entry%5Bactivity_id%5D=11&time_entry%5Bissue_id%5D=1' | |
176 | end |
|
176 | end | |
177 |
|
177 | |||
178 | def test_create_and_continue_without_project |
|
178 | def test_create_and_continue_without_project | |
179 | @request.session[:user_id] = 2 |
|
179 | @request.session[:user_id] = 2 | |
180 | post :create, :time_entry => {:project_id => '1', |
|
180 | post :create, :time_entry => {:project_id => '1', | |
181 | :activity_id => '11', |
|
181 | :activity_id => '11', | |
182 | :issue_id => '', |
|
182 | :issue_id => '', | |
183 | :spent_on => '2008-03-14', |
|
183 | :spent_on => '2008-03-14', | |
184 | :hours => '7.3'}, |
|
184 | :hours => '7.3'}, | |
185 | :continue => '1' |
|
185 | :continue => '1' | |
186 |
|
186 | |||
187 | assert_redirected_to '/time_entries/new?time_entry%5Bactivity_id%5D=11&time_entry%5Bissue_id%5D=&time_entry%5Bproject_id%5D=1' |
|
187 | assert_redirected_to '/time_entries/new?time_entry%5Bactivity_id%5D=11&time_entry%5Bissue_id%5D=&time_entry%5Bproject_id%5D=1' | |
188 | end |
|
188 | end | |
189 |
|
189 | |||
190 | def test_create_without_log_time_permission_should_be_denied |
|
190 | def test_create_without_log_time_permission_should_be_denied | |
191 | @request.session[:user_id] = 2 |
|
191 | @request.session[:user_id] = 2 | |
192 | Role.find_by_name('Manager').remove_permission! :log_time |
|
192 | Role.find_by_name('Manager').remove_permission! :log_time | |
193 | post :create, :project_id => 1, |
|
193 | post :create, :project_id => 1, | |
194 | :time_entry => {:activity_id => '11', |
|
194 | :time_entry => {:activity_id => '11', | |
195 | :issue_id => '', |
|
195 | :issue_id => '', | |
196 | :spent_on => '2008-03-14', |
|
196 | :spent_on => '2008-03-14', | |
197 | :hours => '7.3'} |
|
197 | :hours => '7.3'} | |
198 |
|
198 | |||
199 | assert_response 403 |
|
199 | assert_response 403 | |
200 | end |
|
200 | end | |
201 |
|
201 | |||
202 | def test_create_with_failure |
|
202 | def test_create_with_failure | |
203 | @request.session[:user_id] = 2 |
|
203 | @request.session[:user_id] = 2 | |
204 | post :create, :project_id => 1, |
|
204 | post :create, :project_id => 1, | |
205 | :time_entry => {:activity_id => '', |
|
205 | :time_entry => {:activity_id => '', | |
206 | :issue_id => '', |
|
206 | :issue_id => '', | |
207 | :spent_on => '2008-03-14', |
|
207 | :spent_on => '2008-03-14', | |
208 | :hours => '7.3'} |
|
208 | :hours => '7.3'} | |
209 |
|
209 | |||
210 | assert_response :success |
|
210 | assert_response :success | |
211 | assert_template 'new' |
|
211 | assert_template 'new' | |
212 | end |
|
212 | end | |
213 |
|
213 | |||
214 | def test_create_without_project |
|
214 | def test_create_without_project | |
215 | @request.session[:user_id] = 2 |
|
215 | @request.session[:user_id] = 2 | |
216 | assert_difference 'TimeEntry.count' do |
|
216 | assert_difference 'TimeEntry.count' do | |
217 | post :create, :time_entry => {:project_id => '1', |
|
217 | post :create, :time_entry => {:project_id => '1', | |
218 | :activity_id => '11', |
|
218 | :activity_id => '11', | |
219 | :issue_id => '', |
|
219 | :issue_id => '', | |
220 | :spent_on => '2008-03-14', |
|
220 | :spent_on => '2008-03-14', | |
221 | :hours => '7.3'} |
|
221 | :hours => '7.3'} | |
222 | end |
|
222 | end | |
223 |
|
223 | |||
224 | assert_redirected_to '/projects/ecookbook/time_entries' |
|
224 | assert_redirected_to '/projects/ecookbook/time_entries' | |
225 | time_entry = TimeEntry.first(:order => 'id DESC') |
|
225 | time_entry = TimeEntry.first(:order => 'id DESC') | |
226 | assert_equal 1, time_entry.project_id |
|
226 | assert_equal 1, time_entry.project_id | |
227 | end |
|
227 | end | |
228 |
|
228 | |||
229 | def test_create_without_project_should_fail_with_issue_not_inside_project |
|
229 | def test_create_without_project_should_fail_with_issue_not_inside_project | |
230 | @request.session[:user_id] = 2 |
|
230 | @request.session[:user_id] = 2 | |
231 | assert_no_difference 'TimeEntry.count' do |
|
231 | assert_no_difference 'TimeEntry.count' do | |
232 | post :create, :time_entry => {:project_id => '1', |
|
232 | post :create, :time_entry => {:project_id => '1', | |
233 | :activity_id => '11', |
|
233 | :activity_id => '11', | |
234 | :issue_id => '5', |
|
234 | :issue_id => '5', | |
235 | :spent_on => '2008-03-14', |
|
235 | :spent_on => '2008-03-14', | |
236 | :hours => '7.3'} |
|
236 | :hours => '7.3'} | |
237 | end |
|
237 | end | |
238 |
|
238 | |||
239 | assert_response :success |
|
239 | assert_response :success | |
240 | assert assigns(:time_entry).errors[:issue_id].present? |
|
240 | assert assigns(:time_entry).errors[:issue_id].present? | |
241 | end |
|
241 | end | |
242 |
|
242 | |||
243 | def test_create_without_project_should_deny_without_permission |
|
243 | def test_create_without_project_should_deny_without_permission | |
244 | @request.session[:user_id] = 2 |
|
244 | @request.session[:user_id] = 2 | |
245 | Project.find(3).disable_module!(:time_tracking) |
|
245 | Project.find(3).disable_module!(:time_tracking) | |
246 |
|
246 | |||
247 | assert_no_difference 'TimeEntry.count' do |
|
247 | assert_no_difference 'TimeEntry.count' do | |
248 | post :create, :time_entry => {:project_id => '3', |
|
248 | post :create, :time_entry => {:project_id => '3', | |
249 | :activity_id => '11', |
|
249 | :activity_id => '11', | |
250 | :issue_id => '', |
|
250 | :issue_id => '', | |
251 | :spent_on => '2008-03-14', |
|
251 | :spent_on => '2008-03-14', | |
252 | :hours => '7.3'} |
|
252 | :hours => '7.3'} | |
253 | end |
|
253 | end | |
254 |
|
254 | |||
255 | assert_response 403 |
|
255 | assert_response 403 | |
256 | end |
|
256 | end | |
257 |
|
257 | |||
258 | def test_create_without_project_with_failure |
|
258 | def test_create_without_project_with_failure | |
259 | @request.session[:user_id] = 2 |
|
259 | @request.session[:user_id] = 2 | |
260 | assert_no_difference 'TimeEntry.count' do |
|
260 | assert_no_difference 'TimeEntry.count' do | |
261 | post :create, :time_entry => {:project_id => '1', |
|
261 | post :create, :time_entry => {:project_id => '1', | |
262 | :activity_id => '11', |
|
262 | :activity_id => '11', | |
263 | :issue_id => '', |
|
263 | :issue_id => '', | |
264 | :spent_on => '2008-03-14', |
|
264 | :spent_on => '2008-03-14', | |
265 | :hours => ''} |
|
265 | :hours => ''} | |
266 | end |
|
266 | end | |
267 |
|
267 | |||
268 | assert_response :success |
|
268 | assert_response :success | |
269 | assert_tag 'select', :attributes => {:name => 'time_entry[project_id]'}, |
|
269 | assert_tag 'select', :attributes => {:name => 'time_entry[project_id]'}, | |
270 | :child => {:tag => 'option', :attributes => {:value => '1', :selected => 'selected'}} |
|
270 | :child => {:tag => 'option', :attributes => {:value => '1', :selected => 'selected'}} | |
271 | end |
|
271 | end | |
272 |
|
272 | |||
273 | def test_update |
|
273 | def test_update | |
274 | entry = TimeEntry.find(1) |
|
274 | entry = TimeEntry.find(1) | |
275 | assert_equal 1, entry.issue_id |
|
275 | assert_equal 1, entry.issue_id | |
276 | assert_equal 2, entry.user_id |
|
276 | assert_equal 2, entry.user_id | |
277 |
|
277 | |||
278 | @request.session[:user_id] = 1 |
|
278 | @request.session[:user_id] = 1 | |
279 | put :update, :id => 1, |
|
279 | put :update, :id => 1, | |
280 | :time_entry => {:issue_id => '2', |
|
280 | :time_entry => {:issue_id => '2', | |
281 | :hours => '8'} |
|
281 | :hours => '8'} | |
282 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
282 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
283 | entry.reload |
|
283 | entry.reload | |
284 |
|
284 | |||
285 | assert_equal 8, entry.hours |
|
285 | assert_equal 8, entry.hours | |
286 | assert_equal 2, entry.issue_id |
|
286 | assert_equal 2, entry.issue_id | |
287 | assert_equal 2, entry.user_id |
|
287 | assert_equal 2, entry.user_id | |
288 | end |
|
288 | end | |
289 |
|
289 | |||
290 | def test_get_bulk_edit |
|
290 | def test_get_bulk_edit | |
291 | @request.session[:user_id] = 2 |
|
291 | @request.session[:user_id] = 2 | |
292 | get :bulk_edit, :ids => [1, 2] |
|
292 | get :bulk_edit, :ids => [1, 2] | |
293 | assert_response :success |
|
293 | assert_response :success | |
294 | assert_template 'bulk_edit' |
|
294 | assert_template 'bulk_edit' | |
295 |
|
295 | |||
296 | assert_select 'ul#bulk-selection' do |
|
296 | assert_select 'ul#bulk-selection' do | |
297 | assert_select 'li', 2 |
|
297 | assert_select 'li', 2 | |
298 | assert_select 'li a', :text => '03/23/2007 - eCookbook: 4.25 hours' |
|
298 | assert_select 'li a', :text => '03/23/2007 - eCookbook: 4.25 hours' | |
299 | end |
|
299 | end | |
300 |
|
300 | |||
301 | assert_select 'form#bulk_edit_form[action=?]', '/time_entries/bulk_update' do |
|
301 | assert_select 'form#bulk_edit_form[action=?]', '/time_entries/bulk_update' do | |
302 | # System wide custom field |
|
302 | # System wide custom field | |
303 | assert_select 'select[name=?]', 'time_entry[custom_field_values][10]' |
|
303 | assert_select 'select[name=?]', 'time_entry[custom_field_values][10]' | |
304 |
|
304 | |||
305 | # Activities |
|
305 | # Activities | |
306 | assert_select 'select[name=?]', 'time_entry[activity_id]' do |
|
306 | assert_select 'select[name=?]', 'time_entry[activity_id]' do | |
307 | assert_select 'option[value=]', :text => '(No change)' |
|
307 | assert_select 'option[value=]', :text => '(No change)' | |
308 | assert_select 'option[value=9]', :text => 'Design' |
|
308 | assert_select 'option[value=9]', :text => 'Design' | |
309 | end |
|
309 | end | |
310 | end |
|
310 | end | |
311 | end |
|
311 | end | |
312 |
|
312 | |||
313 | def test_get_bulk_edit_on_different_projects |
|
313 | def test_get_bulk_edit_on_different_projects | |
314 | @request.session[:user_id] = 2 |
|
314 | @request.session[:user_id] = 2 | |
315 | get :bulk_edit, :ids => [1, 2, 6] |
|
315 | get :bulk_edit, :ids => [1, 2, 6] | |
316 | assert_response :success |
|
316 | assert_response :success | |
317 | assert_template 'bulk_edit' |
|
317 | assert_template 'bulk_edit' | |
318 | end |
|
318 | end | |
319 |
|
319 | |||
320 | def test_bulk_update |
|
320 | def test_bulk_update | |
321 | @request.session[:user_id] = 2 |
|
321 | @request.session[:user_id] = 2 | |
322 | # update time entry activity |
|
322 | # update time entry activity | |
323 | post :bulk_update, :ids => [1, 2], :time_entry => { :activity_id => 9} |
|
323 | post :bulk_update, :ids => [1, 2], :time_entry => { :activity_id => 9} | |
324 |
|
324 | |||
325 | assert_response 302 |
|
325 | assert_response 302 | |
326 | # check that the issues were updated |
|
326 | # check that the issues were updated | |
327 | assert_equal [9, 9], TimeEntry.find_all_by_id([1, 2]).collect {|i| i.activity_id} |
|
327 | assert_equal [9, 9], TimeEntry.find_all_by_id([1, 2]).collect {|i| i.activity_id} | |
328 | end |
|
328 | end | |
329 |
|
329 | |||
330 | def test_bulk_update_with_failure |
|
330 | def test_bulk_update_with_failure | |
331 | @request.session[:user_id] = 2 |
|
331 | @request.session[:user_id] = 2 | |
332 | post :bulk_update, :ids => [1, 2], :time_entry => { :hours => 'A'} |
|
332 | post :bulk_update, :ids => [1, 2], :time_entry => { :hours => 'A'} | |
333 |
|
333 | |||
334 | assert_response 302 |
|
334 | assert_response 302 | |
335 | assert_match /Failed to save 2 time entrie/, flash[:error] |
|
335 | assert_match /Failed to save 2 time entrie/, flash[:error] | |
336 | end |
|
336 | end | |
337 |
|
337 | |||
338 | def test_bulk_update_on_different_projects |
|
338 | def test_bulk_update_on_different_projects | |
339 | @request.session[:user_id] = 2 |
|
339 | @request.session[:user_id] = 2 | |
340 | # makes user a manager on the other project |
|
340 | # makes user a manager on the other project | |
341 | Member.create!(:user_id => 2, :project_id => 3, :role_ids => [1]) |
|
341 | Member.create!(:user_id => 2, :project_id => 3, :role_ids => [1]) | |
342 |
|
342 | |||
343 | # update time entry activity |
|
343 | # update time entry activity | |
344 | post :bulk_update, :ids => [1, 2, 4], :time_entry => { :activity_id => 9 } |
|
344 | post :bulk_update, :ids => [1, 2, 4], :time_entry => { :activity_id => 9 } | |
345 |
|
345 | |||
346 | assert_response 302 |
|
346 | assert_response 302 | |
347 | # check that the issues were updated |
|
347 | # check that the issues were updated | |
348 | assert_equal [9, 9, 9], TimeEntry.find_all_by_id([1, 2, 4]).collect {|i| i.activity_id} |
|
348 | assert_equal [9, 9, 9], TimeEntry.find_all_by_id([1, 2, 4]).collect {|i| i.activity_id} | |
349 | end |
|
349 | end | |
350 |
|
350 | |||
351 | def test_bulk_update_on_different_projects_without_rights |
|
351 | def test_bulk_update_on_different_projects_without_rights | |
352 | @request.session[:user_id] = 3 |
|
352 | @request.session[:user_id] = 3 | |
353 | user = User.find(3) |
|
353 | user = User.find(3) | |
354 | action = { :controller => "timelog", :action => "bulk_update" } |
|
354 | action = { :controller => "timelog", :action => "bulk_update" } | |
355 | assert user.allowed_to?(action, TimeEntry.find(1).project) |
|
355 | assert user.allowed_to?(action, TimeEntry.find(1).project) | |
356 | assert ! user.allowed_to?(action, TimeEntry.find(5).project) |
|
356 | assert ! user.allowed_to?(action, TimeEntry.find(5).project) | |
357 | post :bulk_update, :ids => [1, 5], :time_entry => { :activity_id => 9 } |
|
357 | post :bulk_update, :ids => [1, 5], :time_entry => { :activity_id => 9 } | |
358 | assert_response 403 |
|
358 | assert_response 403 | |
359 | end |
|
359 | end | |
360 |
|
360 | |||
361 | def test_bulk_update_custom_field |
|
361 | def test_bulk_update_custom_field | |
362 | @request.session[:user_id] = 2 |
|
362 | @request.session[:user_id] = 2 | |
363 | post :bulk_update, :ids => [1, 2], :time_entry => { :custom_field_values => {'10' => '0'} } |
|
363 | post :bulk_update, :ids => [1, 2], :time_entry => { :custom_field_values => {'10' => '0'} } | |
364 |
|
364 | |||
365 | assert_response 302 |
|
365 | assert_response 302 | |
366 | assert_equal ["0", "0"], TimeEntry.find_all_by_id([1, 2]).collect {|i| i.custom_value_for(10).value} |
|
366 | assert_equal ["0", "0"], TimeEntry.find_all_by_id([1, 2]).collect {|i| i.custom_value_for(10).value} | |
367 | end |
|
367 | end | |
368 |
|
368 | |||
369 | def test_post_bulk_update_should_redirect_back_using_the_back_url_parameter |
|
369 | def test_post_bulk_update_should_redirect_back_using_the_back_url_parameter | |
370 | @request.session[:user_id] = 2 |
|
370 | @request.session[:user_id] = 2 | |
371 | post :bulk_update, :ids => [1,2], :back_url => '/time_entries' |
|
371 | post :bulk_update, :ids => [1,2], :back_url => '/time_entries' | |
372 |
|
372 | |||
373 | assert_response :redirect |
|
373 | assert_response :redirect | |
374 | assert_redirected_to '/time_entries' |
|
374 | assert_redirected_to '/time_entries' | |
375 | end |
|
375 | end | |
376 |
|
376 | |||
377 | def test_post_bulk_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host |
|
377 | def test_post_bulk_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host | |
378 | @request.session[:user_id] = 2 |
|
378 | @request.session[:user_id] = 2 | |
379 | post :bulk_update, :ids => [1,2], :back_url => 'http://google.com' |
|
379 | post :bulk_update, :ids => [1,2], :back_url => 'http://google.com' | |
380 |
|
380 | |||
381 | assert_response :redirect |
|
381 | assert_response :redirect | |
382 | assert_redirected_to :controller => 'timelog', :action => 'index', :project_id => Project.find(1).identifier |
|
382 | assert_redirected_to :controller => 'timelog', :action => 'index', :project_id => Project.find(1).identifier | |
383 | end |
|
383 | end | |
384 |
|
384 | |||
385 | def test_post_bulk_update_without_edit_permission_should_be_denied |
|
385 | def test_post_bulk_update_without_edit_permission_should_be_denied | |
386 | @request.session[:user_id] = 2 |
|
386 | @request.session[:user_id] = 2 | |
387 | Role.find_by_name('Manager').remove_permission! :edit_time_entries |
|
387 | Role.find_by_name('Manager').remove_permission! :edit_time_entries | |
388 | post :bulk_update, :ids => [1,2] |
|
388 | post :bulk_update, :ids => [1,2] | |
389 |
|
389 | |||
390 | assert_response 403 |
|
390 | assert_response 403 | |
391 | end |
|
391 | end | |
392 |
|
392 | |||
393 | def test_destroy |
|
393 | def test_destroy | |
394 | @request.session[:user_id] = 2 |
|
394 | @request.session[:user_id] = 2 | |
395 | delete :destroy, :id => 1 |
|
395 | delete :destroy, :id => 1 | |
396 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
396 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
397 | assert_equal I18n.t(:notice_successful_delete), flash[:notice] |
|
397 | assert_equal I18n.t(:notice_successful_delete), flash[:notice] | |
398 | assert_nil TimeEntry.find_by_id(1) |
|
398 | assert_nil TimeEntry.find_by_id(1) | |
399 | end |
|
399 | end | |
400 |
|
400 | |||
401 | def test_destroy_should_fail |
|
401 | def test_destroy_should_fail | |
402 | # simulate that this fails (e.g. due to a plugin), see #5700 |
|
402 | # simulate that this fails (e.g. due to a plugin), see #5700 | |
403 | TimeEntry.any_instance.expects(:destroy).returns(false) |
|
403 | TimeEntry.any_instance.expects(:destroy).returns(false) | |
404 |
|
404 | |||
405 | @request.session[:user_id] = 2 |
|
405 | @request.session[:user_id] = 2 | |
406 | delete :destroy, :id => 1 |
|
406 | delete :destroy, :id => 1 | |
407 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
407 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
408 | assert_equal I18n.t(:notice_unable_delete_time_entry), flash[:error] |
|
408 | assert_equal I18n.t(:notice_unable_delete_time_entry), flash[:error] | |
409 | assert_not_nil TimeEntry.find_by_id(1) |
|
409 | assert_not_nil TimeEntry.find_by_id(1) | |
410 | end |
|
410 | end | |
411 |
|
411 | |||
412 | def test_index_all_projects |
|
412 | def test_index_all_projects | |
413 | get :index |
|
413 | get :index | |
414 | assert_response :success |
|
414 | assert_response :success | |
415 | assert_template 'index' |
|
415 | assert_template 'index' | |
416 | assert_not_nil assigns(:total_hours) |
|
416 | assert_not_nil assigns(:total_hours) | |
417 | assert_equal "162.90", "%.2f" % assigns(:total_hours) |
|
417 | assert_equal "162.90", "%.2f" % assigns(:total_hours) | |
418 | assert_tag :form, |
|
418 | assert_tag :form, | |
419 | :attributes => {:action => "/time_entries", :id => 'query_form'} |
|
419 | :attributes => {:action => "/time_entries", :id => 'query_form'} | |
420 | end |
|
420 | end | |
421 |
|
421 | |||
422 | def test_index_all_projects_should_show_log_time_link |
|
422 | def test_index_all_projects_should_show_log_time_link | |
423 | @request.session[:user_id] = 2 |
|
423 | @request.session[:user_id] = 2 | |
424 | get :index |
|
424 | get :index | |
425 | assert_response :success |
|
425 | assert_response :success | |
426 | assert_template 'index' |
|
426 | assert_template 'index' | |
427 | assert_tag 'a', :attributes => {:href => '/time_entries/new'}, :content => /Log time/ |
|
427 | assert_tag 'a', :attributes => {:href => '/time_entries/new'}, :content => /Log time/ | |
428 | end |
|
428 | end | |
429 |
|
429 | |||
430 | def test_index_at_project_level |
|
430 | def test_index_at_project_level | |
431 | get :index, :project_id => 'ecookbook' |
|
431 | get :index, :project_id => 'ecookbook' | |
432 | assert_response :success |
|
432 | assert_response :success | |
433 | assert_template 'index' |
|
433 | assert_template 'index' | |
434 | assert_not_nil assigns(:entries) |
|
434 | assert_not_nil assigns(:entries) | |
435 | assert_equal 4, assigns(:entries).size |
|
435 | assert_equal 4, assigns(:entries).size | |
436 | # project and subproject |
|
436 | # project and subproject | |
437 | assert_equal [1, 3], assigns(:entries).collect(&:project_id).uniq.sort |
|
437 | assert_equal [1, 3], assigns(:entries).collect(&:project_id).uniq.sort | |
438 | assert_not_nil assigns(:total_hours) |
|
438 | assert_not_nil assigns(:total_hours) | |
439 | assert_equal "162.90", "%.2f" % assigns(:total_hours) |
|
439 | assert_equal "162.90", "%.2f" % assigns(:total_hours) | |
440 | assert_tag :form, |
|
440 | assert_tag :form, | |
441 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} |
|
441 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} | |
442 | end |
|
442 | end | |
443 |
|
443 | |||
444 | def test_index_at_project_level_with_date_range |
|
444 | def test_index_at_project_level_with_date_range | |
445 | get :index, :project_id => 'ecookbook', |
|
445 | get :index, :project_id => 'ecookbook', | |
446 | :f => ['spent_on'], |
|
446 | :f => ['spent_on'], | |
447 | :op => {'spent_on' => '><'}, |
|
447 | :op => {'spent_on' => '><'}, | |
448 | :v => {'spent_on' => ['2007-03-20', '2007-04-30']} |
|
448 | :v => {'spent_on' => ['2007-03-20', '2007-04-30']} | |
449 | assert_response :success |
|
449 | assert_response :success | |
450 | assert_template 'index' |
|
450 | assert_template 'index' | |
451 | assert_not_nil assigns(:entries) |
|
451 | assert_not_nil assigns(:entries) | |
452 | assert_equal 3, assigns(:entries).size |
|
452 | assert_equal 3, assigns(:entries).size | |
453 | assert_not_nil assigns(:total_hours) |
|
453 | assert_not_nil assigns(:total_hours) | |
454 | assert_equal "12.90", "%.2f" % assigns(:total_hours) |
|
454 | assert_equal "12.90", "%.2f" % assigns(:total_hours) | |
455 | assert_tag :form, |
|
455 | assert_tag :form, | |
456 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} |
|
456 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} | |
457 | end |
|
457 | end | |
458 |
|
458 | |||
459 | def test_index_at_project_level_with_date_range_using_from_and_to_params |
|
459 | def test_index_at_project_level_with_date_range_using_from_and_to_params | |
460 | get :index, :project_id => 'ecookbook', :from => '2007-03-20', :to => '2007-04-30' |
|
460 | get :index, :project_id => 'ecookbook', :from => '2007-03-20', :to => '2007-04-30' | |
461 | assert_response :success |
|
461 | assert_response :success | |
462 | assert_template 'index' |
|
462 | assert_template 'index' | |
463 | assert_not_nil assigns(:entries) |
|
463 | assert_not_nil assigns(:entries) | |
464 | assert_equal 3, assigns(:entries).size |
|
464 | assert_equal 3, assigns(:entries).size | |
465 | assert_not_nil assigns(:total_hours) |
|
465 | assert_not_nil assigns(:total_hours) | |
466 | assert_equal "12.90", "%.2f" % assigns(:total_hours) |
|
466 | assert_equal "12.90", "%.2f" % assigns(:total_hours) | |
467 | assert_tag :form, |
|
467 | assert_tag :form, | |
468 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} |
|
468 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} | |
469 | end |
|
469 | end | |
470 |
|
470 | |||
471 | def test_index_at_project_level_with_period |
|
471 | def test_index_at_project_level_with_period | |
472 | get :index, :project_id => 'ecookbook', |
|
472 | get :index, :project_id => 'ecookbook', | |
473 | :f => ['spent_on'], |
|
473 | :f => ['spent_on'], | |
474 | :op => {'spent_on' => '>t-'}, |
|
474 | :op => {'spent_on' => '>t-'}, | |
475 | :v => {'spent_on' => ['7']} |
|
475 | :v => {'spent_on' => ['7']} | |
476 | assert_response :success |
|
476 | assert_response :success | |
477 | assert_template 'index' |
|
477 | assert_template 'index' | |
478 | assert_not_nil assigns(:entries) |
|
478 | assert_not_nil assigns(:entries) | |
479 | assert_not_nil assigns(:total_hours) |
|
479 | assert_not_nil assigns(:total_hours) | |
480 | assert_tag :form, |
|
480 | assert_tag :form, | |
481 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} |
|
481 | :attributes => {:action => "/projects/ecookbook/time_entries", :id => 'query_form'} | |
482 | end |
|
482 | end | |
483 |
|
483 | |||
484 | def test_index_at_issue_level |
|
484 | def test_index_at_issue_level | |
485 | get :index, :issue_id => 1 |
|
485 | get :index, :issue_id => 1 | |
486 | assert_response :success |
|
486 | assert_response :success | |
487 | assert_template 'index' |
|
487 | assert_template 'index' | |
488 | assert_not_nil assigns(:entries) |
|
488 | assert_not_nil assigns(:entries) | |
489 | assert_equal 2, assigns(:entries).size |
|
489 | assert_equal 2, assigns(:entries).size | |
490 | assert_not_nil assigns(:total_hours) |
|
490 | assert_not_nil assigns(:total_hours) | |
491 | assert_equal 154.25, assigns(:total_hours) |
|
491 | assert_equal 154.25, assigns(:total_hours) | |
492 | # display all time |
|
492 | # display all time | |
493 | assert_nil assigns(:from) |
|
493 | assert_nil assigns(:from) | |
494 | assert_nil assigns(:to) |
|
494 | assert_nil assigns(:to) | |
495 | # TODO: remove /projects/:project_id/issues/:issue_id/time_entries routes |
|
495 | # TODO: remove /projects/:project_id/issues/:issue_id/time_entries routes | |
496 | # to use /issues/:issue_id/time_entries |
|
496 | # to use /issues/:issue_id/time_entries | |
497 | assert_tag :form, |
|
497 | assert_tag :form, | |
498 | :attributes => {:action => "/projects/ecookbook/issues/1/time_entries", :id => 'query_form'} |
|
498 | :attributes => {:action => "/projects/ecookbook/issues/1/time_entries", :id => 'query_form'} | |
499 | end |
|
499 | end | |
500 |
|
500 | |||
501 | def test_index_should_sort_by_spent_on_and_created_on |
|
501 | def test_index_should_sort_by_spent_on_and_created_on | |
502 | t1 = TimeEntry.create!(:user => User.find(1), :project => Project.find(1), :hours => 1, :spent_on => '2012-06-16', :created_on => '2012-06-16 20:00:00', :activity_id => 10) |
|
502 | t1 = TimeEntry.create!(:user => User.find(1), :project => Project.find(1), :hours => 1, :spent_on => '2012-06-16', :created_on => '2012-06-16 20:00:00', :activity_id => 10) | |
503 | t2 = TimeEntry.create!(:user => User.find(1), :project => Project.find(1), :hours => 1, :spent_on => '2012-06-16', :created_on => '2012-06-16 20:05:00', :activity_id => 10) |
|
503 | t2 = TimeEntry.create!(:user => User.find(1), :project => Project.find(1), :hours => 1, :spent_on => '2012-06-16', :created_on => '2012-06-16 20:05:00', :activity_id => 10) | |
504 | t3 = TimeEntry.create!(:user => User.find(1), :project => Project.find(1), :hours => 1, :spent_on => '2012-06-15', :created_on => '2012-06-16 20:10:00', :activity_id => 10) |
|
504 | t3 = TimeEntry.create!(:user => User.find(1), :project => Project.find(1), :hours => 1, :spent_on => '2012-06-15', :created_on => '2012-06-16 20:10:00', :activity_id => 10) | |
505 |
|
505 | |||
506 | get :index, :project_id => 1, |
|
506 | get :index, :project_id => 1, | |
507 | :f => ['spent_on'], |
|
507 | :f => ['spent_on'], | |
508 | :op => {'spent_on' => '><'}, |
|
508 | :op => {'spent_on' => '><'}, | |
509 | :v => {'spent_on' => ['2012-06-15', '2012-06-16']} |
|
509 | :v => {'spent_on' => ['2012-06-15', '2012-06-16']} | |
510 | assert_response :success |
|
510 | assert_response :success | |
511 | assert_equal [t2, t1, t3], assigns(:entries) |
|
511 | assert_equal [t2, t1, t3], assigns(:entries) | |
512 |
|
512 | |||
513 | get :index, :project_id => 1, |
|
513 | get :index, :project_id => 1, | |
514 | :f => ['spent_on'], |
|
514 | :f => ['spent_on'], | |
515 | :op => {'spent_on' => '><'}, |
|
515 | :op => {'spent_on' => '><'}, | |
516 | :v => {'spent_on' => ['2012-06-15', '2012-06-16']}, |
|
516 | :v => {'spent_on' => ['2012-06-15', '2012-06-16']}, | |
517 | :sort => 'spent_on' |
|
517 | :sort => 'spent_on' | |
518 | assert_response :success |
|
518 | assert_response :success | |
519 | assert_equal [t3, t1, t2], assigns(:entries) |
|
519 | assert_equal [t3, t1, t2], assigns(:entries) | |
520 | end |
|
520 | end | |
521 |
|
521 | |||
|
522 | def test_index_with_filter_on_issue_custom_field | |||
|
523 | issue = Issue.generate!(:project_id => 1, :tracker_id => 1, :custom_field_values => {2 => 'filter_on_issue_custom_field'}) | |||
|
524 | entry = TimeEntry.generate!(:issue => issue, :hours => 2.5) | |||
|
525 | ||||
|
526 | get :index, :f => ['issue.cf_2'], :op => {'issue.cf_2' => '='}, :v => {'issue.cf_2' => ['filter_on_issue_custom_field']} | |||
|
527 | assert_response :success | |||
|
528 | assert_equal [entry], assigns(:entries) | |||
|
529 | end | |||
|
530 | ||||
522 | def test_index_atom_feed |
|
531 | def test_index_atom_feed | |
523 | get :index, :project_id => 1, :format => 'atom' |
|
532 | get :index, :project_id => 1, :format => 'atom' | |
524 | assert_response :success |
|
533 | assert_response :success | |
525 | assert_equal 'application/atom+xml', @response.content_type |
|
534 | assert_equal 'application/atom+xml', @response.content_type | |
526 | assert_not_nil assigns(:items) |
|
535 | assert_not_nil assigns(:items) | |
527 | assert assigns(:items).first.is_a?(TimeEntry) |
|
536 | assert assigns(:items).first.is_a?(TimeEntry) | |
528 | end |
|
537 | end | |
529 |
|
538 | |||
530 | def test_index_all_projects_csv_export |
|
539 | def test_index_all_projects_csv_export | |
531 | Setting.date_format = '%m/%d/%Y' |
|
540 | Setting.date_format = '%m/%d/%Y' | |
532 | get :index, :format => 'csv' |
|
541 | get :index, :format => 'csv' | |
533 | assert_response :success |
|
542 | assert_response :success | |
534 | assert_equal 'text/csv; header=present', @response.content_type |
|
543 | assert_equal 'text/csv; header=present', @response.content_type | |
535 | assert @response.body.include?("Date,User,Activity,Project,Issue,Tracker,Subject,Hours,Comment,Overtime\n") |
|
544 | assert @response.body.include?("Date,User,Activity,Project,Issue,Tracker,Subject,Hours,Comment,Overtime\n") | |
536 | assert @response.body.include?("\n04/21/2007,redMine Admin,Design,eCookbook,3,Bug,Error 281 when updating a recipe,1.0,\"\",\"\"\n") |
|
545 | assert @response.body.include?("\n04/21/2007,redMine Admin,Design,eCookbook,3,Bug,Error 281 when updating a recipe,1.0,\"\",\"\"\n") | |
537 | end |
|
546 | end | |
538 |
|
547 | |||
539 | def test_index_csv_export |
|
548 | def test_index_csv_export | |
540 | Setting.date_format = '%m/%d/%Y' |
|
549 | Setting.date_format = '%m/%d/%Y' | |
541 | get :index, :project_id => 1, :format => 'csv' |
|
550 | get :index, :project_id => 1, :format => 'csv' | |
542 | assert_response :success |
|
551 | assert_response :success | |
543 | assert_equal 'text/csv; header=present', @response.content_type |
|
552 | assert_equal 'text/csv; header=present', @response.content_type | |
544 | assert @response.body.include?("Date,User,Activity,Project,Issue,Tracker,Subject,Hours,Comment,Overtime\n") |
|
553 | assert @response.body.include?("Date,User,Activity,Project,Issue,Tracker,Subject,Hours,Comment,Overtime\n") | |
545 | assert @response.body.include?("\n04/21/2007,redMine Admin,Design,eCookbook,3,Bug,Error 281 when updating a recipe,1.0,\"\",\"\"\n") |
|
554 | assert @response.body.include?("\n04/21/2007,redMine Admin,Design,eCookbook,3,Bug,Error 281 when updating a recipe,1.0,\"\",\"\"\n") | |
546 | end |
|
555 | end | |
547 |
|
556 | |||
548 | def test_index_csv_export_with_multi_custom_field |
|
557 | def test_index_csv_export_with_multi_custom_field | |
549 | field = TimeEntryCustomField.create!(:name => 'Test', :field_format => 'list', |
|
558 | field = TimeEntryCustomField.create!(:name => 'Test', :field_format => 'list', | |
550 | :multiple => true, :possible_values => ['value1', 'value2']) |
|
559 | :multiple => true, :possible_values => ['value1', 'value2']) | |
551 | entry = TimeEntry.find(1) |
|
560 | entry = TimeEntry.find(1) | |
552 | entry.custom_field_values = {field.id => ['value1', 'value2']} |
|
561 | entry.custom_field_values = {field.id => ['value1', 'value2']} | |
553 | entry.save! |
|
562 | entry.save! | |
554 |
|
563 | |||
555 | get :index, :project_id => 1, :format => 'csv' |
|
564 | get :index, :project_id => 1, :format => 'csv' | |
556 | assert_response :success |
|
565 | assert_response :success | |
557 | assert_include '"value1, value2"', @response.body |
|
566 | assert_include '"value1, value2"', @response.body | |
558 | end |
|
567 | end | |
559 |
|
568 | |||
560 | def test_csv_big_5 |
|
569 | def test_csv_big_5 | |
561 | user = User.find_by_id(3) |
|
570 | user = User.find_by_id(3) | |
562 | user.language = "zh-TW" |
|
571 | user.language = "zh-TW" | |
563 | assert user.save |
|
572 | assert user.save | |
564 | str_utf8 = "\xe4\xb8\x80\xe6\x9c\x88" |
|
573 | str_utf8 = "\xe4\xb8\x80\xe6\x9c\x88" | |
565 | str_big5 = "\xa4@\xa4\xeb" |
|
574 | str_big5 = "\xa4@\xa4\xeb" | |
566 | if str_utf8.respond_to?(:force_encoding) |
|
575 | if str_utf8.respond_to?(:force_encoding) | |
567 | str_utf8.force_encoding('UTF-8') |
|
576 | str_utf8.force_encoding('UTF-8') | |
568 | str_big5.force_encoding('Big5') |
|
577 | str_big5.force_encoding('Big5') | |
569 | end |
|
578 | end | |
570 | @request.session[:user_id] = 3 |
|
579 | @request.session[:user_id] = 3 | |
571 | post :create, :project_id => 1, |
|
580 | post :create, :project_id => 1, | |
572 | :time_entry => {:comments => str_utf8, |
|
581 | :time_entry => {:comments => str_utf8, | |
573 | # Not the default activity |
|
582 | # Not the default activity | |
574 | :activity_id => '11', |
|
583 | :activity_id => '11', | |
575 | :issue_id => '', |
|
584 | :issue_id => '', | |
576 | :spent_on => '2011-11-10', |
|
585 | :spent_on => '2011-11-10', | |
577 | :hours => '7.3'} |
|
586 | :hours => '7.3'} | |
578 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
587 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
579 |
|
588 | |||
580 | t = TimeEntry.find_by_comments(str_utf8) |
|
589 | t = TimeEntry.find_by_comments(str_utf8) | |
581 | assert_not_nil t |
|
590 | assert_not_nil t | |
582 | assert_equal 11, t.activity_id |
|
591 | assert_equal 11, t.activity_id | |
583 | assert_equal 7.3, t.hours |
|
592 | assert_equal 7.3, t.hours | |
584 | assert_equal 3, t.user_id |
|
593 | assert_equal 3, t.user_id | |
585 |
|
594 | |||
586 | get :index, :project_id => 1, :format => 'csv', |
|
595 | get :index, :project_id => 1, :format => 'csv', | |
587 | :from => '2011-11-10', :to => '2011-11-10' |
|
596 | :from => '2011-11-10', :to => '2011-11-10' | |
588 | assert_response :success |
|
597 | assert_response :success | |
589 | assert_equal 'text/csv; header=present', @response.content_type |
|
598 | assert_equal 'text/csv; header=present', @response.content_type | |
590 | ar = @response.body.chomp.split("\n") |
|
599 | ar = @response.body.chomp.split("\n") | |
591 | s1 = "\xa4\xe9\xb4\xc1" |
|
600 | s1 = "\xa4\xe9\xb4\xc1" | |
592 | if str_utf8.respond_to?(:force_encoding) |
|
601 | if str_utf8.respond_to?(:force_encoding) | |
593 | s1.force_encoding('Big5') |
|
602 | s1.force_encoding('Big5') | |
594 | end |
|
603 | end | |
595 | assert ar[0].include?(s1) |
|
604 | assert ar[0].include?(s1) | |
596 | assert ar[1].include?(str_big5) |
|
605 | assert ar[1].include?(str_big5) | |
597 | end |
|
606 | end | |
598 |
|
607 | |||
599 | def test_csv_cannot_convert_should_be_replaced_big_5 |
|
608 | def test_csv_cannot_convert_should_be_replaced_big_5 | |
600 | user = User.find_by_id(3) |
|
609 | user = User.find_by_id(3) | |
601 | user.language = "zh-TW" |
|
610 | user.language = "zh-TW" | |
602 | assert user.save |
|
611 | assert user.save | |
603 | str_utf8 = "\xe4\xbb\xa5\xe5\x86\x85" |
|
612 | str_utf8 = "\xe4\xbb\xa5\xe5\x86\x85" | |
604 | if str_utf8.respond_to?(:force_encoding) |
|
613 | if str_utf8.respond_to?(:force_encoding) | |
605 | str_utf8.force_encoding('UTF-8') |
|
614 | str_utf8.force_encoding('UTF-8') | |
606 | end |
|
615 | end | |
607 | @request.session[:user_id] = 3 |
|
616 | @request.session[:user_id] = 3 | |
608 | post :create, :project_id => 1, |
|
617 | post :create, :project_id => 1, | |
609 | :time_entry => {:comments => str_utf8, |
|
618 | :time_entry => {:comments => str_utf8, | |
610 | # Not the default activity |
|
619 | # Not the default activity | |
611 | :activity_id => '11', |
|
620 | :activity_id => '11', | |
612 | :issue_id => '', |
|
621 | :issue_id => '', | |
613 | :spent_on => '2011-11-10', |
|
622 | :spent_on => '2011-11-10', | |
614 | :hours => '7.3'} |
|
623 | :hours => '7.3'} | |
615 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
624 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' | |
616 |
|
625 | |||
617 | t = TimeEntry.find_by_comments(str_utf8) |
|
626 | t = TimeEntry.find_by_comments(str_utf8) | |
618 | assert_not_nil t |
|
627 | assert_not_nil t | |
619 | assert_equal 11, t.activity_id |
|
628 | assert_equal 11, t.activity_id | |
620 | assert_equal 7.3, t.hours |
|
629 | assert_equal 7.3, t.hours | |
621 | assert_equal 3, t.user_id |
|
630 | assert_equal 3, t.user_id | |
622 |
|
631 | |||
623 | get :index, :project_id => 1, :format => 'csv', |
|
632 | get :index, :project_id => 1, :format => 'csv', | |
624 | :from => '2011-11-10', :to => '2011-11-10' |
|
633 | :from => '2011-11-10', :to => '2011-11-10' | |
625 | assert_response :success |
|
634 | assert_response :success | |
626 | assert_equal 'text/csv; header=present', @response.content_type |
|
635 | assert_equal 'text/csv; header=present', @response.content_type | |
627 | ar = @response.body.chomp.split("\n") |
|
636 | ar = @response.body.chomp.split("\n") | |
628 | s1 = "\xa4\xe9\xb4\xc1" |
|
637 | s1 = "\xa4\xe9\xb4\xc1" | |
629 | if str_utf8.respond_to?(:force_encoding) |
|
638 | if str_utf8.respond_to?(:force_encoding) | |
630 | s1.force_encoding('Big5') |
|
639 | s1.force_encoding('Big5') | |
631 | end |
|
640 | end | |
632 | assert ar[0].include?(s1) |
|
641 | assert ar[0].include?(s1) | |
633 | s2 = ar[1].split(",")[8] |
|
642 | s2 = ar[1].split(",")[8] | |
634 | if s2.respond_to?(:force_encoding) |
|
643 | if s2.respond_to?(:force_encoding) | |
635 | s3 = "\xa5H?" |
|
644 | s3 = "\xa5H?" | |
636 | s3.force_encoding('Big5') |
|
645 | s3.force_encoding('Big5') | |
637 | assert_equal s3, s2 |
|
646 | assert_equal s3, s2 | |
638 | elsif RUBY_PLATFORM == 'java' |
|
647 | elsif RUBY_PLATFORM == 'java' | |
639 | assert_equal "??", s2 |
|
648 | assert_equal "??", s2 | |
640 | else |
|
649 | else | |
641 | assert_equal "\xa5H???", s2 |
|
650 | assert_equal "\xa5H???", s2 | |
642 | end |
|
651 | end | |
643 | end |
|
652 | end | |
644 |
|
653 | |||
645 | def test_csv_tw |
|
654 | def test_csv_tw | |
646 | with_settings :default_language => "zh-TW" do |
|
655 | with_settings :default_language => "zh-TW" do | |
647 | str1 = "test_csv_tw" |
|
656 | str1 = "test_csv_tw" | |
648 | user = User.find_by_id(3) |
|
657 | user = User.find_by_id(3) | |
649 | te1 = TimeEntry.create(:spent_on => '2011-11-10', |
|
658 | te1 = TimeEntry.create(:spent_on => '2011-11-10', | |
650 | :hours => 999.9, |
|
659 | :hours => 999.9, | |
651 | :project => Project.find(1), |
|
660 | :project => Project.find(1), | |
652 | :user => user, |
|
661 | :user => user, | |
653 | :activity => TimeEntryActivity.find_by_name('Design'), |
|
662 | :activity => TimeEntryActivity.find_by_name('Design'), | |
654 | :comments => str1) |
|
663 | :comments => str1) | |
655 | te2 = TimeEntry.find_by_comments(str1) |
|
664 | te2 = TimeEntry.find_by_comments(str1) | |
656 | assert_not_nil te2 |
|
665 | assert_not_nil te2 | |
657 | assert_equal 999.9, te2.hours |
|
666 | assert_equal 999.9, te2.hours | |
658 | assert_equal 3, te2.user_id |
|
667 | assert_equal 3, te2.user_id | |
659 |
|
668 | |||
660 | get :index, :project_id => 1, :format => 'csv', |
|
669 | get :index, :project_id => 1, :format => 'csv', | |
661 | :from => '2011-11-10', :to => '2011-11-10' |
|
670 | :from => '2011-11-10', :to => '2011-11-10' | |
662 | assert_response :success |
|
671 | assert_response :success | |
663 | assert_equal 'text/csv; header=present', @response.content_type |
|
672 | assert_equal 'text/csv; header=present', @response.content_type | |
664 |
|
673 | |||
665 | ar = @response.body.chomp.split("\n") |
|
674 | ar = @response.body.chomp.split("\n") | |
666 | s2 = ar[1].split(",")[7] |
|
675 | s2 = ar[1].split(",")[7] | |
667 | assert_equal '999.9', s2 |
|
676 | assert_equal '999.9', s2 | |
668 |
|
677 | |||
669 | str_tw = "Traditional Chinese (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)" |
|
678 | str_tw = "Traditional Chinese (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)" | |
670 | if str_tw.respond_to?(:force_encoding) |
|
679 | if str_tw.respond_to?(:force_encoding) | |
671 | str_tw.force_encoding('UTF-8') |
|
680 | str_tw.force_encoding('UTF-8') | |
672 | end |
|
681 | end | |
673 | assert_equal str_tw, l(:general_lang_name) |
|
682 | assert_equal str_tw, l(:general_lang_name) | |
674 | assert_equal ',', l(:general_csv_separator) |
|
683 | assert_equal ',', l(:general_csv_separator) | |
675 | assert_equal '.', l(:general_csv_decimal_separator) |
|
684 | assert_equal '.', l(:general_csv_decimal_separator) | |
676 | end |
|
685 | end | |
677 | end |
|
686 | end | |
678 |
|
687 | |||
679 | def test_csv_fr |
|
688 | def test_csv_fr | |
680 | with_settings :default_language => "fr" do |
|
689 | with_settings :default_language => "fr" do | |
681 | str1 = "test_csv_fr" |
|
690 | str1 = "test_csv_fr" | |
682 | user = User.find_by_id(3) |
|
691 | user = User.find_by_id(3) | |
683 | te1 = TimeEntry.create(:spent_on => '2011-11-10', |
|
692 | te1 = TimeEntry.create(:spent_on => '2011-11-10', | |
684 | :hours => 999.9, |
|
693 | :hours => 999.9, | |
685 | :project => Project.find(1), |
|
694 | :project => Project.find(1), | |
686 | :user => user, |
|
695 | :user => user, | |
687 | :activity => TimeEntryActivity.find_by_name('Design'), |
|
696 | :activity => TimeEntryActivity.find_by_name('Design'), | |
688 | :comments => str1) |
|
697 | :comments => str1) | |
689 | te2 = TimeEntry.find_by_comments(str1) |
|
698 | te2 = TimeEntry.find_by_comments(str1) | |
690 | assert_not_nil te2 |
|
699 | assert_not_nil te2 | |
691 | assert_equal 999.9, te2.hours |
|
700 | assert_equal 999.9, te2.hours | |
692 | assert_equal 3, te2.user_id |
|
701 | assert_equal 3, te2.user_id | |
693 |
|
702 | |||
694 | get :index, :project_id => 1, :format => 'csv', |
|
703 | get :index, :project_id => 1, :format => 'csv', | |
695 | :from => '2011-11-10', :to => '2011-11-10' |
|
704 | :from => '2011-11-10', :to => '2011-11-10' | |
696 | assert_response :success |
|
705 | assert_response :success | |
697 | assert_equal 'text/csv; header=present', @response.content_type |
|
706 | assert_equal 'text/csv; header=present', @response.content_type | |
698 |
|
707 | |||
699 | ar = @response.body.chomp.split("\n") |
|
708 | ar = @response.body.chomp.split("\n") | |
700 | s2 = ar[1].split(";")[7] |
|
709 | s2 = ar[1].split(";")[7] | |
701 | assert_equal '999,9', s2 |
|
710 | assert_equal '999,9', s2 | |
702 |
|
711 | |||
703 | str_fr = "Fran\xc3\xa7ais" |
|
712 | str_fr = "Fran\xc3\xa7ais" | |
704 | if str_fr.respond_to?(:force_encoding) |
|
713 | if str_fr.respond_to?(:force_encoding) | |
705 | str_fr.force_encoding('UTF-8') |
|
714 | str_fr.force_encoding('UTF-8') | |
706 | end |
|
715 | end | |
707 | assert_equal str_fr, l(:general_lang_name) |
|
716 | assert_equal str_fr, l(:general_lang_name) | |
708 | assert_equal ';', l(:general_csv_separator) |
|
717 | assert_equal ';', l(:general_csv_separator) | |
709 | assert_equal ',', l(:general_csv_decimal_separator) |
|
718 | assert_equal ',', l(:general_csv_decimal_separator) | |
710 | end |
|
719 | end | |
711 | end |
|
720 | end | |
712 | end |
|
721 | end |
@@ -1,121 +1,132 | |||||
1 | module ObjectHelpers |
|
1 | module ObjectHelpers | |
2 | def User.generate!(attributes={}) |
|
2 | def User.generate!(attributes={}) | |
3 | @generated_user_login ||= 'user0' |
|
3 | @generated_user_login ||= 'user0' | |
4 | @generated_user_login.succ! |
|
4 | @generated_user_login.succ! | |
5 | user = User.new(attributes) |
|
5 | user = User.new(attributes) | |
6 | user.login = @generated_user_login if user.login.blank? |
|
6 | user.login = @generated_user_login if user.login.blank? | |
7 | user.mail = "#{@generated_user_login}@example.com" if user.mail.blank? |
|
7 | user.mail = "#{@generated_user_login}@example.com" if user.mail.blank? | |
8 | user.firstname = "Bob" if user.firstname.blank? |
|
8 | user.firstname = "Bob" if user.firstname.blank? | |
9 | user.lastname = "Doe" if user.lastname.blank? |
|
9 | user.lastname = "Doe" if user.lastname.blank? | |
10 | yield user if block_given? |
|
10 | yield user if block_given? | |
11 | user.save! |
|
11 | user.save! | |
12 | user |
|
12 | user | |
13 | end |
|
13 | end | |
14 |
|
14 | |||
15 | def User.add_to_project(user, project, roles=nil) |
|
15 | def User.add_to_project(user, project, roles=nil) | |
16 | roles = Role.find(1) if roles.nil? |
|
16 | roles = Role.find(1) if roles.nil? | |
17 | roles = [roles] unless roles.is_a?(Array) |
|
17 | roles = [roles] unless roles.is_a?(Array) | |
18 | Member.create!(:principal => user, :project => project, :roles => roles) |
|
18 | Member.create!(:principal => user, :project => project, :roles => roles) | |
19 | end |
|
19 | end | |
20 |
|
20 | |||
21 | def Group.generate!(attributes={}) |
|
21 | def Group.generate!(attributes={}) | |
22 | @generated_group_name ||= 'Group 0' |
|
22 | @generated_group_name ||= 'Group 0' | |
23 | @generated_group_name.succ! |
|
23 | @generated_group_name.succ! | |
24 | group = Group.new(attributes) |
|
24 | group = Group.new(attributes) | |
25 | group.name = @generated_group_name if group.name.blank? |
|
25 | group.name = @generated_group_name if group.name.blank? | |
26 | yield group if block_given? |
|
26 | yield group if block_given? | |
27 | group.save! |
|
27 | group.save! | |
28 | group |
|
28 | group | |
29 | end |
|
29 | end | |
30 |
|
30 | |||
31 | def Project.generate!(attributes={}) |
|
31 | def Project.generate!(attributes={}) | |
32 | @generated_project_identifier ||= 'project-0000' |
|
32 | @generated_project_identifier ||= 'project-0000' | |
33 | @generated_project_identifier.succ! |
|
33 | @generated_project_identifier.succ! | |
34 | project = Project.new(attributes) |
|
34 | project = Project.new(attributes) | |
35 | project.name = @generated_project_identifier if project.name.blank? |
|
35 | project.name = @generated_project_identifier if project.name.blank? | |
36 | project.identifier = @generated_project_identifier if project.identifier.blank? |
|
36 | project.identifier = @generated_project_identifier if project.identifier.blank? | |
37 | yield project if block_given? |
|
37 | yield project if block_given? | |
38 | project.save! |
|
38 | project.save! | |
39 | project |
|
39 | project | |
40 | end |
|
40 | end | |
41 |
|
41 | |||
42 | def Tracker.generate!(attributes={}) |
|
42 | def Tracker.generate!(attributes={}) | |
43 | @generated_tracker_name ||= 'Tracker 0' |
|
43 | @generated_tracker_name ||= 'Tracker 0' | |
44 | @generated_tracker_name.succ! |
|
44 | @generated_tracker_name.succ! | |
45 | tracker = Tracker.new(attributes) |
|
45 | tracker = Tracker.new(attributes) | |
46 | tracker.name = @generated_tracker_name if tracker.name.blank? |
|
46 | tracker.name = @generated_tracker_name if tracker.name.blank? | |
47 | yield tracker if block_given? |
|
47 | yield tracker if block_given? | |
48 | tracker.save! |
|
48 | tracker.save! | |
49 | tracker |
|
49 | tracker | |
50 | end |
|
50 | end | |
51 |
|
51 | |||
52 | def Role.generate!(attributes={}) |
|
52 | def Role.generate!(attributes={}) | |
53 | @generated_role_name ||= 'Role 0' |
|
53 | @generated_role_name ||= 'Role 0' | |
54 | @generated_role_name.succ! |
|
54 | @generated_role_name.succ! | |
55 | role = Role.new(attributes) |
|
55 | role = Role.new(attributes) | |
56 | role.name = @generated_role_name if role.name.blank? |
|
56 | role.name = @generated_role_name if role.name.blank? | |
57 | yield role if block_given? |
|
57 | yield role if block_given? | |
58 | role.save! |
|
58 | role.save! | |
59 | role |
|
59 | role | |
60 | end |
|
60 | end | |
61 |
|
61 | |||
62 | def Issue.generate!(attributes={}) |
|
62 | def Issue.generate!(attributes={}) | |
63 | issue = Issue.new(attributes) |
|
63 | issue = Issue.new(attributes) | |
64 | issue.project ||= Project.find(1) |
|
64 | issue.project ||= Project.find(1) | |
65 | issue.tracker ||= issue.project.trackers.first |
|
65 | issue.tracker ||= issue.project.trackers.first | |
66 | issue.subject = 'Generated' if issue.subject.blank? |
|
66 | issue.subject = 'Generated' if issue.subject.blank? | |
67 | issue.author ||= User.find(2) |
|
67 | issue.author ||= User.find(2) | |
68 | yield issue if block_given? |
|
68 | yield issue if block_given? | |
69 | issue.save! |
|
69 | issue.save! | |
70 | issue |
|
70 | issue | |
71 | end |
|
71 | end | |
72 |
|
72 | |||
73 | # Generates an issue with 2 children and a grandchild |
|
73 | # Generates an issue with 2 children and a grandchild | |
74 | def Issue.generate_with_descendants!(attributes={}) |
|
74 | def Issue.generate_with_descendants!(attributes={}) | |
75 | issue = Issue.generate!(attributes) |
|
75 | issue = Issue.generate!(attributes) | |
76 | child = Issue.generate!(:project => issue.project, :subject => 'Child1', :parent_issue_id => issue.id) |
|
76 | child = Issue.generate!(:project => issue.project, :subject => 'Child1', :parent_issue_id => issue.id) | |
77 | Issue.generate!(:project => issue.project, :subject => 'Child2', :parent_issue_id => issue.id) |
|
77 | Issue.generate!(:project => issue.project, :subject => 'Child2', :parent_issue_id => issue.id) | |
78 | Issue.generate!(:project => issue.project, :subject => 'Child11', :parent_issue_id => child.id) |
|
78 | Issue.generate!(:project => issue.project, :subject => 'Child11', :parent_issue_id => child.id) | |
79 | issue.reload |
|
79 | issue.reload | |
80 | end |
|
80 | end | |
81 |
|
81 | |||
82 | def Journal.generate!(attributes={}) |
|
82 | def Journal.generate!(attributes={}) | |
83 | journal = Journal.new(attributes) |
|
83 | journal = Journal.new(attributes) | |
84 | journal.user ||= User.first |
|
84 | journal.user ||= User.first | |
85 | journal.journalized ||= Issue.first |
|
85 | journal.journalized ||= Issue.first | |
86 | yield journal if block_given? |
|
86 | yield journal if block_given? | |
87 | journal.save! |
|
87 | journal.save! | |
88 | journal |
|
88 | journal | |
89 | end |
|
89 | end | |
90 |
|
90 | |||
91 | def Version.generate!(attributes={}) |
|
91 | def Version.generate!(attributes={}) | |
92 | @generated_version_name ||= 'Version 0' |
|
92 | @generated_version_name ||= 'Version 0' | |
93 | @generated_version_name.succ! |
|
93 | @generated_version_name.succ! | |
94 | version = Version.new(attributes) |
|
94 | version = Version.new(attributes) | |
95 | version.name = @generated_version_name if version.name.blank? |
|
95 | version.name = @generated_version_name if version.name.blank? | |
96 | yield version if block_given? |
|
96 | yield version if block_given? | |
97 | version.save! |
|
97 | version.save! | |
98 | version |
|
98 | version | |
99 | end |
|
99 | end | |
100 |
|
100 | |||
|
101 | def TimeEntry.generate!(attributes={}) | |||
|
102 | entry = TimeEntry.new(attributes) | |||
|
103 | entry.user ||= User.find(2) | |||
|
104 | entry.issue ||= Issue.find(1) | |||
|
105 | entry.project ||= entry.issue.project | |||
|
106 | entry.activity ||= TimeEntryActivity.first | |||
|
107 | entry.spent_on ||= Date.today | |||
|
108 | entry.save! | |||
|
109 | entry | |||
|
110 | end | |||
|
111 | ||||
101 | def AuthSource.generate!(attributes={}) |
|
112 | def AuthSource.generate!(attributes={}) | |
102 | @generated_auth_source_name ||= 'Auth 0' |
|
113 | @generated_auth_source_name ||= 'Auth 0' | |
103 | @generated_auth_source_name.succ! |
|
114 | @generated_auth_source_name.succ! | |
104 | source = AuthSource.new(attributes) |
|
115 | source = AuthSource.new(attributes) | |
105 | source.name = @generated_auth_source_name if source.name.blank? |
|
116 | source.name = @generated_auth_source_name if source.name.blank? | |
106 | yield source if block_given? |
|
117 | yield source if block_given? | |
107 | source.save! |
|
118 | source.save! | |
108 | source |
|
119 | source | |
109 | end |
|
120 | end | |
110 |
|
121 | |||
111 | def Board.generate!(attributes={}) |
|
122 | def Board.generate!(attributes={}) | |
112 | @generated_board_name ||= 'Forum 0' |
|
123 | @generated_board_name ||= 'Forum 0' | |
113 | @generated_board_name.succ! |
|
124 | @generated_board_name.succ! | |
114 | board = Board.new(attributes) |
|
125 | board = Board.new(attributes) | |
115 | board.name = @generated_board_name if board.name.blank? |
|
126 | board.name = @generated_board_name if board.name.blank? | |
116 | board.description = @generated_board_name if board.description.blank? |
|
127 | board.description = @generated_board_name if board.description.blank? | |
117 | yield board if block_given? |
|
128 | yield board if block_given? | |
118 | board.save! |
|
129 | board.save! | |
119 | board |
|
130 | board | |
120 | end |
|
131 | end | |
121 | end |
|
132 | end |
General Comments 0
You need to be logged in to leave comments.
Login now