##// END OF EJS Templates
added translated strings for settings view...
Jean-Philippe Lang -
r166:4ccbc65628ef
parent child
Show More
@@ -1,20 +1,20
1 xml.instruct!
1 xml.instruct!
2 xml.rss "version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/" do
2 xml.rss "version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/" do
3 xml.channel do
3 xml.channel do
4 xml.title "#{Setting.header_title}: #{l(:label_news_latest)}"
4 xml.title "#{Setting.app_title}: #{l(:label_news_latest)}"
5 xml.link url_for(:controller => '', :only_path => false)
5 xml.link url_for(:controller => '', :only_path => false)
6 xml.pubDate CGI.rfc1123_date(@news.first.created_on)
6 xml.pubDate CGI.rfc1123_date(@news.first.created_on)
7 xml.description l(:label_news_latest)
7 xml.description l(:label_news_latest)
8 @news.each do |news|
8 @news.each do |news|
9 xml.item do
9 xml.item do
10 xml.title "#{news.project.name}: #{news.title}"
10 xml.title "#{news.project.name}: #{news.title}"
11 news_url = url_for(:controller => 'news' , :action => 'show', :id => news, :only_path => false)
11 news_url = url_for(:controller => 'news' , :action => 'show', :id => news, :only_path => false)
12 xml.link news_url
12 xml.link news_url
13 xml.description h(news.summary)
13 xml.description h(news.summary)
14 xml.pubDate CGI.rfc1123_date(news.created_on)
14 xml.pubDate CGI.rfc1123_date(news.created_on)
15 xml.guid news_url
15 xml.guid news_url
16 xml.author h(news.author.name)
16 xml.author h(news.author.name)
17 end
17 end
18 end
18 end
19 end
19 end
20 end No newline at end of file
20 end
@@ -1,143 +1,143
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3 <head>
3 <head>
4 <title><%= Setting.header_title + (@html_title ? ": #{@html_title}" : "") %></title>
4 <title><%= Setting.app_title + (@html_title ? ": #{@html_title}" : "") %></title>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 <meta name="description" content="redMine" />
6 <meta name="description" content="redMine" />
7 <meta name="keywords" content="issue,bug,tracker" />
7 <meta name="keywords" content="issue,bug,tracker" />
8 <!--[if IE]>
8 <!--[if IE]>
9 <style type="text/css">
9 <style type="text/css">
10 body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
10 body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
11 </style>
11 </style>
12 <![endif]-->
12 <![endif]-->
13 <%= stylesheet_link_tag "application" %>
13 <%= stylesheet_link_tag "application" %>
14 <%= stylesheet_link_tag "print", :media => "print" %>
14 <%= stylesheet_link_tag "print", :media => "print" %>
15 <%= javascript_include_tag :defaults %>
15 <%= javascript_include_tag :defaults %>
16 <%= javascript_include_tag 'menu' %>
16 <%= javascript_include_tag 'menu' %>
17 <%= stylesheet_link_tag 'jstoolbar' %>
17 <%= stylesheet_link_tag 'jstoolbar' %>
18 <!-- page specific tags --><%= yield :header_tags %>
18 <!-- page specific tags --><%= yield :header_tags %>
19 </head>
19 </head>
20
20
21 <body>
21 <body>
22 <div id="container" >
22 <div id="container" >
23
23
24 <div id="header">
24 <div id="header">
25 <div style="float: left;">
25 <div style="float: left;">
26 <h1><%= Setting.header_title %></h1>
26 <h1><%= Setting.app_title %></h1>
27 <h2><%= Setting.header_subtitle %></h2>
27 <h2><%= Setting.app_subtitle %></h2>
28 </div>
28 </div>
29 <div style="float: right; padding-right: 1em; padding-top: 0.2em;">
29 <div style="float: right; padding-right: 1em; padding-top: 0.2em;">
30 <% if loggedin? %><small><%=l(:label_logged_as)%> <b><%= @logged_in_user.login %></b></small><% end %>
30 <% if loggedin? %><small><%=l(:label_logged_as)%> <b><%= @logged_in_user.login %></b></small><% end %>
31 </div>
31 </div>
32 </div>
32 </div>
33
33
34 <div id="navigation">
34 <div id="navigation">
35 <ul>
35 <ul>
36 <li class="selected"><%= link_to l(:label_home), { :controller => '' }, :class => "icon icon-home" %></li>
36 <li class="selected"><%= link_to l(:label_home), { :controller => '' }, :class => "icon icon-home" %></li>
37 <li><%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => "icon icon-mypage" %></li>
37 <li><%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => "icon icon-mypage" %></li>
38 <li><%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "icon icon-projects" %></li>
38 <li><%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "icon icon-projects" %></li>
39
39
40 <% unless @project.nil? || @project.id.nil? %>
40 <% unless @project.nil? || @project.id.nil? %>
41 <li class="submenu"><%= link_to @project.name, { :controller => 'projects', :action => 'show', :id => @project }, :class => "icon icon-projects", :onmouseover => "buttonMouseover(event, 'menuProject');" %></li>
41 <li class="submenu"><%= link_to @project.name, { :controller => 'projects', :action => 'show', :id => @project }, :class => "icon icon-projects", :onmouseover => "buttonMouseover(event, 'menuProject');" %></li>
42 <% end %>
42 <% end %>
43
43
44 <% if loggedin? %>
44 <% if loggedin? %>
45 <li><%= link_to l(:label_my_account), { :controller => 'my', :action => 'account' }, :class => "icon icon-user" %></li>
45 <li><%= link_to l(:label_my_account), { :controller => 'my', :action => 'account' }, :class => "icon icon-user" %></li>
46 <% end %>
46 <% end %>
47
47
48 <% if admin_loggedin? %>
48 <% if admin_loggedin? %>
49 <li class="submenu"><%= link_to l(:label_administration), { :controller => 'admin' }, :class => "icon icon-admin", :onmouseover => "buttonMouseover(event, 'menuAdmin');" %></li>
49 <li class="submenu"><%= link_to l(:label_administration), { :controller => 'admin' }, :class => "icon icon-admin", :onmouseover => "buttonMouseover(event, 'menuAdmin');" %></li>
50 <% end %>
50 <% end %>
51
51
52 <li class="right"><%= link_to l(:label_help), { :controller => 'help', :ctrl => params[:controller], :page => params[:action] }, :onclick => "window.open(this.href); return false;", :class => "icon icon-help" %></li>
52 <li class="right"><%= link_to l(:label_help), { :controller => 'help', :ctrl => params[:controller], :page => params[:action] }, :onclick => "window.open(this.href); return false;", :class => "icon icon-help" %></li>
53
53
54 <% if loggedin? %>
54 <% if loggedin? %>
55 <li class="right"><%= link_to l(:label_logout), { :controller => 'account', :action => 'logout' }, :class => "icon icon-user" %></li>
55 <li class="right"><%= link_to l(:label_logout), { :controller => 'account', :action => 'logout' }, :class => "icon icon-user" %></li>
56 <% else %>
56 <% else %>
57 <li class="right"><%= link_to l(:label_login), { :controller => 'account', :action => 'login' }, :class => "icon icon-user" %></li>
57 <li class="right"><%= link_to l(:label_login), { :controller => 'account', :action => 'login' }, :class => "icon icon-user" %></li>
58 <% end %>
58 <% end %>
59 </ul>
59 </ul>
60 </div>
60 </div>
61
61
62 <% if admin_loggedin? %>
62 <% if admin_loggedin? %>
63 <div id="menuAdmin" class="menu" onmouseover="menuMouseover(event)">
63 <div id="menuAdmin" class="menu" onmouseover="menuMouseover(event)">
64 <a class="menuItem" href="/admin/projects" onmouseover="menuItemMouseover(event,'menuProjects');"><span class="menuItemText"><%=l(:label_project_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
64 <a class="menuItem" href="/admin/projects" onmouseover="menuItemMouseover(event,'menuProjects');"><span class="menuItemText"><%=l(:label_project_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
65 <a class="menuItem" href="/users" onmouseover="menuItemMouseover(event,'menuUsers');"><span class="menuItemText"><%=l(:label_user_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
65 <a class="menuItem" href="/users" onmouseover="menuItemMouseover(event,'menuUsers');"><span class="menuItemText"><%=l(:label_user_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
66 <a class="menuItem" href="/roles"><%=l(:label_role_and_permissions)%></a>
66 <a class="menuItem" href="/roles"><%=l(:label_role_and_permissions)%></a>
67 <a class="menuItem" href="/trackers" onmouseover="menuItemMouseover(event,'menuTrackers');"><span class="menuItemText"><%=l(:label_tracker_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
67 <a class="menuItem" href="/trackers" onmouseover="menuItemMouseover(event,'menuTrackers');"><span class="menuItemText"><%=l(:label_tracker_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
68 <a class="menuItem" href="/custom_fields"><%=l(:label_custom_field_plural)%></a>
68 <a class="menuItem" href="/custom_fields"><%=l(:label_custom_field_plural)%></a>
69 <a class="menuItem" href="/enumerations"><%=l(:label_enumerations)%></a>
69 <a class="menuItem" href="/enumerations"><%=l(:label_enumerations)%></a>
70 <a class="menuItem" href="/admin/mail_options"><%=l(:field_mail_notification)%></a>
70 <a class="menuItem" href="/admin/mail_options"><%=l(:field_mail_notification)%></a>
71 <a class="menuItem" href="/auth_sources"><%=l(:label_authentication)%></a>
71 <a class="menuItem" href="/auth_sources"><%=l(:label_authentication)%></a>
72 <a class="menuItem" href="/settings"><%=l(:label_settings)%></a>
72 <a class="menuItem" href="/settings"><%=l(:label_settings)%></a>
73 <a class="menuItem" href="/admin/info"><%=l(:label_information_plural)%></a>
73 <a class="menuItem" href="/admin/info"><%=l(:label_information_plural)%></a>
74 </div>
74 </div>
75 <div id="menuTrackers" class="menu">
75 <div id="menuTrackers" class="menu">
76 <a class="menuItem" href="/issue_statuses"><%=l(:label_issue_status_plural)%></a>
76 <a class="menuItem" href="/issue_statuses"><%=l(:label_issue_status_plural)%></a>
77 <a class="menuItem" href="/roles/workflow"><%=l(:label_workflow)%></a>
77 <a class="menuItem" href="/roles/workflow"><%=l(:label_workflow)%></a>
78 </div>
78 </div>
79 <div id="menuProjects" class="menu"><a class="menuItem" href="/projects/add"><%=l(:label_new)%></a></div>
79 <div id="menuProjects" class="menu"><a class="menuItem" href="/projects/add"><%=l(:label_new)%></a></div>
80 <div id="menuUsers" class="menu"><a class="menuItem" href="/users/add"><%=l(:label_new)%></a></div>
80 <div id="menuUsers" class="menu"><a class="menuItem" href="/users/add"><%=l(:label_new)%></a></div>
81 <% end %>
81 <% end %>
82
82
83 <% unless @project.nil? || @project.id.nil? %>
83 <% unless @project.nil? || @project.id.nil? %>
84 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
84 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
85 <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %>
85 <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %>
86 <%= link_to l(:label_gantt), {:controller => 'projects', :action => 'gantt', :id => @project }, :class => "menuItem" %>
86 <%= link_to l(:label_gantt), {:controller => 'projects', :action => 'gantt', :id => @project }, :class => "menuItem" %>
87 <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project }, :class => "menuItem" %>
87 <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project }, :class => "menuItem" %>
88 <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %>
88 <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %>
89 <%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %>
89 <%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %>
90 <%= link_to l(:label_news_plural), {:controller => 'projects', :action => 'list_news', :id => @project }, :class => "menuItem" %>
90 <%= link_to l(:label_news_plural), {:controller => 'projects', :action => 'list_news', :id => @project }, :class => "menuItem" %>
91 <%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %>
91 <%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %>
92 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
92 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
93 <%= link_to l(:label_member_plural), {:controller => 'projects', :action => 'list_members', :id => @project }, :class => "menuItem" %>
93 <%= link_to l(:label_member_plural), {:controller => 'projects', :action => 'list_members', :id => @project }, :class => "menuItem" %>
94 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
94 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
95 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
95 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
96 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
96 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
97 </div>
97 </div>
98 <% end %>
98 <% end %>
99
99
100
100
101 <div id="subcontent">
101 <div id="subcontent">
102
102
103 <% unless @project.nil? || @project.id.nil? %>
103 <% unless @project.nil? || @project.id.nil? %>
104 <h2><%= @project.name %></h2>
104 <h2><%= @project.name %></h2>
105 <ul class="menublock">
105 <ul class="menublock">
106 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
106 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
107 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
107 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
108 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
108 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
109 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project %></li>
109 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project %></li>
110 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
110 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
111 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
111 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
112 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
112 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
113 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
113 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
114 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
114 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
115 <li><%= link_to l(:label_member_plural), :controller => 'projects', :action => 'list_members', :id => @project %></li>
115 <li><%= link_to l(:label_member_plural), :controller => 'projects', :action => 'list_members', :id => @project %></li>
116 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
116 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
117 <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li>
117 <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li>
118 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
118 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
119 </ul>
119 </ul>
120 <% end %>
120 <% end %>
121
121
122 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
122 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
123 <h2><%=l(:label_my_projects) %></h2>
123 <h2><%=l(:label_my_projects) %></h2>
124 <ul class="menublock">
124 <ul class="menublock">
125 <% for membership in @logged_in_user.memberships %>
125 <% for membership in @logged_in_user.memberships %>
126 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
126 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
127 <% end %>
127 <% end %>
128 </ul>
128 </ul>
129 <% end %>
129 <% end %>
130 </div>
130 </div>
131
131
132 <div id="content">
132 <div id="content">
133 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
133 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
134 <%= @content_for_layout %>
134 <%= @content_for_layout %>
135 </div>
135 </div>
136
136
137 <div id="footer">
137 <div id="footer">
138 <p><a href="http://redmine.rubyforge.org/"><%= RDM_APP_NAME %></a> <%= RDM_APP_VERSION %></p>
138 <p><a href="http://redmine.rubyforge.org/"><%= RDM_APP_NAME %></a> <%= RDM_APP_VERSION %></p>
139 </div>
139 </div>
140
140
141 </div>
141 </div>
142 </body>
142 </body>
143 </html> No newline at end of file
143 </html>
@@ -1,37 +1,37
1 <h2><%= l(:label_settings) %></h2>
1 <h2><%= l(:label_settings) %></h2>
2
2
3 <%= start_form_tag({:action => 'edit'}, :class => "tabular") %>
3 <%= start_form_tag({:action => 'edit'}, :class => "tabular") %>
4 <div class="box">
4 <div class="box">
5 <p><label>header_title</label>
5 <p><label><%= l(:setting_app_title) %></label>
6 <%= text_field_tag 'settings[header_title]', Setting.header_title, :size => 30 %></p>
6 <%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
7
7
8 <p><label>header_subtitle</label>
8 <p><label><%= l(:setting_app_subtitle) %></label>
9 <%= text_field_tag 'settings[header_subtitle]', Setting.header_subtitle, :size => 60 %></p>
9 <%= text_field_tag 'settings[app_subtitle]', Setting.app_subtitle, :size => 60 %></p>
10
10
11 <p><label>welcome_text</label>
11 <p><label><%= l(:setting_welcome_text) %></label>
12 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5 %></p>
12 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5 %></p>
13
13
14 <p><label>default_language</label>
14 <p><label><%= l(:setting_default_language) %></label>
15 <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p>
15 <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p>
16
16
17 <p><label>login_required</label>
17 <p><label><%= l(:setting_login_required) %></label>
18 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
18 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
19
19
20 <p><label>self_registration</label>
20 <p><label><%= l(:setting_self_registration) %></label>
21 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
21 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
22
22
23 <p><label>attachment_max_size</label>
23 <p><label><%= l(:setting_attachment_max_size) %></label>
24 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %></p>
24 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
25
25
26 <p><label>mail_from</label>
26 <p><label><%= l(:setting_mail_from) %></label>
27 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
27 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
28
28
29 <p><label>host_name</label>
29 <p><label><%= l(:setting_host_name) %></label>
30 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
30 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
31
31
32 <p><label>text_formatting</label>
32 <p><label><%= l(:setting_text_formatting) %></label>
33 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
33 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
34
34
35 </div>
35 </div>
36 <%= submit_tag l(:button_save) %>
36 <%= submit_tag l(:button_save) %>
37 <%= end_form_tag %> No newline at end of file
37 <%= end_form_tag %>
@@ -1,42 +1,42
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18
18
19 # DO NOT MODIFY THIS FILE !!!
19 # DO NOT MODIFY THIS FILE !!!
20 # Settings can be defined through the application in Admin -> Settings
20 # Settings can be defined through the application in Admin -> Settings
21
21
22 header_title:
22 app_title:
23 default: redMine
23 default: redMine
24 header_subtitle:
24 app_subtitle:
25 default: Project management
25 default: Project management
26 welcome_text:
26 welcome_text:
27 default:
27 default:
28 login_required:
28 login_required:
29 default: 0
29 default: 0
30 self_registration:
30 self_registration:
31 default: 1
31 default: 1
32 attachment_max_size:
32 attachment_max_size:
33 format: int
33 format: int
34 default: 5120
34 default: 5120
35 mail_from:
35 mail_from:
36 default: redmine@somenet.foo
36 default: redmine@somenet.foo
37 text_formatting:
37 text_formatting:
38 default: textile
38 default: textile
39 default_language:
39 default_language:
40 default: en
40 default: en
41 host_name:
41 host_name:
42 default: localhost:3000 No newline at end of file
42 default: localhost:3000
@@ -1,360 +1,371
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 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
66 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
67
67
68 mail_subject_lost_password: Dein redMine Kennwort
68 mail_subject_lost_password: Dein redMine Kennwort
69 mail_subject_register: redMine Kontoaktivierung
69 mail_subject_register: redMine Kontoaktivierung
70
70
71 gui_validation_error: 1 Störung
71 gui_validation_error: 1 Störung
72 gui_validation_error_plural: %d Störungen
72 gui_validation_error_plural: %d Störungen
73
73
74 field_name: Name
74 field_name: Name
75 field_description: Beschreibung
75 field_description: Beschreibung
76 field_summary: Zusammenfassung
76 field_summary: Zusammenfassung
77 field_is_required: Erforderlich
77 field_is_required: Erforderlich
78 field_firstname: Vorname
78 field_firstname: Vorname
79 field_lastname: Nachname
79 field_lastname: Nachname
80 field_mail: Email
80 field_mail: Email
81 field_filename: Datei
81 field_filename: Datei
82 field_filesize: Grootte
82 field_filesize: Grootte
83 field_downloads: Downloads
83 field_downloads: Downloads
84 field_author: Autor
84 field_author: Autor
85 field_created_on: Angelegt
85 field_created_on: Angelegt
86 field_updated_on: aktualisiert
86 field_updated_on: aktualisiert
87 field_field_format: Format
87 field_field_format: Format
88 field_is_for_all: Für alle Projekte
88 field_is_for_all: Für alle Projekte
89 field_possible_values: Mögliche Werte
89 field_possible_values: Mögliche Werte
90 field_regexp: Regulärer Ausdruck
90 field_regexp: Regulärer Ausdruck
91 field_min_length: Minimale Länge
91 field_min_length: Minimale Länge
92 field_max_length: Maximale Länge
92 field_max_length: Maximale Länge
93 field_value: Wert
93 field_value: Wert
94 field_category: Kategorie
94 field_category: Kategorie
95 field_title: Títel
95 field_title: Títel
96 field_project: Projekt
96 field_project: Projekt
97 field_issue: Antrag
97 field_issue: Antrag
98 field_status: Status
98 field_status: Status
99 field_notes: Anmerkungen
99 field_notes: Anmerkungen
100 field_is_closed: Problem erledigt
100 field_is_closed: Problem erledigt
101 field_is_default: Rückstellung status
101 field_is_default: Rückstellung status
102 field_html_color: Farbe
102 field_html_color: Farbe
103 field_tracker: Tracker
103 field_tracker: Tracker
104 field_subject: Thema
104 field_subject: Thema
105 field_due_date: Abgabedatum
105 field_due_date: Abgabedatum
106 field_assigned_to: Zugewiesen an
106 field_assigned_to: Zugewiesen an
107 field_priority: Priorität
107 field_priority: Priorität
108 field_fixed_version: Erledigt in Version
108 field_fixed_version: Erledigt in Version
109 field_user: Benutzer
109 field_user: Benutzer
110 field_role: Rolle
110 field_role: Rolle
111 field_homepage: Startseite
111 field_homepage: Startseite
112 field_is_public: Öffentlich
112 field_is_public: Öffentlich
113 field_parent: Subprojekt von
113 field_parent: Subprojekt von
114 field_is_in_chlog: Ansicht der Issues in der Historie
114 field_is_in_chlog: Ansicht der Issues in der Historie
115 field_login: Mitgliedsname
115 field_login: Mitgliedsname
116 field_mail_notification: Mailbenachrichtigung
116 field_mail_notification: Mailbenachrichtigung
117 field_admin: Administrator
117 field_admin: Administrator
118 field_locked: Gesperrt
118 field_locked: Gesperrt
119 field_last_login_on: Letzte Anmeldung
119 field_last_login_on: Letzte Anmeldung
120 field_language: Sprache
120 field_language: Sprache
121 field_effective_date: Datum
121 field_effective_date: Datum
122 field_password: Passwort
122 field_password: Passwort
123 field_new_password: Neues Passwort
123 field_new_password: Neues Passwort
124 field_password_confirmation: Bestätigung
124 field_password_confirmation: Bestätigung
125 field_version: Version
125 field_version: Version
126 field_type: Typ
126 field_type: Typ
127 field_host: Host
127 field_host: Host
128 field_port: Port
128 field_port: Port
129 field_account: Konto
129 field_account: Konto
130 field_base_dn: Base DN
130 field_base_dn: Base DN
131 field_attr_login: Mitgliedsnameattribut
131 field_attr_login: Mitgliedsnameattribut
132 field_attr_firstname: Vornamensattribut
132 field_attr_firstname: Vornamensattribut
133 field_attr_lastname: Namenattribut
133 field_attr_lastname: Namenattribut
134 field_attr_mail: Emailattribut
134 field_attr_mail: Emailattribut
135 field_onthefly: On-the-fly Benutzerkreation
135 field_onthefly: On-the-fly Benutzerkreation
136 field_start_date: Beginn
136 field_start_date: Beginn
137 field_done_ratio: %% Getan
137 field_done_ratio: %% Getan
138 field_auth_source: Authentisierung Modus
138 field_auth_source: Authentisierung Modus
139 field_hide_mail: Mein email address verstecken
139 field_hide_mail: Mein email address verstecken
140 field_comment: Anmerkung
140 field_comment: Anmerkung
141 field_url: URL
141 field_url: URL
142
142
143 setting_app_title: Applikation Titel
144 setting_app_subtitle: Applikation Untertitel
145 setting_welcome_text: Willkommener Text
146 setting_default_language: Rückstellung Sprache
147 setting_login_required: Authent. erfordert
148 setting_self_registration: Selbstausrichtung ermöglicht
149 setting_attachment_max_size: Dateimaximumgröße
150 setting_mail_from: Emission address
151 setting_host_name: Host Name
152 setting_text_formatting: Textformatierung
153
143 label_user: Benutzer
154 label_user: Benutzer
144 label_user_plural: Benutzer
155 label_user_plural: Benutzer
145 label_user_new: Neuer Benutzer
156 label_user_new: Neuer Benutzer
146 label_project: Projekt
157 label_project: Projekt
147 label_project_new: Neues Projekt
158 label_project_new: Neues Projekt
148 label_project_plural: Projekte
159 label_project_plural: Projekte
149 label_project_latest: Neueste Projekte
160 label_project_latest: Neueste Projekte
150 label_issue: Antrag
161 label_issue: Antrag
151 label_issue_new: Neue Antrag
162 label_issue_new: Neue Antrag
152 label_issue_plural: Anträge
163 label_issue_plural: Anträge
153 label_issue_view_all: Alle Anträge ansehen
164 label_issue_view_all: Alle Anträge ansehen
154 label_document: Dokument
165 label_document: Dokument
155 label_document_new: Neues Dokument
166 label_document_new: Neues Dokument
156 label_document_plural: Dokumente
167 label_document_plural: Dokumente
157 label_role: Rolle
168 label_role: Rolle
158 label_role_plural: Rollen
169 label_role_plural: Rollen
159 label_role_new: Neue Rolle
170 label_role_new: Neue Rolle
160 label_role_and_permissions: Rollen und Rechte
171 label_role_and_permissions: Rollen und Rechte
161 label_member: Mitglied
172 label_member: Mitglied
162 label_member_new: Neues Mitglied
173 label_member_new: Neues Mitglied
163 label_member_plural: Mitglieder
174 label_member_plural: Mitglieder
164 label_tracker: Tracker
175 label_tracker: Tracker
165 label_tracker_plural: Tracker
176 label_tracker_plural: Tracker
166 label_tracker_new: Neuer Tracker
177 label_tracker_new: Neuer Tracker
167 label_workflow: Workflow
178 label_workflow: Workflow
168 label_issue_status: Antrag Status
179 label_issue_status: Antrag Status
169 label_issue_status_plural: Antrag Stati
180 label_issue_status_plural: Antrag Stati
170 label_issue_status_new: Neuer Status
181 label_issue_status_new: Neuer Status
171 label_issue_category: Antrag Kategorie
182 label_issue_category: Antrag Kategorie
172 label_issue_category_plural: Antrag Kategorien
183 label_issue_category_plural: Antrag Kategorien
173 label_issue_category_new: Neue Kategorie
184 label_issue_category_new: Neue Kategorie
174 label_custom_field: Benutzerdefiniertes Feld
185 label_custom_field: Benutzerdefiniertes Feld
175 label_custom_field_plural: Benutzerdefinierte Felder
186 label_custom_field_plural: Benutzerdefinierte Felder
176 label_custom_field_new: Neues Feld
187 label_custom_field_new: Neues Feld
177 label_enumerations: Enumerationen
188 label_enumerations: Enumerationen
178 label_enumeration_new: Neuer Wert
189 label_enumeration_new: Neuer Wert
179 label_information: Information
190 label_information: Information
180 label_information_plural: Informationen
191 label_information_plural: Informationen
181 label_please_login: Anmelden
192 label_please_login: Anmelden
182 label_register: Anmelden
193 label_register: Anmelden
183 label_password_lost: Passwort vergessen
194 label_password_lost: Passwort vergessen
184 label_home: Hauptseite
195 label_home: Hauptseite
185 label_my_page: Meine Seite
196 label_my_page: Meine Seite
186 label_my_account: Mein Konto
197 label_my_account: Mein Konto
187 label_my_projects: Meine Projekte
198 label_my_projects: Meine Projekte
188 label_administration: Administration
199 label_administration: Administration
189 label_login: Einloggen
200 label_login: Einloggen
190 label_logout: Abmelden
201 label_logout: Abmelden
191 label_help: Hilfe
202 label_help: Hilfe
192 label_reported_issues: Gemeldete Issues
203 label_reported_issues: Gemeldete Issues
193 label_assigned_to_me_issues: Mir zugewiesen
204 label_assigned_to_me_issues: Mir zugewiesen
194 label_last_login: Letzte Anmeldung
205 label_last_login: Letzte Anmeldung
195 label_last_updates: Letztes aktualisiertes
206 label_last_updates: Letztes aktualisiertes
196 label_last_updates_plural: %d Letztes aktualisiertes
207 label_last_updates_plural: %d Letztes aktualisiertes
197 label_registered_on: Angemeldet am
208 label_registered_on: Angemeldet am
198 label_activity: Aktivität
209 label_activity: Aktivität
199 label_new: Neue
210 label_new: Neue
200 label_logged_as: Angemeldet als
211 label_logged_as: Angemeldet als
201 label_environment: Environment
212 label_environment: Environment
202 label_authentication: Authentisierung
213 label_authentication: Authentisierung
203 label_auth_source: Authentisierung Modus
214 label_auth_source: Authentisierung Modus
204 label_auth_source_new: Neuer Authentisierung Modus
215 label_auth_source_new: Neuer Authentisierung Modus
205 label_auth_source_plural: Authentisierung Modi
216 label_auth_source_plural: Authentisierung Modi
206 label_subproject: Vorprojekt von
217 label_subproject: Vorprojekt von
207 label_subproject_plural: Vorprojekte
218 label_subproject_plural: Vorprojekte
208 label_min_max_length: Min - Max Länge
219 label_min_max_length: Min - Max Länge
209 label_list: Liste
220 label_list: Liste
210 label_date: Date
221 label_date: Date
211 label_integer: Zahl
222 label_integer: Zahl
212 label_boolean: Boolesch
223 label_boolean: Boolesch
213 label_string: Text
224 label_string: Text
214 label_text: Langer Text
225 label_text: Langer Text
215 label_attribute: Attribut
226 label_attribute: Attribut
216 label_attribute_plural: Attribute
227 label_attribute_plural: Attribute
217 label_download: %d Herunterlade
228 label_download: %d Herunterlade
218 label_download_plural: %d Herunterlade
229 label_download_plural: %d Herunterlade
219 label_no_data: Nichts anzuzeigen
230 label_no_data: Nichts anzuzeigen
220 label_change_status: Statuswechsel
231 label_change_status: Statuswechsel
221 label_history: Historie
232 label_history: Historie
222 label_attachment: Datei
233 label_attachment: Datei
223 label_attachment_new: Neue Datei
234 label_attachment_new: Neue Datei
224 label_attachment_delete: Löschungakten
235 label_attachment_delete: Löschungakten
225 label_attachment_plural: Dateien
236 label_attachment_plural: Dateien
226 label_report: Bericht
237 label_report: Bericht
227 label_report_plural: Berichte
238 label_report_plural: Berichte
228 label_news: Neuigkeit
239 label_news: Neuigkeit
229 label_news_new: Neuigkeite addieren
240 label_news_new: Neuigkeite addieren
230 label_news_plural: Neuigkeiten
241 label_news_plural: Neuigkeiten
231 label_news_latest: Letzte Neuigkeiten
242 label_news_latest: Letzte Neuigkeiten
232 label_news_view_all: Alle Neuigkeiten anzeigen
243 label_news_view_all: Alle Neuigkeiten anzeigen
233 label_change_log: Change log
244 label_change_log: Change log
234 label_settings: Konfiguration
245 label_settings: Konfiguration
235 label_overview: Übersicht
246 label_overview: Übersicht
236 label_version: Version
247 label_version: Version
237 label_version_new: Neue Version
248 label_version_new: Neue Version
238 label_version_plural: Versionen
249 label_version_plural: Versionen
239 label_confirmation: Bestätigung
250 label_confirmation: Bestätigung
240 label_export_to: Export zu
251 label_export_to: Export zu
241 label_read: Lesen...
252 label_read: Lesen...
242 label_public_projects: Öffentliche Projekte
253 label_public_projects: Öffentliche Projekte
243 label_open_issues: geöffnet
254 label_open_issues: geöffnet
244 label_open_issues_plural: geöffnet
255 label_open_issues_plural: geöffnet
245 label_closed_issues: geschlossen
256 label_closed_issues: geschlossen
246 label_closed_issues_plural: geschlossen
257 label_closed_issues_plural: geschlossen
247 label_total: Gesamtzahl
258 label_total: Gesamtzahl
248 label_permissions: Berechtigungen
259 label_permissions: Berechtigungen
249 label_current_status: Gegenwärtiger Status
260 label_current_status: Gegenwärtiger Status
250 label_new_statuses_allowed: Neue Status gewährten
261 label_new_statuses_allowed: Neue Status gewährten
251 label_all: alle
262 label_all: alle
252 label_none: kein
263 label_none: kein
253 label_next: Weiter
264 label_next: Weiter
254 label_previous: Zurück
265 label_previous: Zurück
255 label_used_by: Benutzt von
266 label_used_by: Benutzt von
256 label_details: Details...
267 label_details: Details...
257 label_add_note: Eine Anmerkung addieren
268 label_add_note: Eine Anmerkung addieren
258 label_per_page: Pro Seite
269 label_per_page: Pro Seite
259 label_calendar: Kalender
270 label_calendar: Kalender
260 label_months_from: Monate von
271 label_months_from: Monate von
261 label_gantt: Gantt
272 label_gantt: Gantt
262 label_internal: Intern
273 label_internal: Intern
263 label_last_changes: %d änderungen des Letzten
274 label_last_changes: %d änderungen des Letzten
264 label_change_view_all: Alle änderungen ansehen
275 label_change_view_all: Alle änderungen ansehen
265 label_personalize_page: Diese Seite personifizieren
276 label_personalize_page: Diese Seite personifizieren
266 label_comment: Anmerkung
277 label_comment: Anmerkung
267 label_comment_plural: Anmerkungen
278 label_comment_plural: Anmerkungen
268 label_comment_add: Anmerkung addieren
279 label_comment_add: Anmerkung addieren
269 label_comment_added: Anmerkung fügte hinzu
280 label_comment_added: Anmerkung fügte hinzu
270 label_comment_delete: Anmerkungen löschen
281 label_comment_delete: Anmerkungen löschen
271 label_query: Benutzerdefiniertes Frage
282 label_query: Benutzerdefiniertes Frage
272 label_query_plural: Benutzerdefinierte Fragen
283 label_query_plural: Benutzerdefinierte Fragen
273 label_query_new: Neue Frage
284 label_query_new: Neue Frage
274 label_filter_add: Filter addieren
285 label_filter_add: Filter addieren
275 label_filter_plural: Filter
286 label_filter_plural: Filter
276 label_equals: ist
287 label_equals: ist
277 label_not_equals: ist nicht
288 label_not_equals: ist nicht
278 label_in_less_than: an weniger als
289 label_in_less_than: an weniger als
279 label_in_more_than: an mehr als
290 label_in_more_than: an mehr als
280 label_in: an
291 label_in: an
281 label_today: heute
292 label_today: heute
282 label_less_than_ago: vor weniger als
293 label_less_than_ago: vor weniger als
283 label_more_than_ago: vor mehr als
294 label_more_than_ago: vor mehr als
284 label_ago: vor
295 label_ago: vor
285 label_contains: enthält
296 label_contains: enthält
286 label_not_contains: enthält nicht
297 label_not_contains: enthält nicht
287 label_day_plural: Tage
298 label_day_plural: Tage
288 label_repository: SVN Behälter
299 label_repository: SVN Behälter
289 label_browse: Grasen
300 label_browse: Grasen
290 label_modification: %d änderung
301 label_modification: %d änderung
291 label_modification_plural: %d änderungen
302 label_modification_plural: %d änderungen
292 label_revision: Neuausgabe
303 label_revision: Neuausgabe
293 label_revision_plural: Neuausgaben
304 label_revision_plural: Neuausgaben
294 label_added: hinzugefügt
305 label_added: hinzugefügt
295 label_modified: geändert
306 label_modified: geändert
296 label_deleted: gelöscht
307 label_deleted: gelöscht
297 label_latest_revision: Neueste Neuausgabe
308 label_latest_revision: Neueste Neuausgabe
298 label_view_revisions: Die Neuausgaben ansehen
309 label_view_revisions: Die Neuausgaben ansehen
299 label_max_size: Maximale Größe
310 label_max_size: Maximale Größe
300 label_on: auf
311 label_on: auf
301
312
302 button_login: Einloggen
313 button_login: Einloggen
303 button_submit: Einreichen
314 button_submit: Einreichen
304 button_save: Speichern
315 button_save: Speichern
305 button_check_all: Alles auswählen
316 button_check_all: Alles auswählen
306 button_uncheck_all: Alles abwählen
317 button_uncheck_all: Alles abwählen
307 button_delete: Löschen
318 button_delete: Löschen
308 button_create: Anlegen
319 button_create: Anlegen
309 button_test: Testen
320 button_test: Testen
310 button_edit: Bearbeiten
321 button_edit: Bearbeiten
311 button_add: Hinzufügen
322 button_add: Hinzufügen
312 button_change: Wechseln
323 button_change: Wechseln
313 button_apply: Anwenden
324 button_apply: Anwenden
314 button_clear: Zurücksetzen
325 button_clear: Zurücksetzen
315 button_lock: Verriegeln
326 button_lock: Verriegeln
316 button_unlock: Entriegeln
327 button_unlock: Entriegeln
317 button_download: Fernzuladen
328 button_download: Fernzuladen
318 button_list: Aufzulisten
329 button_list: Aufzulisten
319 button_view: Siehe
330 button_view: Siehe
320 button_move: Bewegen
331 button_move: Bewegen
321 button_back: Rückkehr
332 button_back: Rückkehr
322 button_cancel: Annullieren
333 button_cancel: Annullieren
323 button_activate: Aktivieren
334 button_activate: Aktivieren
324
335
325 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
336 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
326 text_regexp_info: eg. ^[A-Z0-9]+$
337 text_regexp_info: eg. ^[A-Z0-9]+$
327 text_min_max_length_info: 0 heisst keine Beschränkung
338 text_min_max_length_info: 0 heisst keine Beschränkung
328 text_possible_values_info: Werte trennten sich mit |
339 text_possible_values_info: Werte trennten sich mit |
329 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
340 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
330 text_workflow_edit: Auswahl Workflow zum Bearbeiten
341 text_workflow_edit: Auswahl Workflow zum Bearbeiten
331 text_are_you_sure: Sind sie sicher ?
342 text_are_you_sure: Sind sie sicher ?
332 text_journal_changed: geändert von %s zu %s
343 text_journal_changed: geändert von %s zu %s
333 text_journal_set_to: gestellt zu %s
344 text_journal_set_to: gestellt zu %s
334 text_journal_deleted: gelöscht
345 text_journal_deleted: gelöscht
335 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
346 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
336 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
347 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
337 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
348 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
338
349
339 default_role_manager: Manager
350 default_role_manager: Manager
340 default_role_developper: Developer
351 default_role_developper: Developer
341 default_role_reporter: Reporter
352 default_role_reporter: Reporter
342 default_tracker_bug: Fehler
353 default_tracker_bug: Fehler
343 default_tracker_feature: Feature
354 default_tracker_feature: Feature
344 default_tracker_support: Support
355 default_tracker_support: Support
345 default_issue_status_new: Neu
356 default_issue_status_new: Neu
346 default_issue_status_assigned: Zugewiesen
357 default_issue_status_assigned: Zugewiesen
347 default_issue_status_resolved: Gelöst
358 default_issue_status_resolved: Gelöst
348 default_issue_status_feedback: Feedback
359 default_issue_status_feedback: Feedback
349 default_issue_status_closed: Erledigt
360 default_issue_status_closed: Erledigt
350 default_issue_status_rejected: Abgewiesen
361 default_issue_status_rejected: Abgewiesen
351 default_doc_category_user: Benutzerdokumentation
362 default_doc_category_user: Benutzerdokumentation
352 default_doc_category_tech: Technische Dokumentation
363 default_doc_category_tech: Technische Dokumentation
353 default_priority_low: Niedrig
364 default_priority_low: Niedrig
354 default_priority_normal: Normal
365 default_priority_normal: Normal
355 default_priority_high: Hoch
366 default_priority_high: Hoch
356 default_priority_urgent: Dringend
367 default_priority_urgent: Dringend
357 default_priority_immediate: Sofort
368 default_priority_immediate: Sofort
358
369
359 enumeration_issue_priorities: Issue-Prioritäten
370 enumeration_issue_priorities: Issue-Prioritäten
360 enumeration_doc_categories: Dokumentenkategorien
371 enumeration_doc_categories: Dokumentenkategorien
@@ -1,360 +1,371
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: The page you were trying to access doesn't exist or has been removed.
64 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
65 notice_locking_conflict: Data have been updated by another user.
65 notice_locking_conflict: Data have been updated by another user.
66 notice_scm_error: Entry and/or revision doesn't exist in the repository.
66 notice_scm_error: Entry and/or revision doesn't exist in the repository.
67
67
68 mail_subject_lost_password: Your redMine password
68 mail_subject_lost_password: Your redMine password
69 mail_subject_register: redMine account activation
69 mail_subject_register: redMine account activation
70
70
71 gui_validation_error: 1 error
71 gui_validation_error: 1 error
72 gui_validation_error_plural: %d errors
72 gui_validation_error_plural: %d errors
73
73
74 field_name: Name
74 field_name: Name
75 field_description: Description
75 field_description: Description
76 field_summary: Summary
76 field_summary: Summary
77 field_is_required: Required
77 field_is_required: Required
78 field_firstname: Firstname
78 field_firstname: Firstname
79 field_lastname: Lastname
79 field_lastname: Lastname
80 field_mail: Email
80 field_mail: Email
81 field_filename: File
81 field_filename: File
82 field_filesize: Size
82 field_filesize: Size
83 field_downloads: Downloads
83 field_downloads: Downloads
84 field_author: Author
84 field_author: Author
85 field_created_on: Created
85 field_created_on: Created
86 field_updated_on: Updated
86 field_updated_on: Updated
87 field_field_format: Format
87 field_field_format: Format
88 field_is_for_all: For all projects
88 field_is_for_all: For all projects
89 field_possible_values: Possible values
89 field_possible_values: Possible values
90 field_regexp: Regular expression
90 field_regexp: Regular expression
91 field_min_length: Minimum length
91 field_min_length: Minimum length
92 field_max_length: Maximum length
92 field_max_length: Maximum length
93 field_value: Value
93 field_value: Value
94 field_category: Category
94 field_category: Category
95 field_title: Title
95 field_title: Title
96 field_project: Project
96 field_project: Project
97 field_issue: Issue
97 field_issue: Issue
98 field_status: Status
98 field_status: Status
99 field_notes: Notes
99 field_notes: Notes
100 field_is_closed: Issue closed
100 field_is_closed: Issue closed
101 field_is_default: Default status
101 field_is_default: Default status
102 field_html_color: Color
102 field_html_color: Color
103 field_tracker: Tracker
103 field_tracker: Tracker
104 field_subject: Subject
104 field_subject: Subject
105 field_due_date: Due date
105 field_due_date: Due date
106 field_assigned_to: Assigned to
106 field_assigned_to: Assigned to
107 field_priority: Priority
107 field_priority: Priority
108 field_fixed_version: Fixed version
108 field_fixed_version: Fixed version
109 field_user: User
109 field_user: User
110 field_role: Role
110 field_role: Role
111 field_homepage: Homepage
111 field_homepage: Homepage
112 field_is_public: Public
112 field_is_public: Public
113 field_parent: Subproject of
113 field_parent: Subproject of
114 field_is_in_chlog: Issues displayed in changelog
114 field_is_in_chlog: Issues displayed in changelog
115 field_login: Login
115 field_login: Login
116 field_mail_notification: Mail notifications
116 field_mail_notification: Mail notifications
117 field_admin: Administrator
117 field_admin: Administrator
118 field_locked: Locked
118 field_locked: Locked
119 field_last_login_on: Last connection
119 field_last_login_on: Last connection
120 field_language: Language
120 field_language: Language
121 field_effective_date: Date
121 field_effective_date: Date
122 field_password: Password
122 field_password: Password
123 field_new_password: New password
123 field_new_password: New password
124 field_password_confirmation: Confirmation
124 field_password_confirmation: Confirmation
125 field_version: Version
125 field_version: Version
126 field_type: Type
126 field_type: Type
127 field_host: Host
127 field_host: Host
128 field_port: Port
128 field_port: Port
129 field_account: Account
129 field_account: Account
130 field_base_dn: Base DN
130 field_base_dn: Base DN
131 field_attr_login: Login attribute
131 field_attr_login: Login attribute
132 field_attr_firstname: Firstname attribute
132 field_attr_firstname: Firstname attribute
133 field_attr_lastname: Lastname attribute
133 field_attr_lastname: Lastname attribute
134 field_attr_mail: Email attribute
134 field_attr_mail: Email attribute
135 field_onthefly: On-the-fly user creation
135 field_onthefly: On-the-fly user creation
136 field_start_date: Start
136 field_start_date: Start
137 field_done_ratio: %% Done
137 field_done_ratio: %% Done
138 field_auth_source: Authentication mode
138 field_auth_source: Authentication mode
139 field_hide_mail: Hide my email address
139 field_hide_mail: Hide my email address
140 field_comment: Comment
140 field_comment: Comment
141 field_url: URL
141 field_url: URL
142
142
143 setting_app_title: Application title
144 setting_app_subtitle: Application subtitle
145 setting_welcome_text: Welcome text
146 setting_default_language: Default language
147 setting_login_required: Authent. required
148 setting_self_registration: Self-registration enabled
149 setting_attachment_max_size: Attachment max. size
150 setting_mail_from: Emission mail address
151 setting_host_name: Host name
152 setting_text_formatting: Text formatting
153
143 label_user: User
154 label_user: User
144 label_user_plural: Users
155 label_user_plural: Users
145 label_user_new: New user
156 label_user_new: New user
146 label_project: Project
157 label_project: Project
147 label_project_new: New project
158 label_project_new: New project
148 label_project_plural: Projects
159 label_project_plural: Projects
149 label_project_latest: Latest projects
160 label_project_latest: Latest projects
150 label_issue: Issue
161 label_issue: Issue
151 label_issue_new: New issue
162 label_issue_new: New issue
152 label_issue_plural: Issues
163 label_issue_plural: Issues
153 label_issue_view_all: View all issues
164 label_issue_view_all: View all issues
154 label_document: Document
165 label_document: Document
155 label_document_new: New document
166 label_document_new: New document
156 label_document_plural: Documents
167 label_document_plural: Documents
157 label_role: Role
168 label_role: Role
158 label_role_plural: Roles
169 label_role_plural: Roles
159 label_role_new: New role
170 label_role_new: New role
160 label_role_and_permissions: Roles and permissions
171 label_role_and_permissions: Roles and permissions
161 label_member: Member
172 label_member: Member
162 label_member_new: New member
173 label_member_new: New member
163 label_member_plural: Members
174 label_member_plural: Members
164 label_tracker: Tracker
175 label_tracker: Tracker
165 label_tracker_plural: Trackers
176 label_tracker_plural: Trackers
166 label_tracker_new: New tracker
177 label_tracker_new: New tracker
167 label_workflow: Workflow
178 label_workflow: Workflow
168 label_issue_status: Issue status
179 label_issue_status: Issue status
169 label_issue_status_plural: Issue statuses
180 label_issue_status_plural: Issue statuses
170 label_issue_status_new: New status
181 label_issue_status_new: New status
171 label_issue_category: Issue category
182 label_issue_category: Issue category
172 label_issue_category_plural: Issue categories
183 label_issue_category_plural: Issue categories
173 label_issue_category_new: New category
184 label_issue_category_new: New category
174 label_custom_field: Custom field
185 label_custom_field: Custom field
175 label_custom_field_plural: Custom fields
186 label_custom_field_plural: Custom fields
176 label_custom_field_new: New custom field
187 label_custom_field_new: New custom field
177 label_enumerations: Enumerations
188 label_enumerations: Enumerations
178 label_enumeration_new: New value
189 label_enumeration_new: New value
179 label_information: Information
190 label_information: Information
180 label_information_plural: Information
191 label_information_plural: Information
181 label_please_login: Please login
192 label_please_login: Please login
182 label_register: Register
193 label_register: Register
183 label_password_lost: Lost password
194 label_password_lost: Lost password
184 label_home: Home
195 label_home: Home
185 label_my_page: My page
196 label_my_page: My page
186 label_my_account: My account
197 label_my_account: My account
187 label_my_projects: My projects
198 label_my_projects: My projects
188 label_administration: Administration
199 label_administration: Administration
189 label_login: Login
200 label_login: Login
190 label_logout: Logout
201 label_logout: Logout
191 label_help: Help
202 label_help: Help
192 label_reported_issues: Reported issues
203 label_reported_issues: Reported issues
193 label_assigned_to_me_issues: Issues assigned to me
204 label_assigned_to_me_issues: Issues assigned to me
194 label_last_login: Last connection
205 label_last_login: Last connection
195 label_last_updates: Last updated
206 label_last_updates: Last updated
196 label_last_updates_plural: %d last updated
207 label_last_updates_plural: %d last updated
197 label_registered_on: Registered on
208 label_registered_on: Registered on
198 label_activity: Activity
209 label_activity: Activity
199 label_new: New
210 label_new: New
200 label_logged_as: Logged as
211 label_logged_as: Logged as
201 label_environment: Environment
212 label_environment: Environment
202 label_authentication: Authentication
213 label_authentication: Authentication
203 label_auth_source: Authentication mode
214 label_auth_source: Authentication mode
204 label_auth_source_new: New authentication mode
215 label_auth_source_new: New authentication mode
205 label_auth_source_plural: Authentication modes
216 label_auth_source_plural: Authentication modes
206 label_subproject: Subproject
217 label_subproject: Subproject
207 label_subproject_plural: Subprojects
218 label_subproject_plural: Subprojects
208 label_min_max_length: Min - Max length
219 label_min_max_length: Min - Max length
209 label_list: List
220 label_list: List
210 label_date: Date
221 label_date: Date
211 label_integer: Integer
222 label_integer: Integer
212 label_boolean: Boolean
223 label_boolean: Boolean
213 label_string: Text
224 label_string: Text
214 label_text: Long text
225 label_text: Long text
215 label_attribute: Attribute
226 label_attribute: Attribute
216 label_attribute_plural: Attributes
227 label_attribute_plural: Attributes
217 label_download: %d Download
228 label_download: %d Download
218 label_download_plural: %d Downloads
229 label_download_plural: %d Downloads
219 label_no_data: No data to display
230 label_no_data: No data to display
220 label_change_status: Change status
231 label_change_status: Change status
221 label_history: History
232 label_history: History
222 label_attachment: File
233 label_attachment: File
223 label_attachment_new: New file
234 label_attachment_new: New file
224 label_attachment_delete: Delete file
235 label_attachment_delete: Delete file
225 label_attachment_plural: Files
236 label_attachment_plural: Files
226 label_report: Report
237 label_report: Report
227 label_report_plural: Reports
238 label_report_plural: Reports
228 label_news: News
239 label_news: News
229 label_news_new: Add news
240 label_news_new: Add news
230 label_news_plural: News
241 label_news_plural: News
231 label_news_latest: Latest news
242 label_news_latest: Latest news
232 label_news_view_all: View all news
243 label_news_view_all: View all news
233 label_change_log: Change log
244 label_change_log: Change log
234 label_settings: Settings
245 label_settings: Settings
235 label_overview: Overview
246 label_overview: Overview
236 label_version: Version
247 label_version: Version
237 label_version_new: New version
248 label_version_new: New version
238 label_version_plural: Versions
249 label_version_plural: Versions
239 label_confirmation: Confirmation
250 label_confirmation: Confirmation
240 label_export_to: Export to
251 label_export_to: Export to
241 label_read: Read...
252 label_read: Read...
242 label_public_projects: Public projects
253 label_public_projects: Public projects
243 label_open_issues: open
254 label_open_issues: open
244 label_open_issues_plural: open
255 label_open_issues_plural: open
245 label_closed_issues: closed
256 label_closed_issues: closed
246 label_closed_issues_plural: closed
257 label_closed_issues_plural: closed
247 label_total: Total
258 label_total: Total
248 label_permissions: Permissions
259 label_permissions: Permissions
249 label_current_status: Current status
260 label_current_status: Current status
250 label_new_statuses_allowed: New statuses allowed
261 label_new_statuses_allowed: New statuses allowed
251 label_all: all
262 label_all: all
252 label_none: none
263 label_none: none
253 label_next: Next
264 label_next: Next
254 label_previous: Previous
265 label_previous: Previous
255 label_used_by: Used by
266 label_used_by: Used by
256 label_details: Details...
267 label_details: Details...
257 label_add_note: Add a note
268 label_add_note: Add a note
258 label_per_page: Per page
269 label_per_page: Per page
259 label_calendar: Calendar
270 label_calendar: Calendar
260 label_months_from: months from
271 label_months_from: months from
261 label_gantt: Gantt
272 label_gantt: Gantt
262 label_internal: Internal
273 label_internal: Internal
263 label_last_changes: last %d changes
274 label_last_changes: last %d changes
264 label_change_view_all: View all changes
275 label_change_view_all: View all changes
265 label_personalize_page: Personalize this page
276 label_personalize_page: Personalize this page
266 label_comment: Comment
277 label_comment: Comment
267 label_comment_plural: Comments
278 label_comment_plural: Comments
268 label_comment_add: Add a comment
279 label_comment_add: Add a comment
269 label_comment_added: Comment added
280 label_comment_added: Comment added
270 label_comment_delete: Delete comments
281 label_comment_delete: Delete comments
271 label_query: Custom query
282 label_query: Custom query
272 label_query_plural: Custom queries
283 label_query_plural: Custom queries
273 label_query_new: New query
284 label_query_new: New query
274 label_filter_add: Add filter
285 label_filter_add: Add filter
275 label_filter_plural: Filters
286 label_filter_plural: Filters
276 label_equals: is
287 label_equals: is
277 label_not_equals: is not
288 label_not_equals: is not
278 label_in_less_than: in less than
289 label_in_less_than: in less than
279 label_in_more_than: in more than
290 label_in_more_than: in more than
280 label_in: in
291 label_in: in
281 label_today: today
292 label_today: today
282 label_less_than_ago: less than days ago
293 label_less_than_ago: less than days ago
283 label_more_than_ago: more than days ago
294 label_more_than_ago: more than days ago
284 label_ago: days ago
295 label_ago: days ago
285 label_contains: contains
296 label_contains: contains
286 label_not_contains: doesn't contain
297 label_not_contains: doesn't contain
287 label_day_plural: days
298 label_day_plural: days
288 label_repository: SVN Repository
299 label_repository: SVN Repository
289 label_browse: Browse
300 label_browse: Browse
290 label_modification: %d change
301 label_modification: %d change
291 label_modification_plural: %d changes
302 label_modification_plural: %d changes
292 label_revision: Revision
303 label_revision: Revision
293 label_revision_plural: Revisions
304 label_revision_plural: Revisions
294 label_added: added
305 label_added: added
295 label_modified: modified
306 label_modified: modified
296 label_deleted: deleted
307 label_deleted: deleted
297 label_latest_revision: Latest revision
308 label_latest_revision: Latest revision
298 label_view_revisions: View revisions
309 label_view_revisions: View revisions
299 label_max_size: Maximum size
310 label_max_size: Maximum size
300 label_on: 'on'
311 label_on: 'on'
301
312
302 button_login: Login
313 button_login: Login
303 button_submit: Submit
314 button_submit: Submit
304 button_save: Save
315 button_save: Save
305 button_check_all: Check all
316 button_check_all: Check all
306 button_uncheck_all: Uncheck all
317 button_uncheck_all: Uncheck all
307 button_delete: Delete
318 button_delete: Delete
308 button_create: Create
319 button_create: Create
309 button_test: Test
320 button_test: Test
310 button_edit: Edit
321 button_edit: Edit
311 button_add: Add
322 button_add: Add
312 button_change: Change
323 button_change: Change
313 button_apply: Apply
324 button_apply: Apply
314 button_clear: Clear
325 button_clear: Clear
315 button_lock: Lock
326 button_lock: Lock
316 button_unlock: Unlock
327 button_unlock: Unlock
317 button_download: Download
328 button_download: Download
318 button_list: List
329 button_list: List
319 button_view: View
330 button_view: View
320 button_move: Move
331 button_move: Move
321 button_back: Back
332 button_back: Back
322 button_cancel: Cancel
333 button_cancel: Cancel
323 button_activate: Activate
334 button_activate: Activate
324
335
325 text_select_mail_notifications: Select actions for which mail notifications should be sent.
336 text_select_mail_notifications: Select actions for which mail notifications should be sent.
326 text_regexp_info: eg. ^[A-Z0-9]+$
337 text_regexp_info: eg. ^[A-Z0-9]+$
327 text_min_max_length_info: 0 means no restriction
338 text_min_max_length_info: 0 means no restriction
328 text_possible_values_info: values separated with |
339 text_possible_values_info: values separated with |
329 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
340 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
330 text_workflow_edit: Select a role and a tracker to edit the workflow
341 text_workflow_edit: Select a role and a tracker to edit the workflow
331 text_are_you_sure: Are you sure ?
342 text_are_you_sure: Are you sure ?
332 text_journal_changed: changed from %s to %s
343 text_journal_changed: changed from %s to %s
333 text_journal_set_to: set to %s
344 text_journal_set_to: set to %s
334 text_journal_deleted: deleted
345 text_journal_deleted: deleted
335 text_tip_task_begin_day: task beginning this day
346 text_tip_task_begin_day: task beginning this day
336 text_tip_task_end_day: task ending this day
347 text_tip_task_end_day: task ending this day
337 text_tip_task_begin_end_day: task beginning and ending this day
348 text_tip_task_begin_end_day: task beginning and ending this day
338
349
339 default_role_manager: Manager
350 default_role_manager: Manager
340 default_role_developper: Developer
351 default_role_developper: Developer
341 default_role_reporter: Reporter
352 default_role_reporter: Reporter
342 default_tracker_bug: Bug
353 default_tracker_bug: Bug
343 default_tracker_feature: Feature
354 default_tracker_feature: Feature
344 default_tracker_support: Support
355 default_tracker_support: Support
345 default_issue_status_new: New
356 default_issue_status_new: New
346 default_issue_status_assigned: Assigned
357 default_issue_status_assigned: Assigned
347 default_issue_status_resolved: Resolved
358 default_issue_status_resolved: Resolved
348 default_issue_status_feedback: Feedback
359 default_issue_status_feedback: Feedback
349 default_issue_status_closed: Closed
360 default_issue_status_closed: Closed
350 default_issue_status_rejected: Rejected
361 default_issue_status_rejected: Rejected
351 default_doc_category_user: User documentation
362 default_doc_category_user: User documentation
352 default_doc_category_tech: Technical documentation
363 default_doc_category_tech: Technical documentation
353 default_priority_low: Low
364 default_priority_low: Low
354 default_priority_normal: Normal
365 default_priority_normal: Normal
355 default_priority_high: High
366 default_priority_high: High
356 default_priority_urgent: Urgent
367 default_priority_urgent: Urgent
357 default_priority_immediate: Immediate
368 default_priority_immediate: Immediate
358
369
359 enumeration_issue_priorities: Issue priorities
370 enumeration_issue_priorities: Issue priorities
360 enumeration_doc_categories: Document categories
371 enumeration_doc_categories: Document categories
@@ -1,360 +1,371
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: La página que intentabas tener acceso no existe ni se ha quitado.
64 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
65 notice_locking_conflict: Data have been updated by another user.
65 notice_locking_conflict: Data have been updated by another user.
66 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
66 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
67
67
68 mail_subject_lost_password: Tu contraseña del redMine
68 mail_subject_lost_password: Tu contraseña del redMine
69 mail_subject_register: Activación de la cuenta del redMine
69 mail_subject_register: Activación de la cuenta del redMine
70
70
71 gui_validation_error: 1 error
71 gui_validation_error: 1 error
72 gui_validation_error_plural: %d errores
72 gui_validation_error_plural: %d errores
73
73
74 field_name: Nombre
74 field_name: Nombre
75 field_description: Descripción
75 field_description: Descripción
76 field_summary: Resumen
76 field_summary: Resumen
77 field_is_required: Obligatorio
77 field_is_required: Obligatorio
78 field_firstname: Nombre
78 field_firstname: Nombre
79 field_lastname: Apellido
79 field_lastname: Apellido
80 field_mail: Email
80 field_mail: Email
81 field_filename: Fichero
81 field_filename: Fichero
82 field_filesize: Tamaño
82 field_filesize: Tamaño
83 field_downloads: Telecargas
83 field_downloads: Telecargas
84 field_author: Autor
84 field_author: Autor
85 field_created_on: Creado
85 field_created_on: Creado
86 field_updated_on: Actualizado
86 field_updated_on: Actualizado
87 field_field_format: Formato
87 field_field_format: Formato
88 field_is_for_all: Para todos los proyectos
88 field_is_for_all: Para todos los proyectos
89 field_possible_values: Valores posibles
89 field_possible_values: Valores posibles
90 field_regexp: Expresión regular
90 field_regexp: Expresión regular
91 field_min_length: Longitud mínima
91 field_min_length: Longitud mínima
92 field_max_length: Longitud máxima
92 field_max_length: Longitud máxima
93 field_value: Valor
93 field_value: Valor
94 field_category: Categoría
94 field_category: Categoría
95 field_title: Título
95 field_title: Título
96 field_project: Proyecto
96 field_project: Proyecto
97 field_issue: Petición
97 field_issue: Petición
98 field_status: Estatuto
98 field_status: Estatuto
99 field_notes: Notas
99 field_notes: Notas
100 field_is_closed: Petición resuelta
100 field_is_closed: Petición resuelta
101 field_is_default: Estatuto por defecto
101 field_is_default: Estatuto por defecto
102 field_html_color: Color
102 field_html_color: Color
103 field_tracker: Tracker
103 field_tracker: Tracker
104 field_subject: Tema
104 field_subject: Tema
105 field_due_date: Fecha debida
105 field_due_date: Fecha debida
106 field_assigned_to: Asignado a
106 field_assigned_to: Asignado a
107 field_priority: Prioridad
107 field_priority: Prioridad
108 field_fixed_version: Versión corregida
108 field_fixed_version: Versión corregida
109 field_user: Usuario
109 field_user: Usuario
110 field_role: Papel
110 field_role: Papel
111 field_homepage: Sitio web
111 field_homepage: Sitio web
112 field_is_public: Público
112 field_is_public: Público
113 field_parent: Proyecto secundario de
113 field_parent: Proyecto secundario de
114 field_is_in_chlog: Consultar las peticiones en el histórico
114 field_is_in_chlog: Consultar las peticiones en el histórico
115 field_login: Identificador
115 field_login: Identificador
116 field_mail_notification: Notificación por mail
116 field_mail_notification: Notificación por mail
117 field_admin: Administrador
117 field_admin: Administrador
118 field_locked: Cerrado
118 field_locked: Cerrado
119 field_last_login_on: Última conexión
119 field_last_login_on: Última conexión
120 field_language: Lengua
120 field_language: Lengua
121 field_effective_date: Fecha
121 field_effective_date: Fecha
122 field_password: Contraseña
122 field_password: Contraseña
123 field_new_password: Nueva contraseña
123 field_new_password: Nueva contraseña
124 field_password_confirmation: Confirmación
124 field_password_confirmation: Confirmación
125 field_version: Versión
125 field_version: Versión
126 field_type: Tipo
126 field_type: Tipo
127 field_host: Anfitrión
127 field_host: Anfitrión
128 field_port: Puerto
128 field_port: Puerto
129 field_account: Cuenta
129 field_account: Cuenta
130 field_base_dn: Base DN
130 field_base_dn: Base DN
131 field_attr_login: Cualidad del identificador
131 field_attr_login: Cualidad del identificador
132 field_attr_firstname: Cualidad del nombre
132 field_attr_firstname: Cualidad del nombre
133 field_attr_lastname: Cualidad del apellido
133 field_attr_lastname: Cualidad del apellido
134 field_attr_mail: Cualidad del Email
134 field_attr_mail: Cualidad del Email
135 field_onthefly: Creación del usuario On-the-fly
135 field_onthefly: Creación del usuario On-the-fly
136 field_start_date: Comienzo
136 field_start_date: Comienzo
137 field_done_ratio: %% Realizado
137 field_done_ratio: %% Realizado
138 field_auth_source: Modo de la autentificación
138 field_auth_source: Modo de la autentificación
139 field_hide_mail: Ocultar mi email address
139 field_hide_mail: Ocultar mi email address
140 field_comment: Comentario
140 field_comment: Comentario
141 field_url: URL
141 field_url: URL
142
142
143 setting_app_title: Título del aplicación
144 setting_app_subtitle: Subtítulo del aplicación
145 setting_welcome_text: Texto acogida
146 setting_default_language: Lengua del defecto
147 setting_login_required: Autentif. requerida
148 setting_self_registration: Registro permitido
149 setting_attachment_max_size: Tamaño máximo del fichero
150 setting_mail_from: Email de la emisión
151 setting_host_name: Nombre de anfitrión
152 setting_text_formatting: Formato de texto
153
143 label_user: Usuario
154 label_user: Usuario
144 label_user_plural: Usuarios
155 label_user_plural: Usuarios
145 label_user_new: Nuevo usuario
156 label_user_new: Nuevo usuario
146 label_project: Proyecto
157 label_project: Proyecto
147 label_project_new: Nuevo proyecto
158 label_project_new: Nuevo proyecto
148 label_project_plural: Proyectos
159 label_project_plural: Proyectos
149 label_project_latest: Los proyectos más últimos
160 label_project_latest: Los proyectos más últimos
150 label_issue: Petición
161 label_issue: Petición
151 label_issue_new: Nueva petición
162 label_issue_new: Nueva petición
152 label_issue_plural: Peticiones
163 label_issue_plural: Peticiones
153 label_issue_view_all: Ver todas las peticiones
164 label_issue_view_all: Ver todas las peticiones
154 label_document: Documento
165 label_document: Documento
155 label_document_new: Nuevo documento
166 label_document_new: Nuevo documento
156 label_document_plural: Documentos
167 label_document_plural: Documentos
157 label_role: Papel
168 label_role: Papel
158 label_role_plural: Papeles
169 label_role_plural: Papeles
159 label_role_new: Nuevo papel
170 label_role_new: Nuevo papel
160 label_role_and_permissions: Papeles y permisos
171 label_role_and_permissions: Papeles y permisos
161 label_member: Miembro
172 label_member: Miembro
162 label_member_new: Nuevo miembro
173 label_member_new: Nuevo miembro
163 label_member_plural: Miembros
174 label_member_plural: Miembros
164 label_tracker: Tracker
175 label_tracker: Tracker
165 label_tracker_plural: Trackers
176 label_tracker_plural: Trackers
166 label_tracker_new: Nuevo tracker
177 label_tracker_new: Nuevo tracker
167 label_workflow: Workflow
178 label_workflow: Workflow
168 label_issue_status: Estatuto de petición
179 label_issue_status: Estatuto de petición
169 label_issue_status_plural: Estatutos de las peticiones
180 label_issue_status_plural: Estatutos de las peticiones
170 label_issue_status_new: Nuevo estatuto
181 label_issue_status_new: Nuevo estatuto
171 label_issue_category: Categoría de las peticiones
182 label_issue_category: Categoría de las peticiones
172 label_issue_category_plural: Categorías de las peticiones
183 label_issue_category_plural: Categorías de las peticiones
173 label_issue_category_new: Nueva categoría
184 label_issue_category_new: Nueva categoría
174 label_custom_field: Campo personalizado
185 label_custom_field: Campo personalizado
175 label_custom_field_plural: Campos personalizados
186 label_custom_field_plural: Campos personalizados
176 label_custom_field_new: Nuevo campo personalizado
187 label_custom_field_new: Nuevo campo personalizado
177 label_enumerations: Listas de valores
188 label_enumerations: Listas de valores
178 label_enumeration_new: Nuevo valor
189 label_enumeration_new: Nuevo valor
179 label_information: Informacion
190 label_information: Informacion
180 label_information_plural: Informaciones
191 label_information_plural: Informaciones
181 label_please_login: Conexión
192 label_please_login: Conexión
182 label_register: Registrar
193 label_register: Registrar
183 label_password_lost: ¿Olvidaste la contraseña?
194 label_password_lost: ¿Olvidaste la contraseña?
184 label_home: Acogida
195 label_home: Acogida
185 label_my_page: Mi página
196 label_my_page: Mi página
186 label_my_account: Mi cuenta
197 label_my_account: Mi cuenta
187 label_my_projects: Mis proyectos
198 label_my_projects: Mis proyectos
188 label_administration: Administración
199 label_administration: Administración
189 label_login: Conexión
200 label_login: Conexión
190 label_logout: Desconexión
201 label_logout: Desconexión
191 label_help: Ayuda
202 label_help: Ayuda
192 label_reported_issues: Peticiones registradas
203 label_reported_issues: Peticiones registradas
193 label_assigned_to_me_issues: Peticiones que me están asignadas
204 label_assigned_to_me_issues: Peticiones que me están asignadas
194 label_last_login: Última conexión
205 label_last_login: Última conexión
195 label_last_updates: Actualizado
206 label_last_updates: Actualizado
196 label_last_updates_plural: %d Actualizados
207 label_last_updates_plural: %d Actualizados
197 label_registered_on: Inscrito el
208 label_registered_on: Inscrito el
198 label_activity: Actividad
209 label_activity: Actividad
199 label_new: Nuevo
210 label_new: Nuevo
200 label_logged_as: Conectado como
211 label_logged_as: Conectado como
201 label_environment: Environment
212 label_environment: Environment
202 label_authentication: Autentificación
213 label_authentication: Autentificación
203 label_auth_source: Modo de la autentificación
214 label_auth_source: Modo de la autentificación
204 label_auth_source_new: Nuevo modo de la autentificación
215 label_auth_source_new: Nuevo modo de la autentificación
205 label_auth_source_plural: Modos de la autentificación
216 label_auth_source_plural: Modos de la autentificación
206 label_subproject: Proyecto secundario
217 label_subproject: Proyecto secundario
207 label_subproject_plural: Proyectos secundarios
218 label_subproject_plural: Proyectos secundarios
208 label_min_max_length: Longitud mín - máx
219 label_min_max_length: Longitud mín - máx
209 label_list: Lista
220 label_list: Lista
210 label_date: Fecha
221 label_date: Fecha
211 label_integer: Número
222 label_integer: Número
212 label_boolean: Boleano
223 label_boolean: Boleano
213 label_string: Texto
224 label_string: Texto
214 label_text: Texto largo
225 label_text: Texto largo
215 label_attribute: Cualidad
226 label_attribute: Cualidad
216 label_attribute_plural: Cualidades
227 label_attribute_plural: Cualidades
217 label_download: %d Telecarga
228 label_download: %d Telecarga
218 label_download_plural: %d Telecargas
229 label_download_plural: %d Telecargas
219 label_no_data: Ningunos datos a exhibir
230 label_no_data: Ningunos datos a exhibir
220 label_change_status: Cambiar el estatuto
231 label_change_status: Cambiar el estatuto
221 label_history: Histórico
232 label_history: Histórico
222 label_attachment: Fichero
233 label_attachment: Fichero
223 label_attachment_new: Nuevo fichero
234 label_attachment_new: Nuevo fichero
224 label_attachment_delete: Suprimir el fichero
235 label_attachment_delete: Suprimir el fichero
225 label_attachment_plural: Ficheros
236 label_attachment_plural: Ficheros
226 label_report: Informe
237 label_report: Informe
227 label_report_plural: Informes
238 label_report_plural: Informes
228 label_news: Noticia
239 label_news: Noticia
229 label_news_new: Nueva noticia
240 label_news_new: Nueva noticia
230 label_news_plural: Noticias
241 label_news_plural: Noticias
231 label_news_latest: Últimas noticias
242 label_news_latest: Últimas noticias
232 label_news_view_all: Ver todas las noticias
243 label_news_view_all: Ver todas las noticias
233 label_change_log: Cambios
244 label_change_log: Cambios
234 label_settings: Configuración
245 label_settings: Configuración
235 label_overview: Vistazo
246 label_overview: Vistazo
236 label_version: Versión
247 label_version: Versión
237 label_version_new: Nueva versión
248 label_version_new: Nueva versión
238 label_version_plural: Versiónes
249 label_version_plural: Versiónes
239 label_confirmation: Confirmación
250 label_confirmation: Confirmación
240 label_export_to: Exportar a
251 label_export_to: Exportar a
241 label_read: Leer...
252 label_read: Leer...
242 label_public_projects: Proyectos publicos
253 label_public_projects: Proyectos publicos
243 label_open_issues: abierta
254 label_open_issues: abierta
244 label_open_issues_plural: abiertas
255 label_open_issues_plural: abiertas
245 label_closed_issues: cerrada
256 label_closed_issues: cerrada
246 label_closed_issues_plural: cerradas
257 label_closed_issues_plural: cerradas
247 label_total: Total
258 label_total: Total
248 label_permissions: Permisos
259 label_permissions: Permisos
249 label_current_status: Estado actual
260 label_current_status: Estado actual
250 label_new_statuses_allowed: Nuevos estatutos autorizados
261 label_new_statuses_allowed: Nuevos estatutos autorizados
251 label_all: todos
262 label_all: todos
252 label_none: ninguno
263 label_none: ninguno
253 label_next: Próximo
264 label_next: Próximo
254 label_previous: Precedente
265 label_previous: Precedente
255 label_used_by: Utilizado por
266 label_used_by: Utilizado por
256 label_details: Detalles...
267 label_details: Detalles...
257 label_add_note: Agregar una nota
268 label_add_note: Agregar una nota
258 label_per_page: Por la página
269 label_per_page: Por la página
259 label_calendar: Calendario
270 label_calendar: Calendario
260 label_months_from: meses de
271 label_months_from: meses de
261 label_gantt: Gantt
272 label_gantt: Gantt
262 label_internal: Interno
273 label_internal: Interno
263 label_last_changes: %d cambios del último
274 label_last_changes: %d cambios del último
264 label_change_view_all: Ver todos los cambios
275 label_change_view_all: Ver todos los cambios
265 label_personalize_page: Personalizar esta página
276 label_personalize_page: Personalizar esta página
266 label_comment: Comentario
277 label_comment: Comentario
267 label_comment_plural: Comentarios
278 label_comment_plural: Comentarios
268 label_comment_add: Agregar un comentario
279 label_comment_add: Agregar un comentario
269 label_comment_added: Comentario agregó
280 label_comment_added: Comentario agregó
270 label_comment_delete: Suprimir comentarios
281 label_comment_delete: Suprimir comentarios
271 label_query: Pregunta personalizada
282 label_query: Pregunta personalizada
272 label_query_plural: Preguntas personalizadas
283 label_query_plural: Preguntas personalizadas
273 label_query_new: Nueva preguntas
284 label_query_new: Nueva preguntas
274 label_filter_add: Agregar el filtro
285 label_filter_add: Agregar el filtro
275 label_filter_plural: Filtros
286 label_filter_plural: Filtros
276 label_equals: igual
287 label_equals: igual
277 label_not_equals: no igual
288 label_not_equals: no igual
278 label_in_less_than: en menos que
289 label_in_less_than: en menos que
279 label_in_more_than: en más que
290 label_in_more_than: en más que
280 label_in: en
291 label_in: en
281 label_today: hoy
292 label_today: hoy
282 label_less_than_ago: hace menos de
293 label_less_than_ago: hace menos de
283 label_more_than_ago: hace más de
294 label_more_than_ago: hace más de
284 label_ago: hace
295 label_ago: hace
285 label_contains: contiene
296 label_contains: contiene
286 label_not_contains: no contiene
297 label_not_contains: no contiene
287 label_day_plural: días
298 label_day_plural: días
288 label_repository: Depósito SVN
299 label_repository: Depósito SVN
289 label_browse: Hojear
300 label_browse: Hojear
290 label_modification: %d modificación
301 label_modification: %d modificación
291 label_modification_plural: %d modificaciones
302 label_modification_plural: %d modificaciones
292 label_revision: Revisión
303 label_revision: Revisión
293 label_revision_plural: Revisiones
304 label_revision_plural: Revisiones
294 label_added: agregado
305 label_added: agregado
295 label_modified: modificado
306 label_modified: modificado
296 label_deleted: suprimido
307 label_deleted: suprimido
297 label_latest_revision: La revisión más última
308 label_latest_revision: La revisión más última
298 label_view_revisions: Ver las revisiones
309 label_view_revisions: Ver las revisiones
299 label_max_size: Tamaño máximo
310 label_max_size: Tamaño máximo
300 label_on: en
311 label_on: en
301
312
302 button_login: Conexión
313 button_login: Conexión
303 button_submit: Someter
314 button_submit: Someter
304 button_save: Validar
315 button_save: Validar
305 button_check_all: Seleccionar todo
316 button_check_all: Seleccionar todo
306 button_uncheck_all: No seleccionar nada
317 button_uncheck_all: No seleccionar nada
307 button_delete: Suprimir
318 button_delete: Suprimir
308 button_create: Crear
319 button_create: Crear
309 button_test: Testar
320 button_test: Testar
310 button_edit: Modificar
321 button_edit: Modificar
311 button_add: Añadir
322 button_add: Añadir
312 button_change: Cambiar
323 button_change: Cambiar
313 button_apply: Aplicar
324 button_apply: Aplicar
314 button_clear: Anular
325 button_clear: Anular
315 button_lock: Bloquear
326 button_lock: Bloquear
316 button_unlock: Desbloquear
327 button_unlock: Desbloquear
317 button_download: Telecargar
328 button_download: Telecargar
318 button_list: Listar
329 button_list: Listar
319 button_view: Ver
330 button_view: Ver
320 button_move: Mover
331 button_move: Mover
321 button_back: Atrás
332 button_back: Atrás
322 button_cancel: Cancelar
333 button_cancel: Cancelar
323 button_activate: Activar
334 button_activate: Activar
324
335
325 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
336 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
326 text_regexp_info: eg. ^[A-Z0-9]+$
337 text_regexp_info: eg. ^[A-Z0-9]+$
327 text_min_max_length_info: 0 para ninguna restricción
338 text_min_max_length_info: 0 para ninguna restricción
328 text_possible_values_info: Los valores se separaron con |
339 text_possible_values_info: Los valores se separaron con |
329 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
340 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
330 text_workflow_edit: Seleccionar un workflow para actualizar
341 text_workflow_edit: Seleccionar un workflow para actualizar
331 text_are_you_sure: ¿ Estás seguro ?
342 text_are_you_sure: ¿ Estás seguro ?
332 text_journal_changed: cambiado de %s a %s
343 text_journal_changed: cambiado de %s a %s
333 text_journal_set_to: fijado a %s
344 text_journal_set_to: fijado a %s
334 text_journal_deleted: suprimido
345 text_journal_deleted: suprimido
335 text_tip_task_begin_day: tarea que comienza este día
346 text_tip_task_begin_day: tarea que comienza este día
336 text_tip_task_end_day: tarea que termina este día
347 text_tip_task_end_day: tarea que termina este día
337 text_tip_task_begin_end_day: tarea que comienza y termina este día
348 text_tip_task_begin_end_day: tarea que comienza y termina este día
338
349
339 default_role_manager: Manager
350 default_role_manager: Manager
340 default_role_developper: Desarrollador
351 default_role_developper: Desarrollador
341 default_role_reporter: Informador
352 default_role_reporter: Informador
342 default_tracker_bug: Anomalía
353 default_tracker_bug: Anomalía
343 default_tracker_feature: Evolución
354 default_tracker_feature: Evolución
344 default_tracker_support: Asistencia
355 default_tracker_support: Asistencia
345 default_issue_status_new: Nuevo
356 default_issue_status_new: Nuevo
346 default_issue_status_assigned: Asignada
357 default_issue_status_assigned: Asignada
347 default_issue_status_resolved: Resuelta
358 default_issue_status_resolved: Resuelta
348 default_issue_status_feedback: Comentario
359 default_issue_status_feedback: Comentario
349 default_issue_status_closed: Cerrada
360 default_issue_status_closed: Cerrada
350 default_issue_status_rejected: Rechazada
361 default_issue_status_rejected: Rechazada
351 default_doc_category_user: Documentación del usuario
362 default_doc_category_user: Documentación del usuario
352 default_doc_category_tech: Documentación tecnica
363 default_doc_category_tech: Documentación tecnica
353 default_priority_low: Bajo
364 default_priority_low: Bajo
354 default_priority_normal: Normal
365 default_priority_normal: Normal
355 default_priority_high: Alto
366 default_priority_high: Alto
356 default_priority_urgent: Urgente
367 default_priority_urgent: Urgente
357 default_priority_immediate: Ahora
368 default_priority_immediate: Ahora
358
369
359 enumeration_issue_priorities: Prioridad de las peticiones
370 enumeration_issue_priorities: Prioridad de las peticiones
360 enumeration_doc_categories: Categorías del documento
371 enumeration_doc_categories: Categorías del documento
@@ -1,360 +1,371
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: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
64 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
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 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
66 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
67
67
68 mail_subject_lost_password: Votre mot de passe redMine
68 mail_subject_lost_password: Votre mot de passe redMine
69 mail_subject_register: Activation de votre compte redMine
69 mail_subject_register: Activation de votre compte redMine
70
70
71 gui_validation_error: 1 erreur
71 gui_validation_error: 1 erreur
72 gui_validation_error_plural: %d erreurs
72 gui_validation_error_plural: %d erreurs
73
73
74 field_name: Nom
74 field_name: Nom
75 field_description: Description
75 field_description: Description
76 field_summary: Résumé
76 field_summary: Résumé
77 field_is_required: Obligatoire
77 field_is_required: Obligatoire
78 field_firstname: Prénom
78 field_firstname: Prénom
79 field_lastname: Nom
79 field_lastname: Nom
80 field_mail: Email
80 field_mail: Email
81 field_filename: Fichier
81 field_filename: Fichier
82 field_filesize: Taille
82 field_filesize: Taille
83 field_downloads: Téléchargements
83 field_downloads: Téléchargements
84 field_author: Auteur
84 field_author: Auteur
85 field_created_on: Créé
85 field_created_on: Créé
86 field_updated_on: Mis à jour
86 field_updated_on: Mis à jour
87 field_field_format: Format
87 field_field_format: Format
88 field_is_for_all: Pour tous les projets
88 field_is_for_all: Pour tous les projets
89 field_possible_values: Valeurs possibles
89 field_possible_values: Valeurs possibles
90 field_regexp: Expression régulière
90 field_regexp: Expression régulière
91 field_min_length: Longueur minimum
91 field_min_length: Longueur minimum
92 field_max_length: Longueur maximum
92 field_max_length: Longueur maximum
93 field_value: Valeur
93 field_value: Valeur
94 field_category: Catégorie
94 field_category: Catégorie
95 field_title: Titre
95 field_title: Titre
96 field_project: Projet
96 field_project: Projet
97 field_issue: Demande
97 field_issue: Demande
98 field_status: Statut
98 field_status: Statut
99 field_notes: Notes
99 field_notes: Notes
100 field_is_closed: Demande fermée
100 field_is_closed: Demande fermée
101 field_is_default: Statut par défaut
101 field_is_default: Statut par défaut
102 field_html_color: Couleur
102 field_html_color: Couleur
103 field_tracker: Tracker
103 field_tracker: Tracker
104 field_subject: Sujet
104 field_subject: Sujet
105 field_due_date: Date d'échéance
105 field_due_date: Date d'échéance
106 field_assigned_to: Assigné à
106 field_assigned_to: Assigné à
107 field_priority: Priorité
107 field_priority: Priorité
108 field_fixed_version: Version corrigée
108 field_fixed_version: Version corrigée
109 field_user: Utilisateur
109 field_user: Utilisateur
110 field_role: Rôle
110 field_role: Rôle
111 field_homepage: Site web
111 field_homepage: Site web
112 field_is_public: Public
112 field_is_public: Public
113 field_parent: Sous-projet de
113 field_parent: Sous-projet de
114 field_is_in_chlog: Demandes affichées dans l'historique
114 field_is_in_chlog: Demandes affichées dans l'historique
115 field_login: Identifiant
115 field_login: Identifiant
116 field_mail_notification: Notifications par mail
116 field_mail_notification: Notifications par mail
117 field_admin: Administrateur
117 field_admin: Administrateur
118 field_locked: Verrouillé
118 field_locked: Verrouillé
119 field_last_login_on: Dernière connexion
119 field_last_login_on: Dernière connexion
120 field_language: Langue
120 field_language: Langue
121 field_effective_date: Date
121 field_effective_date: Date
122 field_password: Mot de passe
122 field_password: Mot de passe
123 field_new_password: Nouveau mot de passe
123 field_new_password: Nouveau mot de passe
124 field_password_confirmation: Confirmation
124 field_password_confirmation: Confirmation
125 field_version: Version
125 field_version: Version
126 field_type: Type
126 field_type: Type
127 field_host: Hôte
127 field_host: Hôte
128 field_port: Port
128 field_port: Port
129 field_account: Compte
129 field_account: Compte
130 field_base_dn: Base DN
130 field_base_dn: Base DN
131 field_attr_login: Attribut Identifiant
131 field_attr_login: Attribut Identifiant
132 field_attr_firstname: Attribut Prénom
132 field_attr_firstname: Attribut Prénom
133 field_attr_lastname: Attribut Nom
133 field_attr_lastname: Attribut Nom
134 field_attr_mail: Attribut Email
134 field_attr_mail: Attribut Email
135 field_onthefly: Création des utilisateurs à la volée
135 field_onthefly: Création des utilisateurs à la volée
136 field_start_date: Début
136 field_start_date: Début
137 field_done_ratio: %% Réalisé
137 field_done_ratio: %% Réalisé
138 field_auth_source: Mode d'authentification
138 field_auth_source: Mode d'authentification
139 field_hide_mail: Cacher mon adresse mail
139 field_hide_mail: Cacher mon adresse mail
140 field_comment: Commentaire
140 field_comment: Commentaire
141 field_url: URL
141 field_url: URL
142
142
143 setting_app_title: Titre de l'application
144 setting_app_subtitle: Sous-titre de l'application
145 setting_welcome_text: Texte d'accueil
146 setting_default_language: Langue par défaut
147 setting_login_required: Authentif. obligatoire
148 setting_self_registration: Enregistrement autorisé
149 setting_attachment_max_size: Taille max des fichiers
150 setting_mail_from: Adresse d'émission
151 setting_host_name: Nom d'hôte
152 setting_text_formatting: Formatage du texte
153
143 label_user: Utilisateur
154 label_user: Utilisateur
144 label_user_plural: Utilisateurs
155 label_user_plural: Utilisateurs
145 label_user_new: Nouvel utilisateur
156 label_user_new: Nouvel utilisateur
146 label_project: Projet
157 label_project: Projet
147 label_project_new: Nouveau projet
158 label_project_new: Nouveau projet
148 label_project_plural: Projets
159 label_project_plural: Projets
149 label_project_latest: Derniers projets
160 label_project_latest: Derniers projets
150 label_issue: Demande
161 label_issue: Demande
151 label_issue_new: Nouvelle demande
162 label_issue_new: Nouvelle demande
152 label_issue_plural: Demandes
163 label_issue_plural: Demandes
153 label_issue_view_all: Voir toutes les demandes
164 label_issue_view_all: Voir toutes les demandes
154 label_document: Document
165 label_document: Document
155 label_document_new: Nouveau document
166 label_document_new: Nouveau document
156 label_document_plural: Documents
167 label_document_plural: Documents
157 label_role: Rôle
168 label_role: Rôle
158 label_role_plural: Rôles
169 label_role_plural: Rôles
159 label_role_new: Nouveau rôle
170 label_role_new: Nouveau rôle
160 label_role_and_permissions: Rôles et permissions
171 label_role_and_permissions: Rôles et permissions
161 label_member: Membre
172 label_member: Membre
162 label_member_new: Nouveau membre
173 label_member_new: Nouveau membre
163 label_member_plural: Membres
174 label_member_plural: Membres
164 label_tracker: Tracker
175 label_tracker: Tracker
165 label_tracker_plural: Trackers
176 label_tracker_plural: Trackers
166 label_tracker_new: Nouveau tracker
177 label_tracker_new: Nouveau tracker
167 label_workflow: Workflow
178 label_workflow: Workflow
168 label_issue_status: Statut de demandes
179 label_issue_status: Statut de demandes
169 label_issue_status_plural: Statuts de demandes
180 label_issue_status_plural: Statuts de demandes
170 label_issue_status_new: Nouveau statut
181 label_issue_status_new: Nouveau statut
171 label_issue_category: Catégorie de demandes
182 label_issue_category: Catégorie de demandes
172 label_issue_category_plural: Catégories de demandes
183 label_issue_category_plural: Catégories de demandes
173 label_issue_category_new: Nouvelle catégorie
184 label_issue_category_new: Nouvelle catégorie
174 label_custom_field: Champ personnalisé
185 label_custom_field: Champ personnalisé
175 label_custom_field_plural: Champs personnalisés
186 label_custom_field_plural: Champs personnalisés
176 label_custom_field_new: Nouveau champ personnalisé
187 label_custom_field_new: Nouveau champ personnalisé
177 label_enumerations: Listes de valeurs
188 label_enumerations: Listes de valeurs
178 label_enumeration_new: Nouvelle valeur
189 label_enumeration_new: Nouvelle valeur
179 label_information: Information
190 label_information: Information
180 label_information_plural: Informations
191 label_information_plural: Informations
181 label_please_login: Identification
192 label_please_login: Identification
182 label_register: S'enregistrer
193 label_register: S'enregistrer
183 label_password_lost: Mot de passe perdu
194 label_password_lost: Mot de passe perdu
184 label_home: Accueil
195 label_home: Accueil
185 label_my_page: Ma page
196 label_my_page: Ma page
186 label_my_account: Mon compte
197 label_my_account: Mon compte
187 label_my_projects: Mes projets
198 label_my_projects: Mes projets
188 label_administration: Administration
199 label_administration: Administration
189 label_login: Connexion
200 label_login: Connexion
190 label_logout: Déconnexion
201 label_logout: Déconnexion
191 label_help: Aide
202 label_help: Aide
192 label_reported_issues: Demandes soumises
203 label_reported_issues: Demandes soumises
193 label_assigned_to_me_issues: Demandes qui me sont assignées
204 label_assigned_to_me_issues: Demandes qui me sont assignées
194 label_last_login: Dernière connexion
205 label_last_login: Dernière connexion
195 label_last_updates: Dernière mise à jour
206 label_last_updates: Dernière mise à jour
196 label_last_updates_plural: %d dernières mises à jour
207 label_last_updates_plural: %d dernières mises à jour
197 label_registered_on: Inscrit le
208 label_registered_on: Inscrit le
198 label_activity: Activité
209 label_activity: Activité
199 label_new: Nouveau
210 label_new: Nouveau
200 label_logged_as: Connecté en tant que
211 label_logged_as: Connecté en tant que
201 label_environment: Environnement
212 label_environment: Environnement
202 label_authentication: Authentification
213 label_authentication: Authentification
203 label_auth_source: Mode d'authentification
214 label_auth_source: Mode d'authentification
204 label_auth_source_new: Nouveau mode d'authentification
215 label_auth_source_new: Nouveau mode d'authentification
205 label_auth_source_plural: Modes d'authentification
216 label_auth_source_plural: Modes d'authentification
206 label_subproject: Sous-projet
217 label_subproject: Sous-projet
207 label_subproject_plural: Sous-projets
218 label_subproject_plural: Sous-projets
208 label_min_max_length: Longueurs mini - maxi
219 label_min_max_length: Longueurs mini - maxi
209 label_list: Liste
220 label_list: Liste
210 label_date: Date
221 label_date: Date
211 label_integer: Entier
222 label_integer: Entier
212 label_boolean: Booléen
223 label_boolean: Booléen
213 label_string: Texte
224 label_string: Texte
214 label_text: Texte long
225 label_text: Texte long
215 label_attribute: Attribut
226 label_attribute: Attribut
216 label_attribute_plural: Attributs
227 label_attribute_plural: Attributs
217 label_download: %d Téléchargement
228 label_download: %d Téléchargement
218 label_download_plural: %d Téléchargements
229 label_download_plural: %d Téléchargements
219 label_no_data: Aucune donnée à afficher
230 label_no_data: Aucune donnée à afficher
220 label_change_status: Changer le statut
231 label_change_status: Changer le statut
221 label_history: Historique
232 label_history: Historique
222 label_attachment: Fichier
233 label_attachment: Fichier
223 label_attachment_new: Nouveau fichier
234 label_attachment_new: Nouveau fichier
224 label_attachment_delete: Supprimer le fichier
235 label_attachment_delete: Supprimer le fichier
225 label_attachment_plural: Fichiers
236 label_attachment_plural: Fichiers
226 label_report: Rapport
237 label_report: Rapport
227 label_report_plural: Rapports
238 label_report_plural: Rapports
228 label_news: Annonce
239 label_news: Annonce
229 label_news_new: Nouvelle annonce
240 label_news_new: Nouvelle annonce
230 label_news_plural: Annonces
241 label_news_plural: Annonces
231 label_news_latest: Dernières annonces
242 label_news_latest: Dernières annonces
232 label_news_view_all: Voir toutes les annonces
243 label_news_view_all: Voir toutes les annonces
233 label_change_log: Historique
244 label_change_log: Historique
234 label_settings: Configuration
245 label_settings: Configuration
235 label_overview: Aperçu
246 label_overview: Aperçu
236 label_version: Version
247 label_version: Version
237 label_version_new: Nouvelle version
248 label_version_new: Nouvelle version
238 label_version_plural: Versions
249 label_version_plural: Versions
239 label_confirmation: Confirmation
250 label_confirmation: Confirmation
240 label_export_to: Exporter en
251 label_export_to: Exporter en
241 label_read: Lire...
252 label_read: Lire...
242 label_public_projects: Projets publics
253 label_public_projects: Projets publics
243 label_open_issues: ouvert
254 label_open_issues: ouvert
244 label_open_issues_plural: ouverts
255 label_open_issues_plural: ouverts
245 label_closed_issues: fermé
256 label_closed_issues: fermé
246 label_closed_issues_plural: fermés
257 label_closed_issues_plural: fermés
247 label_total: Total
258 label_total: Total
248 label_permissions: Permissions
259 label_permissions: Permissions
249 label_current_status: Statut actuel
260 label_current_status: Statut actuel
250 label_new_statuses_allowed: Nouveaux statuts autorisés
261 label_new_statuses_allowed: Nouveaux statuts autorisés
251 label_all: tous
262 label_all: tous
252 label_none: aucun
263 label_none: aucun
253 label_next: Suivant
264 label_next: Suivant
254 label_previous: Précédent
265 label_previous: Précédent
255 label_used_by: Utilisé par
266 label_used_by: Utilisé par
256 label_details: Détails...
267 label_details: Détails...
257 label_add_note: Ajouter une note
268 label_add_note: Ajouter une note
258 label_per_page: Par page
269 label_per_page: Par page
259 label_calendar: Calendrier
270 label_calendar: Calendrier
260 label_months_from: mois depuis
271 label_months_from: mois depuis
261 label_gantt: Gantt
272 label_gantt: Gantt
262 label_internal: Interne
273 label_internal: Interne
263 label_last_changes: %d derniers changements
274 label_last_changes: %d derniers changements
264 label_change_view_all: Voir tous les changements
275 label_change_view_all: Voir tous les changements
265 label_personalize_page: Personnaliser cette page
276 label_personalize_page: Personnaliser cette page
266 label_comment: Commentaire
277 label_comment: Commentaire
267 label_comment_plural: Commentaires
278 label_comment_plural: Commentaires
268 label_comment_add: Ajouter un commentaire
279 label_comment_add: Ajouter un commentaire
269 label_comment_added: Commentaire ajouté
280 label_comment_added: Commentaire ajouté
270 label_comment_delete: Supprimer les commentaires
281 label_comment_delete: Supprimer les commentaires
271 label_query: Rapport personnalisé
282 label_query: Rapport personnalisé
272 label_query_plural: Rapports personnalisés
283 label_query_plural: Rapports personnalisés
273 label_query_new: Nouveau rapport
284 label_query_new: Nouveau rapport
274 label_filter_add: Ajouter le filtre
285 label_filter_add: Ajouter le filtre
275 label_filter_plural: Filtres
286 label_filter_plural: Filtres
276 label_equals: égal
287 label_equals: égal
277 label_not_equals: différent
288 label_not_equals: différent
278 label_in_less_than: dans moins de
289 label_in_less_than: dans moins de
279 label_in_more_than: dans plus de
290 label_in_more_than: dans plus de
280 label_in: dans
291 label_in: dans
281 label_today: aujourd'hui
292 label_today: aujourd'hui
282 label_less_than_ago: il y a moins de
293 label_less_than_ago: il y a moins de
283 label_more_than_ago: il y a plus de
294 label_more_than_ago: il y a plus de
284 label_ago: il y a
295 label_ago: il y a
285 label_contains: contient
296 label_contains: contient
286 label_not_contains: ne contient pas
297 label_not_contains: ne contient pas
287 label_day_plural: jours
298 label_day_plural: jours
288 label_repository: Dépôt SVN
299 label_repository: Dépôt SVN
289 label_browse: Parcourir
300 label_browse: Parcourir
290 label_modification: %d modification
301 label_modification: %d modification
291 label_modification_plural: %d modifications
302 label_modification_plural: %d modifications
292 label_revision: Révision
303 label_revision: Révision
293 label_revision_plural: Révisions
304 label_revision_plural: Révisions
294 label_added: ajouté
305 label_added: ajouté
295 label_modified: modifié
306 label_modified: modifié
296 label_deleted: supprimé
307 label_deleted: supprimé
297 label_latest_revision: Dernière révision
308 label_latest_revision: Dernière révision
298 label_view_revisions: Voir les révisions
309 label_view_revisions: Voir les révisions
299 label_max_size: Taille maximale
310 label_max_size: Taille maximale
300 label_on: sur
311 label_on: sur
301
312
302 button_login: Connexion
313 button_login: Connexion
303 button_submit: Soumettre
314 button_submit: Soumettre
304 button_save: Sauvegarder
315 button_save: Sauvegarder
305 button_check_all: Tout cocher
316 button_check_all: Tout cocher
306 button_uncheck_all: Tout décocher
317 button_uncheck_all: Tout décocher
307 button_delete: Supprimer
318 button_delete: Supprimer
308 button_create: Créer
319 button_create: Créer
309 button_test: Tester
320 button_test: Tester
310 button_edit: Modifier
321 button_edit: Modifier
311 button_add: Ajouter
322 button_add: Ajouter
312 button_change: Changer
323 button_change: Changer
313 button_apply: Appliquer
324 button_apply: Appliquer
314 button_clear: Effacer
325 button_clear: Effacer
315 button_lock: Verrouiller
326 button_lock: Verrouiller
316 button_unlock: Déverrouiller
327 button_unlock: Déverrouiller
317 button_download: Télécharger
328 button_download: Télécharger
318 button_list: Lister
329 button_list: Lister
319 button_view: Voir
330 button_view: Voir
320 button_move: Déplacer
331 button_move: Déplacer
321 button_back: Retour
332 button_back: Retour
322 button_cancel: Annuler
333 button_cancel: Annuler
323 button_activate: Activer
334 button_activate: Activer
324
335
325 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
336 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
326 text_regexp_info: ex. ^[A-Z0-9]+$
337 text_regexp_info: ex. ^[A-Z0-9]+$
327 text_min_max_length_info: 0 pour aucune restriction
338 text_min_max_length_info: 0 pour aucune restriction
328 text_possible_values_info: valeurs séparées par |
339 text_possible_values_info: valeurs séparées par |
329 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
340 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
330 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
341 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
331 text_are_you_sure: Etes-vous sûr ?
342 text_are_you_sure: Etes-vous sûr ?
332 text_journal_changed: changé de %s à %s
343 text_journal_changed: changé de %s à %s
333 text_journal_set_to: mis à %s
344 text_journal_set_to: mis à %s
334 text_journal_deleted: supprimé
345 text_journal_deleted: supprimé
335 text_tip_task_begin_day: tâche commençant ce jour
346 text_tip_task_begin_day: tâche commençant ce jour
336 text_tip_task_end_day: tâche finissant ce jour
347 text_tip_task_end_day: tâche finissant ce jour
337 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
348 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
338
349
339 default_role_manager: Manager
350 default_role_manager: Manager
340 default_role_developper: Développeur
351 default_role_developper: Développeur
341 default_role_reporter: Rapporteur
352 default_role_reporter: Rapporteur
342 default_tracker_bug: Anomalie
353 default_tracker_bug: Anomalie
343 default_tracker_feature: Evolution
354 default_tracker_feature: Evolution
344 default_tracker_support: Assistance
355 default_tracker_support: Assistance
345 default_issue_status_new: Nouveau
356 default_issue_status_new: Nouveau
346 default_issue_status_assigned: Assigné
357 default_issue_status_assigned: Assigné
347 default_issue_status_resolved: Résolu
358 default_issue_status_resolved: Résolu
348 default_issue_status_feedback: Commentaire
359 default_issue_status_feedback: Commentaire
349 default_issue_status_closed: Fermé
360 default_issue_status_closed: Fermé
350 default_issue_status_rejected: Rejeté
361 default_issue_status_rejected: Rejeté
351 default_doc_category_user: Documentation utilisateur
362 default_doc_category_user: Documentation utilisateur
352 default_doc_category_tech: Documentation technique
363 default_doc_category_tech: Documentation technique
353 default_priority_low: Bas
364 default_priority_low: Bas
354 default_priority_normal: Normal
365 default_priority_normal: Normal
355 default_priority_high: Haut
366 default_priority_high: Haut
356 default_priority_urgent: Urgent
367 default_priority_urgent: Urgent
357 default_priority_immediate: Immédiat
368 default_priority_immediate: Immédiat
358
369
359 enumeration_issue_priorities: Priorités des demandes
370 enumeration_issue_priorities: Priorités des demandes
360 enumeration_doc_categories: Catégories des documents
371 enumeration_doc_categories: Catégories des documents
General Comments 0
You need to be logged in to leave comments. Login now