@@ -1,241 +1,241 | |||||
1 | <h2><%= l(:label_gantt_chart) %></h2> |
|
1 | <h2><%= l(:label_gantt_chart) %></h2> | |
2 | <div class="topright"> |
|
2 | <div class="topright"> | |
3 | <small> |
|
3 | <small> | |
4 |
<%= link_to 'PDF |
|
4 | <%= l(:label_export_to) %> <%= link_to 'PDF', :zoom => @zoom, :year => @year_from, :month => @month_from, :months => @months, :output => 'pdf' %> | |
5 | </small> |
|
5 | </small> | |
6 | </div> |
|
6 | </div> | |
7 |
|
7 | |||
8 | <table width="100%"> |
|
8 | <table width="100%"> | |
9 | <tr> |
|
9 | <tr> | |
10 | <td align="left"> |
|
10 | <td align="left"> | |
11 | <%= start_form_tag %> |
|
11 | <%= start_form_tag %> | |
12 | <input type="text" name="months" size="2" value="<%= @months %>"> |
|
12 | <input type="text" name="months" size="2" value="<%= @months %>"> | |
13 | <%= l(:label_months_from) %> |
|
13 | <%= l(:label_months_from) %> | |
14 | <%= select_month(@month_from, :prefix => "month", :discard_type => true) %> |
|
14 | <%= select_month(@month_from, :prefix => "month", :discard_type => true) %> | |
15 | <%= select_year(@year_from, :prefix => "year", :discard_type => true) %> |
|
15 | <%= select_year(@year_from, :prefix => "year", :discard_type => true) %> | |
16 | <%= hidden_field_tag 'zoom', @zoom %> |
|
16 | <%= hidden_field_tag 'zoom', @zoom %> | |
17 | <%= submit_tag l(:button_submit), :class => "button-small" %> |
|
17 | <%= submit_tag l(:button_submit), :class => "button-small" %> | |
18 | <%= end_form_tag %> |
|
18 | <%= end_form_tag %> | |
19 | </td> |
|
19 | </td> | |
20 | <td align="right"> |
|
20 | <td align="right"> | |
21 | <%= if @zoom < 4 |
|
21 | <%= if @zoom < 4 | |
22 | link_to image_tag('zoom_in'), {:zoom => (@zoom+1), :year => @year_from, :month => @month_from, :months => @months} |
|
22 | link_to image_tag('zoom_in'), {:zoom => (@zoom+1), :year => @year_from, :month => @month_from, :months => @months} | |
23 | else |
|
23 | else | |
24 | image_tag 'zoom_in_g' |
|
24 | image_tag 'zoom_in_g' | |
25 | end %> |
|
25 | end %> | |
26 | <%= if @zoom > 1 |
|
26 | <%= if @zoom > 1 | |
27 | link_to image_tag('zoom_out'), :zoom => (@zoom-1), :year => @year_from, :month => @month_from, :months => @months |
|
27 | link_to image_tag('zoom_out'), :zoom => (@zoom-1), :year => @year_from, :month => @month_from, :months => @months | |
28 | else |
|
28 | else | |
29 | image_tag 'zoom_out_g' |
|
29 | image_tag 'zoom_out_g' | |
30 | end %> |
|
30 | end %> | |
31 | </td> |
|
31 | </td> | |
32 | </tr> |
|
32 | </tr> | |
33 | </table> |
|
33 | </table> | |
34 | <br /> |
|
34 | <br /> | |
35 |
|
35 | |||
36 | <style> |
|
36 | <style> | |
37 | .m_bg { |
|
37 | .m_bg { | |
38 | position:absolute; |
|
38 | position:absolute; | |
39 | top:0; |
|
39 | top:0; | |
40 | height:16px; |
|
40 | height:16px; | |
41 | border-top: 1px solid #c0c0c0; |
|
41 | border-top: 1px solid #c0c0c0; | |
42 | border-bottom: 1px solid #c0c0c0; |
|
42 | border-bottom: 1px solid #c0c0c0; | |
43 | border-right: 1px solid #c0c0c0; |
|
43 | border-right: 1px solid #c0c0c0; | |
44 | text-align: center; |
|
44 | text-align: center; | |
45 | } |
|
45 | } | |
46 |
|
46 | |||
47 | .task { |
|
47 | .task { | |
48 | position: absolute; |
|
48 | position: absolute; | |
49 | height:8px; |
|
49 | height:8px; | |
50 | font-size:0.8em; |
|
50 | font-size:0.8em; | |
51 | color:#888; |
|
51 | color:#888; | |
52 | background:#aaa; |
|
52 | background:#aaa; | |
53 | padding:0; |
|
53 | padding:0; | |
54 | margin:0; |
|
54 | margin:0; | |
55 | line-height:0.8em; |
|
55 | line-height:0.8em; | |
56 | } |
|
56 | } | |
57 |
|
57 | |||
58 | .task_late { |
|
58 | .task_late { | |
59 | background:#f66; |
|
59 | background:#f66; | |
60 | } |
|
60 | } | |
61 |
|
61 | |||
62 | .task_done { |
|
62 | .task_done { | |
63 | background:#66f; |
|
63 | background:#66f; | |
64 | } |
|
64 | } | |
65 | </style> |
|
65 | </style> | |
66 |
|
66 | |||
67 | <% zoom = 1 |
|
67 | <% zoom = 1 | |
68 | @zoom.times { zoom = zoom * 2 } |
|
68 | @zoom.times { zoom = zoom * 2 } | |
69 |
|
69 | |||
70 | subject_width = 260 |
|
70 | subject_width = 260 | |
71 | header_heigth = 18 |
|
71 | header_heigth = 18 | |
72 |
|
72 | |||
73 | headers_heigth = header_heigth |
|
73 | headers_heigth = header_heigth | |
74 | show_weeks = false |
|
74 | show_weeks = false | |
75 | show_days = false |
|
75 | show_days = false | |
76 |
|
76 | |||
77 | if @zoom >1 |
|
77 | if @zoom >1 | |
78 | show_weeks = true |
|
78 | show_weeks = true | |
79 | headers_heigth = 2*header_heigth |
|
79 | headers_heigth = 2*header_heigth | |
80 | if @zoom > 2 |
|
80 | if @zoom > 2 | |
81 | show_days = true |
|
81 | show_days = true | |
82 | headers_heigth = 3*header_heigth |
|
82 | headers_heigth = 3*header_heigth | |
83 | end |
|
83 | end | |
84 | end |
|
84 | end | |
85 |
|
85 | |||
86 | g_width = (@date_to - @date_from + 1)*zoom |
|
86 | g_width = (@date_to - @date_from + 1)*zoom | |
87 | g_height = [(20 * @issues.length + 6), 206].max |
|
87 | g_height = [(20 * @issues.length + 6), 206].max | |
88 | t_height = g_height + headers_heigth |
|
88 | t_height = g_height + headers_heigth | |
89 | %> |
|
89 | %> | |
90 |
|
90 | |||
91 | <table width="100%" border=0 cellspacing=0 cellpading=0> |
|
91 | <table width="100%" border=0 cellspacing=0 cellpading=0> | |
92 | <tr> |
|
92 | <tr> | |
93 | <td width=260> |
|
93 | <td width=260> | |
94 |
|
94 | |||
95 | <div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width + 1 %>px;"> |
|
95 | <div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width + 1 %>px;"> | |
96 | <div style="right:-2px;width:<%= subject_width %>px;height:<%= headers_heigth %>px;" class="m_bg"></div> |
|
96 | <div style="right:-2px;width:<%= subject_width %>px;height:<%= headers_heigth %>px;" class="m_bg"></div> | |
97 | <div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;" class="m_bg"></div> |
|
97 | <div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;" class="m_bg"></div> | |
98 | <% |
|
98 | <% | |
99 | # |
|
99 | # | |
100 | # Tasks subjects |
|
100 | # Tasks subjects | |
101 | # |
|
101 | # | |
102 | top = headers_heigth + 8 |
|
102 | top = headers_heigth + 8 | |
103 | @issues.each do |i| %> |
|
103 | @issues.each do |i| %> | |
104 | <div style="position: absolute;line-height:1em;height:16px;top:<%= top %>px;left:4px;width:<%= subject_width - 5 %>px;overflow:hidden;"> |
|
104 | <div style="position: absolute;line-height:1em;height:16px;top:<%= top %>px;left:4px;width:<%= subject_width - 5 %>px;overflow:hidden;"> | |
105 | <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: |
|
105 | <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: | |
106 | <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small> |
|
106 | <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small> | |
107 | </div> |
|
107 | </div> | |
108 | <% top = top + 20 |
|
108 | <% top = top + 20 | |
109 | end %> |
|
109 | end %> | |
110 | </div> |
|
110 | </div> | |
111 | </td> |
|
111 | </td> | |
112 | <td> |
|
112 | <td> | |
113 |
|
113 | |||
114 | <div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width %>;overflow:auto;"> |
|
114 | <div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width %>;overflow:auto;"> | |
115 | <div style="width:<%= g_width-1 %>px;height:<%= headers_heigth %>px;" class="m_bg"> </div> |
|
115 | <div style="width:<%= g_width-1 %>px;height:<%= headers_heigth %>px;" class="m_bg"> </div> | |
116 | <% |
|
116 | <% | |
117 | # |
|
117 | # | |
118 | # Months headers |
|
118 | # Months headers | |
119 | # |
|
119 | # | |
120 | month_f = @date_from |
|
120 | month_f = @date_from | |
121 | left = 0 |
|
121 | left = 0 | |
122 | height = (show_weeks ? header_heigth : header_heigth + g_height) |
|
122 | height = (show_weeks ? header_heigth : header_heigth + g_height) | |
123 | @months.times do |
|
123 | @months.times do | |
124 | width = ((month_f >> 1) - month_f) * zoom - 1 |
|
124 | width = ((month_f >> 1) - month_f) * zoom - 1 | |
125 | %> |
|
125 | %> | |
126 | <div style="left:<%= left %>px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> |
|
126 | <div style="left:<%= left %>px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> | |
127 | <%= link_to "#{month_f.year}-#{month_f.month}", :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months %> |
|
127 | <%= link_to "#{month_f.year}-#{month_f.month}", :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months %> | |
128 | </div> |
|
128 | </div> | |
129 | <% |
|
129 | <% | |
130 | left = left + width + 1 |
|
130 | left = left + width + 1 | |
131 | month_f = month_f >> 1 |
|
131 | month_f = month_f >> 1 | |
132 | end %> |
|
132 | end %> | |
133 |
|
133 | |||
134 | <% |
|
134 | <% | |
135 | # |
|
135 | # | |
136 | # Weeks headers |
|
136 | # Weeks headers | |
137 | # |
|
137 | # | |
138 | if show_weeks |
|
138 | if show_weeks | |
139 | left = 0 |
|
139 | left = 0 | |
140 | height = (show_days ? header_heigth-1 : header_heigth-1 + g_height) |
|
140 | height = (show_days ? header_heigth-1 : header_heigth-1 + g_height) | |
141 | if @date_from.cwday == 1 |
|
141 | if @date_from.cwday == 1 | |
142 | # @date_from is monday |
|
142 | # @date_from is monday | |
143 | week_f = @date_from |
|
143 | week_f = @date_from | |
144 | else |
|
144 | else | |
145 | # find next monday after @date_from |
|
145 | # find next monday after @date_from | |
146 | week_f = @date_from + (7 - @date_from.cwday + 1) |
|
146 | week_f = @date_from + (7 - @date_from.cwday + 1) | |
147 | width = (7 - @date_from.cwday + 1) * zoom-1 |
|
147 | width = (7 - @date_from.cwday + 1) * zoom-1 | |
148 | %> |
|
148 | %> | |
149 | <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> </div> |
|
149 | <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> </div> | |
150 | <% |
|
150 | <% | |
151 | left = left + width+1 |
|
151 | left = left + width+1 | |
152 | end %> |
|
152 | end %> | |
153 | <% |
|
153 | <% | |
154 | while week_f < @date_to |
|
154 | while week_f < @date_to | |
155 | width = (week_f + 6 <= @date_to) ? 7 * zoom -1 : (@date_to - week_f + 1) * zoom-1 |
|
155 | width = (week_f + 6 <= @date_to) ? 7 * zoom -1 : (@date_to - week_f + 1) * zoom-1 | |
156 | %> |
|
156 | %> | |
157 | <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> |
|
157 | <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg"> | |
158 | <small><%= week_f.cweek %></small> |
|
158 | <small><%= week_f.cweek %></small> | |
159 | </div> |
|
159 | </div> | |
160 | <% |
|
160 | <% | |
161 | left = left + width+1 |
|
161 | left = left + width+1 | |
162 | week_f = week_f+7 |
|
162 | week_f = week_f+7 | |
163 | end |
|
163 | end | |
164 | end %> |
|
164 | end %> | |
165 |
|
165 | |||
166 | <% |
|
166 | <% | |
167 | # |
|
167 | # | |
168 | # Days headers |
|
168 | # Days headers | |
169 | # |
|
169 | # | |
170 | if show_days |
|
170 | if show_days | |
171 | left = 0 |
|
171 | left = 0 | |
172 | height = g_height + header_heigth - 1 |
|
172 | height = g_height + header_heigth - 1 | |
173 | wday = @date_from.cwday |
|
173 | wday = @date_from.cwday | |
174 | (@date_to - @date_from + 1).to_i.times do |
|
174 | (@date_to - @date_from + 1).to_i.times do | |
175 | width = zoom - 1 |
|
175 | width = zoom - 1 | |
176 | %> |
|
176 | %> | |
177 | <div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>" class="m_bg"> |
|
177 | <div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>" class="m_bg"> | |
178 | <%= day_name(wday)[0,1] %> |
|
178 | <%= day_name(wday)[0,1] %> | |
179 | </div> |
|
179 | </div> | |
180 | <% |
|
180 | <% | |
181 | left = left + width+1 |
|
181 | left = left + width+1 | |
182 | wday = wday + 1 |
|
182 | wday = wday + 1 | |
183 | wday = 1 if wday > 7 |
|
183 | wday = 1 if wday > 7 | |
184 | end |
|
184 | end | |
185 | end %> |
|
185 | end %> | |
186 |
|
186 | |||
187 | <% |
|
187 | <% | |
188 | # |
|
188 | # | |
189 | # Today red line |
|
189 | # Today red line | |
190 | # |
|
190 | # | |
191 | if Date.today >= @date_from and Date.today <= @date_to %> |
|
191 | if Date.today >= @date_from and Date.today <= @date_to %> | |
192 | <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_heigth + 1 %>px;left:<%= ((Date.today-@date_from+1)*zoom).floor()-1 %>px;width:10px;border-left: 1px dashed red;"> </div> |
|
192 | <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_heigth + 1 %>px;left:<%= ((Date.today-@date_from+1)*zoom).floor()-1 %>px;width:10px;border-left: 1px dashed red;"> </div> | |
193 | <% end %> |
|
193 | <% end %> | |
194 |
|
194 | |||
195 | <% |
|
195 | <% | |
196 | # |
|
196 | # | |
197 | # Tasks |
|
197 | # Tasks | |
198 | # |
|
198 | # | |
199 | top = headers_heigth + 12 |
|
199 | top = headers_heigth + 12 | |
200 | @issues.each do |i| %> |
|
200 | @issues.each do |i| %> | |
201 | <% |
|
201 | <% | |
202 | i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from ) |
|
202 | i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from ) | |
203 | i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to ) |
|
203 | i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to ) | |
204 |
|
204 | |||
205 | i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor |
|
205 | i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor | |
206 | i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date ) |
|
206 | i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date ) | |
207 | i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date ) |
|
207 | i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date ) | |
208 |
|
208 | |||
209 | i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today |
|
209 | i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today | |
210 |
|
210 | |||
211 | i_left = ((i_start_date - @date_from)*zoom).floor |
|
211 | i_left = ((i_start_date - @date_from)*zoom).floor | |
212 | i_width = ((i_end_date - i_start_date + 1)*zoom).floor |
|
212 | i_width = ((i_end_date - i_start_date + 1)*zoom).floor | |
213 | d_width = ((i_done_date - i_start_date)*zoom).floor |
|
213 | d_width = ((i_done_date - i_start_date)*zoom).floor | |
214 | l_width = ((i_late_date - i_start_date+1)*zoom).floor if i_late_date |
|
214 | l_width = ((i_late_date - i_start_date+1)*zoom).floor if i_late_date | |
215 | l_width ||= 0 |
|
215 | l_width ||= 0 | |
216 | %> |
|
216 | %> | |
217 | <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= i_width %>px;" class="task"> </div> |
|
217 | <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= i_width %>px;" class="task"> </div> | |
218 | <% if l_width > 0 %> |
|
218 | <% if l_width > 0 %> | |
219 | <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= l_width %>px;" class="task task_late"> </div> |
|
219 | <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= l_width %>px;" class="task task_late"> </div> | |
220 | <% end %> |
|
220 | <% end %> | |
221 | <% if d_width > 0 %> |
|
221 | <% if d_width > 0 %> | |
222 | <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= d_width %>px;" class="task task_done"> </div> |
|
222 | <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= d_width %>px;" class="task task_done"> </div> | |
223 | <% end %> |
|
223 | <% end %> | |
224 | <div style="top:<%= top %>px;left:<%= i_left + i_width + 5 %>px;background:#fff;" class="task"> |
|
224 | <div style="top:<%= top %>px;left:<%= i_left + i_width + 5 %>px;background:#fff;" class="task"> | |
225 | <%= i.status.name %> |
|
225 | <%= i.status.name %> | |
226 | <%= (i.done_ratio).to_i %>% |
|
226 | <%= (i.done_ratio).to_i %>% | |
227 | </div> |
|
227 | </div> | |
228 | <% top = top + 20 |
|
228 | <% top = top + 20 | |
229 | end %> |
|
229 | end %> | |
230 | </div> |
|
230 | </div> | |
231 | </td> |
|
231 | </td> | |
232 | </tr> |
|
232 | </tr> | |
233 | </table> |
|
233 | </table> | |
234 |
|
234 | |||
235 | <table width="100%"> |
|
235 | <table width="100%"> | |
236 | <tr> |
|
236 | <tr> | |
237 | <td align="left"><%= link_to ('« ' + l(:label_previous)), :year => (@date_from << @months).year, :month => (@date_from << @months).month, :zoom => @zoom, :months => @months %></td> |
|
237 | <td align="left"><%= link_to ('« ' + l(:label_previous)), :year => (@date_from << @months).year, :month => (@date_from << @months).month, :zoom => @zoom, :months => @months %></td> | |
238 | <td> |
|
238 | <td> | |
239 | <td align="right"><%= link_to (l(:label_next) + ' »'), :year => (@date_from >> @months).year, :month => (@date_from >> @months).month, :zoom => @zoom, :months => @months %></td> |
|
239 | <td align="right"><%= link_to (l(:label_next) + ' »'), :year => (@date_from >> @months).year, :month => (@date_from >> @months).month, :zoom => @zoom, :months => @months %></td> | |
240 | </tr> |
|
240 | </tr> | |
241 | </table> No newline at end of file |
|
241 | </table> |
@@ -1,75 +1,76 | |||||
1 | <h2><%=l(:label_issue_plural)%></h2> |
|
1 | <h2><%=l(:label_issue_plural)%></h2> | |
2 | <div class="topright"> |
|
2 | <div class="topright"> | |
3 | <small> |
|
3 | <small> | |
4 | <%= link_to 'PDF ', :action => 'export_issues_pdf', :id => @project %> | |
|
4 | <%= l(:label_export_to) %> | |
5 |
<%= link_to 'CSV |
|
5 | <%= link_to 'CSV', :action => 'export_issues_csv', :id => @project %>, | |
|
6 | <%= link_to 'PDF', :action => 'export_issues_pdf', :id => @project %> | |||
6 | </small> |
|
7 | </small> | |
7 | </div> |
|
8 | </div> | |
8 |
|
9 | |||
9 | <%= start_form_tag :action => 'list_issues' %> |
|
10 | <%= start_form_tag :action => 'list_issues' %> | |
10 | <table cellpadding=2> |
|
11 | <table cellpadding=2> | |
11 | <tr> |
|
12 | <tr> | |
12 | <td valign="bottom"><small><%=l(:field_status)%>:</small><br /><%= search_filter_tag 'status_id', :class => 'select-small' %></td> |
|
13 | <td valign="bottom"><small><%=l(:field_status)%>:</small><br /><%= search_filter_tag 'status_id', :class => 'select-small' %></td> | |
13 | <td valign="bottom"><small><%=l(:field_tracker)%>:</small><br /><%= search_filter_tag 'tracker_id', :class => 'select-small' %></td> |
|
14 | <td valign="bottom"><small><%=l(:field_tracker)%>:</small><br /><%= search_filter_tag 'tracker_id', :class => 'select-small' %></td> | |
14 | <td valign="bottom"><small><%=l(:field_priority)%>:</small><br /><%= search_filter_tag 'priority_id', :class => 'select-small' %></td> |
|
15 | <td valign="bottom"><small><%=l(:field_priority)%>:</small><br /><%= search_filter_tag 'priority_id', :class => 'select-small' %></td> | |
15 | <td valign="bottom"><small><%=l(:field_category)%>:</small><br /><%= search_filter_tag 'category_id', :class => 'select-small' %></td> |
|
16 | <td valign="bottom"><small><%=l(:field_category)%>:</small><br /><%= search_filter_tag 'category_id', :class => 'select-small' %></td> | |
16 | <td valign="bottom"><small><%=l(:field_fixed_version)%>:</small><br /><%= search_filter_tag 'fixed_version_id', :class => 'select-small' %></td> |
|
17 | <td valign="bottom"><small><%=l(:field_fixed_version)%>:</small><br /><%= search_filter_tag 'fixed_version_id', :class => 'select-small' %></td> | |
17 | <td valign="bottom"><small><%=l(:field_author)%>:</small><br /><%= search_filter_tag 'author_id', :class => 'select-small' %></td> |
|
18 | <td valign="bottom"><small><%=l(:field_author)%>:</small><br /><%= search_filter_tag 'author_id', :class => 'select-small' %></td> | |
18 | <td valign="bottom"><small><%=l(:field_assigned_to)%>:</small><br /><%= search_filter_tag 'assigned_to_id', :class => 'select-small' %></td> |
|
19 | <td valign="bottom"><small><%=l(:field_assigned_to)%>:</small><br /><%= search_filter_tag 'assigned_to_id', :class => 'select-small' %></td> | |
19 | <td valign="bottom"><small><%=l(:label_subproject_plural)%>:</small><br /><%= search_filter_tag 'subproject_id', :class => 'select-small' %></td> |
|
20 | <td valign="bottom"><small><%=l(:label_subproject_plural)%>:</small><br /><%= search_filter_tag 'subproject_id', :class => 'select-small' %></td> | |
20 | <td valign="bottom"> |
|
21 | <td valign="bottom"> | |
21 | <%= hidden_field_tag 'set_filter', 1 %> |
|
22 | <%= hidden_field_tag 'set_filter', 1 %> | |
22 | <%= submit_tag l(:button_apply), :class => 'button-small' %> |
|
23 | <%= submit_tag l(:button_apply), :class => 'button-small' %> | |
23 | </td> |
|
24 | </td> | |
24 | <td valign="bottom"> |
|
25 | <td valign="bottom"> | |
25 | <%= link_to l(:button_clear), :action => 'list_issues', :id => @project, :set_filter => 1 %> |
|
26 | <%= link_to l(:button_clear), :action => 'list_issues', :id => @project, :set_filter => 1 %> | |
26 | </td> |
|
27 | </td> | |
27 | </tr> |
|
28 | </tr> | |
28 | </table> |
|
29 | </table> | |
29 | <%= end_form_tag %> |
|
30 | <%= end_form_tag %> | |
30 |
|
31 | |||
31 | |
|
32 | | |
32 | <table class="listTableContent"> |
|
33 | <table class="listTableContent"> | |
33 | <tr> |
|
34 | <tr> | |
34 | <td colspan="6" align="left"><small><%= check_all_links 'issues_form' %></small></td> |
|
35 | <td colspan="6" align="left"><small><%= check_all_links 'issues_form' %></small></td> | |
35 | <td colspan="2" align="right"> |
|
36 | <td colspan="2" align="right"> | |
36 | <small><%= l(:label_per_page) %>:</small> |
|
37 | <small><%= l(:label_per_page) %>:</small> | |
37 | <%= start_form_tag %> |
|
38 | <%= start_form_tag %> | |
38 | <%= select_tag 'per_page', options_for_select(@results_per_page_options, @results_per_page), :class => 'select-small'%> |
|
39 | <%= select_tag 'per_page', options_for_select(@results_per_page_options, @results_per_page), :class => 'select-small'%> | |
39 | <%= submit_tag l(:button_apply), :class => 'button-small'%> |
|
40 | <%= submit_tag l(:button_apply), :class => 'button-small'%> | |
40 | <%= end_form_tag %> |
|
41 | <%= end_form_tag %> | |
41 | </td> |
|
42 | </td> | |
42 | </tr> |
|
43 | </tr> | |
43 | </table> |
|
44 | </table> | |
44 | <%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %> |
|
45 | <%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %> | |
45 | <table class="listTableContent"> |
|
46 | <table class="listTableContent"> | |
46 |
|
47 | |||
47 | <tr class="ListHead"> |
|
48 | <tr class="ListHead"> | |
48 | <td></td> |
|
49 | <td></td> | |
49 | <%= sort_header_tag('issues.id', :caption => '#') %> |
|
50 | <%= sort_header_tag('issues.id', :caption => '#') %> | |
50 | <%= sort_header_tag('issue_statuses.name', :caption => l(:field_status)) %> |
|
51 | <%= sort_header_tag('issue_statuses.name', :caption => l(:field_status)) %> | |
51 | <%= sort_header_tag('issues.tracker_id', :caption => l(:field_tracker)) %> |
|
52 | <%= sort_header_tag('issues.tracker_id', :caption => l(:field_tracker)) %> | |
52 | <th><%=l(:field_subject)%></th> |
|
53 | <th><%=l(:field_subject)%></th> | |
53 | <%= sort_header_tag('users.lastname', :caption => l(:field_author)) %> |
|
54 | <%= sort_header_tag('users.lastname', :caption => l(:field_author)) %> | |
54 | <%= sort_header_tag('issues.created_on', :caption => l(:field_created_on)) %> |
|
55 | <%= sort_header_tag('issues.created_on', :caption => l(:field_created_on)) %> | |
55 | <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %> |
|
56 | <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %> | |
56 | </tr> |
|
57 | </tr> | |
57 | <% for issue in @issues %> |
|
58 | <% for issue in @issues %> | |
58 | <tr bgcolor="#<%= issue.status.html_color %>"> |
|
59 | <tr bgcolor="#<%= issue.status.html_color %>"> | |
59 | <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td> |
|
60 | <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td> | |
60 | <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td> |
|
61 | <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td> | |
61 | <td align="center"><%= issue.status.name %></td> |
|
62 | <td align="center"><%= issue.status.name %></td> | |
62 | <td align="center"><%= issue.tracker.name %></td> |
|
63 | <td align="center"><%= issue.tracker.name %></td> | |
63 | <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td> |
|
64 | <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td> | |
64 | <td align="center"><%= issue.author.display_name %></td> |
|
65 | <td align="center"><%= issue.author.display_name %></td> | |
65 | <td align="center"><%= format_time(issue.created_on) %></td> |
|
66 | <td align="center"><%= format_time(issue.created_on) %></td> | |
66 | <td align="center"><%= format_time(issue.updated_on) %></td> |
|
67 | <td align="center"><%= format_time(issue.updated_on) %></td> | |
67 | </tr> |
|
68 | </tr> | |
68 | <% end %> |
|
69 | <% end %> | |
69 | </table> |
|
70 | </table> | |
70 | <p> |
|
71 | <p> | |
71 | <%= pagination_links_full @issue_pages %> |
|
72 | <%= pagination_links_full @issue_pages %> | |
72 | [ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ] |
|
73 | [ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ] | |
73 | </p> |
|
74 | </p> | |
74 | <%= submit_tag l(:button_move) %> |
|
75 | <%= submit_tag l(:button_move) %> | |
75 | <%= end_form_tag %> No newline at end of file |
|
76 | <%= end_form_tag %> |
@@ -1,318 +1,317 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December |
|
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 day |
|
8 | actionview_datehelper_time_in_words_day: 1 day | |
9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
9 | actionview_datehelper_time_in_words_day_plural: %d days | |
10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
10 | actionview_datehelper_time_in_words_hour_about: about an hour | |
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours | |
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
14 | actionview_datehelper_time_in_words_minute_half: half a minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
18 | actionview_datehelper_time_in_words_second_less_than: less than a second | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds | |
20 | actionview_instancetag_blank_option: Bitte auserwählt |
|
20 | actionview_instancetag_blank_option: Bitte auserwählt | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: ist nicht in der Liste eingeschlossen |
|
22 | activerecord_error_inclusion: ist nicht in der Liste eingeschlossen | |
23 | activerecord_error_exclusion: ist reserviert |
|
23 | activerecord_error_exclusion: ist reserviert | |
24 | activerecord_error_invalid: ist unzulässig |
|
24 | activerecord_error_invalid: ist unzulässig | |
25 | activerecord_error_confirmation: bringt nicht Bestätigung zusammen |
|
25 | activerecord_error_confirmation: bringt nicht Bestätigung zusammen | |
26 | activerecord_error_accepted: muß angenommen werden |
|
26 | activerecord_error_accepted: muß angenommen werden | |
27 | activerecord_error_empty: kann nicht leer sein |
|
27 | activerecord_error_empty: kann nicht leer sein | |
28 | activerecord_error_blank: kann nicht leer sein |
|
28 | activerecord_error_blank: kann nicht leer sein | |
29 | activerecord_error_too_long: ist zu lang |
|
29 | activerecord_error_too_long: ist zu lang | |
30 | activerecord_error_too_short: ist zu kurz |
|
30 | activerecord_error_too_short: ist zu kurz | |
31 | activerecord_error_wrong_length: ist die falsche Länge |
|
31 | activerecord_error_wrong_length: ist die falsche Länge | |
32 | activerecord_error_taken: ist bereits genommen worden |
|
32 | activerecord_error_taken: ist bereits genommen worden | |
33 | activerecord_error_not_a_number: ist nicht eine Zahl |
|
33 | activerecord_error_not_a_number: ist nicht eine Zahl | |
34 | activerecord_error_not_a_date: ist nicht ein gültiges Datum |
|
34 | activerecord_error_not_a_date: ist nicht ein gültiges Datum | |
35 | activerecord_error_greater_than_start_date: muß als grösser sein beginnen Datum |
|
35 | activerecord_error_greater_than_start_date: muß als grösser sein beginnen Datum | |
36 |
|
36 | |||
37 | general_fmt_age: %d yr |
|
37 | general_fmt_age: %d yr | |
38 | general_fmt_age_plural: %d yrs |
|
38 | general_fmt_age_plural: %d yrs | |
39 | general_fmt_date: %%b %%d, %%Y (%%a) |
|
39 | general_fmt_date: %%b %%d, %%Y (%%a) | |
40 | general_fmt_datetime: %%b %%d, %%Y (%%a), %%I:%%M %%p |
|
40 | general_fmt_datetime: %%b %%d, %%Y (%%a), %%I:%%M %%p | |
41 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
41 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
42 | general_fmt_time: %%I:%%M %%p |
|
42 | general_fmt_time: %%I:%%M %%p | |
43 | general_text_No: 'Nein' |
|
43 | general_text_No: 'Nein' | |
44 | general_text_Yes: 'Ja' |
|
44 | general_text_Yes: 'Ja' | |
45 | general_text_no: 'nein' |
|
45 | general_text_no: 'nein' | |
46 | general_text_yes: 'ja' |
|
46 | general_text_yes: 'ja' | |
47 | general_lang_de: 'Deutsch' |
|
47 | general_lang_de: 'Deutsch' | |
48 | general_csv_separator: ';' |
|
48 | general_csv_separator: ';' | |
49 | general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag |
|
49 | general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag | |
50 |
|
50 | |||
51 | notice_account_updated: Konto wurde erfolgreich aktualisiert. |
|
51 | notice_account_updated: Konto wurde erfolgreich aktualisiert. | |
52 | notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort |
|
52 | notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort | |
53 | notice_account_password_updated: Passwort wurde erfolgreich aktualisiert. |
|
53 | notice_account_password_updated: Passwort wurde erfolgreich aktualisiert. | |
54 | notice_account_wrong_password: Falsches Passwort |
|
54 | notice_account_wrong_password: Falsches Passwort | |
55 | notice_account_register_done: Konto wurde erfolgreich verursacht. |
|
55 | notice_account_register_done: Konto wurde erfolgreich verursacht. | |
56 | notice_account_unknown_email: Unbekannter Benutzer. |
|
56 | notice_account_unknown_email: Unbekannter Benutzer. | |
57 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern. |
|
57 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern. | |
58 | notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden. |
|
58 | notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden. | |
59 | notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen. |
|
59 | notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen. | |
60 | notice_successful_create: Erfolgreiche Kreation. |
|
60 | notice_successful_create: Erfolgreiche Kreation. | |
61 | notice_successful_update: Erfolgreiches Update. |
|
61 | notice_successful_update: Erfolgreiches Update. | |
62 | notice_successful_delete: Erfolgreiche Auslassung. |
|
62 | notice_successful_delete: Erfolgreiche Auslassung. | |
63 | notice_successful_connection: Erfolgreicher Anschluß. |
|
63 | notice_successful_connection: Erfolgreicher Anschluß. | |
64 | notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden. |
|
64 | notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden. | |
65 | notice_locking_conflict: Data have been updated by another user. |
|
65 | notice_locking_conflict: Data have been updated by another user. | |
66 |
|
66 | |||
67 | mail_subject_lost_password: Dein redMine Kennwort |
|
67 | mail_subject_lost_password: Dein redMine Kennwort | |
68 | mail_subject_register: redMine Kontoaktivierung |
|
68 | mail_subject_register: redMine Kontoaktivierung | |
69 |
|
69 | |||
70 | gui_validation_error: 1 Störung |
|
70 | gui_validation_error: 1 Störung | |
71 | gui_validation_error_plural: %d Störungen |
|
71 | gui_validation_error_plural: %d Störungen | |
72 |
|
72 | |||
73 | field_name: Name |
|
73 | field_name: Name | |
74 | field_description: Beschreibung |
|
74 | field_description: Beschreibung | |
75 | field_summary: Zusammenfassung |
|
75 | field_summary: Zusammenfassung | |
76 | field_is_required: Erforderlich |
|
76 | field_is_required: Erforderlich | |
77 | field_firstname: Vorname |
|
77 | field_firstname: Vorname | |
78 | field_lastname: Nachname |
|
78 | field_lastname: Nachname | |
79 | field_mail: Email |
|
79 | field_mail: Email | |
80 | field_filename: Datei |
|
80 | field_filename: Datei | |
81 | field_filesize: Grootte |
|
81 | field_filesize: Grootte | |
82 | field_downloads: Downloads |
|
82 | field_downloads: Downloads | |
83 | field_author: Autor |
|
83 | field_author: Autor | |
84 | field_created_on: Angelegt |
|
84 | field_created_on: Angelegt | |
85 | field_updated_on: aktualisiert |
|
85 | field_updated_on: aktualisiert | |
86 | field_field_format: Format |
|
86 | field_field_format: Format | |
87 | field_is_for_all: Für alle Projekte |
|
87 | field_is_for_all: Für alle Projekte | |
88 | field_possible_values: Mögliche Werte |
|
88 | field_possible_values: Mögliche Werte | |
89 | field_regexp: Regulärer Ausdruck |
|
89 | field_regexp: Regulärer Ausdruck | |
90 | field_min_length: Minimale Länge |
|
90 | field_min_length: Minimale Länge | |
91 | field_max_length: Maximale Länge |
|
91 | field_max_length: Maximale Länge | |
92 | field_value: Wert |
|
92 | field_value: Wert | |
93 | field_category: Kategorie |
|
93 | field_category: Kategorie | |
94 | field_title: Títel |
|
94 | field_title: Títel | |
95 | field_project: Projekt |
|
95 | field_project: Projekt | |
96 | field_issue: Antrag |
|
96 | field_issue: Antrag | |
97 | field_status: Status |
|
97 | field_status: Status | |
98 | field_notes: Anmerkungen |
|
98 | field_notes: Anmerkungen | |
99 | field_is_closed: Problem erledigt |
|
99 | field_is_closed: Problem erledigt | |
100 | field_is_default: Rückstellung status |
|
100 | field_is_default: Rückstellung status | |
101 | field_html_color: Farbe |
|
101 | field_html_color: Farbe | |
102 | field_tracker: Tracker |
|
102 | field_tracker: Tracker | |
103 | field_subject: Thema |
|
103 | field_subject: Thema | |
104 | field_due_date: Abgabedatum |
|
104 | field_due_date: Abgabedatum | |
105 | field_assigned_to: Zugewiesen an |
|
105 | field_assigned_to: Zugewiesen an | |
106 | field_priority: Priorität |
|
106 | field_priority: Priorität | |
107 | field_fixed_version: Erledigt in Version |
|
107 | field_fixed_version: Erledigt in Version | |
108 | field_user: Benutzer |
|
108 | field_user: Benutzer | |
109 | field_role: Rolle |
|
109 | field_role: Rolle | |
110 | field_homepage: Startseite |
|
110 | field_homepage: Startseite | |
111 | field_is_public: Öffentlich |
|
111 | field_is_public: Öffentlich | |
112 | field_parent: Subprojekt von |
|
112 | field_parent: Subprojekt von | |
113 | field_is_in_chlog: Ansicht der Issues in der Historie |
|
113 | field_is_in_chlog: Ansicht der Issues in der Historie | |
114 | field_login: Mitgliedsname |
|
114 | field_login: Mitgliedsname | |
115 | field_mail_notification: Mailbenachrichtigung |
|
115 | field_mail_notification: Mailbenachrichtigung | |
116 | field_admin: Administrator |
|
116 | field_admin: Administrator | |
117 | field_locked: Gesperrt |
|
117 | field_locked: Gesperrt | |
118 | field_last_login_on: Letzte Anmeldung |
|
118 | field_last_login_on: Letzte Anmeldung | |
119 | field_language: Sprache |
|
119 | field_language: Sprache | |
120 | field_effective_date: Datum |
|
120 | field_effective_date: Datum | |
121 | field_password: Passwort |
|
121 | field_password: Passwort | |
122 | field_new_password: Neues Passwort |
|
122 | field_new_password: Neues Passwort | |
123 | field_password_confirmation: Bestätigung |
|
123 | field_password_confirmation: Bestätigung | |
124 | field_version: Version |
|
124 | field_version: Version | |
125 | field_type: Typ |
|
125 | field_type: Typ | |
126 | field_host: Host |
|
126 | field_host: Host | |
127 | field_port: Port |
|
127 | field_port: Port | |
128 | field_account: Konto |
|
128 | field_account: Konto | |
129 | field_base_dn: Base DN |
|
129 | field_base_dn: Base DN | |
130 | field_attr_login: Mitgliedsnameattribut |
|
130 | field_attr_login: Mitgliedsnameattribut | |
131 | field_attr_firstname: Vornamensattribut |
|
131 | field_attr_firstname: Vornamensattribut | |
132 | field_attr_lastname: Namenattribut |
|
132 | field_attr_lastname: Namenattribut | |
133 | field_attr_mail: Emailattribut |
|
133 | field_attr_mail: Emailattribut | |
134 | field_onthefly: On-the-fly Benutzerkreation |
|
134 | field_onthefly: On-the-fly Benutzerkreation | |
135 | field_start_date: Beginn |
|
135 | field_start_date: Beginn | |
136 | field_done_ratio: %% Getan |
|
136 | field_done_ratio: %% Getan | |
137 |
|
137 | |||
138 | label_user: Benutzer |
|
138 | label_user: Benutzer | |
139 | label_user_plural: Benutzer |
|
139 | label_user_plural: Benutzer | |
140 | label_user_new: Neuer Benutzer |
|
140 | label_user_new: Neuer Benutzer | |
141 | label_project: Projekt |
|
141 | label_project: Projekt | |
142 | label_project_new: Neues Projekt |
|
142 | label_project_new: Neues Projekt | |
143 | label_project_plural: Projekte |
|
143 | label_project_plural: Projekte | |
144 | label_project_latest: Neueste Projekte |
|
144 | label_project_latest: Neueste Projekte | |
145 | label_issue: Antrag |
|
145 | label_issue: Antrag | |
146 | label_issue_new: Neue Antrag |
|
146 | label_issue_new: Neue Antrag | |
147 | label_issue_plural: Anträge |
|
147 | label_issue_plural: Anträge | |
148 | label_issue_view_all: Alle Anträge ansehen |
|
148 | label_issue_view_all: Alle Anträge ansehen | |
149 | label_document: Dokument |
|
149 | label_document: Dokument | |
150 | label_document_new: Neues Dokument |
|
150 | label_document_new: Neues Dokument | |
151 | label_document_plural: Dokumente |
|
151 | label_document_plural: Dokumente | |
152 | label_role: Rolle |
|
152 | label_role: Rolle | |
153 | label_role_plural: Rollen |
|
153 | label_role_plural: Rollen | |
154 | label_role_new: Neue Rolle |
|
154 | label_role_new: Neue Rolle | |
155 | label_role_and_permissions: Rollen und Rechte |
|
155 | label_role_and_permissions: Rollen und Rechte | |
156 | label_member: Mitglied |
|
156 | label_member: Mitglied | |
157 | label_member_new: Neues Mitglied |
|
157 | label_member_new: Neues Mitglied | |
158 | label_member_plural: Mitglieder |
|
158 | label_member_plural: Mitglieder | |
159 | label_tracker: Tracker |
|
159 | label_tracker: Tracker | |
160 | label_tracker_plural: Tracker |
|
160 | label_tracker_plural: Tracker | |
161 | label_tracker_new: Neuer Tracker |
|
161 | label_tracker_new: Neuer Tracker | |
162 | label_workflow: Workflow |
|
162 | label_workflow: Workflow | |
163 | label_issue_status: Antrag Status |
|
163 | label_issue_status: Antrag Status | |
164 | label_issue_status_plural: Antrag Stati |
|
164 | label_issue_status_plural: Antrag Stati | |
165 | label_issue_status_new: Neuer Status |
|
165 | label_issue_status_new: Neuer Status | |
166 | label_issue_category: Antrag Kategorie |
|
166 | label_issue_category: Antrag Kategorie | |
167 | label_issue_category_plural: Antrag Kategorien |
|
167 | label_issue_category_plural: Antrag Kategorien | |
168 | label_issue_category_new: Neue Kategorie |
|
168 | label_issue_category_new: Neue Kategorie | |
169 | label_custom_field: Benutzerdefiniertes Feld |
|
169 | label_custom_field: Benutzerdefiniertes Feld | |
170 | label_custom_field_plural: Benutzerdefinierte Felder |
|
170 | label_custom_field_plural: Benutzerdefinierte Felder | |
171 | label_custom_field_new: Neues Feld |
|
171 | label_custom_field_new: Neues Feld | |
172 | label_enumerations: Enumerationen |
|
172 | label_enumerations: Enumerationen | |
173 | label_enumeration_new: Neuer Wert |
|
173 | label_enumeration_new: Neuer Wert | |
174 | label_information: Information |
|
174 | label_information: Information | |
175 | label_information_plural: Informationen |
|
175 | label_information_plural: Informationen | |
176 | label_please_login: Anmelden |
|
176 | label_please_login: Anmelden | |
177 | label_register: Anmelden |
|
177 | label_register: Anmelden | |
178 | label_password_lost: Passwort vergessen |
|
178 | label_password_lost: Passwort vergessen | |
179 | label_home: Hauptseite |
|
179 | label_home: Hauptseite | |
180 | label_my_page: Meine Seite |
|
180 | label_my_page: Meine Seite | |
181 | label_my_account: Mein Konto |
|
181 | label_my_account: Mein Konto | |
182 | label_my_projects: Meine Projekte |
|
182 | label_my_projects: Meine Projekte | |
183 | label_administration: Administration |
|
183 | label_administration: Administration | |
184 | label_login: Einloggen |
|
184 | label_login: Einloggen | |
185 | label_logout: Abmelden |
|
185 | label_logout: Abmelden | |
186 | label_help: Hilfe |
|
186 | label_help: Hilfe | |
187 | label_reported_issues: Gemeldete Issues |
|
187 | label_reported_issues: Gemeldete Issues | |
188 | label_assigned_to_me_issues: Mir zugewiesen |
|
188 | label_assigned_to_me_issues: Mir zugewiesen | |
189 | label_last_login: Letzte Anmeldung |
|
189 | label_last_login: Letzte Anmeldung | |
190 | label_last_updates: Letztes aktualisiertes |
|
190 | label_last_updates: Letztes aktualisiertes | |
191 | label_last_updates_plural: %d Letztes aktualisiertes |
|
191 | label_last_updates_plural: %d Letztes aktualisiertes | |
192 | label_registered_on: Angemeldet am |
|
192 | label_registered_on: Angemeldet am | |
193 | label_activity: Aktivität |
|
193 | label_activity: Aktivität | |
194 | label_new: Neue |
|
194 | label_new: Neue | |
195 | label_logged_as: Angemeldet als |
|
195 | label_logged_as: Angemeldet als | |
196 | label_environment: Environment |
|
196 | label_environment: Environment | |
197 | label_authentication: Authentisierung |
|
197 | label_authentication: Authentisierung | |
198 | label_auth_source: Authentisierung Modus |
|
198 | label_auth_source: Authentisierung Modus | |
199 | label_auth_source_new: Neuer Authentisierung Modus |
|
199 | label_auth_source_new: Neuer Authentisierung Modus | |
200 | label_auth_source_plural: Authentisierung Modi |
|
200 | label_auth_source_plural: Authentisierung Modi | |
201 | label_subproject: Vorprojekt von |
|
201 | label_subproject: Vorprojekt von | |
202 | label_subproject_plural: Vorprojekte |
|
202 | label_subproject_plural: Vorprojekte | |
203 | label_min_max_length: Min - Max Länge |
|
203 | label_min_max_length: Min - Max Länge | |
204 | label_list: Liste |
|
204 | label_list: Liste | |
205 | label_date: Date |
|
205 | label_date: Date | |
206 | label_integer: Zahl |
|
206 | label_integer: Zahl | |
207 | label_boolean: Boolesch |
|
207 | label_boolean: Boolesch | |
208 | label_string: Text |
|
208 | label_string: Text | |
209 | label_text: Langer Text |
|
209 | label_text: Langer Text | |
210 | label_attribute: Attribut |
|
210 | label_attribute: Attribut | |
211 | label_attribute_plural: Attribute |
|
211 | label_attribute_plural: Attribute | |
212 | label_download: %d Herunterlade |
|
212 | label_download: %d Herunterlade | |
213 | label_download_plural: %d Herunterlade |
|
213 | label_download_plural: %d Herunterlade | |
214 | label_no_data: Nichts anzuzeigen |
|
214 | label_no_data: Nichts anzuzeigen | |
215 | label_change_status: Statuswechsel |
|
215 | label_change_status: Statuswechsel | |
216 | label_history: Historie |
|
216 | label_history: Historie | |
217 | label_attachment: Datei |
|
217 | label_attachment: Datei | |
218 | label_attachment_new: Neue Datei |
|
218 | label_attachment_new: Neue Datei | |
219 | label_attachment_delete: Löschungakten |
|
219 | label_attachment_delete: Löschungakten | |
220 | label_attachment_plural: Dateien |
|
220 | label_attachment_plural: Dateien | |
221 | label_report: Bericht |
|
221 | label_report: Bericht | |
222 | label_report_plural: Berichte |
|
222 | label_report_plural: Berichte | |
223 | label_news: Neuigkeit |
|
223 | label_news: Neuigkeit | |
224 | label_news_new: Neuigkeite addieren |
|
224 | label_news_new: Neuigkeite addieren | |
225 | label_news_plural: Neuigkeiten |
|
225 | label_news_plural: Neuigkeiten | |
226 | label_news_latest: Letzte Neuigkeiten |
|
226 | label_news_latest: Letzte Neuigkeiten | |
227 | label_news_view_all: Alle Neuigkeiten anzeigen |
|
227 | label_news_view_all: Alle Neuigkeiten anzeigen | |
228 | label_change_log: Change log |
|
228 | label_change_log: Change log | |
229 | label_settings: Konfiguration |
|
229 | label_settings: Konfiguration | |
230 | label_overview: Übersicht |
|
230 | label_overview: Übersicht | |
231 | label_version: Version |
|
231 | label_version: Version | |
232 | label_version_new: Neue Version |
|
232 | label_version_new: Neue Version | |
233 | label_version_plural: Versionen |
|
233 | label_version_plural: Versionen | |
234 | label_confirmation: Bestätigung |
|
234 | label_confirmation: Bestätigung | |
235 |
label_export_ |
|
235 | label_export_to: Export zu | |
236 | label_export_pdf: Export zu PDF |
|
|||
237 | label_read: Lesen... |
|
236 | label_read: Lesen... | |
238 | label_public_projects: Öffentliche Projekte |
|
237 | label_public_projects: Öffentliche Projekte | |
239 | label_open_issues: Geöffnet |
|
238 | label_open_issues: Geöffnet | |
240 | label_open_issues_plural: Geöffnet |
|
239 | label_open_issues_plural: Geöffnet | |
241 | label_closed_issues: Geschlossen |
|
240 | label_closed_issues: Geschlossen | |
242 | label_closed_issues_plural: Geschlossen |
|
241 | label_closed_issues_plural: Geschlossen | |
243 | label_total: Gesamtzahl |
|
242 | label_total: Gesamtzahl | |
244 | label_permissions: Berechtigungen |
|
243 | label_permissions: Berechtigungen | |
245 | label_current_status: Gegenwärtiger Status |
|
244 | label_current_status: Gegenwärtiger Status | |
246 | label_new_statuses_allowed: Neue Status gewährten |
|
245 | label_new_statuses_allowed: Neue Status gewährten | |
247 | label_all: Alle |
|
246 | label_all: Alle | |
248 | label_none: Kein |
|
247 | label_none: Kein | |
249 | label_next: Weiter |
|
248 | label_next: Weiter | |
250 | label_previous: Zurück |
|
249 | label_previous: Zurück | |
251 | label_used_by: Benutzt von |
|
250 | label_used_by: Benutzt von | |
252 | label_details: Details... |
|
251 | label_details: Details... | |
253 | label_add_note: Eine Anmerkung addieren |
|
252 | label_add_note: Eine Anmerkung addieren | |
254 | label_per_page: Pro Seite |
|
253 | label_per_page: Pro Seite | |
255 | label_calendar: Kalender |
|
254 | label_calendar: Kalender | |
256 | label_months_from: Monate von |
|
255 | label_months_from: Monate von | |
257 | label_gantt_chart: Gantt Diagramm |
|
256 | label_gantt_chart: Gantt Diagramm | |
258 | label_internal: Intern |
|
257 | label_internal: Intern | |
259 | label_last_changes: %d änderungen des Letzten |
|
258 | label_last_changes: %d änderungen des Letzten | |
260 | label_change_view_all: Alle änderungen ansehen |
|
259 | label_change_view_all: Alle änderungen ansehen | |
261 |
|
260 | |||
262 | button_login: Einloggen |
|
261 | button_login: Einloggen | |
263 | button_submit: Einreichen |
|
262 | button_submit: Einreichen | |
264 | button_save: Speichern |
|
263 | button_save: Speichern | |
265 | button_check_all: Alles auswählen |
|
264 | button_check_all: Alles auswählen | |
266 | button_uncheck_all: Alles abwählen |
|
265 | button_uncheck_all: Alles abwählen | |
267 | button_delete: Löschen |
|
266 | button_delete: Löschen | |
268 | button_create: Anlegen |
|
267 | button_create: Anlegen | |
269 | button_test: Testen |
|
268 | button_test: Testen | |
270 | button_edit: Bearbeiten |
|
269 | button_edit: Bearbeiten | |
271 | button_add: Hinzufügen |
|
270 | button_add: Hinzufügen | |
272 | button_change: Wechseln |
|
271 | button_change: Wechseln | |
273 | button_apply: Anwenden |
|
272 | button_apply: Anwenden | |
274 | button_clear: Zurücksetzen |
|
273 | button_clear: Zurücksetzen | |
275 | button_lock: Verriegeln |
|
274 | button_lock: Verriegeln | |
276 | button_unlock: Entriegeln |
|
275 | button_unlock: Entriegeln | |
277 | button_download: Fernzuladen |
|
276 | button_download: Fernzuladen | |
278 | button_list: Aufzulisten |
|
277 | button_list: Aufzulisten | |
279 | button_view: Siehe |
|
278 | button_view: Siehe | |
280 | button_move: Bewegen |
|
279 | button_move: Bewegen | |
281 | button_back: Rückkehr |
|
280 | button_back: Rückkehr | |
282 |
|
281 | |||
283 | text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll. |
|
282 | text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll. | |
284 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
283 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
285 | text_min_max_length_info: 0 heisst keine Beschränkung |
|
284 | text_min_max_length_info: 0 heisst keine Beschränkung | |
286 | text_possible_values_info: Werte trennten sich mit | |
|
285 | text_possible_values_info: Werte trennten sich mit | | |
287 | text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ? |
|
286 | text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ? | |
288 | text_workflow_edit: Auswahl Workflow zum Bearbeiten |
|
287 | text_workflow_edit: Auswahl Workflow zum Bearbeiten | |
289 | text_are_you_sure: Sind sie sicher ? |
|
288 | text_are_you_sure: Sind sie sicher ? | |
290 | text_journal_changed: geändert von %s zu %s |
|
289 | text_journal_changed: geändert von %s zu %s | |
291 | text_journal_set_to: gestellt zu %s |
|
290 | text_journal_set_to: gestellt zu %s | |
292 | text_journal_deleted: gelöscht |
|
291 | text_journal_deleted: gelöscht | |
293 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt |
|
292 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt | |
294 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet |
|
293 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet | |
295 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet |
|
294 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet | |
296 |
|
295 | |||
297 | default_role_manager: Manager |
|
296 | default_role_manager: Manager | |
298 | default_role_developper: Developer |
|
297 | default_role_developper: Developer | |
299 | default_role_reporter: Reporter |
|
298 | default_role_reporter: Reporter | |
300 | default_tracker_bug: Fehler |
|
299 | default_tracker_bug: Fehler | |
301 | default_tracker_feature: Feature |
|
300 | default_tracker_feature: Feature | |
302 | default_tracker_support: Support |
|
301 | default_tracker_support: Support | |
303 | default_issue_status_new: Neu |
|
302 | default_issue_status_new: Neu | |
304 | default_issue_status_assigned: Zugewiesen |
|
303 | default_issue_status_assigned: Zugewiesen | |
305 | default_issue_status_resolved: Gelöst |
|
304 | default_issue_status_resolved: Gelöst | |
306 | default_issue_status_feedback: Feedback |
|
305 | default_issue_status_feedback: Feedback | |
307 | default_issue_status_closed: Erledigt |
|
306 | default_issue_status_closed: Erledigt | |
308 | default_issue_status_rejected: Abgewiesen |
|
307 | default_issue_status_rejected: Abgewiesen | |
309 | default_doc_category_user: Benutzerdokumentation |
|
308 | default_doc_category_user: Benutzerdokumentation | |
310 | default_doc_category_tech: Technische Dokumentation |
|
309 | default_doc_category_tech: Technische Dokumentation | |
311 | default_priority_low: Niedrig |
|
310 | default_priority_low: Niedrig | |
312 | default_priority_normal: Normal |
|
311 | default_priority_normal: Normal | |
313 | default_priority_high: Hoch |
|
312 | default_priority_high: Hoch | |
314 | default_priority_urgent: Dringend |
|
313 | default_priority_urgent: Dringend | |
315 | default_priority_immediate: Sofort |
|
314 | default_priority_immediate: Sofort | |
316 |
|
315 | |||
317 | enumeration_issue_priorities: Issue-Prioritäten |
|
316 | enumeration_issue_priorities: Issue-Prioritäten | |
318 | enumeration_doc_categories: Dokumentenkategorien |
|
317 | enumeration_doc_categories: Dokumentenkategorien |
@@ -1,318 +1,317 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December |
|
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 day |
|
8 | actionview_datehelper_time_in_words_day: 1 day | |
9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
9 | actionview_datehelper_time_in_words_day_plural: %d days | |
10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
10 | actionview_datehelper_time_in_words_hour_about: about an hour | |
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours | |
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
14 | actionview_datehelper_time_in_words_minute_half: half a minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
18 | actionview_datehelper_time_in_words_second_less_than: less than a second | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds | |
20 | actionview_instancetag_blank_option: Please select |
|
20 | actionview_instancetag_blank_option: Please select | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: is not included in the list |
|
22 | activerecord_error_inclusion: is not included in the list | |
23 | activerecord_error_exclusion: is reserved |
|
23 | activerecord_error_exclusion: is reserved | |
24 | activerecord_error_invalid: is invalid |
|
24 | activerecord_error_invalid: is invalid | |
25 | activerecord_error_confirmation: doesn't match confirmation |
|
25 | activerecord_error_confirmation: doesn't match confirmation | |
26 | activerecord_error_accepted: must be accepted |
|
26 | activerecord_error_accepted: must be accepted | |
27 | activerecord_error_empty: can't be empty |
|
27 | activerecord_error_empty: can't be empty | |
28 | activerecord_error_blank: can't be blank |
|
28 | activerecord_error_blank: can't be blank | |
29 | activerecord_error_too_long: is too long |
|
29 | activerecord_error_too_long: is too long | |
30 | activerecord_error_too_short: is too short |
|
30 | activerecord_error_too_short: is too short | |
31 | activerecord_error_wrong_length: is the wrong length |
|
31 | activerecord_error_wrong_length: is the wrong length | |
32 | activerecord_error_taken: has already been taken |
|
32 | activerecord_error_taken: has already been taken | |
33 | activerecord_error_not_a_number: is not a number |
|
33 | activerecord_error_not_a_number: is not a number | |
34 | activerecord_error_not_a_date: is not a valid date |
|
34 | activerecord_error_not_a_date: is not a valid date | |
35 | activerecord_error_greater_than_start_date: must be greater than start date |
|
35 | activerecord_error_greater_than_start_date: must be greater than start date | |
36 |
|
36 | |||
37 | general_fmt_age: %d yr |
|
37 | general_fmt_age: %d yr | |
38 | general_fmt_age_plural: %d yrs |
|
38 | general_fmt_age_plural: %d yrs | |
39 | general_fmt_date: %%m/%%d/%%Y |
|
39 | general_fmt_date: %%m/%%d/%%Y | |
40 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
40 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
41 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
41 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
42 | general_fmt_time: %%I:%%M %%p |
|
42 | general_fmt_time: %%I:%%M %%p | |
43 | general_text_No: 'No' |
|
43 | general_text_No: 'No' | |
44 | general_text_Yes: 'Yes' |
|
44 | general_text_Yes: 'Yes' | |
45 | general_text_no: 'no' |
|
45 | general_text_no: 'no' | |
46 | general_text_yes: 'yes' |
|
46 | general_text_yes: 'yes' | |
47 | general_lang_en: 'English' |
|
47 | general_lang_en: 'English' | |
48 | general_csv_separator: ',' |
|
48 | general_csv_separator: ',' | |
49 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday |
|
49 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday | |
50 |
|
50 | |||
51 | notice_account_updated: Account was successfully updated. |
|
51 | notice_account_updated: Account was successfully updated. | |
52 | notice_account_invalid_creditentials: Invalid user or password |
|
52 | notice_account_invalid_creditentials: Invalid user or password | |
53 | notice_account_password_updated: Password was successfully updated. |
|
53 | notice_account_password_updated: Password was successfully updated. | |
54 | notice_account_wrong_password: Wrong password |
|
54 | notice_account_wrong_password: Wrong password | |
55 | notice_account_register_done: Account was successfully created. |
|
55 | notice_account_register_done: Account was successfully created. | |
56 | notice_account_unknown_email: Unknown user. |
|
56 | notice_account_unknown_email: Unknown user. | |
57 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
57 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
58 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
58 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
59 | notice_account_activated: Your account has been activated. You can now log in. |
|
59 | notice_account_activated: Your account has been activated. You can now log in. | |
60 | notice_successful_create: Successful creation. |
|
60 | notice_successful_create: Successful creation. | |
61 | notice_successful_update: Successful update. |
|
61 | notice_successful_update: Successful update. | |
62 | notice_successful_delete: Successful deletion. |
|
62 | notice_successful_delete: Successful deletion. | |
63 | notice_successful_connection: Successful connection. |
|
63 | notice_successful_connection: Successful connection. | |
64 | notice_file_not_found: Requested file doesn't exist or has been deleted. |
|
64 | notice_file_not_found: Requested file doesn't exist or has been deleted. | |
65 | notice_locking_conflict: Data have been updated by another user. |
|
65 | notice_locking_conflict: Data have been updated by another user. | |
66 |
|
66 | |||
67 | mail_subject_lost_password: Your redMine password |
|
67 | mail_subject_lost_password: Your redMine password | |
68 | mail_subject_register: redMine account activation |
|
68 | mail_subject_register: redMine account activation | |
69 |
|
69 | |||
70 | gui_validation_error: 1 error |
|
70 | gui_validation_error: 1 error | |
71 | gui_validation_error_plural: %d errors |
|
71 | gui_validation_error_plural: %d errors | |
72 |
|
72 | |||
73 | field_name: Name |
|
73 | field_name: Name | |
74 | field_description: Description |
|
74 | field_description: Description | |
75 | field_summary: Summary |
|
75 | field_summary: Summary | |
76 | field_is_required: Required |
|
76 | field_is_required: Required | |
77 | field_firstname: Firstname |
|
77 | field_firstname: Firstname | |
78 | field_lastname: Lastname |
|
78 | field_lastname: Lastname | |
79 | field_mail: Email |
|
79 | field_mail: Email | |
80 | field_filename: File |
|
80 | field_filename: File | |
81 | field_filesize: Size |
|
81 | field_filesize: Size | |
82 | field_downloads: Downloads |
|
82 | field_downloads: Downloads | |
83 | field_author: Author |
|
83 | field_author: Author | |
84 | field_created_on: Created |
|
84 | field_created_on: Created | |
85 | field_updated_on: Updated |
|
85 | field_updated_on: Updated | |
86 | field_field_format: Format |
|
86 | field_field_format: Format | |
87 | field_is_for_all: For all projects |
|
87 | field_is_for_all: For all projects | |
88 | field_possible_values: Possible values |
|
88 | field_possible_values: Possible values | |
89 | field_regexp: Regular expression |
|
89 | field_regexp: Regular expression | |
90 | field_min_length: Minimum length |
|
90 | field_min_length: Minimum length | |
91 | field_max_length: Maximum length |
|
91 | field_max_length: Maximum length | |
92 | field_value: Value |
|
92 | field_value: Value | |
93 | field_category: Category |
|
93 | field_category: Category | |
94 | field_title: Title |
|
94 | field_title: Title | |
95 | field_project: Project |
|
95 | field_project: Project | |
96 | field_issue: Issue |
|
96 | field_issue: Issue | |
97 | field_status: Status |
|
97 | field_status: Status | |
98 | field_notes: Notes |
|
98 | field_notes: Notes | |
99 | field_is_closed: Issue closed |
|
99 | field_is_closed: Issue closed | |
100 | field_is_default: Default status |
|
100 | field_is_default: Default status | |
101 | field_html_color: Color |
|
101 | field_html_color: Color | |
102 | field_tracker: Tracker |
|
102 | field_tracker: Tracker | |
103 | field_subject: Subject |
|
103 | field_subject: Subject | |
104 | field_due_date: Due date |
|
104 | field_due_date: Due date | |
105 | field_assigned_to: Assigned to |
|
105 | field_assigned_to: Assigned to | |
106 | field_priority: Priority |
|
106 | field_priority: Priority | |
107 | field_fixed_version: Fixed version |
|
107 | field_fixed_version: Fixed version | |
108 | field_user: User |
|
108 | field_user: User | |
109 | field_role: Role |
|
109 | field_role: Role | |
110 | field_homepage: Homepage |
|
110 | field_homepage: Homepage | |
111 | field_is_public: Public |
|
111 | field_is_public: Public | |
112 | field_parent: Subproject of |
|
112 | field_parent: Subproject of | |
113 | field_is_in_chlog: Issues displayed in changelog |
|
113 | field_is_in_chlog: Issues displayed in changelog | |
114 | field_login: Login |
|
114 | field_login: Login | |
115 | field_mail_notification: Mail notifications |
|
115 | field_mail_notification: Mail notifications | |
116 | field_admin: Administrator |
|
116 | field_admin: Administrator | |
117 | field_locked: Locked |
|
117 | field_locked: Locked | |
118 | field_last_login_on: Last connection |
|
118 | field_last_login_on: Last connection | |
119 | field_language: Language |
|
119 | field_language: Language | |
120 | field_effective_date: Date |
|
120 | field_effective_date: Date | |
121 | field_password: Password |
|
121 | field_password: Password | |
122 | field_new_password: New password |
|
122 | field_new_password: New password | |
123 | field_password_confirmation: Confirmation |
|
123 | field_password_confirmation: Confirmation | |
124 | field_version: Version |
|
124 | field_version: Version | |
125 | field_type: Type |
|
125 | field_type: Type | |
126 | field_host: Host |
|
126 | field_host: Host | |
127 | field_port: Port |
|
127 | field_port: Port | |
128 | field_account: Account |
|
128 | field_account: Account | |
129 | field_base_dn: Base DN |
|
129 | field_base_dn: Base DN | |
130 | field_attr_login: Login attribute |
|
130 | field_attr_login: Login attribute | |
131 | field_attr_firstname: Firstname attribute |
|
131 | field_attr_firstname: Firstname attribute | |
132 | field_attr_lastname: Lastname attribute |
|
132 | field_attr_lastname: Lastname attribute | |
133 | field_attr_mail: Email attribute |
|
133 | field_attr_mail: Email attribute | |
134 | field_onthefly: On-the-fly user creation |
|
134 | field_onthefly: On-the-fly user creation | |
135 | field_start_date: Start |
|
135 | field_start_date: Start | |
136 | field_done_ratio: %% Done |
|
136 | field_done_ratio: %% Done | |
137 |
|
137 | |||
138 | label_user: User |
|
138 | label_user: User | |
139 | label_user_plural: Users |
|
139 | label_user_plural: Users | |
140 | label_user_new: New user |
|
140 | label_user_new: New user | |
141 | label_project: Project |
|
141 | label_project: Project | |
142 | label_project_new: New project |
|
142 | label_project_new: New project | |
143 | label_project_plural: Projects |
|
143 | label_project_plural: Projects | |
144 | label_project_latest: Latest projects |
|
144 | label_project_latest: Latest projects | |
145 | label_issue: Issue |
|
145 | label_issue: Issue | |
146 | label_issue_new: New issue |
|
146 | label_issue_new: New issue | |
147 | label_issue_plural: Issues |
|
147 | label_issue_plural: Issues | |
148 | label_issue_view_all: View all issues |
|
148 | label_issue_view_all: View all issues | |
149 | label_document: Document |
|
149 | label_document: Document | |
150 | label_document_new: New document |
|
150 | label_document_new: New document | |
151 | label_document_plural: Documents |
|
151 | label_document_plural: Documents | |
152 | label_role: Role |
|
152 | label_role: Role | |
153 | label_role_plural: Roles |
|
153 | label_role_plural: Roles | |
154 | label_role_new: New role |
|
154 | label_role_new: New role | |
155 | label_role_and_permissions: Roles and permissions |
|
155 | label_role_and_permissions: Roles and permissions | |
156 | label_member: Member |
|
156 | label_member: Member | |
157 | label_member_new: New member |
|
157 | label_member_new: New member | |
158 | label_member_plural: Members |
|
158 | label_member_plural: Members | |
159 | label_tracker: Tracker |
|
159 | label_tracker: Tracker | |
160 | label_tracker_plural: Trackers |
|
160 | label_tracker_plural: Trackers | |
161 | label_tracker_new: New tracker |
|
161 | label_tracker_new: New tracker | |
162 | label_workflow: Workflow |
|
162 | label_workflow: Workflow | |
163 | label_issue_status: Issue status |
|
163 | label_issue_status: Issue status | |
164 | label_issue_status_plural: Issue statuses |
|
164 | label_issue_status_plural: Issue statuses | |
165 | label_issue_status_new: New status |
|
165 | label_issue_status_new: New status | |
166 | label_issue_category: Issue category |
|
166 | label_issue_category: Issue category | |
167 | label_issue_category_plural: Issue categories |
|
167 | label_issue_category_plural: Issue categories | |
168 | label_issue_category_new: New category |
|
168 | label_issue_category_new: New category | |
169 | label_custom_field: Custom field |
|
169 | label_custom_field: Custom field | |
170 | label_custom_field_plural: Custom fields |
|
170 | label_custom_field_plural: Custom fields | |
171 | label_custom_field_new: New custom field |
|
171 | label_custom_field_new: New custom field | |
172 | label_enumerations: Enumerations |
|
172 | label_enumerations: Enumerations | |
173 | label_enumeration_new: New value |
|
173 | label_enumeration_new: New value | |
174 | label_information: Information |
|
174 | label_information: Information | |
175 | label_information_plural: Information |
|
175 | label_information_plural: Information | |
176 | label_please_login: Please login |
|
176 | label_please_login: Please login | |
177 | label_register: Register |
|
177 | label_register: Register | |
178 | label_password_lost: Lost password |
|
178 | label_password_lost: Lost password | |
179 | label_home: Home |
|
179 | label_home: Home | |
180 | label_my_page: My page |
|
180 | label_my_page: My page | |
181 | label_my_account: My account |
|
181 | label_my_account: My account | |
182 | label_my_projects: My projects |
|
182 | label_my_projects: My projects | |
183 | label_administration: Administration |
|
183 | label_administration: Administration | |
184 | label_login: Login |
|
184 | label_login: Login | |
185 | label_logout: Logout |
|
185 | label_logout: Logout | |
186 | label_help: Help |
|
186 | label_help: Help | |
187 | label_reported_issues: Reported issues |
|
187 | label_reported_issues: Reported issues | |
188 | label_assigned_to_me_issues: Issues assigned to me |
|
188 | label_assigned_to_me_issues: Issues assigned to me | |
189 | label_last_login: Last connection |
|
189 | label_last_login: Last connection | |
190 | label_last_updates: Last updated |
|
190 | label_last_updates: Last updated | |
191 | label_last_updates_plural: %d last updated |
|
191 | label_last_updates_plural: %d last updated | |
192 | label_registered_on: Registered on |
|
192 | label_registered_on: Registered on | |
193 | label_activity: Activity |
|
193 | label_activity: Activity | |
194 | label_new: New |
|
194 | label_new: New | |
195 | label_logged_as: Logged as |
|
195 | label_logged_as: Logged as | |
196 | label_environment: Environment |
|
196 | label_environment: Environment | |
197 | label_authentication: Authentication |
|
197 | label_authentication: Authentication | |
198 | label_auth_source: Authentication mode |
|
198 | label_auth_source: Authentication mode | |
199 | label_auth_source_new: New authentication mode |
|
199 | label_auth_source_new: New authentication mode | |
200 | label_auth_source_plural: Authentication modes |
|
200 | label_auth_source_plural: Authentication modes | |
201 | label_subproject: Subproject |
|
201 | label_subproject: Subproject | |
202 | label_subproject_plural: Subprojects |
|
202 | label_subproject_plural: Subprojects | |
203 | label_min_max_length: Min - Max length |
|
203 | label_min_max_length: Min - Max length | |
204 | label_list: List |
|
204 | label_list: List | |
205 | label_date: Date |
|
205 | label_date: Date | |
206 | label_integer: Integer |
|
206 | label_integer: Integer | |
207 | label_boolean: Boolean |
|
207 | label_boolean: Boolean | |
208 | label_string: Text |
|
208 | label_string: Text | |
209 | label_text: Long text |
|
209 | label_text: Long text | |
210 | label_attribute: Attribute |
|
210 | label_attribute: Attribute | |
211 | label_attribute_plural: Attributes |
|
211 | label_attribute_plural: Attributes | |
212 | label_download: %d Download |
|
212 | label_download: %d Download | |
213 | label_download_plural: %d Downloads |
|
213 | label_download_plural: %d Downloads | |
214 | label_no_data: No data to display |
|
214 | label_no_data: No data to display | |
215 | label_change_status: Change status |
|
215 | label_change_status: Change status | |
216 | label_history: History |
|
216 | label_history: History | |
217 | label_attachment: File |
|
217 | label_attachment: File | |
218 | label_attachment_new: New file |
|
218 | label_attachment_new: New file | |
219 | label_attachment_delete: Delete file |
|
219 | label_attachment_delete: Delete file | |
220 | label_attachment_plural: Files |
|
220 | label_attachment_plural: Files | |
221 | label_report: Report |
|
221 | label_report: Report | |
222 | label_report_plural: Reports |
|
222 | label_report_plural: Reports | |
223 | label_news: News |
|
223 | label_news: News | |
224 | label_news_new: Add news |
|
224 | label_news_new: Add news | |
225 | label_news_plural: News |
|
225 | label_news_plural: News | |
226 | label_news_latest: Latest news |
|
226 | label_news_latest: Latest news | |
227 | label_news_view_all: View all news |
|
227 | label_news_view_all: View all news | |
228 | label_change_log: Change log |
|
228 | label_change_log: Change log | |
229 | label_settings: Settings |
|
229 | label_settings: Settings | |
230 | label_overview: Overview |
|
230 | label_overview: Overview | |
231 | label_version: Version |
|
231 | label_version: Version | |
232 | label_version_new: New version |
|
232 | label_version_new: New version | |
233 | label_version_plural: Versions |
|
233 | label_version_plural: Versions | |
234 | label_confirmation: Confirmation |
|
234 | label_confirmation: Confirmation | |
235 |
label_export_ |
|
235 | label_export_to: Export to | |
236 | label_export_pdf: Export to PDF |
|
|||
237 | label_read: Read... |
|
236 | label_read: Read... | |
238 | label_public_projects: Public projects |
|
237 | label_public_projects: Public projects | |
239 | label_open_issues: Open |
|
238 | label_open_issues: Open | |
240 | label_open_issues_plural: Open |
|
239 | label_open_issues_plural: Open | |
241 | label_closed_issues: Closed |
|
240 | label_closed_issues: Closed | |
242 | label_closed_issues_plural: Closed |
|
241 | label_closed_issues_plural: Closed | |
243 | label_total: Total |
|
242 | label_total: Total | |
244 | label_permissions: Permissions |
|
243 | label_permissions: Permissions | |
245 | label_current_status: Current status |
|
244 | label_current_status: Current status | |
246 | label_new_statuses_allowed: New statuses allowed |
|
245 | label_new_statuses_allowed: New statuses allowed | |
247 | label_all: All |
|
246 | label_all: All | |
248 | label_none: None |
|
247 | label_none: None | |
249 | label_next: Next |
|
248 | label_next: Next | |
250 | label_previous: Previous |
|
249 | label_previous: Previous | |
251 | label_used_by: Used by |
|
250 | label_used_by: Used by | |
252 | label_details: Details... |
|
251 | label_details: Details... | |
253 | label_add_note: Add a note |
|
252 | label_add_note: Add a note | |
254 | label_per_page: Per page |
|
253 | label_per_page: Per page | |
255 | label_calendar: Calendar |
|
254 | label_calendar: Calendar | |
256 | label_months_from: months from |
|
255 | label_months_from: months from | |
257 | label_gantt_chart: Gantt chart |
|
256 | label_gantt_chart: Gantt chart | |
258 | label_internal: Internal |
|
257 | label_internal: Internal | |
259 | label_last_changes: last %d changes |
|
258 | label_last_changes: last %d changes | |
260 | label_change_view_all: View all changes |
|
259 | label_change_view_all: View all changes | |
261 |
|
260 | |||
262 | button_login: Login |
|
261 | button_login: Login | |
263 | button_submit: Submit |
|
262 | button_submit: Submit | |
264 | button_save: Save |
|
263 | button_save: Save | |
265 | button_check_all: Check all |
|
264 | button_check_all: Check all | |
266 | button_uncheck_all: Uncheck all |
|
265 | button_uncheck_all: Uncheck all | |
267 | button_delete: Delete |
|
266 | button_delete: Delete | |
268 | button_create: Create |
|
267 | button_create: Create | |
269 | button_test: Test |
|
268 | button_test: Test | |
270 | button_edit: Edit |
|
269 | button_edit: Edit | |
271 | button_add: Add |
|
270 | button_add: Add | |
272 | button_change: Change |
|
271 | button_change: Change | |
273 | button_apply: Apply |
|
272 | button_apply: Apply | |
274 | button_clear: Clear |
|
273 | button_clear: Clear | |
275 | button_lock: Lock |
|
274 | button_lock: Lock | |
276 | button_unlock: Unlock |
|
275 | button_unlock: Unlock | |
277 | button_download: Download |
|
276 | button_download: Download | |
278 | button_list: List |
|
277 | button_list: List | |
279 | button_view: View |
|
278 | button_view: View | |
280 | button_move: Move |
|
279 | button_move: Move | |
281 | button_back: Back |
|
280 | button_back: Back | |
282 |
|
281 | |||
283 | text_select_mail_notifications: Select actions for which mail notifications should be sent. |
|
282 | text_select_mail_notifications: Select actions for which mail notifications should be sent. | |
284 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
283 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
285 | text_min_max_length_info: 0 means no restriction |
|
284 | text_min_max_length_info: 0 means no restriction | |
286 | text_possible_values_info: values separated with | |
|
285 | text_possible_values_info: values separated with | | |
287 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? |
|
286 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? | |
288 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
287 | text_workflow_edit: Select a role and a tracker to edit the workflow | |
289 | text_are_you_sure: Are you sure ? |
|
288 | text_are_you_sure: Are you sure ? | |
290 | text_journal_changed: changed from %s to %s |
|
289 | text_journal_changed: changed from %s to %s | |
291 | text_journal_set_to: set to %s |
|
290 | text_journal_set_to: set to %s | |
292 | text_journal_deleted: deleted |
|
291 | text_journal_deleted: deleted | |
293 | text_tip_task_begin_day: task beginning this day |
|
292 | text_tip_task_begin_day: task beginning this day | |
294 | text_tip_task_end_day: task ending this day |
|
293 | text_tip_task_end_day: task ending this day | |
295 | text_tip_task_begin_end_day: task beginning and ending this day |
|
294 | text_tip_task_begin_end_day: task beginning and ending this day | |
296 |
|
295 | |||
297 | default_role_manager: Manager |
|
296 | default_role_manager: Manager | |
298 | default_role_developper: Developer |
|
297 | default_role_developper: Developer | |
299 | default_role_reporter: Reporter |
|
298 | default_role_reporter: Reporter | |
300 | default_tracker_bug: Bug |
|
299 | default_tracker_bug: Bug | |
301 | default_tracker_feature: Feature |
|
300 | default_tracker_feature: Feature | |
302 | default_tracker_support: Support |
|
301 | default_tracker_support: Support | |
303 | default_issue_status_new: New |
|
302 | default_issue_status_new: New | |
304 | default_issue_status_assigned: Assigned |
|
303 | default_issue_status_assigned: Assigned | |
305 | default_issue_status_resolved: Resolved |
|
304 | default_issue_status_resolved: Resolved | |
306 | default_issue_status_feedback: Feedback |
|
305 | default_issue_status_feedback: Feedback | |
307 | default_issue_status_closed: Closed |
|
306 | default_issue_status_closed: Closed | |
308 | default_issue_status_rejected: Rejected |
|
307 | default_issue_status_rejected: Rejected | |
309 | default_doc_category_user: User documentation |
|
308 | default_doc_category_user: User documentation | |
310 | default_doc_category_tech: Technical documentation |
|
309 | default_doc_category_tech: Technical documentation | |
311 | default_priority_low: Low |
|
310 | default_priority_low: Low | |
312 | default_priority_normal: Normal |
|
311 | default_priority_normal: Normal | |
313 | default_priority_high: High |
|
312 | default_priority_high: High | |
314 | default_priority_urgent: Urgent |
|
313 | default_priority_urgent: Urgent | |
315 | default_priority_immediate: Immediate |
|
314 | default_priority_immediate: Immediate | |
316 |
|
315 | |||
317 | enumeration_issue_priorities: Issue priorities |
|
316 | enumeration_issue_priorities: Issue priorities | |
318 | enumeration_doc_categories: Document categories |
|
317 | enumeration_doc_categories: Document categories |
@@ -1,318 +1,317 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre |
|
4 | actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre | |
5 | actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic |
|
5 | actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 day |
|
8 | actionview_datehelper_time_in_words_day: 1 day | |
9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
9 | actionview_datehelper_time_in_words_day_plural: %d days | |
10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
10 | actionview_datehelper_time_in_words_hour_about: about an hour | |
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours | |
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
14 | actionview_datehelper_time_in_words_minute_half: half a minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
18 | actionview_datehelper_time_in_words_second_less_than: less than a second | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds | |
20 | actionview_instancetag_blank_option: Please select |
|
20 | actionview_instancetag_blank_option: Please select | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: is not included in the list |
|
22 | activerecord_error_inclusion: is not included in the list | |
23 | activerecord_error_exclusion: is reserved |
|
23 | activerecord_error_exclusion: is reserved | |
24 | activerecord_error_invalid: is invalid |
|
24 | activerecord_error_invalid: is invalid | |
25 | activerecord_error_confirmation: doesn't match confirmation |
|
25 | activerecord_error_confirmation: doesn't match confirmation | |
26 | activerecord_error_accepted: must be accepted |
|
26 | activerecord_error_accepted: must be accepted | |
27 | activerecord_error_empty: can't be empty |
|
27 | activerecord_error_empty: can't be empty | |
28 | activerecord_error_blank: can't be blank |
|
28 | activerecord_error_blank: can't be blank | |
29 | activerecord_error_too_long: is too long |
|
29 | activerecord_error_too_long: is too long | |
30 | activerecord_error_too_short: is too short |
|
30 | activerecord_error_too_short: is too short | |
31 | activerecord_error_wrong_length: is the wrong length |
|
31 | activerecord_error_wrong_length: is the wrong length | |
32 | activerecord_error_taken: has already been taken |
|
32 | activerecord_error_taken: has already been taken | |
33 | activerecord_error_not_a_number: is not a number |
|
33 | activerecord_error_not_a_number: is not a number | |
34 | activerecord_error_not_a_date: no es una fecha válida |
|
34 | activerecord_error_not_a_date: no es una fecha válida | |
35 | activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo |
|
35 | activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo | |
36 |
|
36 | |||
37 | general_fmt_age: %d año |
|
37 | general_fmt_age: %d año | |
38 | general_fmt_age_plural: %d años |
|
38 | general_fmt_age_plural: %d años | |
39 | general_fmt_date: %%d/%%m/%%Y |
|
39 | general_fmt_date: %%d/%%m/%%Y | |
40 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
40 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M | |
41 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
41 | general_fmt_datetime_short: %%d/%%m %%H:%%M | |
42 | general_fmt_time: %%H:%%M |
|
42 | general_fmt_time: %%H:%%M | |
43 | general_text_No: 'No' |
|
43 | general_text_No: 'No' | |
44 | general_text_Yes: 'Sí' |
|
44 | general_text_Yes: 'Sí' | |
45 | general_text_no: 'no' |
|
45 | general_text_no: 'no' | |
46 | general_text_yes: 'sí' |
|
46 | general_text_yes: 'sí' | |
47 | general_lang_es: 'Español' |
|
47 | general_lang_es: 'Español' | |
48 | general_csv_separator: ';' |
|
48 | general_csv_separator: ';' | |
49 | general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo |
|
49 | general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo | |
50 |
|
50 | |||
51 | notice_account_updated: Account was successfully updated. |
|
51 | notice_account_updated: Account was successfully updated. | |
52 | notice_account_invalid_creditentials: Invalid user or password |
|
52 | notice_account_invalid_creditentials: Invalid user or password | |
53 | notice_account_password_updated: Password was successfully updated. |
|
53 | notice_account_password_updated: Password was successfully updated. | |
54 | notice_account_wrong_password: Wrong password |
|
54 | notice_account_wrong_password: Wrong password | |
55 | notice_account_register_done: Account was successfully created. |
|
55 | notice_account_register_done: Account was successfully created. | |
56 | notice_account_unknown_email: Unknown user. |
|
56 | notice_account_unknown_email: Unknown user. | |
57 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
57 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
58 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
58 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
59 | notice_account_activated: Your account has been activated. You can now log in. |
|
59 | notice_account_activated: Your account has been activated. You can now log in. | |
60 | notice_successful_create: Successful creation. |
|
60 | notice_successful_create: Successful creation. | |
61 | notice_successful_update: Successful update. |
|
61 | notice_successful_update: Successful update. | |
62 | notice_successful_delete: Successful deletion. |
|
62 | notice_successful_delete: Successful deletion. | |
63 | notice_successful_connection: Successful connection. |
|
63 | notice_successful_connection: Successful connection. | |
64 | notice_file_not_found: Requested file doesn't exist or has been deleted. |
|
64 | notice_file_not_found: Requested file doesn't exist or has been deleted. | |
65 | notice_locking_conflict: Data have been updated by another user. |
|
65 | notice_locking_conflict: Data have been updated by another user. | |
66 |
|
66 | |||
67 | mail_subject_lost_password: Tu contraseña del redMine |
|
67 | mail_subject_lost_password: Tu contraseña del redMine | |
68 | mail_subject_register: Activación de la cuenta del redMine |
|
68 | mail_subject_register: Activación de la cuenta del redMine | |
69 |
|
69 | |||
70 | gui_validation_error: 1 error |
|
70 | gui_validation_error: 1 error | |
71 | gui_validation_error_plural: %d errores |
|
71 | gui_validation_error_plural: %d errores | |
72 |
|
72 | |||
73 | field_name: Nombre |
|
73 | field_name: Nombre | |
74 | field_description: Descripción |
|
74 | field_description: Descripción | |
75 | field_summary: Resumen |
|
75 | field_summary: Resumen | |
76 | field_is_required: Obligatorio |
|
76 | field_is_required: Obligatorio | |
77 | field_firstname: Nombre |
|
77 | field_firstname: Nombre | |
78 | field_lastname: Apellido |
|
78 | field_lastname: Apellido | |
79 | field_mail: Email |
|
79 | field_mail: Email | |
80 | field_filename: Fichero |
|
80 | field_filename: Fichero | |
81 | field_filesize: Tamaño |
|
81 | field_filesize: Tamaño | |
82 | field_downloads: Telecargas |
|
82 | field_downloads: Telecargas | |
83 | field_author: Autor |
|
83 | field_author: Autor | |
84 | field_created_on: Creado |
|
84 | field_created_on: Creado | |
85 | field_updated_on: Actualizado |
|
85 | field_updated_on: Actualizado | |
86 | field_field_format: Formato |
|
86 | field_field_format: Formato | |
87 | field_is_for_all: Para todos los proyectos |
|
87 | field_is_for_all: Para todos los proyectos | |
88 | field_possible_values: Valores posibles |
|
88 | field_possible_values: Valores posibles | |
89 | field_regexp: Expresión regular |
|
89 | field_regexp: Expresión regular | |
90 | field_min_length: Longitud mínima |
|
90 | field_min_length: Longitud mínima | |
91 | field_max_length: Longitud máxima |
|
91 | field_max_length: Longitud máxima | |
92 | field_value: Valor |
|
92 | field_value: Valor | |
93 | field_category: Categoría |
|
93 | field_category: Categoría | |
94 | field_title: Título |
|
94 | field_title: Título | |
95 | field_project: Proyecto |
|
95 | field_project: Proyecto | |
96 | field_issue: Petición |
|
96 | field_issue: Petición | |
97 | field_status: Estatuto |
|
97 | field_status: Estatuto | |
98 | field_notes: Notas |
|
98 | field_notes: Notas | |
99 | field_is_closed: Petición resuelta |
|
99 | field_is_closed: Petición resuelta | |
100 | field_is_default: Estatuto por defecto |
|
100 | field_is_default: Estatuto por defecto | |
101 | field_html_color: Color |
|
101 | field_html_color: Color | |
102 | field_tracker: Tracker |
|
102 | field_tracker: Tracker | |
103 | field_subject: Tema |
|
103 | field_subject: Tema | |
104 | field_due_date: Fecha debida |
|
104 | field_due_date: Fecha debida | |
105 | field_assigned_to: Asignado a |
|
105 | field_assigned_to: Asignado a | |
106 | field_priority: Prioridad |
|
106 | field_priority: Prioridad | |
107 | field_fixed_version: Versión corregida |
|
107 | field_fixed_version: Versión corregida | |
108 | field_user: Usuario |
|
108 | field_user: Usuario | |
109 | field_role: Papel |
|
109 | field_role: Papel | |
110 | field_homepage: Sitio web |
|
110 | field_homepage: Sitio web | |
111 | field_is_public: Público |
|
111 | field_is_public: Público | |
112 | field_parent: Proyecto secundario de |
|
112 | field_parent: Proyecto secundario de | |
113 | field_is_in_chlog: Consultar las peticiones en el histórico |
|
113 | field_is_in_chlog: Consultar las peticiones en el histórico | |
114 | field_login: Identificador |
|
114 | field_login: Identificador | |
115 | field_mail_notification: Notificación por mail |
|
115 | field_mail_notification: Notificación por mail | |
116 | field_admin: Administrador |
|
116 | field_admin: Administrador | |
117 | field_locked: Cerrado |
|
117 | field_locked: Cerrado | |
118 | field_last_login_on: Última conexión |
|
118 | field_last_login_on: Última conexión | |
119 | field_language: Lengua |
|
119 | field_language: Lengua | |
120 | field_effective_date: Fecha |
|
120 | field_effective_date: Fecha | |
121 | field_password: Contraseña |
|
121 | field_password: Contraseña | |
122 | field_new_password: Nueva contraseña |
|
122 | field_new_password: Nueva contraseña | |
123 | field_password_confirmation: Confirmación |
|
123 | field_password_confirmation: Confirmación | |
124 | field_version: Versión |
|
124 | field_version: Versión | |
125 | field_type: Tipo |
|
125 | field_type: Tipo | |
126 | field_host: Anfitrión |
|
126 | field_host: Anfitrión | |
127 | field_port: Puerto |
|
127 | field_port: Puerto | |
128 | field_account: Cuenta |
|
128 | field_account: Cuenta | |
129 | field_base_dn: Base DN |
|
129 | field_base_dn: Base DN | |
130 | field_attr_login: Cualidad del identificador |
|
130 | field_attr_login: Cualidad del identificador | |
131 | field_attr_firstname: Cualidad del nombre |
|
131 | field_attr_firstname: Cualidad del nombre | |
132 | field_attr_lastname: Cualidad del apellido |
|
132 | field_attr_lastname: Cualidad del apellido | |
133 | field_attr_mail: Cualidad del Email |
|
133 | field_attr_mail: Cualidad del Email | |
134 | field_onthefly: Creación del usuario On-the-fly |
|
134 | field_onthefly: Creación del usuario On-the-fly | |
135 | field_start_date: Comienzo |
|
135 | field_start_date: Comienzo | |
136 | field_done_ratio: %% Realizado |
|
136 | field_done_ratio: %% Realizado | |
137 |
|
137 | |||
138 | label_user: Usuario |
|
138 | label_user: Usuario | |
139 | label_user_plural: Usuarios |
|
139 | label_user_plural: Usuarios | |
140 | label_user_new: Nuevo usuario |
|
140 | label_user_new: Nuevo usuario | |
141 | label_project: Proyecto |
|
141 | label_project: Proyecto | |
142 | label_project_new: Nuevo proyecto |
|
142 | label_project_new: Nuevo proyecto | |
143 | label_project_plural: Proyectos |
|
143 | label_project_plural: Proyectos | |
144 | label_project_latest: Los proyectos más últimos |
|
144 | label_project_latest: Los proyectos más últimos | |
145 | label_issue: Petición |
|
145 | label_issue: Petición | |
146 | label_issue_new: Nueva petición |
|
146 | label_issue_new: Nueva petición | |
147 | label_issue_plural: Peticiones |
|
147 | label_issue_plural: Peticiones | |
148 | label_issue_view_all: Ver todas las peticiones |
|
148 | label_issue_view_all: Ver todas las peticiones | |
149 | label_document: Documento |
|
149 | label_document: Documento | |
150 | label_document_new: Nuevo documento |
|
150 | label_document_new: Nuevo documento | |
151 | label_document_plural: Documentos |
|
151 | label_document_plural: Documentos | |
152 | label_role: Papel |
|
152 | label_role: Papel | |
153 | label_role_plural: Papeles |
|
153 | label_role_plural: Papeles | |
154 | label_role_new: Nuevo papel |
|
154 | label_role_new: Nuevo papel | |
155 | label_role_and_permissions: Papeles y permisos |
|
155 | label_role_and_permissions: Papeles y permisos | |
156 | label_member: Miembro |
|
156 | label_member: Miembro | |
157 | label_member_new: Nuevo miembro |
|
157 | label_member_new: Nuevo miembro | |
158 | label_member_plural: Miembros |
|
158 | label_member_plural: Miembros | |
159 | label_tracker: Tracker |
|
159 | label_tracker: Tracker | |
160 | label_tracker_plural: Trackers |
|
160 | label_tracker_plural: Trackers | |
161 | label_tracker_new: Nuevo tracker |
|
161 | label_tracker_new: Nuevo tracker | |
162 | label_workflow: Workflow |
|
162 | label_workflow: Workflow | |
163 | label_issue_status: Estatuto de petición |
|
163 | label_issue_status: Estatuto de petición | |
164 | label_issue_status_plural: Estatutos de las peticiones |
|
164 | label_issue_status_plural: Estatutos de las peticiones | |
165 | label_issue_status_new: Nuevo estatuto |
|
165 | label_issue_status_new: Nuevo estatuto | |
166 | label_issue_category: Categoría de las peticiones |
|
166 | label_issue_category: Categoría de las peticiones | |
167 | label_issue_category_plural: Categorías de las peticiones |
|
167 | label_issue_category_plural: Categorías de las peticiones | |
168 | label_issue_category_new: Nueva categoría |
|
168 | label_issue_category_new: Nueva categoría | |
169 | label_custom_field: Campo personalizado |
|
169 | label_custom_field: Campo personalizado | |
170 | label_custom_field_plural: Campos personalizados |
|
170 | label_custom_field_plural: Campos personalizados | |
171 | label_custom_field_new: Nuevo campo personalizado |
|
171 | label_custom_field_new: Nuevo campo personalizado | |
172 | label_enumerations: Listas de valores |
|
172 | label_enumerations: Listas de valores | |
173 | label_enumeration_new: Nuevo valor |
|
173 | label_enumeration_new: Nuevo valor | |
174 | label_information: Informacion |
|
174 | label_information: Informacion | |
175 | label_information_plural: Informaciones |
|
175 | label_information_plural: Informaciones | |
176 | label_please_login: Conexión |
|
176 | label_please_login: Conexión | |
177 | label_register: Registrar |
|
177 | label_register: Registrar | |
178 | label_password_lost: ¿Olvidaste la contraseña? |
|
178 | label_password_lost: ¿Olvidaste la contraseña? | |
179 | label_home: Acogida |
|
179 | label_home: Acogida | |
180 | label_my_page: Mi página |
|
180 | label_my_page: Mi página | |
181 | label_my_account: Mi cuenta |
|
181 | label_my_account: Mi cuenta | |
182 | label_my_projects: Mis proyectos |
|
182 | label_my_projects: Mis proyectos | |
183 | label_administration: Administración |
|
183 | label_administration: Administración | |
184 | label_login: Conexión |
|
184 | label_login: Conexión | |
185 | label_logout: Desconexión |
|
185 | label_logout: Desconexión | |
186 | label_help: Ayuda |
|
186 | label_help: Ayuda | |
187 | label_reported_issues: Peticiones registradas |
|
187 | label_reported_issues: Peticiones registradas | |
188 | label_assigned_to_me_issues: Peticiones que me están asignadas |
|
188 | label_assigned_to_me_issues: Peticiones que me están asignadas | |
189 | label_last_login: Última conexión |
|
189 | label_last_login: Última conexión | |
190 | label_last_updates: Actualizado |
|
190 | label_last_updates: Actualizado | |
191 | label_last_updates_plural: %d Actualizados |
|
191 | label_last_updates_plural: %d Actualizados | |
192 | label_registered_on: Inscrito el |
|
192 | label_registered_on: Inscrito el | |
193 | label_activity: Actividad |
|
193 | label_activity: Actividad | |
194 | label_new: Nuevo |
|
194 | label_new: Nuevo | |
195 | label_logged_as: Conectado como |
|
195 | label_logged_as: Conectado como | |
196 | label_environment: Environment |
|
196 | label_environment: Environment | |
197 | label_authentication: Autentificación |
|
197 | label_authentication: Autentificación | |
198 | label_auth_source: Modo de la autentificación |
|
198 | label_auth_source: Modo de la autentificación | |
199 | label_auth_source_new: Nuevo modo de la autentificación |
|
199 | label_auth_source_new: Nuevo modo de la autentificación | |
200 | label_auth_source_plural: Modos de la autentificación |
|
200 | label_auth_source_plural: Modos de la autentificación | |
201 | label_subproject: Proyecto secundario |
|
201 | label_subproject: Proyecto secundario | |
202 | label_subproject_plural: Proyectos secundarios |
|
202 | label_subproject_plural: Proyectos secundarios | |
203 | label_min_max_length: Longitud mín - máx |
|
203 | label_min_max_length: Longitud mín - máx | |
204 | label_list: Lista |
|
204 | label_list: Lista | |
205 | label_date: Fecha |
|
205 | label_date: Fecha | |
206 | label_integer: Número |
|
206 | label_integer: Número | |
207 | label_boolean: Boleano |
|
207 | label_boolean: Boleano | |
208 | label_string: Texto |
|
208 | label_string: Texto | |
209 | label_text: Texto largo |
|
209 | label_text: Texto largo | |
210 | label_attribute: Cualidad |
|
210 | label_attribute: Cualidad | |
211 | label_attribute_plural: Cualidades |
|
211 | label_attribute_plural: Cualidades | |
212 | label_download: %d Telecarga |
|
212 | label_download: %d Telecarga | |
213 | label_download_plural: %d Telecargas |
|
213 | label_download_plural: %d Telecargas | |
214 | label_no_data: Ningunos datos a exhibir |
|
214 | label_no_data: Ningunos datos a exhibir | |
215 | label_change_status: Cambiar el estatuto |
|
215 | label_change_status: Cambiar el estatuto | |
216 | label_history: Histórico |
|
216 | label_history: Histórico | |
217 | label_attachment: Fichero |
|
217 | label_attachment: Fichero | |
218 | label_attachment_new: Nuevo fichero |
|
218 | label_attachment_new: Nuevo fichero | |
219 | label_attachment_delete: Suprimir el fichero |
|
219 | label_attachment_delete: Suprimir el fichero | |
220 | label_attachment_plural: Ficheros |
|
220 | label_attachment_plural: Ficheros | |
221 | label_report: Informe |
|
221 | label_report: Informe | |
222 | label_report_plural: Informes |
|
222 | label_report_plural: Informes | |
223 | label_news: Noticia |
|
223 | label_news: Noticia | |
224 | label_news_new: Nueva noticia |
|
224 | label_news_new: Nueva noticia | |
225 | label_news_plural: Noticias |
|
225 | label_news_plural: Noticias | |
226 | label_news_latest: Últimas noticias |
|
226 | label_news_latest: Últimas noticias | |
227 | label_news_view_all: Ver todas las noticias |
|
227 | label_news_view_all: Ver todas las noticias | |
228 | label_change_log: Cambios |
|
228 | label_change_log: Cambios | |
229 | label_settings: Configuración |
|
229 | label_settings: Configuración | |
230 | label_overview: Vistazo |
|
230 | label_overview: Vistazo | |
231 | label_version: Versión |
|
231 | label_version: Versión | |
232 | label_version_new: Nueva versión |
|
232 | label_version_new: Nueva versión | |
233 | label_version_plural: Versiónes |
|
233 | label_version_plural: Versiónes | |
234 | label_confirmation: Confirmación |
|
234 | label_confirmation: Confirmación | |
235 |
label_export_ |
|
235 | label_export_to: Exportar a | |
236 | label_export_pdf: Exportar a PDF |
|
|||
237 | label_read: Leer... |
|
236 | label_read: Leer... | |
238 | label_public_projects: Proyectos publicos |
|
237 | label_public_projects: Proyectos publicos | |
239 | label_open_issues: Abierta |
|
238 | label_open_issues: Abierta | |
240 | label_open_issues_plural: Abiertas |
|
239 | label_open_issues_plural: Abiertas | |
241 | label_closed_issues: Cerrada |
|
240 | label_closed_issues: Cerrada | |
242 | label_closed_issues_plural: Cerradas |
|
241 | label_closed_issues_plural: Cerradas | |
243 | label_total: Total |
|
242 | label_total: Total | |
244 | label_permissions: Permisos |
|
243 | label_permissions: Permisos | |
245 | label_current_status: Estado actual |
|
244 | label_current_status: Estado actual | |
246 | label_new_statuses_allowed: Nuevos estatutos autorizados |
|
245 | label_new_statuses_allowed: Nuevos estatutos autorizados | |
247 | label_all: Todos |
|
246 | label_all: Todos | |
248 | label_none: Ninguno |
|
247 | label_none: Ninguno | |
249 | label_next: Próximo |
|
248 | label_next: Próximo | |
250 | label_previous: Precedente |
|
249 | label_previous: Precedente | |
251 | label_used_by: Utilizado por |
|
250 | label_used_by: Utilizado por | |
252 | label_details: Detalles... |
|
251 | label_details: Detalles... | |
253 | label_add_note: Agregar una nota |
|
252 | label_add_note: Agregar una nota | |
254 | label_per_page: Por la página |
|
253 | label_per_page: Por la página | |
255 | label_calendar: Calendario |
|
254 | label_calendar: Calendario | |
256 | label_months_from: meses de |
|
255 | label_months_from: meses de | |
257 | label_gantt_chart: Diagrama de Gantt |
|
256 | label_gantt_chart: Diagrama de Gantt | |
258 | label_internal: Interno |
|
257 | label_internal: Interno | |
259 | label_last_changes: %d cambios del último |
|
258 | label_last_changes: %d cambios del último | |
260 | label_change_view_all: Ver todos los cambios |
|
259 | label_change_view_all: Ver todos los cambios | |
261 |
|
260 | |||
262 | button_login: Conexión |
|
261 | button_login: Conexión | |
263 | button_submit: Someter |
|
262 | button_submit: Someter | |
264 | button_save: Validar |
|
263 | button_save: Validar | |
265 | button_check_all: Seleccionar todo |
|
264 | button_check_all: Seleccionar todo | |
266 | button_uncheck_all: No seleccionar nada |
|
265 | button_uncheck_all: No seleccionar nada | |
267 | button_delete: Suprimir |
|
266 | button_delete: Suprimir | |
268 | button_create: Crear |
|
267 | button_create: Crear | |
269 | button_test: Testar |
|
268 | button_test: Testar | |
270 | button_edit: Modificar |
|
269 | button_edit: Modificar | |
271 | button_add: Añadir |
|
270 | button_add: Añadir | |
272 | button_change: Cambiar |
|
271 | button_change: Cambiar | |
273 | button_apply: Aplicar |
|
272 | button_apply: Aplicar | |
274 | button_clear: Anular |
|
273 | button_clear: Anular | |
275 | button_lock: Bloquear |
|
274 | button_lock: Bloquear | |
276 | button_unlock: Desbloquear |
|
275 | button_unlock: Desbloquear | |
277 | button_download: Telecargar |
|
276 | button_download: Telecargar | |
278 | button_list: Listar |
|
277 | button_list: Listar | |
279 | button_view: Ver |
|
278 | button_view: Ver | |
280 | button_move: Mover |
|
279 | button_move: Mover | |
281 | button_back: Atrás |
|
280 | button_back: Atrás | |
282 |
|
281 | |||
283 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. |
|
282 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. | |
284 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
283 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
285 | text_min_max_length_info: 0 para ninguna restricción |
|
284 | text_min_max_length_info: 0 para ninguna restricción | |
286 | text_possible_values_info: Los valores se separaron con | |
|
285 | text_possible_values_info: Los valores se separaron con | | |
287 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? |
|
286 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? | |
288 | text_workflow_edit: Seleccionar un workflow para actualizar |
|
287 | text_workflow_edit: Seleccionar un workflow para actualizar | |
289 | text_are_you_sure: ¿ Estás seguro ? |
|
288 | text_are_you_sure: ¿ Estás seguro ? | |
290 | text_journal_changed: cambiado de %s a %s |
|
289 | text_journal_changed: cambiado de %s a %s | |
291 | text_journal_set_to: fijado a %s |
|
290 | text_journal_set_to: fijado a %s | |
292 | text_journal_deleted: suprimido |
|
291 | text_journal_deleted: suprimido | |
293 | text_tip_task_begin_day: tarea que comienza este día |
|
292 | text_tip_task_begin_day: tarea que comienza este día | |
294 | text_tip_task_end_day: tarea que termina este día |
|
293 | text_tip_task_end_day: tarea que termina este día | |
295 | text_tip_task_begin_end_day: tarea que comienza y termina este día |
|
294 | text_tip_task_begin_end_day: tarea que comienza y termina este día | |
296 |
|
295 | |||
297 | default_role_manager: Manager |
|
296 | default_role_manager: Manager | |
298 | default_role_developper: Desarrollador |
|
297 | default_role_developper: Desarrollador | |
299 | default_role_reporter: Informador |
|
298 | default_role_reporter: Informador | |
300 | default_tracker_bug: Anomalía |
|
299 | default_tracker_bug: Anomalía | |
301 | default_tracker_feature: Evolución |
|
300 | default_tracker_feature: Evolución | |
302 | default_tracker_support: Asistencia |
|
301 | default_tracker_support: Asistencia | |
303 | default_issue_status_new: Nuevo |
|
302 | default_issue_status_new: Nuevo | |
304 | default_issue_status_assigned: Asignada |
|
303 | default_issue_status_assigned: Asignada | |
305 | default_issue_status_resolved: Resuelta |
|
304 | default_issue_status_resolved: Resuelta | |
306 | default_issue_status_feedback: Comentario |
|
305 | default_issue_status_feedback: Comentario | |
307 | default_issue_status_closed: Cerrada |
|
306 | default_issue_status_closed: Cerrada | |
308 | default_issue_status_rejected: Rechazada |
|
307 | default_issue_status_rejected: Rechazada | |
309 | default_doc_category_user: Documentación del usuario |
|
308 | default_doc_category_user: Documentación del usuario | |
310 | default_doc_category_tech: Documentación tecnica |
|
309 | default_doc_category_tech: Documentación tecnica | |
311 | default_priority_low: Bajo |
|
310 | default_priority_low: Bajo | |
312 | default_priority_normal: Normal |
|
311 | default_priority_normal: Normal | |
313 | default_priority_high: Alto |
|
312 | default_priority_high: Alto | |
314 | default_priority_urgent: Urgente |
|
313 | default_priority_urgent: Urgente | |
315 | default_priority_immediate: Ahora |
|
314 | default_priority_immediate: Ahora | |
316 |
|
315 | |||
317 | enumeration_issue_priorities: Prioridad de las peticiones |
|
316 | enumeration_issue_priorities: Prioridad de las peticiones | |
318 | enumeration_doc_categories: Categorías del documento |
|
317 | enumeration_doc_categories: Categorías del documento |
@@ -1,319 +1,318 | |||||
1 | _gloc_rule_default: '|n| n<=1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n<=1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre |
|
4 | actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 jour |
|
8 | actionview_datehelper_time_in_words_day: 1 jour | |
9 | actionview_datehelper_time_in_words_day_plural: %d jours |
|
9 | actionview_datehelper_time_in_words_day_plural: %d jours | |
10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
10 | actionview_datehelper_time_in_words_hour_about: about an hour | |
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours | |
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: 30 secondes |
|
14 | actionview_datehelper_time_in_words_minute_half: 30 secondes | |
15 | actionview_datehelper_time_in_words_minute_less_than: moins d'une minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: moins d'une minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: moins d'une seconde |
|
18 | actionview_datehelper_time_in_words_second_less_than: moins d'une seconde | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes | |
20 | actionview_instancetag_blank_option: Choisir |
|
20 | actionview_instancetag_blank_option: Choisir | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: n'est pas inclus dans la liste |
|
22 | activerecord_error_inclusion: n'est pas inclus dans la liste | |
23 | activerecord_error_exclusion: est reservé |
|
23 | activerecord_error_exclusion: est reservé | |
24 | activerecord_error_invalid: est invalide |
|
24 | activerecord_error_invalid: est invalide | |
25 | activerecord_error_confirmation: ne correspond pas à la confirmation |
|
25 | activerecord_error_confirmation: ne correspond pas à la confirmation | |
26 | activerecord_error_accepted: doit être accepté |
|
26 | activerecord_error_accepted: doit être accepté | |
27 | activerecord_error_empty: doit être renseigné |
|
27 | activerecord_error_empty: doit être renseigné | |
28 | activerecord_error_blank: doit être renseigné |
|
28 | activerecord_error_blank: doit être renseigné | |
29 | activerecord_error_too_long: est trop long |
|
29 | activerecord_error_too_long: est trop long | |
30 | activerecord_error_too_short: est trop court |
|
30 | activerecord_error_too_short: est trop court | |
31 | activerecord_error_wrong_length: n'est pas de la bonne longueur |
|
31 | activerecord_error_wrong_length: n'est pas de la bonne longueur | |
32 | activerecord_error_taken: est déjà utilisé |
|
32 | activerecord_error_taken: est déjà utilisé | |
33 | activerecord_error_not_a_number: n'est pas un nombre |
|
33 | activerecord_error_not_a_number: n'est pas un nombre | |
34 | activerecord_error_not_a_date: n'est pas une date valide |
|
34 | activerecord_error_not_a_date: n'est pas une date valide | |
35 | activerecord_error_greater_than_start_date: doit être postérieur à la date de début |
|
35 | activerecord_error_greater_than_start_date: doit être postérieur à la date de début | |
36 |
|
36 | |||
37 | general_fmt_age: %d an |
|
37 | general_fmt_age: %d an | |
38 | general_fmt_age_plural: %d ans |
|
38 | general_fmt_age_plural: %d ans | |
39 | general_fmt_date: %%d/%%m/%%Y |
|
39 | general_fmt_date: %%d/%%m/%%Y | |
40 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
40 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M | |
41 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
41 | general_fmt_datetime_short: %%d/%%m %%H:%%M | |
42 | general_fmt_time: %%H:%%M |
|
42 | general_fmt_time: %%H:%%M | |
43 | general_text_No: 'Non' |
|
43 | general_text_No: 'Non' | |
44 | general_text_Yes: 'Oui' |
|
44 | general_text_Yes: 'Oui' | |
45 | general_text_no: 'non' |
|
45 | general_text_no: 'non' | |
46 | general_text_yes: 'oui' |
|
46 | general_text_yes: 'oui' | |
47 | general_lang_fr: 'Français' |
|
47 | general_lang_fr: 'Français' | |
48 | general_csv_separator: ';' |
|
48 | general_csv_separator: ';' | |
49 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche |
|
49 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche | |
50 |
|
50 | |||
51 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
51 | notice_account_updated: Le compte a été mis à jour avec succès. | |
52 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
52 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. | |
53 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
53 | notice_account_password_updated: Mot de passe mis à jour avec succès. | |
54 | notice_account_wrong_password: Mot de passe incorrect |
|
54 | notice_account_wrong_password: Mot de passe incorrect | |
55 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. |
|
55 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. | |
56 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. |
|
56 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. | |
57 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
57 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. | |
58 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. |
|
58 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. | |
59 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. |
|
59 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. | |
60 | notice_successful_create: Création effectuée avec succès. |
|
60 | notice_successful_create: Création effectuée avec succès. | |
61 | notice_successful_update: Mise à jour effectuée avec succès. |
|
61 | notice_successful_update: Mise à jour effectuée avec succès. | |
62 | notice_successful_delete: Suppression effectuée avec succès. |
|
62 | notice_successful_delete: Suppression effectuée avec succès. | |
63 | notice_successful_connection: Connection réussie. |
|
63 | notice_successful_connection: Connection réussie. | |
64 | notice_file_not_found: Le fichier demandé n'existe pas ou a été supprimé. |
|
64 | notice_file_not_found: Le fichier demandé n'existe pas ou a été supprimé. | |
65 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
65 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. | |
66 |
|
66 | |||
67 | mail_subject_lost_password: Votre mot de passe redMine |
|
67 | mail_subject_lost_password: Votre mot de passe redMine | |
68 | mail_subject_register: Activation de votre compte redMine |
|
68 | mail_subject_register: Activation de votre compte redMine | |
69 |
|
69 | |||
70 | gui_validation_error: 1 erreur |
|
70 | gui_validation_error: 1 erreur | |
71 | gui_validation_error_plural: %d erreurs |
|
71 | gui_validation_error_plural: %d erreurs | |
72 |
|
72 | |||
73 | field_name: Nom |
|
73 | field_name: Nom | |
74 | field_description: Description |
|
74 | field_description: Description | |
75 | field_summary: Résumé |
|
75 | field_summary: Résumé | |
76 | field_is_required: Obligatoire |
|
76 | field_is_required: Obligatoire | |
77 | field_firstname: Prénom |
|
77 | field_firstname: Prénom | |
78 | field_lastname: Nom |
|
78 | field_lastname: Nom | |
79 | field_mail: Email |
|
79 | field_mail: Email | |
80 | field_filename: Fichier |
|
80 | field_filename: Fichier | |
81 | field_filesize: Taille |
|
81 | field_filesize: Taille | |
82 | field_downloads: Téléchargements |
|
82 | field_downloads: Téléchargements | |
83 | field_author: Auteur |
|
83 | field_author: Auteur | |
84 | field_created_on: Créé |
|
84 | field_created_on: Créé | |
85 | field_updated_on: Mis à jour |
|
85 | field_updated_on: Mis à jour | |
86 | field_field_format: Format |
|
86 | field_field_format: Format | |
87 | field_is_for_all: Pour tous les projets |
|
87 | field_is_for_all: Pour tous les projets | |
88 | field_possible_values: Valeurs possibles |
|
88 | field_possible_values: Valeurs possibles | |
89 | field_regexp: Expression régulière |
|
89 | field_regexp: Expression régulière | |
90 | field_min_length: Longueur minimum |
|
90 | field_min_length: Longueur minimum | |
91 | field_max_length: Longueur maximum |
|
91 | field_max_length: Longueur maximum | |
92 | field_value: Valeur |
|
92 | field_value: Valeur | |
93 | field_category: Catégorie |
|
93 | field_category: Catégorie | |
94 | field_title: Titre |
|
94 | field_title: Titre | |
95 | field_project: Projet |
|
95 | field_project: Projet | |
96 | field_issue: Demande |
|
96 | field_issue: Demande | |
97 | field_status: Statut |
|
97 | field_status: Statut | |
98 | field_notes: Notes |
|
98 | field_notes: Notes | |
99 | field_is_closed: Demande fermée |
|
99 | field_is_closed: Demande fermée | |
100 | field_is_default: Statut par défaut |
|
100 | field_is_default: Statut par défaut | |
101 | field_html_color: Couleur |
|
101 | field_html_color: Couleur | |
102 | field_tracker: Tracker |
|
102 | field_tracker: Tracker | |
103 | field_subject: Sujet |
|
103 | field_subject: Sujet | |
104 | field_due_date: Date d'échéance |
|
104 | field_due_date: Date d'échéance | |
105 | field_assigned_to: Assigné à |
|
105 | field_assigned_to: Assigné à | |
106 | field_priority: Priorité |
|
106 | field_priority: Priorité | |
107 | field_fixed_version: Version corrigée |
|
107 | field_fixed_version: Version corrigée | |
108 | field_user: Utilisateur |
|
108 | field_user: Utilisateur | |
109 | field_role: Rôle |
|
109 | field_role: Rôle | |
110 | field_homepage: Site web |
|
110 | field_homepage: Site web | |
111 | field_is_public: Public |
|
111 | field_is_public: Public | |
112 | field_parent: Sous-projet de |
|
112 | field_parent: Sous-projet de | |
113 | field_is_in_chlog: Demandes affichées dans l'historique |
|
113 | field_is_in_chlog: Demandes affichées dans l'historique | |
114 | field_login: Identifiant |
|
114 | field_login: Identifiant | |
115 | field_mail_notification: Notifications par mail |
|
115 | field_mail_notification: Notifications par mail | |
116 | field_admin: Administrateur |
|
116 | field_admin: Administrateur | |
117 | field_locked: Verrouillé |
|
117 | field_locked: Verrouillé | |
118 | field_last_login_on: Dernière connexion |
|
118 | field_last_login_on: Dernière connexion | |
119 | field_language: Langue |
|
119 | field_language: Langue | |
120 | field_effective_date: Date |
|
120 | field_effective_date: Date | |
121 | field_password: Mot de passe |
|
121 | field_password: Mot de passe | |
122 | field_new_password: Nouveau mot de passe |
|
122 | field_new_password: Nouveau mot de passe | |
123 | field_password_confirmation: Confirmation |
|
123 | field_password_confirmation: Confirmation | |
124 | field_version: Version |
|
124 | field_version: Version | |
125 | field_type: Type |
|
125 | field_type: Type | |
126 | field_host: Hôte |
|
126 | field_host: Hôte | |
127 | field_port: Port |
|
127 | field_port: Port | |
128 | field_account: Compte |
|
128 | field_account: Compte | |
129 | field_base_dn: Base DN |
|
129 | field_base_dn: Base DN | |
130 | field_attr_login: Attribut Identifiant |
|
130 | field_attr_login: Attribut Identifiant | |
131 | field_attr_firstname: Attribut Prénom |
|
131 | field_attr_firstname: Attribut Prénom | |
132 | field_attr_lastname: Attribut Nom |
|
132 | field_attr_lastname: Attribut Nom | |
133 | field_attr_mail: Attribut Email |
|
133 | field_attr_mail: Attribut Email | |
134 | field_onthefly: Création des utilisateurs à la volée |
|
134 | field_onthefly: Création des utilisateurs à la volée | |
135 | field_start_date: Début |
|
135 | field_start_date: Début | |
136 | field_done_ratio: %% Réalisé |
|
136 | field_done_ratio: %% Réalisé | |
137 | field_auth_source: Mode d'authentification |
|
137 | field_auth_source: Mode d'authentification | |
138 |
|
138 | |||
139 | label_user: Utilisateur |
|
139 | label_user: Utilisateur | |
140 | label_user_plural: Utilisateurs |
|
140 | label_user_plural: Utilisateurs | |
141 | label_user_new: Nouvel utilisateur |
|
141 | label_user_new: Nouvel utilisateur | |
142 | label_project: Projet |
|
142 | label_project: Projet | |
143 | label_project_new: Nouveau projet |
|
143 | label_project_new: Nouveau projet | |
144 | label_project_plural: Projets |
|
144 | label_project_plural: Projets | |
145 | label_project_latest: Derniers projets |
|
145 | label_project_latest: Derniers projets | |
146 | label_issue: Demande |
|
146 | label_issue: Demande | |
147 | label_issue_new: Nouvelle demande |
|
147 | label_issue_new: Nouvelle demande | |
148 | label_issue_plural: Demandes |
|
148 | label_issue_plural: Demandes | |
149 | label_issue_view_all: Voir toutes les demandes |
|
149 | label_issue_view_all: Voir toutes les demandes | |
150 | label_document: Document |
|
150 | label_document: Document | |
151 | label_document_new: Nouveau document |
|
151 | label_document_new: Nouveau document | |
152 | label_document_plural: Documents |
|
152 | label_document_plural: Documents | |
153 | label_role: Rôle |
|
153 | label_role: Rôle | |
154 | label_role_plural: Rôles |
|
154 | label_role_plural: Rôles | |
155 | label_role_new: Nouveau rôle |
|
155 | label_role_new: Nouveau rôle | |
156 | label_role_and_permissions: Rôles et permissions |
|
156 | label_role_and_permissions: Rôles et permissions | |
157 | label_member: Membre |
|
157 | label_member: Membre | |
158 | label_member_new: Nouveau membre |
|
158 | label_member_new: Nouveau membre | |
159 | label_member_plural: Membres |
|
159 | label_member_plural: Membres | |
160 | label_tracker: Tracker |
|
160 | label_tracker: Tracker | |
161 | label_tracker_plural: Trackers |
|
161 | label_tracker_plural: Trackers | |
162 | label_tracker_new: Nouveau tracker |
|
162 | label_tracker_new: Nouveau tracker | |
163 | label_workflow: Workflow |
|
163 | label_workflow: Workflow | |
164 | label_issue_status: Statut de demandes |
|
164 | label_issue_status: Statut de demandes | |
165 | label_issue_status_plural: Statuts de demandes |
|
165 | label_issue_status_plural: Statuts de demandes | |
166 | label_issue_status_new: Nouveau statut |
|
166 | label_issue_status_new: Nouveau statut | |
167 | label_issue_category: Catégorie de demandes |
|
167 | label_issue_category: Catégorie de demandes | |
168 | label_issue_category_plural: Catégories de demandes |
|
168 | label_issue_category_plural: Catégories de demandes | |
169 | label_issue_category_new: Nouvelle catégorie |
|
169 | label_issue_category_new: Nouvelle catégorie | |
170 | label_custom_field: Champ personnalisé |
|
170 | label_custom_field: Champ personnalisé | |
171 | label_custom_field_plural: Champs personnalisés |
|
171 | label_custom_field_plural: Champs personnalisés | |
172 | label_custom_field_new: Nouveau champ personnalisé |
|
172 | label_custom_field_new: Nouveau champ personnalisé | |
173 | label_enumerations: Listes de valeurs |
|
173 | label_enumerations: Listes de valeurs | |
174 | label_enumeration_new: Nouvelle valeur |
|
174 | label_enumeration_new: Nouvelle valeur | |
175 | label_information: Information |
|
175 | label_information: Information | |
176 | label_information_plural: Informations |
|
176 | label_information_plural: Informations | |
177 | label_please_login: Identification |
|
177 | label_please_login: Identification | |
178 | label_register: S'enregistrer |
|
178 | label_register: S'enregistrer | |
179 | label_password_lost: Mot de passe perdu |
|
179 | label_password_lost: Mot de passe perdu | |
180 | label_home: Accueil |
|
180 | label_home: Accueil | |
181 | label_my_page: Ma page |
|
181 | label_my_page: Ma page | |
182 | label_my_account: Mon compte |
|
182 | label_my_account: Mon compte | |
183 | label_my_projects: Mes projets |
|
183 | label_my_projects: Mes projets | |
184 | label_administration: Administration |
|
184 | label_administration: Administration | |
185 | label_login: Connexion |
|
185 | label_login: Connexion | |
186 | label_logout: Déconnexion |
|
186 | label_logout: Déconnexion | |
187 | label_help: Aide |
|
187 | label_help: Aide | |
188 | label_reported_issues: Demandes soumises |
|
188 | label_reported_issues: Demandes soumises | |
189 | label_assigned_to_me_issues: Demandes qui me sont assignées |
|
189 | label_assigned_to_me_issues: Demandes qui me sont assignées | |
190 | label_last_login: Dernière connexion |
|
190 | label_last_login: Dernière connexion | |
191 | label_last_updates: Dernière mise à jour |
|
191 | label_last_updates: Dernière mise à jour | |
192 | label_last_updates_plural: %d dernières mises à jour |
|
192 | label_last_updates_plural: %d dernières mises à jour | |
193 | label_registered_on: Inscrit le |
|
193 | label_registered_on: Inscrit le | |
194 | label_activity: Activité |
|
194 | label_activity: Activité | |
195 | label_new: Nouveau |
|
195 | label_new: Nouveau | |
196 | label_logged_as: Connecté en tant que |
|
196 | label_logged_as: Connecté en tant que | |
197 | label_environment: Environnement |
|
197 | label_environment: Environnement | |
198 | label_authentication: Authentification |
|
198 | label_authentication: Authentification | |
199 | label_auth_source: Mode d'authentification |
|
199 | label_auth_source: Mode d'authentification | |
200 | label_auth_source_new: Nouveau mode d'authentification |
|
200 | label_auth_source_new: Nouveau mode d'authentification | |
201 | label_auth_source_plural: Modes d'authentification |
|
201 | label_auth_source_plural: Modes d'authentification | |
202 | label_subproject: Sous-projet |
|
202 | label_subproject: Sous-projet | |
203 | label_subproject_plural: Sous-projets |
|
203 | label_subproject_plural: Sous-projets | |
204 | label_min_max_length: Longueurs mini - maxi |
|
204 | label_min_max_length: Longueurs mini - maxi | |
205 | label_list: Liste |
|
205 | label_list: Liste | |
206 | label_date: Date |
|
206 | label_date: Date | |
207 | label_integer: Entier |
|
207 | label_integer: Entier | |
208 | label_boolean: Booléen |
|
208 | label_boolean: Booléen | |
209 | label_string: Texte |
|
209 | label_string: Texte | |
210 | label_text: Texte long |
|
210 | label_text: Texte long | |
211 | label_attribute: Attribut |
|
211 | label_attribute: Attribut | |
212 | label_attribute_plural: Attributs |
|
212 | label_attribute_plural: Attributs | |
213 | label_download: %d Téléchargement |
|
213 | label_download: %d Téléchargement | |
214 | label_download_plural: %d Téléchargements |
|
214 | label_download_plural: %d Téléchargements | |
215 | label_no_data: Aucune donnée à afficher |
|
215 | label_no_data: Aucune donnée à afficher | |
216 | label_change_status: Changer le statut |
|
216 | label_change_status: Changer le statut | |
217 | label_history: Historique |
|
217 | label_history: Historique | |
218 | label_attachment: Fichier |
|
218 | label_attachment: Fichier | |
219 | label_attachment_new: Nouveau fichier |
|
219 | label_attachment_new: Nouveau fichier | |
220 | label_attachment_delete: Supprimer le fichier |
|
220 | label_attachment_delete: Supprimer le fichier | |
221 | label_attachment_plural: Fichiers |
|
221 | label_attachment_plural: Fichiers | |
222 | label_report: Rapport |
|
222 | label_report: Rapport | |
223 | label_report_plural: Rapports |
|
223 | label_report_plural: Rapports | |
224 | label_news: Annonce |
|
224 | label_news: Annonce | |
225 | label_news_new: Nouvelle annonce |
|
225 | label_news_new: Nouvelle annonce | |
226 | label_news_plural: Annonces |
|
226 | label_news_plural: Annonces | |
227 | label_news_latest: Dernières annonces |
|
227 | label_news_latest: Dernières annonces | |
228 | label_news_view_all: Voir toutes les annonces |
|
228 | label_news_view_all: Voir toutes les annonces | |
229 | label_change_log: Historique |
|
229 | label_change_log: Historique | |
230 | label_settings: Configuration |
|
230 | label_settings: Configuration | |
231 | label_overview: Aperçu |
|
231 | label_overview: Aperçu | |
232 | label_version: Version |
|
232 | label_version: Version | |
233 | label_version_new: Nouvelle version |
|
233 | label_version_new: Nouvelle version | |
234 | label_version_plural: Versions |
|
234 | label_version_plural: Versions | |
235 | label_confirmation: Confirmation |
|
235 | label_confirmation: Confirmation | |
236 |
label_export_ |
|
236 | label_export_to: Exporter en | |
237 | label_export_pdf: Exporter en PDF |
|
|||
238 | label_read: Lire... |
|
237 | label_read: Lire... | |
239 | label_public_projects: Projets publics |
|
238 | label_public_projects: Projets publics | |
240 | label_open_issues: Ouverte |
|
239 | label_open_issues: Ouverte | |
241 | label_open_issues_plural: Ouvertes |
|
240 | label_open_issues_plural: Ouvertes | |
242 | label_closed_issues: Fermée |
|
241 | label_closed_issues: Fermée | |
243 | label_closed_issues_plural: Fermées |
|
242 | label_closed_issues_plural: Fermées | |
244 | label_total: Total |
|
243 | label_total: Total | |
245 | label_permissions: Permissions |
|
244 | label_permissions: Permissions | |
246 | label_current_status: Statut actuel |
|
245 | label_current_status: Statut actuel | |
247 | label_new_statuses_allowed: Nouveaux statuts autorisés |
|
246 | label_new_statuses_allowed: Nouveaux statuts autorisés | |
248 | label_all: Tous |
|
247 | label_all: Tous | |
249 | label_none: Aucun |
|
248 | label_none: Aucun | |
250 | label_next: Suivant |
|
249 | label_next: Suivant | |
251 | label_previous: Précédent |
|
250 | label_previous: Précédent | |
252 | label_used_by: Utilisé par |
|
251 | label_used_by: Utilisé par | |
253 | label_details: Détails... |
|
252 | label_details: Détails... | |
254 | label_add_note: Ajouter une note |
|
253 | label_add_note: Ajouter une note | |
255 | label_per_page: Par page |
|
254 | label_per_page: Par page | |
256 | label_calendar: Calendrier |
|
255 | label_calendar: Calendrier | |
257 | label_months_from: mois depuis |
|
256 | label_months_from: mois depuis | |
258 | label_gantt_chart: Diagramme de Gantt |
|
257 | label_gantt_chart: Diagramme de Gantt | |
259 | label_internal: Interne |
|
258 | label_internal: Interne | |
260 | label_last_changes: %d derniers changements |
|
259 | label_last_changes: %d derniers changements | |
261 | label_change_view_all: Voir tous les changements |
|
260 | label_change_view_all: Voir tous les changements | |
262 |
|
261 | |||
263 | button_login: Connexion |
|
262 | button_login: Connexion | |
264 | button_submit: Soumettre |
|
263 | button_submit: Soumettre | |
265 | button_save: Valider |
|
264 | button_save: Valider | |
266 | button_check_all: Tout cocher |
|
265 | button_check_all: Tout cocher | |
267 | button_uncheck_all: Tout décocher |
|
266 | button_uncheck_all: Tout décocher | |
268 | button_delete: Supprimer |
|
267 | button_delete: Supprimer | |
269 | button_create: Créer |
|
268 | button_create: Créer | |
270 | button_test: Tester |
|
269 | button_test: Tester | |
271 | button_edit: Modifier |
|
270 | button_edit: Modifier | |
272 | button_add: Ajouter |
|
271 | button_add: Ajouter | |
273 | button_change: Changer |
|
272 | button_change: Changer | |
274 | button_apply: Appliquer |
|
273 | button_apply: Appliquer | |
275 | button_clear: Effacer |
|
274 | button_clear: Effacer | |
276 | button_lock: Verrouiller |
|
275 | button_lock: Verrouiller | |
277 | button_unlock: Déverrouiller |
|
276 | button_unlock: Déverrouiller | |
278 | button_download: Télécharger |
|
277 | button_download: Télécharger | |
279 | button_list: Lister |
|
278 | button_list: Lister | |
280 | button_view: Voir |
|
279 | button_view: Voir | |
281 | button_move: Déplacer |
|
280 | button_move: Déplacer | |
282 | button_back: Retour |
|
281 | button_back: Retour | |
283 |
|
282 | |||
284 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. |
|
283 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. | |
285 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
284 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
286 | text_min_max_length_info: 0 pour aucune restriction |
|
285 | text_min_max_length_info: 0 pour aucune restriction | |
287 | text_possible_values_info: valeurs séparées par | |
|
286 | text_possible_values_info: valeurs séparées par | | |
288 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? |
|
287 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? | |
289 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow |
|
288 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow | |
290 | text_are_you_sure: Etes-vous sûr ? |
|
289 | text_are_you_sure: Etes-vous sûr ? | |
291 | text_journal_changed: changé de %s à %s |
|
290 | text_journal_changed: changé de %s à %s | |
292 | text_journal_set_to: mis à %s |
|
291 | text_journal_set_to: mis à %s | |
293 | text_journal_deleted: supprimé |
|
292 | text_journal_deleted: supprimé | |
294 | text_tip_task_begin_day: tâche commençant ce jour |
|
293 | text_tip_task_begin_day: tâche commençant ce jour | |
295 | text_tip_task_end_day: tâche finissant ce jour |
|
294 | text_tip_task_end_day: tâche finissant ce jour | |
296 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour |
|
295 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour | |
297 |
|
296 | |||
298 | default_role_manager: Manager |
|
297 | default_role_manager: Manager | |
299 | default_role_developper: Développeur |
|
298 | default_role_developper: Développeur | |
300 | default_role_reporter: Rapporteur |
|
299 | default_role_reporter: Rapporteur | |
301 | default_tracker_bug: Anomalie |
|
300 | default_tracker_bug: Anomalie | |
302 | default_tracker_feature: Evolution |
|
301 | default_tracker_feature: Evolution | |
303 | default_tracker_support: Assistance |
|
302 | default_tracker_support: Assistance | |
304 | default_issue_status_new: Nouveau |
|
303 | default_issue_status_new: Nouveau | |
305 | default_issue_status_assigned: Assigné |
|
304 | default_issue_status_assigned: Assigné | |
306 | default_issue_status_resolved: Résolu |
|
305 | default_issue_status_resolved: Résolu | |
307 | default_issue_status_feedback: Commentaire |
|
306 | default_issue_status_feedback: Commentaire | |
308 | default_issue_status_closed: Fermé |
|
307 | default_issue_status_closed: Fermé | |
309 | default_issue_status_rejected: Rejeté |
|
308 | default_issue_status_rejected: Rejeté | |
310 | default_doc_category_user: Documentation utilisateur |
|
309 | default_doc_category_user: Documentation utilisateur | |
311 | default_doc_category_tech: Documentation technique |
|
310 | default_doc_category_tech: Documentation technique | |
312 | default_priority_low: Bas |
|
311 | default_priority_low: Bas | |
313 | default_priority_normal: Normal |
|
312 | default_priority_normal: Normal | |
314 | default_priority_high: Haut |
|
313 | default_priority_high: Haut | |
315 | default_priority_urgent: Urgent |
|
314 | default_priority_urgent: Urgent | |
316 | default_priority_immediate: Immédiat |
|
315 | default_priority_immediate: Immédiat | |
317 |
|
316 | |||
318 | enumeration_issue_priorities: Priorités des demandes |
|
317 | enumeration_issue_priorities: Priorités des demandes | |
319 | enumeration_doc_categories: Catégories des documents |
|
318 | enumeration_doc_categories: Catégories des documents |
General Comments 0
You need to be logged in to leave comments.
Login now