##// END OF EJS Templates
admin menu modification...
Jean-Philippe Lang -
r339:8fdef1f82098
parent child
Show More
@@ -0,0 +1,25
1 <div id="menuAdmin" class="menu" onmouseover="menuMouseover(event)">
2 <a class="menuItem" href="#" onmouseover="menuItemMouseover(event,'menuProjects');"><span class="menuItemText"><%=l(:label_project_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
3 <a class="menuItem" href="#" onmouseover="menuItemMouseover(event,'menuUsers');"><span class="menuItemText"><%=l(:label_user_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
4 <%= link_to l(:label_role_and_permissions), {:controller => 'roles' }, :class => "menuItem" %>
5 <a class="menuItem" href="#" onmouseover="menuItemMouseover(event,'menuTrackers');"><span class="menuItemText"><%=l(:label_issue_tracking)%></span><span class="menuItemArrow">&#9654;</span></a>
6 <%= link_to l(:label_custom_field_plural), {:controller => 'custom_fields' }, :class => "menuItem" %>
7 <%= link_to l(:label_enumerations), {:controller => 'enumerations' }, :class => "menuItem" %>
8 <%= link_to l(:field_mail_notification), {:controller => 'admin', :action => 'mail_options' }, :class => "menuItem" %>
9 <%= link_to l(:label_authentication), {:controller => 'auth_sources' }, :class => "menuItem" %>
10 <%= link_to l(:label_settings), {:controller => 'settings' }, :class => "menuItem" %>
11 <%= link_to l(:label_information_plural), {:controller => 'admin', :action => 'info' }, :class => "menuItem" %>
12 </div>
13 <div id="menuTrackers" class="menu">
14 <%= link_to l(:label_tracker_plural), {:controller => 'trackers' }, :class => "menuItem" %>
15 <%= link_to l(:label_issue_status_plural), {:controller => 'issue_statuses' }, :class => "menuItem" %>
16 <%= link_to l(:label_workflow), {:controller => 'roles', :action => 'workflow' }, :class => "menuItem" %>
17 </div>
18 <div id="menuProjects" class="menu">
19 <%= link_to l(:button_list), {:controller => 'admin', :action => 'projects' }, :class => "menuItem" %>
20 <%= link_to l(:label_new), {:controller => 'projects', :action => 'add' }, :class => "menuItem" %>
21 </div>
22 <div id="menuUsers" class="menu">
23 <%= link_to l(:button_list), {:controller => 'users' }, :class => "menuItem" %>
24 <%= link_to l(:label_new), {:controller => 'users', :action => 'add' }, :class => "menuItem" %>
25 </div>
@@ -1,147 +1,130
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.app_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.app_title %></h1>
26 <h1><%= Setting.app_title %></h1>
27 <h2><%= Setting.app_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><%= link_to l(:label_home), { :controller => 'welcome' }, :class => "icon icon-home" %></li>
36 <li><%= link_to l(:label_home), { :controller => 'welcome' }, :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 <%= render :partial => 'admin/menu' %>
64 <a class="menuItem" href="<%= url_for :controller => 'admin', :action => 'projects' %>" onmouseover="menuItemMouseover(event,'menuProjects');"><span class="menuItemText"><%=l(:label_project_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
65 <a class="menuItem" href="<%= url_for :controller => 'users' %>" onmouseover="menuItemMouseover(event,'menuUsers');"><span class="menuItemText"><%=l(:label_user_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
66 <%= link_to l(:label_role_and_permissions), {:controller => 'roles' }, :class => "menuItem" %>
67 <a class="menuItem" href="<%= url_for :controller => 'trackers' %>" onmouseover="menuItemMouseover(event,'menuTrackers');"><span class="menuItemText"><%=l(:label_tracker_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
68 <%= link_to l(:label_custom_field_plural), {:controller => 'custom_fields' }, :class => "menuItem" %>
69 <%= link_to l(:label_enumerations), {:controller => 'enumerations' }, :class => "menuItem" %>
70 <%= link_to l(:field_mail_notification), {:controller => 'admin', :action => 'mail_options' }, :class => "menuItem" %>
71 <%= link_to l(:label_authentication), {:controller => 'auth_sources' }, :class => "menuItem" %>
72 <%= link_to l(:label_settings), {:controller => 'settings' }, :class => "menuItem" %>
73 <%= link_to l(:label_information_plural), {:controller => 'admin', :action => 'info' }, :class => "menuItem" %>
74 </div>
75 <div id="menuTrackers" class="menu">
76 <%= link_to l(:label_issue_status_plural), {:controller => 'issue_statuses' }, :class => "menuItem" %>
77 <%= link_to l(:label_workflow), {:controller => 'roles', :action => 'workflow' }, :class => "menuItem" %>
78 </div>
79 <div id="menuProjects" class="menu"><%= link_to l(:label_new), {:controller => 'projects', :action => 'add' }, :class => "menuItem" %></div>
80 <div id="menuUsers" class="menu"><%= link_to l(:label_new), {:controller => 'users', :action => 'add' }, :class => "menuItem" %></a></div>
81 <% end %>
64 <% end %>
82
65
83 <% unless @project.nil? || @project.id.nil? %>
66 <% unless @project.nil? || @project.id.nil? %>
84 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
67 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
85 <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %>
68 <%= 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" %>
69 <%= 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, :set_filter => 1 }, :class => "menuItem" %>
70 <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 }, :class => "menuItem" %>
88 <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %>
71 <%= 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" %>
72 <%= 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" %>
73 <%= 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" %>
74 <%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %>
92 <%= link_to l(:label_roadmap), {:controller => 'projects', :action => 'roadmap', :id => @project }, :class => "menuItem" %>
75 <%= link_to l(:label_roadmap), {:controller => 'projects', :action => 'roadmap', :id => @project }, :class => "menuItem" %>
93 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
76 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
94 <%= link_to l(:label_wiki), {:controller => 'wiki', :id => @project, :page => nil }, :class => "menuItem" if @project.wiki and !@project.wiki.new_record? %>
77 <%= link_to l(:label_wiki), {:controller => 'wiki', :id => @project, :page => nil }, :class => "menuItem" if @project.wiki and !@project.wiki.new_record? %>
95 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
78 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
96 <%= link_to l(:label_search), {:controller => 'projects', :action => 'search', :id => @project }, :class => "menuItem" %>
79 <%= link_to l(:label_search), {:controller => 'projects', :action => 'search', :id => @project }, :class => "menuItem" %>
97 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
80 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
98 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
81 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
99 </div>
82 </div>
100 <% end %>
83 <% end %>
101
84
102
85
103 <div id="subcontent">
86 <div id="subcontent">
104
87
105 <% unless @project.nil? || @project.id.nil? %>
88 <% unless @project.nil? || @project.id.nil? %>
106 <h2><%= @project.name %></h2>
89 <h2><%= @project.name %></h2>
107 <ul class="menublock">
90 <ul class="menublock">
108 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
91 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
109 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
92 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
110 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
93 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
111 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></li>
94 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></li>
112 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
95 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
113 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
96 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
114 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
97 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
115 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
98 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
116 <li><%= link_to l(:label_roadmap), :controller => 'projects', :action => 'roadmap', :id => @project %></li>
99 <li><%= link_to l(:label_roadmap), :controller => 'projects', :action => 'roadmap', :id => @project %></li>
117 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
100 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
118 <li><%= link_to l(:label_wiki), :controller => 'wiki', :id => @project, :page => nil if @project.wiki and !@project.wiki.new_record? %></li>
101 <li><%= link_to l(:label_wiki), :controller => 'wiki', :id => @project, :page => nil if @project.wiki and !@project.wiki.new_record? %></li>
119 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
102 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
120 <li><%= link_to l(:label_search), :controller => 'projects', :action => 'search', :id => @project %></li>
103 <li><%= link_to l(:label_search), :controller => 'projects', :action => 'search', :id => @project %></li>
121 <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li>
104 <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li>
122 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
105 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
123 </ul>
106 </ul>
124 <% end %>
107 <% end %>
125
108
126 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
109 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
127 <h2><%=l(:label_my_projects) %></h2>
110 <h2><%=l(:label_my_projects) %></h2>
128 <ul class="menublock">
111 <ul class="menublock">
129 <% for membership in @logged_in_user.memberships %>
112 <% for membership in @logged_in_user.memberships %>
130 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
113 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
131 <% end %>
114 <% end %>
132 </ul>
115 </ul>
133 <% end %>
116 <% end %>
134 </div>
117 </div>
135
118
136 <div id="content">
119 <div id="content">
137 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
120 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
138 <%= @content_for_layout %>
121 <%= @content_for_layout %>
139 </div>
122 </div>
140
123
141 <div id="footer">
124 <div id="footer">
142 <p><a href="http://redmine.rubyforge.org/">redMine</a> <small><%= Redmine::VERSION %> &copy 2006-2007 Jean-Philippe Lang</small></p>
125 <p><a href="http://redmine.rubyforge.org/">redMine</a> <small><%= Redmine::VERSION %> &copy 2006-2007 Jean-Philippe Lang</small></p>
143 </div>
126 </div>
144
127
145 </div>
128 </div>
146 </body>
129 </body>
147 </html> No newline at end of file
130 </html>
@@ -1,59 +1,59
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %>
2 <%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %>
3 </div>
3 </div>
4
4
5 <h2><%=l(:label_overview)%></h2>
5 <h2><%=l(:label_overview)%></h2>
6
6
7 <div class="splitcontentleft">
7 <div class="splitcontentleft">
8 <%= simple_format(auto_link(h(@project.description))) %>
8 <%= simple_format(auto_link(h(@project.description))) %>
9 <ul>
9 <ul>
10 <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
10 <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
11 <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
11 <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
12 <% for custom_value in @custom_values %>
12 <% for custom_value in @custom_values %>
13 <% if !custom_value.value.empty? %>
13 <% if !custom_value.value.empty? %>
14 <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
14 <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
15 <% end %>
15 <% end %>
16 <% end %>
16 <% end %>
17 </ul>
17 </ul>
18
18
19 <div class="box">
19 <div class="box">
20 <div class="contextual">
20 <div class="contextual">
21 <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %>
21 <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %>
22 </div>
22 </div>
23 <h3 class="icon22 icon22-tracker"><%=l(:label_tracker_plural)%></h3>
23 <h3 class="icon22 icon22-tracker"><%=l(:label_issue_tracking)%></h3>
24 <ul>
24 <ul>
25 <% for tracker in @trackers %>
25 <% for tracker in @trackers %>
26 <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
26 <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
27 :set_filter => 1,
27 :set_filter => 1,
28 "tracker_id" => tracker.id %>:
28 "tracker_id" => tracker.id %>:
29 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
29 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
30 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
30 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
31 <% end %>
31 <% end %>
32 </ul>
32 </ul>
33 <p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p>
33 <p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p>
34 </div>
34 </div>
35 </div>
35 </div>
36
36
37 <div class="splitcontentright">
37 <div class="splitcontentright">
38 <div class="box">
38 <div class="box">
39 <h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
39 <h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
40 <% for member in @members %>
40 <% for member in @members %>
41 <%= link_to_user member.user %> (<%= member.role.name %>)<br />
41 <%= link_to_user member.user %> (<%= member.role.name %>)<br />
42 <% end %>
42 <% end %>
43 </div>
43 </div>
44
44
45 <% if @subprojects %>
45 <% if @subprojects %>
46 <div class="box">
46 <div class="box">
47 <h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3>
47 <h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3>
48 <% for subproject in @subprojects %>
48 <% for subproject in @subprojects %>
49 <%= link_to subproject.name, :action => 'show', :id => subproject %><br />
49 <%= link_to subproject.name, :action => 'show', :id => subproject %><br />
50 <% end %>
50 <% end %>
51 </div>
51 </div>
52 <% end %>
52 <% end %>
53
53
54 <div class="box">
54 <div class="box">
55 <h3><%=l(:label_news_latest)%></h3>
55 <h3><%=l(:label_news_latest)%></h3>
56 <%= render :partial => 'news/news', :collection => @news %>
56 <%= render :partial => 'news/news', :collection => @news %>
57 <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p>
57 <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p>
58 </div>
58 </div>
59 </div> No newline at end of file
59 </div>
@@ -1,392 +1,393
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_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
52
52
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
54 notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort
54 notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort
55 notice_account_password_updated: Passwort wurde erfolgreich aktualisiert.
55 notice_account_password_updated: Passwort wurde erfolgreich aktualisiert.
56 notice_account_wrong_password: Falsches Passwort
56 notice_account_wrong_password: Falsches Passwort
57 notice_account_register_done: Konto wurde erfolgreich verursacht.
57 notice_account_register_done: Konto wurde erfolgreich verursacht.
58 notice_account_unknown_email: Unbekannter Benutzer.
58 notice_account_unknown_email: Unbekannter Benutzer.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern.
60 notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden.
60 notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden.
61 notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen.
61 notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen.
62 notice_successful_create: Erfolgreiche Kreation.
62 notice_successful_create: Erfolgreiche Kreation.
63 notice_successful_update: Erfolgreiches Update.
63 notice_successful_update: Erfolgreiches Update.
64 notice_successful_delete: Erfolgreiche Auslassung.
64 notice_successful_delete: Erfolgreiche Auslassung.
65 notice_successful_connection: Erfolgreicher Anschluß.
65 notice_successful_connection: Erfolgreicher Anschluß.
66 notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden.
66 notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
68 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
69
69
70 mail_subject_lost_password: Dein redMine Kennwort
70 mail_subject_lost_password: Dein redMine Kennwort
71 mail_subject_register: redMine Kontoaktivierung
71 mail_subject_register: redMine Kontoaktivierung
72
72
73 gui_validation_error: 1 Störung
73 gui_validation_error: 1 Störung
74 gui_validation_error_plural: %d Störungen
74 gui_validation_error_plural: %d Störungen
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Beschreibung
77 field_description: Beschreibung
78 field_summary: Zusammenfassung
78 field_summary: Zusammenfassung
79 field_is_required: Erforderlich
79 field_is_required: Erforderlich
80 field_firstname: Vorname
80 field_firstname: Vorname
81 field_lastname: Nachname
81 field_lastname: Nachname
82 field_mail: Email
82 field_mail: Email
83 field_filename: Datei
83 field_filename: Datei
84 field_filesize: Grootte
84 field_filesize: Grootte
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Angelegt
87 field_created_on: Angelegt
88 field_updated_on: aktualisiert
88 field_updated_on: aktualisiert
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Für alle Projekte
90 field_is_for_all: Für alle Projekte
91 field_possible_values: Mögliche Werte
91 field_possible_values: Mögliche Werte
92 field_regexp: Regulärer Ausdruck
92 field_regexp: Regulärer Ausdruck
93 field_min_length: Minimale Länge
93 field_min_length: Minimale Länge
94 field_max_length: Maximale Länge
94 field_max_length: Maximale Länge
95 field_value: Wert
95 field_value: Wert
96 field_category: Kategorie
96 field_category: Kategorie
97 field_title: Títel
97 field_title: Títel
98 field_project: Projekt
98 field_project: Projekt
99 field_issue: Antrag
99 field_issue: Antrag
100 field_status: Status
100 field_status: Status
101 field_notes: Anmerkungen
101 field_notes: Anmerkungen
102 field_is_closed: Problem erledigt
102 field_is_closed: Problem erledigt
103 field_is_default: Rückstellung status
103 field_is_default: Rückstellung status
104 field_html_color: Farbe
104 field_html_color: Farbe
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Thema
106 field_subject: Thema
107 field_due_date: Abgabedatum
107 field_due_date: Abgabedatum
108 field_assigned_to: Zugewiesen an
108 field_assigned_to: Zugewiesen an
109 field_priority: Priorität
109 field_priority: Priorität
110 field_fixed_version: Erledigt in Version
110 field_fixed_version: Erledigt in Version
111 field_user: Benutzer
111 field_user: Benutzer
112 field_role: Rolle
112 field_role: Rolle
113 field_homepage: Startseite
113 field_homepage: Startseite
114 field_is_public: Öffentlich
114 field_is_public: Öffentlich
115 field_parent: Subprojekt von
115 field_parent: Subprojekt von
116 field_is_in_chlog: Ansicht der Issues in der Historie
116 field_is_in_chlog: Ansicht der Issues in der Historie
117 field_is_in_roadmap: Ansicht der Issues in der Roadmap
117 field_is_in_roadmap: Ansicht der Issues in der Roadmap
118 field_login: Mitgliedsname
118 field_login: Mitgliedsname
119 field_mail_notification: Mailbenachrichtigung
119 field_mail_notification: Mailbenachrichtigung
120 field_admin: Administrator
120 field_admin: Administrator
121 field_locked: Gesperrt
121 field_locked: Gesperrt
122 field_last_login_on: Letzte Anmeldung
122 field_last_login_on: Letzte Anmeldung
123 field_language: Sprache
123 field_language: Sprache
124 field_effective_date: Datum
124 field_effective_date: Datum
125 field_password: Passwort
125 field_password: Passwort
126 field_new_password: Neues Passwort
126 field_new_password: Neues Passwort
127 field_password_confirmation: Bestätigung
127 field_password_confirmation: Bestätigung
128 field_version: Version
128 field_version: Version
129 field_type: Typ
129 field_type: Typ
130 field_host: Host
130 field_host: Host
131 field_port: Port
131 field_port: Port
132 field_account: Konto
132 field_account: Konto
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Mitgliedsnameattribut
134 field_attr_login: Mitgliedsnameattribut
135 field_attr_firstname: Vornamensattribut
135 field_attr_firstname: Vornamensattribut
136 field_attr_lastname: Namenattribut
136 field_attr_lastname: Namenattribut
137 field_attr_mail: Emailattribut
137 field_attr_mail: Emailattribut
138 field_onthefly: On-the-fly Benutzerkreation
138 field_onthefly: On-the-fly Benutzerkreation
139 field_start_date: Beginn
139 field_start_date: Beginn
140 field_done_ratio: %% Getan
140 field_done_ratio: %% Getan
141 field_auth_source: Authentisierung Modus
141 field_auth_source: Authentisierung Modus
142 field_hide_mail: Mein email address verstecken
142 field_hide_mail: Mein email address verstecken
143 field_comment: Anmerkung
143 field_comment: Anmerkung
144 field_url: URL
144 field_url: URL
145 field_start_page: Hauptseite
145 field_start_page: Hauptseite
146
146
147 setting_app_title: Applikation Titel
147 setting_app_title: Applikation Titel
148 setting_app_subtitle: Applikation Untertitel
148 setting_app_subtitle: Applikation Untertitel
149 setting_welcome_text: Willkommener Text
149 setting_welcome_text: Willkommener Text
150 setting_default_language: Rückstellung Sprache
150 setting_default_language: Rückstellung Sprache
151 setting_login_required: Authent. erfordert
151 setting_login_required: Authent. erfordert
152 setting_self_registration: Selbstausrichtung ermöglicht
152 setting_self_registration: Selbstausrichtung ermöglicht
153 setting_attachment_max_size: Dateimaximumgröße
153 setting_attachment_max_size: Dateimaximumgröße
154 setting_issues_export_limit: Issues export limit
154 setting_issues_export_limit: Issues export limit
155 setting_mail_from: Emission address
155 setting_mail_from: Emission address
156 setting_host_name: Host Name
156 setting_host_name: Host Name
157 setting_text_formatting: Textformatierung
157 setting_text_formatting: Textformatierung
158 setting_wiki_compression: Wiki Geschichte Kompression
158 setting_wiki_compression: Wiki Geschichte Kompression
159
159
160 label_user: Benutzer
160 label_user: Benutzer
161 label_user_plural: Benutzer
161 label_user_plural: Benutzer
162 label_user_new: Neuer Benutzer
162 label_user_new: Neuer Benutzer
163 label_project: Projekt
163 label_project: Projekt
164 label_project_new: Neues Projekt
164 label_project_new: Neues Projekt
165 label_project_plural: Projekte
165 label_project_plural: Projekte
166 label_project_latest: Neueste Projekte
166 label_project_latest: Neueste Projekte
167 label_issue: Antrag
167 label_issue: Antrag
168 label_issue_new: Neue Antrag
168 label_issue_new: Neue Antrag
169 label_issue_plural: Anträge
169 label_issue_plural: Anträge
170 label_issue_view_all: Alle Anträge ansehen
170 label_issue_view_all: Alle Anträge ansehen
171 label_document: Dokument
171 label_document: Dokument
172 label_document_new: Neues Dokument
172 label_document_new: Neues Dokument
173 label_document_plural: Dokumente
173 label_document_plural: Dokumente
174 label_role: Rolle
174 label_role: Rolle
175 label_role_plural: Rollen
175 label_role_plural: Rollen
176 label_role_new: Neue Rolle
176 label_role_new: Neue Rolle
177 label_role_and_permissions: Rollen und Rechte
177 label_role_and_permissions: Rollen und Rechte
178 label_member: Mitglied
178 label_member: Mitglied
179 label_member_new: Neues Mitglied
179 label_member_new: Neues Mitglied
180 label_member_plural: Mitglieder
180 label_member_plural: Mitglieder
181 label_tracker: Tracker
181 label_tracker: Tracker
182 label_tracker_plural: Tracker
182 label_tracker_plural: Tracker
183 label_tracker_new: Neuer Tracker
183 label_tracker_new: Neuer Tracker
184 label_workflow: Workflow
184 label_workflow: Workflow
185 label_issue_status: Antrag Status
185 label_issue_status: Antrag Status
186 label_issue_status_plural: Antrag Stati
186 label_issue_status_plural: Antrag Stati
187 label_issue_status_new: Neuer Status
187 label_issue_status_new: Neuer Status
188 label_issue_category: Antrag Kategorie
188 label_issue_category: Antrag Kategorie
189 label_issue_category_plural: Antrag Kategorien
189 label_issue_category_plural: Antrag Kategorien
190 label_issue_category_new: Neue Kategorie
190 label_issue_category_new: Neue Kategorie
191 label_custom_field: Benutzerdefiniertes Feld
191 label_custom_field: Benutzerdefiniertes Feld
192 label_custom_field_plural: Benutzerdefinierte Felder
192 label_custom_field_plural: Benutzerdefinierte Felder
193 label_custom_field_new: Neues Feld
193 label_custom_field_new: Neues Feld
194 label_enumerations: Enumerationen
194 label_enumerations: Enumerationen
195 label_enumeration_new: Neuer Wert
195 label_enumeration_new: Neuer Wert
196 label_information: Information
196 label_information: Information
197 label_information_plural: Informationen
197 label_information_plural: Informationen
198 label_please_login: Anmelden
198 label_please_login: Anmelden
199 label_register: Anmelden
199 label_register: Anmelden
200 label_password_lost: Passwort vergessen
200 label_password_lost: Passwort vergessen
201 label_home: Hauptseite
201 label_home: Hauptseite
202 label_my_page: Meine Seite
202 label_my_page: Meine Seite
203 label_my_account: Mein Konto
203 label_my_account: Mein Konto
204 label_my_projects: Meine Projekte
204 label_my_projects: Meine Projekte
205 label_administration: Administration
205 label_administration: Administration
206 label_login: Einloggen
206 label_login: Einloggen
207 label_logout: Abmelden
207 label_logout: Abmelden
208 label_help: Hilfe
208 label_help: Hilfe
209 label_reported_issues: Gemeldete Issues
209 label_reported_issues: Gemeldete Issues
210 label_assigned_to_me_issues: Mir zugewiesen
210 label_assigned_to_me_issues: Mir zugewiesen
211 label_last_login: Letzte Anmeldung
211 label_last_login: Letzte Anmeldung
212 label_last_updates: Letztes aktualisiertes
212 label_last_updates: Letztes aktualisiertes
213 label_last_updates_plural: %d Letztes aktualisiertes
213 label_last_updates_plural: %d Letztes aktualisiertes
214 label_registered_on: Angemeldet am
214 label_registered_on: Angemeldet am
215 label_activity: Aktivität
215 label_activity: Aktivität
216 label_new: Neue
216 label_new: Neue
217 label_logged_as: Angemeldet als
217 label_logged_as: Angemeldet als
218 label_environment: Environment
218 label_environment: Environment
219 label_authentication: Authentisierung
219 label_authentication: Authentisierung
220 label_auth_source: Authentisierung Modus
220 label_auth_source: Authentisierung Modus
221 label_auth_source_new: Neuer Authentisierung Modus
221 label_auth_source_new: Neuer Authentisierung Modus
222 label_auth_source_plural: Authentisierung Modi
222 label_auth_source_plural: Authentisierung Modi
223 label_subproject: Vorprojekt von
223 label_subproject: Vorprojekt von
224 label_subproject_plural: Vorprojekte
224 label_subproject_plural: Vorprojekte
225 label_min_max_length: Min - Max Länge
225 label_min_max_length: Min - Max Länge
226 label_list: Liste
226 label_list: Liste
227 label_date: Date
227 label_date: Date
228 label_integer: Zahl
228 label_integer: Zahl
229 label_boolean: Boolesch
229 label_boolean: Boolesch
230 label_string: Text
230 label_string: Text
231 label_text: Langer Text
231 label_text: Langer Text
232 label_attribute: Attribut
232 label_attribute: Attribut
233 label_attribute_plural: Attribute
233 label_attribute_plural: Attribute
234 label_download: %d Herunterlade
234 label_download: %d Herunterlade
235 label_download_plural: %d Herunterlade
235 label_download_plural: %d Herunterlade
236 label_no_data: Nichts anzuzeigen
236 label_no_data: Nichts anzuzeigen
237 label_change_status: Statuswechsel
237 label_change_status: Statuswechsel
238 label_history: Historie
238 label_history: Historie
239 label_attachment: Datei
239 label_attachment: Datei
240 label_attachment_new: Neue Datei
240 label_attachment_new: Neue Datei
241 label_attachment_delete: Löschungakten
241 label_attachment_delete: Löschungakten
242 label_attachment_plural: Dateien
242 label_attachment_plural: Dateien
243 label_report: Bericht
243 label_report: Bericht
244 label_report_plural: Berichte
244 label_report_plural: Berichte
245 label_news: Neuigkeit
245 label_news: Neuigkeit
246 label_news_new: Neuigkeite addieren
246 label_news_new: Neuigkeite addieren
247 label_news_plural: Neuigkeiten
247 label_news_plural: Neuigkeiten
248 label_news_latest: Letzte Neuigkeiten
248 label_news_latest: Letzte Neuigkeiten
249 label_news_view_all: Alle Neuigkeiten anzeigen
249 label_news_view_all: Alle Neuigkeiten anzeigen
250 label_change_log: Change log
250 label_change_log: Change log
251 label_settings: Konfiguration
251 label_settings: Konfiguration
252 label_overview: Übersicht
252 label_overview: Übersicht
253 label_version: Version
253 label_version: Version
254 label_version_new: Neue Version
254 label_version_new: Neue Version
255 label_version_plural: Versionen
255 label_version_plural: Versionen
256 label_confirmation: Bestätigung
256 label_confirmation: Bestätigung
257 label_export_to: Export zu
257 label_export_to: Export zu
258 label_read: Lesen...
258 label_read: Lesen...
259 label_public_projects: Öffentliche Projekte
259 label_public_projects: Öffentliche Projekte
260 label_open_issues: geöffnet
260 label_open_issues: geöffnet
261 label_open_issues_plural: geöffnet
261 label_open_issues_plural: geöffnet
262 label_closed_issues: geschlossen
262 label_closed_issues: geschlossen
263 label_closed_issues_plural: geschlossen
263 label_closed_issues_plural: geschlossen
264 label_total: Gesamtzahl
264 label_total: Gesamtzahl
265 label_permissions: Berechtigungen
265 label_permissions: Berechtigungen
266 label_current_status: Gegenwärtiger Status
266 label_current_status: Gegenwärtiger Status
267 label_new_statuses_allowed: Neue Status gewährten
267 label_new_statuses_allowed: Neue Status gewährten
268 label_all: alle
268 label_all: alle
269 label_none: kein
269 label_none: kein
270 label_next: Weiter
270 label_next: Weiter
271 label_previous: Zurück
271 label_previous: Zurück
272 label_used_by: Benutzt von
272 label_used_by: Benutzt von
273 label_details: Details...
273 label_details: Details...
274 label_add_note: Eine Anmerkung addieren
274 label_add_note: Eine Anmerkung addieren
275 label_per_page: Pro Seite
275 label_per_page: Pro Seite
276 label_calendar: Kalender
276 label_calendar: Kalender
277 label_months_from: Monate von
277 label_months_from: Monate von
278 label_gantt: Gantt
278 label_gantt: Gantt
279 label_internal: Intern
279 label_internal: Intern
280 label_last_changes: %d änderungen des Letzten
280 label_last_changes: %d änderungen des Letzten
281 label_change_view_all: Alle änderungen ansehen
281 label_change_view_all: Alle änderungen ansehen
282 label_personalize_page: Diese Seite personifizieren
282 label_personalize_page: Diese Seite personifizieren
283 label_comment: Anmerkung
283 label_comment: Anmerkung
284 label_comment_plural: Anmerkungen
284 label_comment_plural: Anmerkungen
285 label_comment_add: Anmerkung addieren
285 label_comment_add: Anmerkung addieren
286 label_comment_added: Anmerkung fügte hinzu
286 label_comment_added: Anmerkung fügte hinzu
287 label_comment_delete: Anmerkungen löschen
287 label_comment_delete: Anmerkungen löschen
288 label_query: Benutzerdefiniertes Frage
288 label_query: Benutzerdefiniertes Frage
289 label_query_plural: Benutzerdefinierte Fragen
289 label_query_plural: Benutzerdefinierte Fragen
290 label_query_new: Neue Frage
290 label_query_new: Neue Frage
291 label_filter_add: Filter addieren
291 label_filter_add: Filter addieren
292 label_filter_plural: Filter
292 label_filter_plural: Filter
293 label_equals: ist
293 label_equals: ist
294 label_not_equals: ist nicht
294 label_not_equals: ist nicht
295 label_in_less_than: an weniger als
295 label_in_less_than: an weniger als
296 label_in_more_than: an mehr als
296 label_in_more_than: an mehr als
297 label_in: an
297 label_in: an
298 label_today: heute
298 label_today: heute
299 label_less_than_ago: vor weniger als
299 label_less_than_ago: vor weniger als
300 label_more_than_ago: vor mehr als
300 label_more_than_ago: vor mehr als
301 label_ago: vor
301 label_ago: vor
302 label_contains: enthält
302 label_contains: enthält
303 label_not_contains: enthält nicht
303 label_not_contains: enthält nicht
304 label_day_plural: Tage
304 label_day_plural: Tage
305 label_repository: SVN Behälter
305 label_repository: SVN Behälter
306 label_browse: Grasen
306 label_browse: Grasen
307 label_modification: %d änderung
307 label_modification: %d änderung
308 label_modification_plural: %d änderungen
308 label_modification_plural: %d änderungen
309 label_revision: Neuausgabe
309 label_revision: Neuausgabe
310 label_revision_plural: Neuausgaben
310 label_revision_plural: Neuausgaben
311 label_added: hinzugefügt
311 label_added: hinzugefügt
312 label_modified: geändert
312 label_modified: geändert
313 label_deleted: gelöscht
313 label_deleted: gelöscht
314 label_latest_revision: Neueste Neuausgabe
314 label_latest_revision: Neueste Neuausgabe
315 label_view_revisions: Die Neuausgaben ansehen
315 label_view_revisions: Die Neuausgaben ansehen
316 label_max_size: Maximale Größe
316 label_max_size: Maximale Größe
317 label_on: auf
317 label_on: auf
318 label_sort_highest: Erste
318 label_sort_highest: Erste
319 label_sort_higher: Aufzurichten
319 label_sort_higher: Aufzurichten
320 label_sort_lower: Herabzusteigen
320 label_sort_lower: Herabzusteigen
321 label_sort_lowest: Letzter
321 label_sort_lowest: Letzter
322 label_roadmap: Roadmap
322 label_roadmap: Roadmap
323 label_search: Suche
323 label_search: Suche
324 label_result: %d Resultat
324 label_result: %d Resultat
325 label_result_plural: %d Resultate
325 label_result_plural: %d Resultate
326 label_all_words: Alle Wörter
326 label_all_words: Alle Wörter
327 label_wiki: Wiki
327 label_wiki: Wiki
328 label_page_index: Index
328 label_page_index: Index
329 label_current_version: Gegenwärtige Version
329 label_current_version: Gegenwärtige Version
330 label_preview: Vorbetrachtung
330 label_preview: Vorbetrachtung
331 label_feed_plural: Feeds
331 label_feed_plural: Feeds
332 label_changes_details: Details of all changes
332 label_changes_details: Details of all changes
333 label_issue_tracking: Issue tracking
333
334
334 button_login: Einloggen
335 button_login: Einloggen
335 button_submit: Einreichen
336 button_submit: Einreichen
336 button_save: Speichern
337 button_save: Speichern
337 button_check_all: Alles auswählen
338 button_check_all: Alles auswählen
338 button_uncheck_all: Alles abwählen
339 button_uncheck_all: Alles abwählen
339 button_delete: Löschen
340 button_delete: Löschen
340 button_create: Anlegen
341 button_create: Anlegen
341 button_test: Testen
342 button_test: Testen
342 button_edit: Bearbeiten
343 button_edit: Bearbeiten
343 button_add: Hinzufügen
344 button_add: Hinzufügen
344 button_change: Wechseln
345 button_change: Wechseln
345 button_apply: Anwenden
346 button_apply: Anwenden
346 button_clear: Zurücksetzen
347 button_clear: Zurücksetzen
347 button_lock: Verriegeln
348 button_lock: Verriegeln
348 button_unlock: Entriegeln
349 button_unlock: Entriegeln
349 button_download: Fernzuladen
350 button_download: Fernzuladen
350 button_list: Aufzulisten
351 button_list: Aufzulisten
351 button_view: Siehe
352 button_view: Siehe
352 button_move: Bewegen
353 button_move: Bewegen
353 button_back: Rückkehr
354 button_back: Rückkehr
354 button_cancel: Annullieren
355 button_cancel: Annullieren
355 button_activate: Aktivieren
356 button_activate: Aktivieren
356 button_sort: Sortieren
357 button_sort: Sortieren
357
358
358 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
359 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
359 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_min_max_length_info: 0 heisst keine Beschränkung
361 text_min_max_length_info: 0 heisst keine Beschränkung
361 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
362 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
362 text_workflow_edit: Auswahl Workflow zum Bearbeiten
363 text_workflow_edit: Auswahl Workflow zum Bearbeiten
363 text_are_you_sure: Sind sie sicher ?
364 text_are_you_sure: Sind sie sicher ?
364 text_journal_changed: geändert von %s zu %s
365 text_journal_changed: geändert von %s zu %s
365 text_journal_set_to: gestellt zu %s
366 text_journal_set_to: gestellt zu %s
366 text_journal_deleted: gelöscht
367 text_journal_deleted: gelöscht
367 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
368 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
368 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
369 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
369 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
370 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
370
371
371 default_role_manager: Manager
372 default_role_manager: Manager
372 default_role_developper: Developer
373 default_role_developper: Developer
373 default_role_reporter: Reporter
374 default_role_reporter: Reporter
374 default_tracker_bug: Fehler
375 default_tracker_bug: Fehler
375 default_tracker_feature: Feature
376 default_tracker_feature: Feature
376 default_tracker_support: Support
377 default_tracker_support: Support
377 default_issue_status_new: Neu
378 default_issue_status_new: Neu
378 default_issue_status_assigned: Zugewiesen
379 default_issue_status_assigned: Zugewiesen
379 default_issue_status_resolved: Gelöst
380 default_issue_status_resolved: Gelöst
380 default_issue_status_feedback: Feedback
381 default_issue_status_feedback: Feedback
381 default_issue_status_closed: Erledigt
382 default_issue_status_closed: Erledigt
382 default_issue_status_rejected: Abgewiesen
383 default_issue_status_rejected: Abgewiesen
383 default_doc_category_user: Benutzerdokumentation
384 default_doc_category_user: Benutzerdokumentation
384 default_doc_category_tech: Technische Dokumentation
385 default_doc_category_tech: Technische Dokumentation
385 default_priority_low: Niedrig
386 default_priority_low: Niedrig
386 default_priority_normal: Normal
387 default_priority_normal: Normal
387 default_priority_high: Hoch
388 default_priority_high: Hoch
388 default_priority_urgent: Dringend
389 default_priority_urgent: Dringend
389 default_priority_immediate: Sofort
390 default_priority_immediate: Sofort
390
391
391 enumeration_issue_priorities: Issue-Prioritäten
392 enumeration_issue_priorities: Issue-Prioritäten
392 enumeration_doc_categories: Dokumentenkategorien
393 enumeration_doc_categories: Dokumentenkategorien
@@ -1,392 +1,393
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_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Your redMine password
70 mail_subject_lost_password: Your redMine password
71 mail_subject_register: redMine account activation
71 mail_subject_register: redMine account activation
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errors
74 gui_validation_error_plural: %d errors
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Description
77 field_description: Description
78 field_summary: Summary
78 field_summary: Summary
79 field_is_required: Required
79 field_is_required: Required
80 field_firstname: Firstname
80 field_firstname: Firstname
81 field_lastname: Lastname
81 field_lastname: Lastname
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Size
84 field_filesize: Size
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Author
86 field_author: Author
87 field_created_on: Created
87 field_created_on: Created
88 field_updated_on: Updated
88 field_updated_on: Updated
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: For all projects
90 field_is_for_all: For all projects
91 field_possible_values: Possible values
91 field_possible_values: Possible values
92 field_regexp: Regular expression
92 field_regexp: Regular expression
93 field_min_length: Minimum length
93 field_min_length: Minimum length
94 field_max_length: Maximum length
94 field_max_length: Maximum length
95 field_value: Value
95 field_value: Value
96 field_category: Category
96 field_category: Category
97 field_title: Title
97 field_title: Title
98 field_project: Project
98 field_project: Project
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Status
100 field_status: Status
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Issue closed
102 field_is_closed: Issue closed
103 field_is_default: Default status
103 field_is_default: Default status
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Subject
106 field_subject: Subject
107 field_due_date: Due date
107 field_due_date: Due date
108 field_assigned_to: Assigned to
108 field_assigned_to: Assigned to
109 field_priority: Priority
109 field_priority: Priority
110 field_fixed_version: Fixed version
110 field_fixed_version: Fixed version
111 field_user: User
111 field_user: User
112 field_role: Role
112 field_role: Role
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Subproject of
115 field_parent: Subproject of
116 field_is_in_chlog: Issues displayed in changelog
116 field_is_in_chlog: Issues displayed in changelog
117 field_is_in_roadmap: Issues displayed in roadmap
117 field_is_in_roadmap: Issues displayed in roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Mail notifications
119 field_mail_notification: Mail notifications
120 field_admin: Administrator
120 field_admin: Administrator
121 field_locked: Locked
121 field_locked: Locked
122 field_last_login_on: Last connection
122 field_last_login_on: Last connection
123 field_language: Language
123 field_language: Language
124 field_effective_date: Date
124 field_effective_date: Date
125 field_password: Password
125 field_password: Password
126 field_new_password: New password
126 field_new_password: New password
127 field_password_confirmation: Confirmation
127 field_password_confirmation: Confirmation
128 field_version: Version
128 field_version: Version
129 field_type: Type
129 field_type: Type
130 field_host: Host
130 field_host: Host
131 field_port: Port
131 field_port: Port
132 field_account: Account
132 field_account: Account
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Login attribute
134 field_attr_login: Login attribute
135 field_attr_firstname: Firstname attribute
135 field_attr_firstname: Firstname attribute
136 field_attr_lastname: Lastname attribute
136 field_attr_lastname: Lastname attribute
137 field_attr_mail: Email attribute
137 field_attr_mail: Email attribute
138 field_onthefly: On-the-fly user creation
138 field_onthefly: On-the-fly user creation
139 field_start_date: Start
139 field_start_date: Start
140 field_done_ratio: %% Done
140 field_done_ratio: %% Done
141 field_auth_source: Authentication mode
141 field_auth_source: Authentication mode
142 field_hide_mail: Hide my email address
142 field_hide_mail: Hide my email address
143 field_comment: Comment
143 field_comment: Comment
144 field_url: URL
144 field_url: URL
145 field_start_page: Start page
145 field_start_page: Start page
146
146
147 setting_app_title: Application title
147 setting_app_title: Application title
148 setting_app_subtitle: Application subtitle
148 setting_app_subtitle: Application subtitle
149 setting_welcome_text: Welcome text
149 setting_welcome_text: Welcome text
150 setting_default_language: Default language
150 setting_default_language: Default language
151 setting_login_required: Authent. required
151 setting_login_required: Authent. required
152 setting_self_registration: Self-registration enabled
152 setting_self_registration: Self-registration enabled
153 setting_attachment_max_size: Attachment max. size
153 setting_attachment_max_size: Attachment max. size
154 setting_issues_export_limit: Issues export limit
154 setting_issues_export_limit: Issues export limit
155 setting_mail_from: Emission mail address
155 setting_mail_from: Emission mail address
156 setting_host_name: Host name
156 setting_host_name: Host name
157 setting_text_formatting: Text formatting
157 setting_text_formatting: Text formatting
158 setting_wiki_compression: Wiki history compression
158 setting_wiki_compression: Wiki history compression
159
159
160 label_user: User
160 label_user: User
161 label_user_plural: Users
161 label_user_plural: Users
162 label_user_new: New user
162 label_user_new: New user
163 label_project: Project
163 label_project: Project
164 label_project_new: New project
164 label_project_new: New project
165 label_project_plural: Projects
165 label_project_plural: Projects
166 label_project_latest: Latest projects
166 label_project_latest: Latest projects
167 label_issue: Issue
167 label_issue: Issue
168 label_issue_new: New issue
168 label_issue_new: New issue
169 label_issue_plural: Issues
169 label_issue_plural: Issues
170 label_issue_view_all: View all issues
170 label_issue_view_all: View all issues
171 label_document: Document
171 label_document: Document
172 label_document_new: New document
172 label_document_new: New document
173 label_document_plural: Documents
173 label_document_plural: Documents
174 label_role: Role
174 label_role: Role
175 label_role_plural: Roles
175 label_role_plural: Roles
176 label_role_new: New role
176 label_role_new: New role
177 label_role_and_permissions: Roles and permissions
177 label_role_and_permissions: Roles and permissions
178 label_member: Member
178 label_member: Member
179 label_member_new: New member
179 label_member_new: New member
180 label_member_plural: Members
180 label_member_plural: Members
181 label_tracker: Tracker
181 label_tracker: Tracker
182 label_tracker_plural: Trackers
182 label_tracker_plural: Trackers
183 label_tracker_new: New tracker
183 label_tracker_new: New tracker
184 label_workflow: Workflow
184 label_workflow: Workflow
185 label_issue_status: Issue status
185 label_issue_status: Issue status
186 label_issue_status_plural: Issue statuses
186 label_issue_status_plural: Issue statuses
187 label_issue_status_new: New status
187 label_issue_status_new: New status
188 label_issue_category: Issue category
188 label_issue_category: Issue category
189 label_issue_category_plural: Issue categories
189 label_issue_category_plural: Issue categories
190 label_issue_category_new: New category
190 label_issue_category_new: New category
191 label_custom_field: Custom field
191 label_custom_field: Custom field
192 label_custom_field_plural: Custom fields
192 label_custom_field_plural: Custom fields
193 label_custom_field_new: New custom field
193 label_custom_field_new: New custom field
194 label_enumerations: Enumerations
194 label_enumerations: Enumerations
195 label_enumeration_new: New value
195 label_enumeration_new: New value
196 label_information: Information
196 label_information: Information
197 label_information_plural: Information
197 label_information_plural: Information
198 label_please_login: Please login
198 label_please_login: Please login
199 label_register: Register
199 label_register: Register
200 label_password_lost: Lost password
200 label_password_lost: Lost password
201 label_home: Home
201 label_home: Home
202 label_my_page: My page
202 label_my_page: My page
203 label_my_account: My account
203 label_my_account: My account
204 label_my_projects: My projects
204 label_my_projects: My projects
205 label_administration: Administration
205 label_administration: Administration
206 label_login: Login
206 label_login: Login
207 label_logout: Logout
207 label_logout: Logout
208 label_help: Help
208 label_help: Help
209 label_reported_issues: Reported issues
209 label_reported_issues: Reported issues
210 label_assigned_to_me_issues: Issues assigned to me
210 label_assigned_to_me_issues: Issues assigned to me
211 label_last_login: Last connection
211 label_last_login: Last connection
212 label_last_updates: Last updated
212 label_last_updates: Last updated
213 label_last_updates_plural: %d last updated
213 label_last_updates_plural: %d last updated
214 label_registered_on: Registered on
214 label_registered_on: Registered on
215 label_activity: Activity
215 label_activity: Activity
216 label_new: New
216 label_new: New
217 label_logged_as: Logged as
217 label_logged_as: Logged as
218 label_environment: Environment
218 label_environment: Environment
219 label_authentication: Authentication
219 label_authentication: Authentication
220 label_auth_source: Authentication mode
220 label_auth_source: Authentication mode
221 label_auth_source_new: New authentication mode
221 label_auth_source_new: New authentication mode
222 label_auth_source_plural: Authentication modes
222 label_auth_source_plural: Authentication modes
223 label_subproject: Subproject
223 label_subproject: Subproject
224 label_subproject_plural: Subprojects
224 label_subproject_plural: Subprojects
225 label_min_max_length: Min - Max length
225 label_min_max_length: Min - Max length
226 label_list: List
226 label_list: List
227 label_date: Date
227 label_date: Date
228 label_integer: Integer
228 label_integer: Integer
229 label_boolean: Boolean
229 label_boolean: Boolean
230 label_string: Text
230 label_string: Text
231 label_text: Long text
231 label_text: Long text
232 label_attribute: Attribute
232 label_attribute: Attribute
233 label_attribute_plural: Attributes
233 label_attribute_plural: Attributes
234 label_download: %d Download
234 label_download: %d Download
235 label_download_plural: %d Downloads
235 label_download_plural: %d Downloads
236 label_no_data: No data to display
236 label_no_data: No data to display
237 label_change_status: Change status
237 label_change_status: Change status
238 label_history: History
238 label_history: History
239 label_attachment: File
239 label_attachment: File
240 label_attachment_new: New file
240 label_attachment_new: New file
241 label_attachment_delete: Delete file
241 label_attachment_delete: Delete file
242 label_attachment_plural: Files
242 label_attachment_plural: Files
243 label_report: Report
243 label_report: Report
244 label_report_plural: Reports
244 label_report_plural: Reports
245 label_news: News
245 label_news: News
246 label_news_new: Add news
246 label_news_new: Add news
247 label_news_plural: News
247 label_news_plural: News
248 label_news_latest: Latest news
248 label_news_latest: Latest news
249 label_news_view_all: View all news
249 label_news_view_all: View all news
250 label_change_log: Change log
250 label_change_log: Change log
251 label_settings: Settings
251 label_settings: Settings
252 label_overview: Overview
252 label_overview: Overview
253 label_version: Version
253 label_version: Version
254 label_version_new: New version
254 label_version_new: New version
255 label_version_plural: Versions
255 label_version_plural: Versions
256 label_confirmation: Confirmation
256 label_confirmation: Confirmation
257 label_export_to: Export to
257 label_export_to: Export to
258 label_read: Read...
258 label_read: Read...
259 label_public_projects: Public projects
259 label_public_projects: Public projects
260 label_open_issues: open
260 label_open_issues: open
261 label_open_issues_plural: open
261 label_open_issues_plural: open
262 label_closed_issues: closed
262 label_closed_issues: closed
263 label_closed_issues_plural: closed
263 label_closed_issues_plural: closed
264 label_total: Total
264 label_total: Total
265 label_permissions: Permissions
265 label_permissions: Permissions
266 label_current_status: Current status
266 label_current_status: Current status
267 label_new_statuses_allowed: New statuses allowed
267 label_new_statuses_allowed: New statuses allowed
268 label_all: all
268 label_all: all
269 label_none: none
269 label_none: none
270 label_next: Next
270 label_next: Next
271 label_previous: Previous
271 label_previous: Previous
272 label_used_by: Used by
272 label_used_by: Used by
273 label_details: Details...
273 label_details: Details...
274 label_add_note: Add a note
274 label_add_note: Add a note
275 label_per_page: Per page
275 label_per_page: Per page
276 label_calendar: Calendar
276 label_calendar: Calendar
277 label_months_from: months from
277 label_months_from: months from
278 label_gantt: Gantt
278 label_gantt: Gantt
279 label_internal: Internal
279 label_internal: Internal
280 label_last_changes: last %d changes
280 label_last_changes: last %d changes
281 label_change_view_all: View all changes
281 label_change_view_all: View all changes
282 label_personalize_page: Personalize this page
282 label_personalize_page: Personalize this page
283 label_comment: Comment
283 label_comment: Comment
284 label_comment_plural: Comments
284 label_comment_plural: Comments
285 label_comment_add: Add a comment
285 label_comment_add: Add a comment
286 label_comment_added: Comment added
286 label_comment_added: Comment added
287 label_comment_delete: Delete comments
287 label_comment_delete: Delete comments
288 label_query: Custom query
288 label_query: Custom query
289 label_query_plural: Custom queries
289 label_query_plural: Custom queries
290 label_query_new: New query
290 label_query_new: New query
291 label_filter_add: Add filter
291 label_filter_add: Add filter
292 label_filter_plural: Filters
292 label_filter_plural: Filters
293 label_equals: is
293 label_equals: is
294 label_not_equals: is not
294 label_not_equals: is not
295 label_in_less_than: in less than
295 label_in_less_than: in less than
296 label_in_more_than: in more than
296 label_in_more_than: in more than
297 label_in: in
297 label_in: in
298 label_today: today
298 label_today: today
299 label_less_than_ago: less than days ago
299 label_less_than_ago: less than days ago
300 label_more_than_ago: more than days ago
300 label_more_than_ago: more than days ago
301 label_ago: days ago
301 label_ago: days ago
302 label_contains: contains
302 label_contains: contains
303 label_not_contains: doesn't contain
303 label_not_contains: doesn't contain
304 label_day_plural: days
304 label_day_plural: days
305 label_repository: SVN Repository
305 label_repository: SVN Repository
306 label_browse: Browse
306 label_browse: Browse
307 label_modification: %d change
307 label_modification: %d change
308 label_modification_plural: %d changes
308 label_modification_plural: %d changes
309 label_revision: Revision
309 label_revision: Revision
310 label_revision_plural: Revisions
310 label_revision_plural: Revisions
311 label_added: added
311 label_added: added
312 label_modified: modified
312 label_modified: modified
313 label_deleted: deleted
313 label_deleted: deleted
314 label_latest_revision: Latest revision
314 label_latest_revision: Latest revision
315 label_view_revisions: View revisions
315 label_view_revisions: View revisions
316 label_max_size: Maximum size
316 label_max_size: Maximum size
317 label_on: 'on'
317 label_on: 'on'
318 label_sort_highest: Move to top
318 label_sort_highest: Move to top
319 label_sort_higher: Move up
319 label_sort_higher: Move up
320 label_sort_lower: Move down
320 label_sort_lower: Move down
321 label_sort_lowest: Move to bottom
321 label_sort_lowest: Move to bottom
322 label_roadmap: Roadmap
322 label_roadmap: Roadmap
323 label_search: Search
323 label_search: Search
324 label_result: %d result
324 label_result: %d result
325 label_result_plural: %d results
325 label_result_plural: %d results
326 label_all_words: All words
326 label_all_words: All words
327 label_wiki: Wiki
327 label_wiki: Wiki
328 label_page_index: Index
328 label_page_index: Index
329 label_current_version: Current version
329 label_current_version: Current version
330 label_preview: Preview
330 label_preview: Preview
331 label_feed_plural: Feeds
331 label_feed_plural: Feeds
332 label_changes_details: Details of all changes
332 label_changes_details: Details of all changes
333 label_issue_tracking: Issue tracking
333
334
334 button_login: Login
335 button_login: Login
335 button_submit: Submit
336 button_submit: Submit
336 button_save: Save
337 button_save: Save
337 button_check_all: Check all
338 button_check_all: Check all
338 button_uncheck_all: Uncheck all
339 button_uncheck_all: Uncheck all
339 button_delete: Delete
340 button_delete: Delete
340 button_create: Create
341 button_create: Create
341 button_test: Test
342 button_test: Test
342 button_edit: Edit
343 button_edit: Edit
343 button_add: Add
344 button_add: Add
344 button_change: Change
345 button_change: Change
345 button_apply: Apply
346 button_apply: Apply
346 button_clear: Clear
347 button_clear: Clear
347 button_lock: Lock
348 button_lock: Lock
348 button_unlock: Unlock
349 button_unlock: Unlock
349 button_download: Download
350 button_download: Download
350 button_list: List
351 button_list: List
351 button_view: View
352 button_view: View
352 button_move: Move
353 button_move: Move
353 button_back: Back
354 button_back: Back
354 button_cancel: Cancel
355 button_cancel: Cancel
355 button_activate: Activate
356 button_activate: Activate
356 button_sort: Sort
357 button_sort: Sort
357
358
358 text_select_mail_notifications: Select actions for which mail notifications should be sent.
359 text_select_mail_notifications: Select actions for which mail notifications should be sent.
359 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_min_max_length_info: 0 means no restriction
361 text_min_max_length_info: 0 means no restriction
361 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
362 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
362 text_workflow_edit: Select a role and a tracker to edit the workflow
363 text_workflow_edit: Select a role and a tracker to edit the workflow
363 text_are_you_sure: Are you sure ?
364 text_are_you_sure: Are you sure ?
364 text_journal_changed: changed from %s to %s
365 text_journal_changed: changed from %s to %s
365 text_journal_set_to: set to %s
366 text_journal_set_to: set to %s
366 text_journal_deleted: deleted
367 text_journal_deleted: deleted
367 text_tip_task_begin_day: task beginning this day
368 text_tip_task_begin_day: task beginning this day
368 text_tip_task_end_day: task ending this day
369 text_tip_task_end_day: task ending this day
369 text_tip_task_begin_end_day: task beginning and ending this day
370 text_tip_task_begin_end_day: task beginning and ending this day
370
371
371 default_role_manager: Manager
372 default_role_manager: Manager
372 default_role_developper: Developer
373 default_role_developper: Developer
373 default_role_reporter: Reporter
374 default_role_reporter: Reporter
374 default_tracker_bug: Bug
375 default_tracker_bug: Bug
375 default_tracker_feature: Feature
376 default_tracker_feature: Feature
376 default_tracker_support: Support
377 default_tracker_support: Support
377 default_issue_status_new: New
378 default_issue_status_new: New
378 default_issue_status_assigned: Assigned
379 default_issue_status_assigned: Assigned
379 default_issue_status_resolved: Resolved
380 default_issue_status_resolved: Resolved
380 default_issue_status_feedback: Feedback
381 default_issue_status_feedback: Feedback
381 default_issue_status_closed: Closed
382 default_issue_status_closed: Closed
382 default_issue_status_rejected: Rejected
383 default_issue_status_rejected: Rejected
383 default_doc_category_user: User documentation
384 default_doc_category_user: User documentation
384 default_doc_category_tech: Technical documentation
385 default_doc_category_tech: Technical documentation
385 default_priority_low: Low
386 default_priority_low: Low
386 default_priority_normal: Normal
387 default_priority_normal: Normal
387 default_priority_high: High
388 default_priority_high: High
388 default_priority_urgent: Urgent
389 default_priority_urgent: Urgent
389 default_priority_immediate: Immediate
390 default_priority_immediate: Immediate
390
391
391 enumeration_issue_priorities: Issue priorities
392 enumeration_issue_priorities: Issue priorities
392 enumeration_doc_categories: Document categories
393 enumeration_doc_categories: Document categories
@@ -1,392 +1,393
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_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
69
69
70 mail_subject_lost_password: Tu contraseña del redMine
70 mail_subject_lost_password: Tu contraseña del redMine
71 mail_subject_register: Activación de la cuenta del redMine
71 mail_subject_register: Activación de la cuenta del redMine
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errores
74 gui_validation_error_plural: %d errores
75
75
76 field_name: Nombre
76 field_name: Nombre
77 field_description: Descripción
77 field_description: Descripción
78 field_summary: Resumen
78 field_summary: Resumen
79 field_is_required: Obligatorio
79 field_is_required: Obligatorio
80 field_firstname: Nombre
80 field_firstname: Nombre
81 field_lastname: Apellido
81 field_lastname: Apellido
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichero
83 field_filename: Fichero
84 field_filesize: Tamaño
84 field_filesize: Tamaño
85 field_downloads: Telecargas
85 field_downloads: Telecargas
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Creado
87 field_created_on: Creado
88 field_updated_on: Actualizado
88 field_updated_on: Actualizado
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Para todos los proyectos
90 field_is_for_all: Para todos los proyectos
91 field_possible_values: Valores posibles
91 field_possible_values: Valores posibles
92 field_regexp: Expresión regular
92 field_regexp: Expresión regular
93 field_min_length: Longitud mínima
93 field_min_length: Longitud mínima
94 field_max_length: Longitud máxima
94 field_max_length: Longitud máxima
95 field_value: Valor
95 field_value: Valor
96 field_category: Categoría
96 field_category: Categoría
97 field_title: Título
97 field_title: Título
98 field_project: Proyecto
98 field_project: Proyecto
99 field_issue: Petición
99 field_issue: Petición
100 field_status: Estatuto
100 field_status: Estatuto
101 field_notes: Notas
101 field_notes: Notas
102 field_is_closed: Petición resuelta
102 field_is_closed: Petición resuelta
103 field_is_default: Estatuto por defecto
103 field_is_default: Estatuto por defecto
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Tema
106 field_subject: Tema
107 field_due_date: Fecha debida
107 field_due_date: Fecha debida
108 field_assigned_to: Asignado a
108 field_assigned_to: Asignado a
109 field_priority: Prioridad
109 field_priority: Prioridad
110 field_fixed_version: Versión corregida
110 field_fixed_version: Versión corregida
111 field_user: Usuario
111 field_user: Usuario
112 field_role: Papel
112 field_role: Papel
113 field_homepage: Sitio web
113 field_homepage: Sitio web
114 field_is_public: Público
114 field_is_public: Público
115 field_parent: Proyecto secundario de
115 field_parent: Proyecto secundario de
116 field_is_in_chlog: Consultar las peticiones en el histórico
116 field_is_in_chlog: Consultar las peticiones en el histórico
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
118 field_login: Identificador
118 field_login: Identificador
119 field_mail_notification: Notificación por mail
119 field_mail_notification: Notificación por mail
120 field_admin: Administrador
120 field_admin: Administrador
121 field_locked: Cerrado
121 field_locked: Cerrado
122 field_last_login_on: Última conexión
122 field_last_login_on: Última conexión
123 field_language: Lengua
123 field_language: Lengua
124 field_effective_date: Fecha
124 field_effective_date: Fecha
125 field_password: Contraseña
125 field_password: Contraseña
126 field_new_password: Nueva contraseña
126 field_new_password: Nueva contraseña
127 field_password_confirmation: Confirmación
127 field_password_confirmation: Confirmación
128 field_version: Versión
128 field_version: Versión
129 field_type: Tipo
129 field_type: Tipo
130 field_host: Anfitrión
130 field_host: Anfitrión
131 field_port: Puerto
131 field_port: Puerto
132 field_account: Cuenta
132 field_account: Cuenta
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Cualidad del identificador
134 field_attr_login: Cualidad del identificador
135 field_attr_firstname: Cualidad del nombre
135 field_attr_firstname: Cualidad del nombre
136 field_attr_lastname: Cualidad del apellido
136 field_attr_lastname: Cualidad del apellido
137 field_attr_mail: Cualidad del Email
137 field_attr_mail: Cualidad del Email
138 field_onthefly: Creación del usuario On-the-fly
138 field_onthefly: Creación del usuario On-the-fly
139 field_start_date: Comienzo
139 field_start_date: Comienzo
140 field_done_ratio: %% Realizado
140 field_done_ratio: %% Realizado
141 field_auth_source: Modo de la autentificación
141 field_auth_source: Modo de la autentificación
142 field_hide_mail: Ocultar mi email address
142 field_hide_mail: Ocultar mi email address
143 field_comment: Comentario
143 field_comment: Comentario
144 field_url: URL
144 field_url: URL
145 field_start_page: Página principal
145 field_start_page: Página principal
146
146
147 setting_app_title: Título del aplicación
147 setting_app_title: Título del aplicación
148 setting_app_subtitle: Subtítulo del aplicación
148 setting_app_subtitle: Subtítulo del aplicación
149 setting_welcome_text: Texto acogida
149 setting_welcome_text: Texto acogida
150 setting_default_language: Lengua del defecto
150 setting_default_language: Lengua del defecto
151 setting_login_required: Autentif. requerida
151 setting_login_required: Autentif. requerida
152 setting_self_registration: Registro permitido
152 setting_self_registration: Registro permitido
153 setting_attachment_max_size: Tamaño máximo del fichero
153 setting_attachment_max_size: Tamaño máximo del fichero
154 setting_issues_export_limit: Issues export limit
154 setting_issues_export_limit: Issues export limit
155 setting_mail_from: Email de la emisión
155 setting_mail_from: Email de la emisión
156 setting_host_name: Nombre de anfitrión
156 setting_host_name: Nombre de anfitrión
157 setting_text_formatting: Formato de texto
157 setting_text_formatting: Formato de texto
158 setting_wiki_compression: Compresión de la historia de Wiki
158 setting_wiki_compression: Compresión de la historia de Wiki
159
159
160 label_user: Usuario
160 label_user: Usuario
161 label_user_plural: Usuarios
161 label_user_plural: Usuarios
162 label_user_new: Nuevo usuario
162 label_user_new: Nuevo usuario
163 label_project: Proyecto
163 label_project: Proyecto
164 label_project_new: Nuevo proyecto
164 label_project_new: Nuevo proyecto
165 label_project_plural: Proyectos
165 label_project_plural: Proyectos
166 label_project_latest: Los proyectos más últimos
166 label_project_latest: Los proyectos más últimos
167 label_issue: Petición
167 label_issue: Petición
168 label_issue_new: Nueva petición
168 label_issue_new: Nueva petición
169 label_issue_plural: Peticiones
169 label_issue_plural: Peticiones
170 label_issue_view_all: Ver todas las peticiones
170 label_issue_view_all: Ver todas las peticiones
171 label_document: Documento
171 label_document: Documento
172 label_document_new: Nuevo documento
172 label_document_new: Nuevo documento
173 label_document_plural: Documentos
173 label_document_plural: Documentos
174 label_role: Papel
174 label_role: Papel
175 label_role_plural: Papeles
175 label_role_plural: Papeles
176 label_role_new: Nuevo papel
176 label_role_new: Nuevo papel
177 label_role_and_permissions: Papeles y permisos
177 label_role_and_permissions: Papeles y permisos
178 label_member: Miembro
178 label_member: Miembro
179 label_member_new: Nuevo miembro
179 label_member_new: Nuevo miembro
180 label_member_plural: Miembros
180 label_member_plural: Miembros
181 label_tracker: Tracker
181 label_tracker: Tracker
182 label_tracker_plural: Trackers
182 label_tracker_plural: Trackers
183 label_tracker_new: Nuevo tracker
183 label_tracker_new: Nuevo tracker
184 label_workflow: Workflow
184 label_workflow: Workflow
185 label_issue_status: Estatuto de petición
185 label_issue_status: Estatuto de petición
186 label_issue_status_plural: Estatutos de las peticiones
186 label_issue_status_plural: Estatutos de las peticiones
187 label_issue_status_new: Nuevo estatuto
187 label_issue_status_new: Nuevo estatuto
188 label_issue_category: Categoría de las peticiones
188 label_issue_category: Categoría de las peticiones
189 label_issue_category_plural: Categorías de las peticiones
189 label_issue_category_plural: Categorías de las peticiones
190 label_issue_category_new: Nueva categoría
190 label_issue_category_new: Nueva categoría
191 label_custom_field: Campo personalizado
191 label_custom_field: Campo personalizado
192 label_custom_field_plural: Campos personalizados
192 label_custom_field_plural: Campos personalizados
193 label_custom_field_new: Nuevo campo personalizado
193 label_custom_field_new: Nuevo campo personalizado
194 label_enumerations: Listas de valores
194 label_enumerations: Listas de valores
195 label_enumeration_new: Nuevo valor
195 label_enumeration_new: Nuevo valor
196 label_information: Informacion
196 label_information: Informacion
197 label_information_plural: Informaciones
197 label_information_plural: Informaciones
198 label_please_login: Conexión
198 label_please_login: Conexión
199 label_register: Registrar
199 label_register: Registrar
200 label_password_lost: ¿Olvidaste la contraseña?
200 label_password_lost: ¿Olvidaste la contraseña?
201 label_home: Acogida
201 label_home: Acogida
202 label_my_page: Mi página
202 label_my_page: Mi página
203 label_my_account: Mi cuenta
203 label_my_account: Mi cuenta
204 label_my_projects: Mis proyectos
204 label_my_projects: Mis proyectos
205 label_administration: Administración
205 label_administration: Administración
206 label_login: Conexión
206 label_login: Conexión
207 label_logout: Desconexión
207 label_logout: Desconexión
208 label_help: Ayuda
208 label_help: Ayuda
209 label_reported_issues: Peticiones registradas
209 label_reported_issues: Peticiones registradas
210 label_assigned_to_me_issues: Peticiones que me están asignadas
210 label_assigned_to_me_issues: Peticiones que me están asignadas
211 label_last_login: Última conexión
211 label_last_login: Última conexión
212 label_last_updates: Actualizado
212 label_last_updates: Actualizado
213 label_last_updates_plural: %d Actualizados
213 label_last_updates_plural: %d Actualizados
214 label_registered_on: Inscrito el
214 label_registered_on: Inscrito el
215 label_activity: Actividad
215 label_activity: Actividad
216 label_new: Nuevo
216 label_new: Nuevo
217 label_logged_as: Conectado como
217 label_logged_as: Conectado como
218 label_environment: Environment
218 label_environment: Environment
219 label_authentication: Autentificación
219 label_authentication: Autentificación
220 label_auth_source: Modo de la autentificación
220 label_auth_source: Modo de la autentificación
221 label_auth_source_new: Nuevo modo de la autentificación
221 label_auth_source_new: Nuevo modo de la autentificación
222 label_auth_source_plural: Modos de la autentificación
222 label_auth_source_plural: Modos de la autentificación
223 label_subproject: Proyecto secundario
223 label_subproject: Proyecto secundario
224 label_subproject_plural: Proyectos secundarios
224 label_subproject_plural: Proyectos secundarios
225 label_min_max_length: Longitud mín - máx
225 label_min_max_length: Longitud mín - máx
226 label_list: Lista
226 label_list: Lista
227 label_date: Fecha
227 label_date: Fecha
228 label_integer: Número
228 label_integer: Número
229 label_boolean: Boleano
229 label_boolean: Boleano
230 label_string: Texto
230 label_string: Texto
231 label_text: Texto largo
231 label_text: Texto largo
232 label_attribute: Cualidad
232 label_attribute: Cualidad
233 label_attribute_plural: Cualidades
233 label_attribute_plural: Cualidades
234 label_download: %d Telecarga
234 label_download: %d Telecarga
235 label_download_plural: %d Telecargas
235 label_download_plural: %d Telecargas
236 label_no_data: Ningunos datos a exhibir
236 label_no_data: Ningunos datos a exhibir
237 label_change_status: Cambiar el estatuto
237 label_change_status: Cambiar el estatuto
238 label_history: Histórico
238 label_history: Histórico
239 label_attachment: Fichero
239 label_attachment: Fichero
240 label_attachment_new: Nuevo fichero
240 label_attachment_new: Nuevo fichero
241 label_attachment_delete: Suprimir el fichero
241 label_attachment_delete: Suprimir el fichero
242 label_attachment_plural: Ficheros
242 label_attachment_plural: Ficheros
243 label_report: Informe
243 label_report: Informe
244 label_report_plural: Informes
244 label_report_plural: Informes
245 label_news: Noticia
245 label_news: Noticia
246 label_news_new: Nueva noticia
246 label_news_new: Nueva noticia
247 label_news_plural: Noticias
247 label_news_plural: Noticias
248 label_news_latest: Últimas noticias
248 label_news_latest: Últimas noticias
249 label_news_view_all: Ver todas las noticias
249 label_news_view_all: Ver todas las noticias
250 label_change_log: Cambios
250 label_change_log: Cambios
251 label_settings: Configuración
251 label_settings: Configuración
252 label_overview: Vistazo
252 label_overview: Vistazo
253 label_version: Versión
253 label_version: Versión
254 label_version_new: Nueva versión
254 label_version_new: Nueva versión
255 label_version_plural: Versiónes
255 label_version_plural: Versiónes
256 label_confirmation: Confirmación
256 label_confirmation: Confirmación
257 label_export_to: Exportar a
257 label_export_to: Exportar a
258 label_read: Leer...
258 label_read: Leer...
259 label_public_projects: Proyectos publicos
259 label_public_projects: Proyectos publicos
260 label_open_issues: abierta
260 label_open_issues: abierta
261 label_open_issues_plural: abiertas
261 label_open_issues_plural: abiertas
262 label_closed_issues: cerrada
262 label_closed_issues: cerrada
263 label_closed_issues_plural: cerradas
263 label_closed_issues_plural: cerradas
264 label_total: Total
264 label_total: Total
265 label_permissions: Permisos
265 label_permissions: Permisos
266 label_current_status: Estado actual
266 label_current_status: Estado actual
267 label_new_statuses_allowed: Nuevos estatutos autorizados
267 label_new_statuses_allowed: Nuevos estatutos autorizados
268 label_all: todos
268 label_all: todos
269 label_none: ninguno
269 label_none: ninguno
270 label_next: Próximo
270 label_next: Próximo
271 label_previous: Precedente
271 label_previous: Precedente
272 label_used_by: Utilizado por
272 label_used_by: Utilizado por
273 label_details: Detalles...
273 label_details: Detalles...
274 label_add_note: Agregar una nota
274 label_add_note: Agregar una nota
275 label_per_page: Por la página
275 label_per_page: Por la página
276 label_calendar: Calendario
276 label_calendar: Calendario
277 label_months_from: meses de
277 label_months_from: meses de
278 label_gantt: Gantt
278 label_gantt: Gantt
279 label_internal: Interno
279 label_internal: Interno
280 label_last_changes: %d cambios del último
280 label_last_changes: %d cambios del último
281 label_change_view_all: Ver todos los cambios
281 label_change_view_all: Ver todos los cambios
282 label_personalize_page: Personalizar esta página
282 label_personalize_page: Personalizar esta página
283 label_comment: Comentario
283 label_comment: Comentario
284 label_comment_plural: Comentarios
284 label_comment_plural: Comentarios
285 label_comment_add: Agregar un comentario
285 label_comment_add: Agregar un comentario
286 label_comment_added: Comentario agregó
286 label_comment_added: Comentario agregó
287 label_comment_delete: Suprimir comentarios
287 label_comment_delete: Suprimir comentarios
288 label_query: Pregunta personalizada
288 label_query: Pregunta personalizada
289 label_query_plural: Preguntas personalizadas
289 label_query_plural: Preguntas personalizadas
290 label_query_new: Nueva preguntas
290 label_query_new: Nueva preguntas
291 label_filter_add: Agregar el filtro
291 label_filter_add: Agregar el filtro
292 label_filter_plural: Filtros
292 label_filter_plural: Filtros
293 label_equals: igual
293 label_equals: igual
294 label_not_equals: no igual
294 label_not_equals: no igual
295 label_in_less_than: en menos que
295 label_in_less_than: en menos que
296 label_in_more_than: en más que
296 label_in_more_than: en más que
297 label_in: en
297 label_in: en
298 label_today: hoy
298 label_today: hoy
299 label_less_than_ago: hace menos de
299 label_less_than_ago: hace menos de
300 label_more_than_ago: hace más de
300 label_more_than_ago: hace más de
301 label_ago: hace
301 label_ago: hace
302 label_contains: contiene
302 label_contains: contiene
303 label_not_contains: no contiene
303 label_not_contains: no contiene
304 label_day_plural: días
304 label_day_plural: días
305 label_repository: Depósito SVN
305 label_repository: Depósito SVN
306 label_browse: Hojear
306 label_browse: Hojear
307 label_modification: %d modificación
307 label_modification: %d modificación
308 label_modification_plural: %d modificaciones
308 label_modification_plural: %d modificaciones
309 label_revision: Revisión
309 label_revision: Revisión
310 label_revision_plural: Revisiones
310 label_revision_plural: Revisiones
311 label_added: agregado
311 label_added: agregado
312 label_modified: modificado
312 label_modified: modificado
313 label_deleted: suprimido
313 label_deleted: suprimido
314 label_latest_revision: La revisión más última
314 label_latest_revision: La revisión más última
315 label_view_revisions: Ver las revisiones
315 label_view_revisions: Ver las revisiones
316 label_max_size: Tamaño máximo
316 label_max_size: Tamaño máximo
317 label_on: en
317 label_on: en
318 label_sort_highest: Primero
318 label_sort_highest: Primero
319 label_sort_higher: Subir
319 label_sort_higher: Subir
320 label_sort_lower: Bajar
320 label_sort_lower: Bajar
321 label_sort_lowest: Último
321 label_sort_lowest: Último
322 label_roadmap: Roadmap
322 label_roadmap: Roadmap
323 label_search: Búsqueda
323 label_search: Búsqueda
324 label_result: %d resultado
324 label_result: %d resultado
325 label_result_plural: %d resultados
325 label_result_plural: %d resultados
326 label_all_words: Todas las palabras
326 label_all_words: Todas las palabras
327 label_wiki: Wiki
327 label_wiki: Wiki
328 label_page_index: Índice
328 label_page_index: Índice
329 label_current_version: Versión actual
329 label_current_version: Versión actual
330 label_preview: Previo
330 label_preview: Previo
331 label_feed_plural: Feeds
331 label_feed_plural: Feeds
332 label_changes_details: Detalles de todos los cambios
332 label_changes_details: Detalles de todos los cambios
333 label_issue_tracking: Issue tracking
333
334
334 button_login: Conexión
335 button_login: Conexión
335 button_submit: Someter
336 button_submit: Someter
336 button_save: Validar
337 button_save: Validar
337 button_check_all: Seleccionar todo
338 button_check_all: Seleccionar todo
338 button_uncheck_all: No seleccionar nada
339 button_uncheck_all: No seleccionar nada
339 button_delete: Suprimir
340 button_delete: Suprimir
340 button_create: Crear
341 button_create: Crear
341 button_test: Testar
342 button_test: Testar
342 button_edit: Modificar
343 button_edit: Modificar
343 button_add: Añadir
344 button_add: Añadir
344 button_change: Cambiar
345 button_change: Cambiar
345 button_apply: Aplicar
346 button_apply: Aplicar
346 button_clear: Anular
347 button_clear: Anular
347 button_lock: Bloquear
348 button_lock: Bloquear
348 button_unlock: Desbloquear
349 button_unlock: Desbloquear
349 button_download: Telecargar
350 button_download: Telecargar
350 button_list: Listar
351 button_list: Listar
351 button_view: Ver
352 button_view: Ver
352 button_move: Mover
353 button_move: Mover
353 button_back: Atrás
354 button_back: Atrás
354 button_cancel: Cancelar
355 button_cancel: Cancelar
355 button_activate: Activar
356 button_activate: Activar
356 button_sort: Clasificar
357 button_sort: Clasificar
357
358
358 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
359 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
359 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_min_max_length_info: 0 para ninguna restricción
361 text_min_max_length_info: 0 para ninguna restricción
361 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
362 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
362 text_workflow_edit: Seleccionar un workflow para actualizar
363 text_workflow_edit: Seleccionar un workflow para actualizar
363 text_are_you_sure: ¿ Estás seguro ?
364 text_are_you_sure: ¿ Estás seguro ?
364 text_journal_changed: cambiado de %s a %s
365 text_journal_changed: cambiado de %s a %s
365 text_journal_set_to: fijado a %s
366 text_journal_set_to: fijado a %s
366 text_journal_deleted: suprimido
367 text_journal_deleted: suprimido
367 text_tip_task_begin_day: tarea que comienza este día
368 text_tip_task_begin_day: tarea que comienza este día
368 text_tip_task_end_day: tarea que termina este día
369 text_tip_task_end_day: tarea que termina este día
369 text_tip_task_begin_end_day: tarea que comienza y termina este día
370 text_tip_task_begin_end_day: tarea que comienza y termina este día
370
371
371 default_role_manager: Manager
372 default_role_manager: Manager
372 default_role_developper: Desarrollador
373 default_role_developper: Desarrollador
373 default_role_reporter: Informador
374 default_role_reporter: Informador
374 default_tracker_bug: Anomalía
375 default_tracker_bug: Anomalía
375 default_tracker_feature: Evolución
376 default_tracker_feature: Evolución
376 default_tracker_support: Asistencia
377 default_tracker_support: Asistencia
377 default_issue_status_new: Nuevo
378 default_issue_status_new: Nuevo
378 default_issue_status_assigned: Asignada
379 default_issue_status_assigned: Asignada
379 default_issue_status_resolved: Resuelta
380 default_issue_status_resolved: Resuelta
380 default_issue_status_feedback: Comentario
381 default_issue_status_feedback: Comentario
381 default_issue_status_closed: Cerrada
382 default_issue_status_closed: Cerrada
382 default_issue_status_rejected: Rechazada
383 default_issue_status_rejected: Rechazada
383 default_doc_category_user: Documentación del usuario
384 default_doc_category_user: Documentación del usuario
384 default_doc_category_tech: Documentación tecnica
385 default_doc_category_tech: Documentación tecnica
385 default_priority_low: Bajo
386 default_priority_low: Bajo
386 default_priority_normal: Normal
387 default_priority_normal: Normal
387 default_priority_high: Alto
388 default_priority_high: Alto
388 default_priority_urgent: Urgente
389 default_priority_urgent: Urgente
389 default_priority_immediate: Ahora
390 default_priority_immediate: Ahora
390
391
391 enumeration_issue_priorities: Prioridad de las peticiones
392 enumeration_issue_priorities: Prioridad de las peticiones
392 enumeration_doc_categories: Categorías del documento
393 enumeration_doc_categories: Categorías del documento
@@ -1,392 +1,393
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_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
52
52
53 notice_account_updated: Le compte a été mis à jour avec succès.
53 notice_account_updated: Le compte a été mis à jour avec succès.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
56 notice_account_wrong_password: Mot de passe incorrect
56 notice_account_wrong_password: Mot de passe incorrect
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
62 notice_successful_create: Création effectuée avec succès.
62 notice_successful_create: Création effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
65 notice_successful_connection: Connection réussie.
65 notice_successful_connection: Connection réussie.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
69
69
70 mail_subject_lost_password: Votre mot de passe redMine
70 mail_subject_lost_password: Votre mot de passe redMine
71 mail_subject_register: Activation de votre compte redMine
71 mail_subject_register: Activation de votre compte redMine
72
72
73 gui_validation_error: 1 erreur
73 gui_validation_error: 1 erreur
74 gui_validation_error_plural: %d erreurs
74 gui_validation_error_plural: %d erreurs
75
75
76 field_name: Nom
76 field_name: Nom
77 field_description: Description
77 field_description: Description
78 field_summary: Résumé
78 field_summary: Résumé
79 field_is_required: Obligatoire
79 field_is_required: Obligatoire
80 field_firstname: Prénom
80 field_firstname: Prénom
81 field_lastname: Nom
81 field_lastname: Nom
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichier
83 field_filename: Fichier
84 field_filesize: Taille
84 field_filesize: Taille
85 field_downloads: Téléchargements
85 field_downloads: Téléchargements
86 field_author: Auteur
86 field_author: Auteur
87 field_created_on: Créé
87 field_created_on: Créé
88 field_updated_on: Mis à jour
88 field_updated_on: Mis à jour
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Pour tous les projets
90 field_is_for_all: Pour tous les projets
91 field_possible_values: Valeurs possibles
91 field_possible_values: Valeurs possibles
92 field_regexp: Expression régulière
92 field_regexp: Expression régulière
93 field_min_length: Longueur minimum
93 field_min_length: Longueur minimum
94 field_max_length: Longueur maximum
94 field_max_length: Longueur maximum
95 field_value: Valeur
95 field_value: Valeur
96 field_category: Catégorie
96 field_category: Catégorie
97 field_title: Titre
97 field_title: Titre
98 field_project: Projet
98 field_project: Projet
99 field_issue: Demande
99 field_issue: Demande
100 field_status: Statut
100 field_status: Statut
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Demande fermée
102 field_is_closed: Demande fermée
103 field_is_default: Statut par défaut
103 field_is_default: Statut par défaut
104 field_html_color: Couleur
104 field_html_color: Couleur
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Sujet
106 field_subject: Sujet
107 field_due_date: Date d'échéance
107 field_due_date: Date d'échéance
108 field_assigned_to: Assigné à
108 field_assigned_to: Assigné à
109 field_priority: Priorité
109 field_priority: Priorité
110 field_fixed_version: Version corrigée
110 field_fixed_version: Version corrigée
111 field_user: Utilisateur
111 field_user: Utilisateur
112 field_role: Rôle
112 field_role: Rôle
113 field_homepage: Site web
113 field_homepage: Site web
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Sous-projet de
115 field_parent: Sous-projet de
116 field_is_in_chlog: Demandes affichées dans l'historique
116 field_is_in_chlog: Demandes affichées dans l'historique
117 field_is_in_roadmap: Demandes affichées dans la roadmap
117 field_is_in_roadmap: Demandes affichées dans la roadmap
118 field_login: Identifiant
118 field_login: Identifiant
119 field_mail_notification: Notifications par mail
119 field_mail_notification: Notifications par mail
120 field_admin: Administrateur
120 field_admin: Administrateur
121 field_locked: Verrouillé
121 field_locked: Verrouillé
122 field_last_login_on: Dernière connexion
122 field_last_login_on: Dernière connexion
123 field_language: Langue
123 field_language: Langue
124 field_effective_date: Date
124 field_effective_date: Date
125 field_password: Mot de passe
125 field_password: Mot de passe
126 field_new_password: Nouveau mot de passe
126 field_new_password: Nouveau mot de passe
127 field_password_confirmation: Confirmation
127 field_password_confirmation: Confirmation
128 field_version: Version
128 field_version: Version
129 field_type: Type
129 field_type: Type
130 field_host: Hôte
130 field_host: Hôte
131 field_port: Port
131 field_port: Port
132 field_account: Compte
132 field_account: Compte
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Attribut Identifiant
134 field_attr_login: Attribut Identifiant
135 field_attr_firstname: Attribut Prénom
135 field_attr_firstname: Attribut Prénom
136 field_attr_lastname: Attribut Nom
136 field_attr_lastname: Attribut Nom
137 field_attr_mail: Attribut Email
137 field_attr_mail: Attribut Email
138 field_onthefly: Création des utilisateurs à la volée
138 field_onthefly: Création des utilisateurs à la volée
139 field_start_date: Début
139 field_start_date: Début
140 field_done_ratio: %% Réalisé
140 field_done_ratio: %% Réalisé
141 field_auth_source: Mode d'authentification
141 field_auth_source: Mode d'authentification
142 field_hide_mail: Cacher mon adresse mail
142 field_hide_mail: Cacher mon adresse mail
143 field_comment: Commentaire
143 field_comment: Commentaire
144 field_url: URL
144 field_url: URL
145 field_start_page: Page de démarrage
145 field_start_page: Page de démarrage
146
146
147 setting_app_title: Titre de l'application
147 setting_app_title: Titre de l'application
148 setting_app_subtitle: Sous-titre de l'application
148 setting_app_subtitle: Sous-titre de l'application
149 setting_welcome_text: Texte d'accueil
149 setting_welcome_text: Texte d'accueil
150 setting_default_language: Langue par défaut
150 setting_default_language: Langue par défaut
151 setting_login_required: Authentif. obligatoire
151 setting_login_required: Authentif. obligatoire
152 setting_self_registration: Enregistrement autorisé
152 setting_self_registration: Enregistrement autorisé
153 setting_attachment_max_size: Taille max des fichiers
153 setting_attachment_max_size: Taille max des fichiers
154 setting_issues_export_limit: Limite export demandes
154 setting_issues_export_limit: Limite export demandes
155 setting_mail_from: Adresse d'émission
155 setting_mail_from: Adresse d'émission
156 setting_host_name: Nom d'hôte
156 setting_host_name: Nom d'hôte
157 setting_text_formatting: Formatage du texte
157 setting_text_formatting: Formatage du texte
158 setting_wiki_compression: Compression historique wiki
158 setting_wiki_compression: Compression historique wiki
159
159
160 label_user: Utilisateur
160 label_user: Utilisateur
161 label_user_plural: Utilisateurs
161 label_user_plural: Utilisateurs
162 label_user_new: Nouvel utilisateur
162 label_user_new: Nouvel utilisateur
163 label_project: Projet
163 label_project: Projet
164 label_project_new: Nouveau projet
164 label_project_new: Nouveau projet
165 label_project_plural: Projets
165 label_project_plural: Projets
166 label_project_latest: Derniers projets
166 label_project_latest: Derniers projets
167 label_issue: Demande
167 label_issue: Demande
168 label_issue_new: Nouvelle demande
168 label_issue_new: Nouvelle demande
169 label_issue_plural: Demandes
169 label_issue_plural: Demandes
170 label_issue_view_all: Voir toutes les demandes
170 label_issue_view_all: Voir toutes les demandes
171 label_document: Document
171 label_document: Document
172 label_document_new: Nouveau document
172 label_document_new: Nouveau document
173 label_document_plural: Documents
173 label_document_plural: Documents
174 label_role: Rôle
174 label_role: Rôle
175 label_role_plural: Rôles
175 label_role_plural: Rôles
176 label_role_new: Nouveau rôle
176 label_role_new: Nouveau rôle
177 label_role_and_permissions: Rôles et permissions
177 label_role_and_permissions: Rôles et permissions
178 label_member: Membre
178 label_member: Membre
179 label_member_new: Nouveau membre
179 label_member_new: Nouveau membre
180 label_member_plural: Membres
180 label_member_plural: Membres
181 label_tracker: Tracker
181 label_tracker: Tracker
182 label_tracker_plural: Trackers
182 label_tracker_plural: Trackers
183 label_tracker_new: Nouveau tracker
183 label_tracker_new: Nouveau tracker
184 label_workflow: Workflow
184 label_workflow: Workflow
185 label_issue_status: Statut de demandes
185 label_issue_status: Statut de demandes
186 label_issue_status_plural: Statuts de demandes
186 label_issue_status_plural: Statuts de demandes
187 label_issue_status_new: Nouveau statut
187 label_issue_status_new: Nouveau statut
188 label_issue_category: Catégorie de demandes
188 label_issue_category: Catégorie de demandes
189 label_issue_category_plural: Catégories de demandes
189 label_issue_category_plural: Catégories de demandes
190 label_issue_category_new: Nouvelle catégorie
190 label_issue_category_new: Nouvelle catégorie
191 label_custom_field: Champ personnalisé
191 label_custom_field: Champ personnalisé
192 label_custom_field_plural: Champs personnalisés
192 label_custom_field_plural: Champs personnalisés
193 label_custom_field_new: Nouveau champ personnalisé
193 label_custom_field_new: Nouveau champ personnalisé
194 label_enumerations: Listes de valeurs
194 label_enumerations: Listes de valeurs
195 label_enumeration_new: Nouvelle valeur
195 label_enumeration_new: Nouvelle valeur
196 label_information: Information
196 label_information: Information
197 label_information_plural: Informations
197 label_information_plural: Informations
198 label_please_login: Identification
198 label_please_login: Identification
199 label_register: S'enregistrer
199 label_register: S'enregistrer
200 label_password_lost: Mot de passe perdu
200 label_password_lost: Mot de passe perdu
201 label_home: Accueil
201 label_home: Accueil
202 label_my_page: Ma page
202 label_my_page: Ma page
203 label_my_account: Mon compte
203 label_my_account: Mon compte
204 label_my_projects: Mes projets
204 label_my_projects: Mes projets
205 label_administration: Administration
205 label_administration: Administration
206 label_login: Connexion
206 label_login: Connexion
207 label_logout: Déconnexion
207 label_logout: Déconnexion
208 label_help: Aide
208 label_help: Aide
209 label_reported_issues: Demandes soumises
209 label_reported_issues: Demandes soumises
210 label_assigned_to_me_issues: Demandes qui me sont assignées
210 label_assigned_to_me_issues: Demandes qui me sont assignées
211 label_last_login: Dernière connexion
211 label_last_login: Dernière connexion
212 label_last_updates: Dernière mise à jour
212 label_last_updates: Dernière mise à jour
213 label_last_updates_plural: %d dernières mises à jour
213 label_last_updates_plural: %d dernières mises à jour
214 label_registered_on: Inscrit le
214 label_registered_on: Inscrit le
215 label_activity: Activité
215 label_activity: Activité
216 label_new: Nouveau
216 label_new: Nouveau
217 label_logged_as: Connecté en tant que
217 label_logged_as: Connecté en tant que
218 label_environment: Environnement
218 label_environment: Environnement
219 label_authentication: Authentification
219 label_authentication: Authentification
220 label_auth_source: Mode d'authentification
220 label_auth_source: Mode d'authentification
221 label_auth_source_new: Nouveau mode d'authentification
221 label_auth_source_new: Nouveau mode d'authentification
222 label_auth_source_plural: Modes d'authentification
222 label_auth_source_plural: Modes d'authentification
223 label_subproject: Sous-projet
223 label_subproject: Sous-projet
224 label_subproject_plural: Sous-projets
224 label_subproject_plural: Sous-projets
225 label_min_max_length: Longueurs mini - maxi
225 label_min_max_length: Longueurs mini - maxi
226 label_list: Liste
226 label_list: Liste
227 label_date: Date
227 label_date: Date
228 label_integer: Entier
228 label_integer: Entier
229 label_boolean: Booléen
229 label_boolean: Booléen
230 label_string: Texte
230 label_string: Texte
231 label_text: Texte long
231 label_text: Texte long
232 label_attribute: Attribut
232 label_attribute: Attribut
233 label_attribute_plural: Attributs
233 label_attribute_plural: Attributs
234 label_download: %d Téléchargement
234 label_download: %d Téléchargement
235 label_download_plural: %d Téléchargements
235 label_download_plural: %d Téléchargements
236 label_no_data: Aucune donnée à afficher
236 label_no_data: Aucune donnée à afficher
237 label_change_status: Changer le statut
237 label_change_status: Changer le statut
238 label_history: Historique
238 label_history: Historique
239 label_attachment: Fichier
239 label_attachment: Fichier
240 label_attachment_new: Nouveau fichier
240 label_attachment_new: Nouveau fichier
241 label_attachment_delete: Supprimer le fichier
241 label_attachment_delete: Supprimer le fichier
242 label_attachment_plural: Fichiers
242 label_attachment_plural: Fichiers
243 label_report: Rapport
243 label_report: Rapport
244 label_report_plural: Rapports
244 label_report_plural: Rapports
245 label_news: Annonce
245 label_news: Annonce
246 label_news_new: Nouvelle annonce
246 label_news_new: Nouvelle annonce
247 label_news_plural: Annonces
247 label_news_plural: Annonces
248 label_news_latest: Dernières annonces
248 label_news_latest: Dernières annonces
249 label_news_view_all: Voir toutes les annonces
249 label_news_view_all: Voir toutes les annonces
250 label_change_log: Historique
250 label_change_log: Historique
251 label_settings: Configuration
251 label_settings: Configuration
252 label_overview: Aperçu
252 label_overview: Aperçu
253 label_version: Version
253 label_version: Version
254 label_version_new: Nouvelle version
254 label_version_new: Nouvelle version
255 label_version_plural: Versions
255 label_version_plural: Versions
256 label_confirmation: Confirmation
256 label_confirmation: Confirmation
257 label_export_to: Exporter en
257 label_export_to: Exporter en
258 label_read: Lire...
258 label_read: Lire...
259 label_public_projects: Projets publics
259 label_public_projects: Projets publics
260 label_open_issues: ouvert
260 label_open_issues: ouvert
261 label_open_issues_plural: ouverts
261 label_open_issues_plural: ouverts
262 label_closed_issues: fermé
262 label_closed_issues: fermé
263 label_closed_issues_plural: fermés
263 label_closed_issues_plural: fermés
264 label_total: Total
264 label_total: Total
265 label_permissions: Permissions
265 label_permissions: Permissions
266 label_current_status: Statut actuel
266 label_current_status: Statut actuel
267 label_new_statuses_allowed: Nouveaux statuts autorisés
267 label_new_statuses_allowed: Nouveaux statuts autorisés
268 label_all: tous
268 label_all: tous
269 label_none: aucun
269 label_none: aucun
270 label_next: Suivant
270 label_next: Suivant
271 label_previous: Précédent
271 label_previous: Précédent
272 label_used_by: Utilisé par
272 label_used_by: Utilisé par
273 label_details: Détails...
273 label_details: Détails...
274 label_add_note: Ajouter une note
274 label_add_note: Ajouter une note
275 label_per_page: Par page
275 label_per_page: Par page
276 label_calendar: Calendrier
276 label_calendar: Calendrier
277 label_months_from: mois depuis
277 label_months_from: mois depuis
278 label_gantt: Gantt
278 label_gantt: Gantt
279 label_internal: Interne
279 label_internal: Interne
280 label_last_changes: %d derniers changements
280 label_last_changes: %d derniers changements
281 label_change_view_all: Voir tous les changements
281 label_change_view_all: Voir tous les changements
282 label_personalize_page: Personnaliser cette page
282 label_personalize_page: Personnaliser cette page
283 label_comment: Commentaire
283 label_comment: Commentaire
284 label_comment_plural: Commentaires
284 label_comment_plural: Commentaires
285 label_comment_add: Ajouter un commentaire
285 label_comment_add: Ajouter un commentaire
286 label_comment_added: Commentaire ajouté
286 label_comment_added: Commentaire ajouté
287 label_comment_delete: Supprimer les commentaires
287 label_comment_delete: Supprimer les commentaires
288 label_query: Rapport personnalisé
288 label_query: Rapport personnalisé
289 label_query_plural: Rapports personnalisés
289 label_query_plural: Rapports personnalisés
290 label_query_new: Nouveau rapport
290 label_query_new: Nouveau rapport
291 label_filter_add: Ajouter le filtre
291 label_filter_add: Ajouter le filtre
292 label_filter_plural: Filtres
292 label_filter_plural: Filtres
293 label_equals: égal
293 label_equals: égal
294 label_not_equals: différent
294 label_not_equals: différent
295 label_in_less_than: dans moins de
295 label_in_less_than: dans moins de
296 label_in_more_than: dans plus de
296 label_in_more_than: dans plus de
297 label_in: dans
297 label_in: dans
298 label_today: aujourd'hui
298 label_today: aujourd'hui
299 label_less_than_ago: il y a moins de
299 label_less_than_ago: il y a moins de
300 label_more_than_ago: il y a plus de
300 label_more_than_ago: il y a plus de
301 label_ago: il y a
301 label_ago: il y a
302 label_contains: contient
302 label_contains: contient
303 label_not_contains: ne contient pas
303 label_not_contains: ne contient pas
304 label_day_plural: jours
304 label_day_plural: jours
305 label_repository: Dépôt SVN
305 label_repository: Dépôt SVN
306 label_browse: Parcourir
306 label_browse: Parcourir
307 label_modification: %d modification
307 label_modification: %d modification
308 label_modification_plural: %d modifications
308 label_modification_plural: %d modifications
309 label_revision: Révision
309 label_revision: Révision
310 label_revision_plural: Révisions
310 label_revision_plural: Révisions
311 label_added: ajouté
311 label_added: ajouté
312 label_modified: modifié
312 label_modified: modifié
313 label_deleted: supprimé
313 label_deleted: supprimé
314 label_latest_revision: Dernière révision
314 label_latest_revision: Dernière révision
315 label_view_revisions: Voir les révisions
315 label_view_revisions: Voir les révisions
316 label_max_size: Taille maximale
316 label_max_size: Taille maximale
317 label_on: sur
317 label_on: sur
318 label_sort_highest: Remonter en premier
318 label_sort_highest: Remonter en premier
319 label_sort_higher: Remonter
319 label_sort_higher: Remonter
320 label_sort_lower: Descendre
320 label_sort_lower: Descendre
321 label_sort_lowest: Descendre en dernier
321 label_sort_lowest: Descendre en dernier
322 label_roadmap: Roadmap
322 label_roadmap: Roadmap
323 label_search: Recherche
323 label_search: Recherche
324 label_result: %d résultat
324 label_result: %d résultat
325 label_result_plural: %d résultats
325 label_result_plural: %d résultats
326 label_all_words: Tous les mots
326 label_all_words: Tous les mots
327 label_wiki: Wiki
327 label_wiki: Wiki
328 label_page_index: Index
328 label_page_index: Index
329 label_current_version: Version actuelle
329 label_current_version: Version actuelle
330 label_preview: Prévisualisation
330 label_preview: Prévisualisation
331 label_feed_plural: Flux RSS
331 label_feed_plural: Flux RSS
332 label_changes_details: Détails de tous les changements
332 label_changes_details: Détails de tous les changements
333 label_issue_tracking: Suivi des demandes
333
334
334 button_login: Connexion
335 button_login: Connexion
335 button_submit: Soumettre
336 button_submit: Soumettre
336 button_save: Sauvegarder
337 button_save: Sauvegarder
337 button_check_all: Tout cocher
338 button_check_all: Tout cocher
338 button_uncheck_all: Tout décocher
339 button_uncheck_all: Tout décocher
339 button_delete: Supprimer
340 button_delete: Supprimer
340 button_create: Créer
341 button_create: Créer
341 button_test: Tester
342 button_test: Tester
342 button_edit: Modifier
343 button_edit: Modifier
343 button_add: Ajouter
344 button_add: Ajouter
344 button_change: Changer
345 button_change: Changer
345 button_apply: Appliquer
346 button_apply: Appliquer
346 button_clear: Effacer
347 button_clear: Effacer
347 button_lock: Verrouiller
348 button_lock: Verrouiller
348 button_unlock: Déverrouiller
349 button_unlock: Déverrouiller
349 button_download: Télécharger
350 button_download: Télécharger
350 button_list: Lister
351 button_list: Lister
351 button_view: Voir
352 button_view: Voir
352 button_move: Déplacer
353 button_move: Déplacer
353 button_back: Retour
354 button_back: Retour
354 button_cancel: Annuler
355 button_cancel: Annuler
355 button_activate: Activer
356 button_activate: Activer
356 button_sort: Trier
357 button_sort: Trier
357
358
358 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
359 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
359 text_regexp_info: ex. ^[A-Z0-9]+$
360 text_regexp_info: ex. ^[A-Z0-9]+$
360 text_min_max_length_info: 0 pour aucune restriction
361 text_min_max_length_info: 0 pour aucune restriction
361 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
362 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
362 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
363 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
363 text_are_you_sure: Etes-vous sûr ?
364 text_are_you_sure: Etes-vous sûr ?
364 text_journal_changed: changé de %s à %s
365 text_journal_changed: changé de %s à %s
365 text_journal_set_to: mis à %s
366 text_journal_set_to: mis à %s
366 text_journal_deleted: supprimé
367 text_journal_deleted: supprimé
367 text_tip_task_begin_day: tâche commençant ce jour
368 text_tip_task_begin_day: tâche commençant ce jour
368 text_tip_task_end_day: tâche finissant ce jour
369 text_tip_task_end_day: tâche finissant ce jour
369 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
370 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
370
371
371 default_role_manager: Manager
372 default_role_manager: Manager
372 default_role_developper: Développeur
373 default_role_developper: Développeur
373 default_role_reporter: Rapporteur
374 default_role_reporter: Rapporteur
374 default_tracker_bug: Anomalie
375 default_tracker_bug: Anomalie
375 default_tracker_feature: Evolution
376 default_tracker_feature: Evolution
376 default_tracker_support: Assistance
377 default_tracker_support: Assistance
377 default_issue_status_new: Nouveau
378 default_issue_status_new: Nouveau
378 default_issue_status_assigned: Assigné
379 default_issue_status_assigned: Assigné
379 default_issue_status_resolved: Résolu
380 default_issue_status_resolved: Résolu
380 default_issue_status_feedback: Commentaire
381 default_issue_status_feedback: Commentaire
381 default_issue_status_closed: Fermé
382 default_issue_status_closed: Fermé
382 default_issue_status_rejected: Rejeté
383 default_issue_status_rejected: Rejeté
383 default_doc_category_user: Documentation utilisateur
384 default_doc_category_user: Documentation utilisateur
384 default_doc_category_tech: Documentation technique
385 default_doc_category_tech: Documentation technique
385 default_priority_low: Bas
386 default_priority_low: Bas
386 default_priority_normal: Normal
387 default_priority_normal: Normal
387 default_priority_high: Haut
388 default_priority_high: Haut
388 default_priority_urgent: Urgent
389 default_priority_urgent: Urgent
389 default_priority_immediate: Immédiat
390 default_priority_immediate: Immédiat
390
391
391 enumeration_issue_priorities: Priorités des demandes
392 enumeration_issue_priorities: Priorités des demandes
392 enumeration_doc_categories: Catégories des documents
393 enumeration_doc_categories: Catégories des documents
@@ -1,392 +1,393
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: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,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 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
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: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%d/%%m/%%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: 'Si'
44 general_text_Yes: 'Si'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'si'
46 general_text_yes: 'si'
47 general_lang_it: 'Italiano'
47 general_lang_it: 'Italiano'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
52
52
53 notice_account_updated: L'utenza è stata aggiornata.
53 notice_account_updated: L'utenza è stata aggiornata.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
55 notice_account_password_updated: La password è stata aggiornata.
55 notice_account_password_updated: La password è stata aggiornata.
56 notice_account_wrong_password: Password errata
56 notice_account_wrong_password: Password errata
57 notice_account_register_done: L'utenza è stata creata.
57 notice_account_register_done: L'utenza è stata creata.
58 notice_account_unknown_email: Utente sconosciuto.
58 notice_account_unknown_email: Utente sconosciuto.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Password redMine
70 mail_subject_lost_password: Password redMine
71 mail_subject_register: Attivazione utenza redMine
71 mail_subject_register: Attivazione utenza redMine
72
72
73 gui_validation_error: 1 errore
73 gui_validation_error: 1 errore
74 gui_validation_error_plural: %d errori
74 gui_validation_error_plural: %d errori
75
75
76 field_name: Nome
76 field_name: Nome
77 field_description: Descrizione
77 field_description: Descrizione
78 field_summary: Sommario
78 field_summary: Sommario
79 field_is_required: Richiesto
79 field_is_required: Richiesto
80 field_firstname: Nome
80 field_firstname: Nome
81 field_lastname: Cognome
81 field_lastname: Cognome
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Dimensione
84 field_filesize: Dimensione
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autore
86 field_author: Autore
87 field_created_on: Creato
87 field_created_on: Creato
88 field_updated_on: Aggiornato
88 field_updated_on: Aggiornato
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Per tutti i progetti
90 field_is_for_all: Per tutti i progetti
91 field_possible_values: Valori possibili
91 field_possible_values: Valori possibili
92 field_regexp: Espressione regolare
92 field_regexp: Espressione regolare
93 field_min_length: Lunghezza minima
93 field_min_length: Lunghezza minima
94 field_max_length: Lunghezza massima
94 field_max_length: Lunghezza massima
95 field_value: Valore
95 field_value: Valore
96 field_category: Categoria
96 field_category: Categoria
97 field_title: Titolo
97 field_title: Titolo
98 field_project: Progetto
98 field_project: Progetto
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Stato
100 field_status: Stato
101 field_notes: Note
101 field_notes: Note
102 field_is_closed: Chiude il contesto
102 field_is_closed: Chiude il contesto
103 field_is_default: Stato predefinito
103 field_is_default: Stato predefinito
104 field_html_color: Colore
104 field_html_color: Colore
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Oggetto
106 field_subject: Oggetto
107 field_due_date: Data ultima
107 field_due_date: Data ultima
108 field_assigned_to: Assegnato a
108 field_assigned_to: Assegnato a
109 field_priority: Priorita'
109 field_priority: Priorita'
110 field_fixed_version: Versione di fix
110 field_fixed_version: Versione di fix
111 field_user: Utente
111 field_user: Utente
112 field_role: Ruolo
112 field_role: Ruolo
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Pubblico
114 field_is_public: Pubblico
115 field_parent: Sottoprogetto di
115 field_parent: Sottoprogetto di
116 field_is_in_chlog: Contesti mostrati nel changelog
116 field_is_in_chlog: Contesti mostrati nel changelog
117 field_is_in_roadmap: Contesti mostrati nel roadmap
117 field_is_in_roadmap: Contesti mostrati nel roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Notifiche via e-mail
119 field_mail_notification: Notifiche via e-mail
120 field_admin: Amministratore
120 field_admin: Amministratore
121 field_locked: Bloccato
121 field_locked: Bloccato
122 field_last_login_on: Ultima connessione
122 field_last_login_on: Ultima connessione
123 field_language: Lingua
123 field_language: Lingua
124 field_effective_date: Data
124 field_effective_date: Data
125 field_password: Password
125 field_password: Password
126 field_new_password: Nuova password
126 field_new_password: Nuova password
127 field_password_confirmation: Conferma
127 field_password_confirmation: Conferma
128 field_version: Versione
128 field_version: Versione
129 field_type: Tipo
129 field_type: Tipo
130 field_host: Host
130 field_host: Host
131 field_port: Porta
131 field_port: Porta
132 field_account: Utenza
132 field_account: Utenza
133 field_base_dn: DN base
133 field_base_dn: DN base
134 field_attr_login: Attributo login
134 field_attr_login: Attributo login
135 field_attr_firstname: Attributo nome
135 field_attr_firstname: Attributo nome
136 field_attr_lastname: Attributo cognome
136 field_attr_lastname: Attributo cognome
137 field_attr_mail: Attributo e-mail
137 field_attr_mail: Attributo e-mail
138 field_onthefly: Creazione utenza "al volo"
138 field_onthefly: Creazione utenza "al volo"
139 field_start_date: Inizio
139 field_start_date: Inizio
140 field_done_ratio: %% completo
140 field_done_ratio: %% completo
141 field_auth_source: Modalità di autenticazione
141 field_auth_source: Modalità di autenticazione
142 field_hide_mail: Nascondi il mio indirizzo di e-mail
142 field_hide_mail: Nascondi il mio indirizzo di e-mail
143 field_comment: Commento
143 field_comment: Commento
144 field_url: URL
144 field_url: URL
145 field_start_page: Pagina principale
145 field_start_page: Pagina principale
146
146
147 setting_app_title: Titolo applicazione
147 setting_app_title: Titolo applicazione
148 setting_app_subtitle: Sottotitolo applicazione
148 setting_app_subtitle: Sottotitolo applicazione
149 setting_welcome_text: Testo di benvenuto
149 setting_welcome_text: Testo di benvenuto
150 setting_default_language: Lingua di default
150 setting_default_language: Lingua di default
151 setting_login_required: Autenticazione richiesta
151 setting_login_required: Autenticazione richiesta
152 setting_self_registration: Auto-registrazione abilitata
152 setting_self_registration: Auto-registrazione abilitata
153 setting_attachment_max_size: Massima dimensione allegati
153 setting_attachment_max_size: Massima dimensione allegati
154 setting_issues_export_limit: Limite esportazione contesti
154 setting_issues_export_limit: Limite esportazione contesti
155 setting_mail_from: Indirizzo sorgente e-mail
155 setting_mail_from: Indirizzo sorgente e-mail
156 setting_host_name: Nome host
156 setting_host_name: Nome host
157 setting_text_formatting: Formattazione testo
157 setting_text_formatting: Formattazione testo
158 setting_wiki_compression: Compressione di storia di Wiki
158 setting_wiki_compression: Compressione di storia di Wiki
159
159
160 label_user: Utente
160 label_user: Utente
161 label_user_plural: Utenti
161 label_user_plural: Utenti
162 label_user_new: Nuovo utente
162 label_user_new: Nuovo utente
163 label_project: Progetto
163 label_project: Progetto
164 label_project_new: New project
164 label_project_new: New project
165 label_project_plural: Progetti
165 label_project_plural: Progetti
166 label_project_latest: Ultimi progetti registrati
166 label_project_latest: Ultimi progetti registrati
167 label_issue: Contesto
167 label_issue: Contesto
168 label_issue_new: Nuovo contesto
168 label_issue_new: Nuovo contesto
169 label_issue_plural: Contesti
169 label_issue_plural: Contesti
170 label_issue_view_all: Mostra tutti i contesti
170 label_issue_view_all: Mostra tutti i contesti
171 label_document: Documento
171 label_document: Documento
172 label_document_new: Nuovo documento
172 label_document_new: Nuovo documento
173 label_document_plural: Documenti
173 label_document_plural: Documenti
174 label_role: Ruolo
174 label_role: Ruolo
175 label_role_plural: Ruoli
175 label_role_plural: Ruoli
176 label_role_new: Nuovo ruolo
176 label_role_new: Nuovo ruolo
177 label_role_and_permissions: Ruoli e permessi
177 label_role_and_permissions: Ruoli e permessi
178 label_member: Membro
178 label_member: Membro
179 label_member_new: Nuovo membro
179 label_member_new: Nuovo membro
180 label_member_plural: Membri
180 label_member_plural: Membri
181 label_tracker: Tracker
181 label_tracker: Tracker
182 label_tracker_plural: Trackers
182 label_tracker_plural: Trackers
183 label_tracker_new: Nuovo tracker
183 label_tracker_new: Nuovo tracker
184 label_workflow: Workflow
184 label_workflow: Workflow
185 label_issue_status: Stato contesti
185 label_issue_status: Stato contesti
186 label_issue_status_plural: Stati contesto
186 label_issue_status_plural: Stati contesto
187 label_issue_status_new: Nuovo stato
187 label_issue_status_new: Nuovo stato
188 label_issue_category: Categorie contesti
188 label_issue_category: Categorie contesti
189 label_issue_category_plural: Categorie contesto
189 label_issue_category_plural: Categorie contesto
190 label_issue_category_new: Nuova categoria
190 label_issue_category_new: Nuova categoria
191 label_custom_field: Campo personalizzato
191 label_custom_field: Campo personalizzato
192 label_custom_field_plural: Campi personalizzati
192 label_custom_field_plural: Campi personalizzati
193 label_custom_field_new: Nuovo campo personalizzato
193 label_custom_field_new: Nuovo campo personalizzato
194 label_enumerations: Enumerazioni
194 label_enumerations: Enumerazioni
195 label_enumeration_new: Nuovo valore
195 label_enumeration_new: Nuovo valore
196 label_information: Informazione
196 label_information: Informazione
197 label_information_plural: Informazioni
197 label_information_plural: Informazioni
198 label_please_login: Autenticarsi
198 label_please_login: Autenticarsi
199 label_register: Registrati
199 label_register: Registrati
200 label_password_lost: Password dimenticata
200 label_password_lost: Password dimenticata
201 label_home: Home
201 label_home: Home
202 label_my_page: Pagina personale
202 label_my_page: Pagina personale
203 label_my_account: La mia utenza
203 label_my_account: La mia utenza
204 label_my_projects: I miei progetti
204 label_my_projects: I miei progetti
205 label_administration: Amministrazione
205 label_administration: Amministrazione
206 label_login: Login
206 label_login: Login
207 label_logout: Logout
207 label_logout: Logout
208 label_help: Aiuto
208 label_help: Aiuto
209 label_reported_issues: Contesti segnalati
209 label_reported_issues: Contesti segnalati
210 label_assigned_to_me_issues: I miei contesti
210 label_assigned_to_me_issues: I miei contesti
211 label_last_login: Ultimo collegamento
211 label_last_login: Ultimo collegamento
212 label_last_updates: Ultimo aggiornamento
212 label_last_updates: Ultimo aggiornamento
213 label_last_updates_plural: %d ultimo aggiornamento
213 label_last_updates_plural: %d ultimo aggiornamento
214 label_registered_on: Registrato il
214 label_registered_on: Registrato il
215 label_activity: Attività
215 label_activity: Attività
216 label_new: Nuovo
216 label_new: Nuovo
217 label_logged_as: Autenticato come
217 label_logged_as: Autenticato come
218 label_environment: Ambiente
218 label_environment: Ambiente
219 label_authentication: Autenticazione
219 label_authentication: Autenticazione
220 label_auth_source: Modalità di autenticazione
220 label_auth_source: Modalità di autenticazione
221 label_auth_source_new: Nuova modalità di autenticazione
221 label_auth_source_new: Nuova modalità di autenticazione
222 label_auth_source_plural: Modalità di autenticazione
222 label_auth_source_plural: Modalità di autenticazione
223 label_subproject: Sottoprogetto
223 label_subproject: Sottoprogetto
224 label_subproject_plural: Sottoprogetti
224 label_subproject_plural: Sottoprogetti
225 label_min_max_length: Lunghezza minima - massima
225 label_min_max_length: Lunghezza minima - massima
226 label_list: Elenco
226 label_list: Elenco
227 label_date: Data
227 label_date: Data
228 label_integer: Intero
228 label_integer: Intero
229 label_boolean: Booleano
229 label_boolean: Booleano
230 label_string: Testo
230 label_string: Testo
231 label_text: Testo esteso
231 label_text: Testo esteso
232 label_attribute: Attributo
232 label_attribute: Attributo
233 label_attribute_plural: Attributi
233 label_attribute_plural: Attributi
234 label_download: %d Download
234 label_download: %d Download
235 label_download_plural: %d Download
235 label_download_plural: %d Download
236 label_no_data: Nessun dato disponibile
236 label_no_data: Nessun dato disponibile
237 label_change_status: Cambia stato
237 label_change_status: Cambia stato
238 label_history: Cronologia
238 label_history: Cronologia
239 label_attachment: File
239 label_attachment: File
240 label_attachment_new: Nuovo file
240 label_attachment_new: Nuovo file
241 label_attachment_delete: Elimina file
241 label_attachment_delete: Elimina file
242 label_attachment_plural: File
242 label_attachment_plural: File
243 label_report: Report
243 label_report: Report
244 label_report_plural: Report
244 label_report_plural: Report
245 label_news: Notizia
245 label_news: Notizia
246 label_news_new: Aggiungi notizia
246 label_news_new: Aggiungi notizia
247 label_news_plural: Notizie
247 label_news_plural: Notizie
248 label_news_latest: Utime notizie
248 label_news_latest: Utime notizie
249 label_news_view_all: Tutte le notizie
249 label_news_view_all: Tutte le notizie
250 label_change_log: Change log
250 label_change_log: Change log
251 label_settings: Impostazioni
251 label_settings: Impostazioni
252 label_overview: Panoramica
252 label_overview: Panoramica
253 label_version: Versione
253 label_version: Versione
254 label_version_new: Nuova versione
254 label_version_new: Nuova versione
255 label_version_plural: Versioni
255 label_version_plural: Versioni
256 label_confirmation: Conferma
256 label_confirmation: Conferma
257 label_export_to: Esporta su
257 label_export_to: Esporta su
258 label_read: Leggi...
258 label_read: Leggi...
259 label_public_projects: Progetti pubblici
259 label_public_projects: Progetti pubblici
260 label_open_issues: aperta
260 label_open_issues: aperta
261 label_open_issues_plural: aperte
261 label_open_issues_plural: aperte
262 label_closed_issues: chiusa
262 label_closed_issues: chiusa
263 label_closed_issues_plural: chiuse
263 label_closed_issues_plural: chiuse
264 label_total: Totale
264 label_total: Totale
265 label_permissions: Permessi
265 label_permissions: Permessi
266 label_current_status: Stato attuale
266 label_current_status: Stato attuale
267 label_new_statuses_allowed: Nuovi stati possibili
267 label_new_statuses_allowed: Nuovi stati possibili
268 label_all: tutti
268 label_all: tutti
269 label_none: nessuno
269 label_none: nessuno
270 label_next: Successivo
270 label_next: Successivo
271 label_previous: Precedente
271 label_previous: Precedente
272 label_used_by: Usato da
272 label_used_by: Usato da
273 label_details: Dettagli...
273 label_details: Dettagli...
274 label_add_note: Aggiungi una nota
274 label_add_note: Aggiungi una nota
275 label_per_page: Per pagina
275 label_per_page: Per pagina
276 label_calendar: Calendario
276 label_calendar: Calendario
277 label_months_from: mesi da
277 label_months_from: mesi da
278 label_gantt: Gantt
278 label_gantt: Gantt
279 label_internal: Interno
279 label_internal: Interno
280 label_last_changes: ultime %d modifiche
280 label_last_changes: ultime %d modifiche
281 label_change_view_all: Tutte le modifiche
281 label_change_view_all: Tutte le modifiche
282 label_personalize_page: Personalizza la pagina
282 label_personalize_page: Personalizza la pagina
283 label_comment: Commento
283 label_comment: Commento
284 label_comment_plural: Commenti
284 label_comment_plural: Commenti
285 label_comment_add: Aggiungi un commento
285 label_comment_add: Aggiungi un commento
286 label_comment_added: Commento aggiunto
286 label_comment_added: Commento aggiunto
287 label_comment_delete: Elimina commenti
287 label_comment_delete: Elimina commenti
288 label_query: Custom query
288 label_query: Custom query
289 label_query_plural: Query personalizzate
289 label_query_plural: Query personalizzate
290 label_query_new: Nuova query
290 label_query_new: Nuova query
291 label_filter_add: Aggiungi filtro
291 label_filter_add: Aggiungi filtro
292 label_filter_plural: Filtri
292 label_filter_plural: Filtri
293 label_equals: è
293 label_equals: è
294 label_not_equals: non è
294 label_not_equals: non è
295 label_in_less_than: è minore di
295 label_in_less_than: è minore di
296 label_in_more_than: è maggiore di
296 label_in_more_than: è maggiore di
297 label_in: in
297 label_in: in
298 label_today: oggi
298 label_today: oggi
299 label_less_than_ago: meno di giorni fa
299 label_less_than_ago: meno di giorni fa
300 label_more_than_ago: più di giorni fa
300 label_more_than_ago: più di giorni fa
301 label_ago: giorni fa
301 label_ago: giorni fa
302 label_contains: contiene
302 label_contains: contiene
303 label_not_contains: non contiene
303 label_not_contains: non contiene
304 label_day_plural: giorni
304 label_day_plural: giorni
305 label_repository: SVN Repository
305 label_repository: SVN Repository
306 label_browse: Browse
306 label_browse: Browse
307 label_modification: %d modifica
307 label_modification: %d modifica
308 label_modification_plural: %d modifiche
308 label_modification_plural: %d modifiche
309 label_revision: Versione
309 label_revision: Versione
310 label_revision_plural: Versioni
310 label_revision_plural: Versioni
311 label_added: aggiunto
311 label_added: aggiunto
312 label_modified: modificato
312 label_modified: modificato
313 label_deleted: eliminato
313 label_deleted: eliminato
314 label_latest_revision: Ultima versione
314 label_latest_revision: Ultima versione
315 label_view_revisions: Mostra versioni
315 label_view_revisions: Mostra versioni
316 label_max_size: Dimensione massima
316 label_max_size: Dimensione massima
317 label_on: 'on'
317 label_on: 'on'
318 label_sort_highest: Sposta in cima
318 label_sort_highest: Sposta in cima
319 label_sort_higher: Su
319 label_sort_higher: Su
320 label_sort_lower: Giù
320 label_sort_lower: Giù
321 label_sort_lowest: Sposta in fondo
321 label_sort_lowest: Sposta in fondo
322 label_roadmap: Roadmap
322 label_roadmap: Roadmap
323 label_search: Ricerca
323 label_search: Ricerca
324 label_result: %d risultato
324 label_result: %d risultato
325 label_result_plural: %d risultati
325 label_result_plural: %d risultati
326 label_all_words: Tutte le parole
326 label_all_words: Tutte le parole
327 label_wiki: Wiki
327 label_wiki: Wiki
328 label_page_index: Indice
328 label_page_index: Indice
329 label_current_version: Versione corrente
329 label_current_version: Versione corrente
330 label_preview: Previsione
330 label_preview: Previsione
331 label_feed_plural: Feeds
331 label_feed_plural: Feeds
332 label_changes_details: Particolari di tutti i cambiamenti
332 label_changes_details: Particolari di tutti i cambiamenti
333 label_issue_tracking: Issue tracking
333
334
334 button_login: Login
335 button_login: Login
335 button_submit: Invia
336 button_submit: Invia
336 button_save: Salva
337 button_save: Salva
337 button_check_all: Seleziona tutti
338 button_check_all: Seleziona tutti
338 button_uncheck_all: Deseleziona tutti
339 button_uncheck_all: Deseleziona tutti
339 button_delete: Elimina
340 button_delete: Elimina
340 button_create: Crea
341 button_create: Crea
341 button_test: Test
342 button_test: Test
342 button_edit: Modifica
343 button_edit: Modifica
343 button_add: Aggiungi
344 button_add: Aggiungi
344 button_change: Modifica
345 button_change: Modifica
345 button_apply: Applica
346 button_apply: Applica
346 button_clear: Pulisci
347 button_clear: Pulisci
347 button_lock: Blocca
348 button_lock: Blocca
348 button_unlock: Sblocca
349 button_unlock: Sblocca
349 button_download: Scarica
350 button_download: Scarica
350 button_list: Elenca
351 button_list: Elenca
351 button_view: Mostra
352 button_view: Mostra
352 button_move: Sposta
353 button_move: Sposta
353 button_back: Indietro
354 button_back: Indietro
354 button_cancel: Annulla
355 button_cancel: Annulla
355 button_activate: Attiva
356 button_activate: Attiva
356 button_sort: Ordina
357 button_sort: Ordina
357
358
358 text_select_mail_notifications: Select actions for which mail notifications should be sent.
359 text_select_mail_notifications: Select actions for which mail notifications should be sent.
359 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_regexp_info: eg. ^[A-Z0-9]+$
360 text_min_max_length_info: 0 means no restriction
361 text_min_max_length_info: 0 means no restriction
361 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
362 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
362 text_workflow_edit: Select a role and a tracker to edit the workflow
363 text_workflow_edit: Select a role and a tracker to edit the workflow
363 text_are_you_sure: Are you sure ?
364 text_are_you_sure: Are you sure ?
364 text_journal_changed: changed from %s to %s
365 text_journal_changed: changed from %s to %s
365 text_journal_set_to: set to %s
366 text_journal_set_to: set to %s
366 text_journal_deleted: deleted
367 text_journal_deleted: deleted
367 text_tip_task_begin_day: task beginning this day
368 text_tip_task_begin_day: task beginning this day
368 text_tip_task_end_day: task ending this day
369 text_tip_task_end_day: task ending this day
369 text_tip_task_begin_end_day: task beginning and ending this day
370 text_tip_task_begin_end_day: task beginning and ending this day
370
371
371 default_role_manager: Manager
372 default_role_manager: Manager
372 default_role_developper: Sviluppatore
373 default_role_developper: Sviluppatore
373 default_role_reporter: Reporter
374 default_role_reporter: Reporter
374 default_tracker_bug: Contesto
375 default_tracker_bug: Contesto
375 default_tracker_feature: Funzione
376 default_tracker_feature: Funzione
376 default_tracker_support: Supporto
377 default_tracker_support: Supporto
377 default_issue_status_new: Nuovo/a
378 default_issue_status_new: Nuovo/a
378 default_issue_status_assigned: Assegnato/a
379 default_issue_status_assigned: Assegnato/a
379 default_issue_status_resolved: Risolto/a
380 default_issue_status_resolved: Risolto/a
380 default_issue_status_feedback: Feedback
381 default_issue_status_feedback: Feedback
381 default_issue_status_closed: Chiuso/a
382 default_issue_status_closed: Chiuso/a
382 default_issue_status_rejected: Rifiutato/a
383 default_issue_status_rejected: Rifiutato/a
383 default_doc_category_user: Documentazione utente
384 default_doc_category_user: Documentazione utente
384 default_doc_category_tech: Documentazione tecnica
385 default_doc_category_tech: Documentazione tecnica
385 default_priority_low: Bassa
386 default_priority_low: Bassa
386 default_priority_normal: Normale
387 default_priority_normal: Normale
387 default_priority_high: Alta
388 default_priority_high: Alta
388 default_priority_urgent: Urgente
389 default_priority_urgent: Urgente
389 default_priority_immediate: Immediata
390 default_priority_immediate: Immediata
390
391
391 enumeration_issue_priorities: Priorità contesti
392 enumeration_issue_priorities: Priorità contesti
392 enumeration_doc_categories: Categorie di documenti
393 enumeration_doc_categories: Categorie di documenti
@@ -1,393 +1,394
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: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月
4 actionview_datehelper_select_month_names: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月
5 actionview_datehelper_select_month_names_abbr: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月
5 actionview_datehelper_select_month_names_abbr: 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月
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_select_year_suffix:
8 actionview_datehelper_select_year_suffix:
9 actionview_datehelper_time_in_words_day: 1日
9 actionview_datehelper_time_in_words_day: 1日
10 actionview_datehelper_time_in_words_day_plural: %d日間
10 actionview_datehelper_time_in_words_day_plural: %d日間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 actionview_datehelper_time_in_words_minute: 1分
14 actionview_datehelper_time_in_words_minute: 1分
15 actionview_datehelper_time_in_words_minute_half: 約30秒
15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 actionview_datehelper_time_in_words_minute_plural: %d分
17 actionview_datehelper_time_in_words_minute_plural: %d分
18 actionview_datehelper_time_in_words_minute_single: 1分
18 actionview_datehelper_time_in_words_minute_single: 1分
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 actionview_instancetag_blank_option: 選んでください
21 actionview_instancetag_blank_option: 選んでください
22
22
23 activerecord_error_inclusion: がリストに含まれていません
23 activerecord_error_inclusion: がリストに含まれていません
24 activerecord_error_exclusion: が予約されています
24 activerecord_error_exclusion: が予約されています
25 activerecord_error_invalid: が無効です
25 activerecord_error_invalid: が無効です
26 activerecord_error_confirmation: 確認のパスワードと合っていません
26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 activerecord_error_accepted: must be accepted
27 activerecord_error_accepted: must be accepted
28 activerecord_error_empty: が空です
28 activerecord_error_empty: が空です
29 activerecord_error_blank: が空白です
29 activerecord_error_blank: が空白です
30 activerecord_error_too_long: が長すぎます
30 activerecord_error_too_long: が長すぎます
31 activerecord_error_too_short: が短かすぎます
31 activerecord_error_too_short: が短かすぎます
32 activerecord_error_wrong_length: の長さが間違っています
32 activerecord_error_wrong_length: の長さが間違っています
33 activerecord_error_taken: has already been taken
33 activerecord_error_taken: has already been taken
34 activerecord_error_not_a_number: が数字ではありません
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37
37
38 general_fmt_age: %d歳
38 general_fmt_age: %d歳
39 general_fmt_age_plural: %d歳
39 general_fmt_age_plural: %d歳
40 general_fmt_date: %%Y年%%m月%%d日
40 general_fmt_date: %%Y年%%m月%%d日
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
44 general_text_No: 'いいえ'
44 general_text_No: 'いいえ'
45 general_text_Yes: 'はい'
45 general_text_Yes: 'はい'
46 general_text_no: 'いいえ'
46 general_text_no: 'いいえ'
47 general_text_yes: 'はい'
47 general_text_yes: 'はい'
48 general_lang_ja: 'Japanese (日本語)'
48 general_lang_ja: 'Japanese (日本語)'
49 general_csv_separator: ','
49 general_csv_separator: ','
50 general_csv_encoding: SJIS
50 general_csv_encoding: SJIS
51 general_pdf_encoding: SJIS
51 general_pdf_encoding: SJIS
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
53
53
54 notice_account_updated: アカウントが更新されました。
54 notice_account_updated: アカウントが更新されました。
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
56 notice_account_password_updated: パスワードが更新されました。
56 notice_account_password_updated: パスワードが更新されました。
57 notice_account_wrong_password: パスワードが違います
57 notice_account_wrong_password: パスワードが違います
58 notice_account_register_done: アカウントが作成されました。
58 notice_account_register_done: アカウントが作成されました。
59 notice_account_unknown_email: ユーザが存在しません。
59 notice_account_unknown_email: ユーザが存在しません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
63 notice_successful_create: 作成しました。
63 notice_successful_create: 作成しました。
64 notice_successful_update: 更新しました。
64 notice_successful_update: 更新しました。
65 notice_successful_delete: 削除しました。
65 notice_successful_delete: 削除しました。
66 notice_successful_connection: 接続しました。
66 notice_successful_connection: 接続しました。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
70
70
71 mail_subject_lost_password: redMine パスワード
71 mail_subject_lost_password: redMine パスワード
72 mail_subject_register: redMine アカウントが有効になりました
72 mail_subject_register: redMine アカウントが有効になりました
73
73
74 gui_validation_error: 1 件のエラー
74 gui_validation_error: 1 件のエラー
75 gui_validation_error_plural: %d 件のエラー
75 gui_validation_error_plural: %d 件のエラー
76
76
77 field_name: 名前
77 field_name: 名前
78 field_description: 説明
78 field_description: 説明
79 field_summary: サマリ
79 field_summary: サマリ
80 field_is_required: 必須
80 field_is_required: 必須
81 field_firstname: 名前
81 field_firstname: 名前
82 field_lastname: 苗字
82 field_lastname: 苗字
83 field_mail: メールアドレス
83 field_mail: メールアドレス
84 field_filename: ファイル
84 field_filename: ファイル
85 field_filesize: サイズ
85 field_filesize: サイズ
86 field_downloads: ダウンロード
86 field_downloads: ダウンロード
87 field_author: 起票者
87 field_author: 起票者
88 field_created_on: 作成日
88 field_created_on: 作成日
89 field_updated_on: 更新日
89 field_updated_on: 更新日
90 field_field_format: 書式
90 field_field_format: 書式
91 field_is_for_all: 全プロジェクト向け
91 field_is_for_all: 全プロジェクト向け
92 field_possible_values: 選択肢
92 field_possible_values: 選択肢
93 field_regexp: 正規表現
93 field_regexp: 正規表現
94 field_min_length: 最小値
94 field_min_length: 最小値
95 field_max_length: 最大値
95 field_max_length: 最大値
96 field_value:
96 field_value:
97 field_category: カテゴリ
97 field_category: カテゴリ
98 field_title: タイトル
98 field_title: タイトル
99 field_project: プロジェクト
99 field_project: プロジェクト
100 field_issue: 問題
100 field_issue: 問題
101 field_status: ステータス
101 field_status: ステータス
102 field_notes: 注記
102 field_notes: 注記
103 field_is_closed: 終了した問題
103 field_is_closed: 終了した問題
104 field_is_default: デフォルトのステータス
104 field_is_default: デフォルトのステータス
105 field_html_color:
105 field_html_color:
106 field_tracker: トラッカー
106 field_tracker: トラッカー
107 field_subject: 題名
107 field_subject: 題名
108 field_due_date: 期限日
108 field_due_date: 期限日
109 field_assigned_to: 担当者
109 field_assigned_to: 担当者
110 field_priority: 優先度
110 field_priority: 優先度
111 field_fixed_version: 修正されたバージョン
111 field_fixed_version: 修正されたバージョン
112 field_user: ユーザ
112 field_user: ユーザ
113 field_role: 役割
113 field_role: 役割
114 field_homepage: ホームページ
114 field_homepage: ホームページ
115 field_is_public: 公開
115 field_is_public: 公開
116 field_parent: 親プロジェクト名
116 field_parent: 親プロジェクト名
117 field_is_in_chlog: 変更記録に表示されている問題
117 field_is_in_chlog: 変更記録に表示されている問題
118 field_is_in_roadmap: Issues displayed in roadmap
118 field_is_in_roadmap: Issues displayed in roadmap
119 field_login: ログイン
119 field_login: ログイン
120 field_mail_notification: メール通知
120 field_mail_notification: メール通知
121 field_admin: 管理者
121 field_admin: 管理者
122 field_locked: ロック済
122 field_locked: ロック済
123 field_last_login_on: 最終接続日
123 field_last_login_on: 最終接続日
124 field_language: 言語
124 field_language: 言語
125 field_effective_date: 日付
125 field_effective_date: 日付
126 field_password: パスワード
126 field_password: パスワード
127 field_new_password: 新しいパスワード
127 field_new_password: 新しいパスワード
128 field_password_confirmation: パスワードの確認
128 field_password_confirmation: パスワードの確認
129 field_version: バージョン
129 field_version: バージョン
130 field_type: タイプ
130 field_type: タイプ
131 field_host: ホスト
131 field_host: ホスト
132 field_port: ポート
132 field_port: ポート
133 field_account: アカウント
133 field_account: アカウント
134 field_base_dn: Base DN
134 field_base_dn: Base DN
135 field_attr_login: ログイン名属性
135 field_attr_login: ログイン名属性
136 field_attr_firstname: 名前属性
136 field_attr_firstname: 名前属性
137 field_attr_lastname: 苗字属性
137 field_attr_lastname: 苗字属性
138 field_attr_mail: メール属性
138 field_attr_mail: メール属性
139 field_onthefly: あわせてユーザを作成
139 field_onthefly: あわせてユーザを作成
140 field_start_date: 開始日
140 field_start_date: 開始日
141 field_done_ratio: 進捗 %%
141 field_done_ratio: 進捗 %%
142 field_auth_source: 認証モード
142 field_auth_source: 認証モード
143 field_hide_mail: Emailアドレスを隠す
143 field_hide_mail: Emailアドレスを隠す
144 field_comment: コメント
144 field_comment: コメント
145 field_url: URL
145 field_url: URL
146 field_start_page: メインページ
146 field_start_page: メインページ
147
147
148 setting_app_title: アプリケーションのタイトル
148 setting_app_title: アプリケーションのタイトル
149 setting_app_subtitle: アプリケーションのサブタイトル
149 setting_app_subtitle: アプリケーションのサブタイトル
150 setting_welcome_text: ウェルカムメッセージ
150 setting_welcome_text: ウェルカムメッセージ
151 setting_default_language: 既定の言語
151 setting_default_language: 既定の言語
152 setting_login_required: 認証が必要
152 setting_login_required: 認証が必要
153 setting_self_registration: ユーザは自分で登録できる
153 setting_self_registration: ユーザは自分で登録できる
154 setting_attachment_max_size: 添付の最大サイズ
154 setting_attachment_max_size: 添付の最大サイズ
155 setting_issues_export_limit: 出力する問題数の上限
155 setting_issues_export_limit: 出力する問題数の上限
156 setting_mail_from: Emission メールアドレス
156 setting_mail_from: Emission メールアドレス
157 setting_host_name: ホスト名
157 setting_host_name: ホスト名
158 setting_text_formatting: テキストの書式
158 setting_text_formatting: テキストの書式
159 setting_wiki_compression: Wiki history compression
159 setting_wiki_compression: Wiki history compression
160
160
161 label_user: ユーザ
161 label_user: ユーザ
162 label_user_plural: ユーザ
162 label_user_plural: ユーザ
163 label_user_new: 新しいユーザ
163 label_user_new: 新しいユーザ
164 label_project: プロジェクト
164 label_project: プロジェクト
165 label_project_new: 新しいプロジェクト
165 label_project_new: 新しいプロジェクト
166 label_project_plural: プロジェクト
166 label_project_plural: プロジェクト
167 label_project_latest: 最近のプロジェクト
167 label_project_latest: 最近のプロジェクト
168 label_issue: 問題
168 label_issue: 問題
169 label_issue_new: 新しい問題
169 label_issue_new: 新しい問題
170 label_issue_plural: 問題
170 label_issue_plural: 問題
171 label_issue_view_all: 問題を全て見る
171 label_issue_view_all: 問題を全て見る
172 label_document: 文書
172 label_document: 文書
173 label_document_new: 新しい文書
173 label_document_new: 新しい文書
174 label_document_plural: 文書
174 label_document_plural: 文書
175 label_role: ロール
175 label_role: ロール
176 label_role_plural: ロール
176 label_role_plural: ロール
177 label_role_new: 新しいロール
177 label_role_new: 新しいロール
178 label_role_and_permissions: ロールと権限
178 label_role_and_permissions: ロールと権限
179 label_member: メンバー
179 label_member: メンバー
180 label_member_new: 新しいメンバー
180 label_member_new: 新しいメンバー
181 label_member_plural: メンバー
181 label_member_plural: メンバー
182 label_tracker: トラッカー
182 label_tracker: トラッカー
183 label_tracker_plural: トラッカー
183 label_tracker_plural: トラッカー
184 label_tracker_new: 新しいトラッカーを作成
184 label_tracker_new: 新しいトラッカーを作成
185 label_workflow: ワークフロー
185 label_workflow: ワークフロー
186 label_issue_status: 問題の状態
186 label_issue_status: 問題の状態
187 label_issue_status_plural: 問題の状態
187 label_issue_status_plural: 問題の状態
188 label_issue_status_new: 新しい状態
188 label_issue_status_new: 新しい状態
189 label_issue_category: 問題のカテゴリ
189 label_issue_category: 問題のカテゴリ
190 label_issue_category_plural: 問題のカテゴリ
190 label_issue_category_plural: 問題のカテゴリ
191 label_issue_category_new: 新しいカテゴリ
191 label_issue_category_new: 新しいカテゴリ
192 label_custom_field: カスタムフィールド
192 label_custom_field: カスタムフィールド
193 label_custom_field_plural: カスタムフィールド
193 label_custom_field_plural: カスタムフィールド
194 label_custom_field_new: 新しいカスタムフィールドを作成
194 label_custom_field_new: 新しいカスタムフィールドを作成
195 label_enumerations: 列挙項目
195 label_enumerations: 列挙項目
196 label_enumeration_new: 新しい値
196 label_enumeration_new: 新しい値
197 label_information: 情報
197 label_information: 情報
198 label_information_plural: 情報
198 label_information_plural: 情報
199 label_please_login: ログインしてください
199 label_please_login: ログインしてください
200 label_register: 登録する
200 label_register: 登録する
201 label_password_lost: パスワードの再発行
201 label_password_lost: パスワードの再発行
202 label_home: ホーム
202 label_home: ホーム
203 label_my_page: マイページ
203 label_my_page: マイページ
204 label_my_account: マイアカウント
204 label_my_account: マイアカウント
205 label_my_projects: マイプロジェクト
205 label_my_projects: マイプロジェクト
206 label_administration: 管理
206 label_administration: 管理
207 label_login: ログイン
207 label_login: ログイン
208 label_logout: ログアウト
208 label_logout: ログアウト
209 label_help: ヘルプ
209 label_help: ヘルプ
210 label_reported_issues: 報告されている問題
210 label_reported_issues: 報告されている問題
211 label_assigned_to_me_issues: 担当している問題
211 label_assigned_to_me_issues: 担当している問題
212 label_last_login: 最近の接続
212 label_last_login: 最近の接続
213 label_last_updates: 最近の更新 1 件
213 label_last_updates: 最近の更新 1 件
214 label_last_updates_plural: 最近の更新 %d 件
214 label_last_updates_plural: 最近の更新 %d 件
215 label_registered_on: 登録日
215 label_registered_on: 登録日
216 label_activity: 活動
216 label_activity: 活動
217 label_new: 新しく作成
217 label_new: 新しく作成
218 label_logged_as: ログイン中:
218 label_logged_as: ログイン中:
219 label_environment: 環境
219 label_environment: 環境
220 label_authentication: 認証
220 label_authentication: 認証
221 label_auth_source: 認証モード
221 label_auth_source: 認証モード
222 label_auth_source_new: 新しい認証モード
222 label_auth_source_new: 新しい認証モード
223 label_auth_source_plural: 認証モード
223 label_auth_source_plural: 認証モード
224 label_subproject: サブプロジェクト
224 label_subproject: サブプロジェクト
225 label_subproject_plural: サブプロジェクト
225 label_subproject_plural: サブプロジェクト
226 label_min_max_length: 最小値 - 最大値の長さ
226 label_min_max_length: 最小値 - 最大値の長さ
227 label_list: リストから選択
227 label_list: リストから選択
228 label_date: 日付
228 label_date: 日付
229 label_integer: 整数
229 label_integer: 整数
230 label_boolean: 真偽値
230 label_boolean: 真偽値
231 label_string: テキスト
231 label_string: テキスト
232 label_text: 長いテキスト
232 label_text: 長いテキスト
233 label_attribute: 属性
233 label_attribute: 属性
234 label_attribute_plural: 属性
234 label_attribute_plural: 属性
235 label_download: %d ダウンロード
235 label_download: %d ダウンロード
236 label_download_plural: %d ダウンロード
236 label_download_plural: %d ダウンロード
237 label_no_data: 表示するデータがありません
237 label_no_data: 表示するデータがありません
238 label_change_status: 変更の状況
238 label_change_status: 変更の状況
239 label_history: 履歴
239 label_history: 履歴
240 label_attachment: ファイル
240 label_attachment: ファイル
241 label_attachment_new: 新しいファイル
241 label_attachment_new: 新しいファイル
242 label_attachment_delete: ファイルを削除
242 label_attachment_delete: ファイルを削除
243 label_attachment_plural: ファイル
243 label_attachment_plural: ファイル
244 label_report: レポート
244 label_report: レポート
245 label_report_plural: レポート
245 label_report_plural: レポート
246 label_news: ニュース
246 label_news: ニュース
247 label_news_new: ニュースを追加
247 label_news_new: ニュースを追加
248 label_news_plural: ニュース
248 label_news_plural: ニュース
249 label_news_latest: 最新ニュース
249 label_news_latest: 最新ニュース
250 label_news_view_all: 全てのニュースを見る
250 label_news_view_all: 全てのニュースを見る
251 label_change_log: 変更記録
251 label_change_log: 変更記録
252 label_settings: 設定
252 label_settings: 設定
253 label_overview: 概要
253 label_overview: 概要
254 label_version: バージョン
254 label_version: バージョン
255 label_version_new: 新しいバージョン
255 label_version_new: 新しいバージョン
256 label_version_plural: バージョン
256 label_version_plural: バージョン
257 label_confirmation: 確認
257 label_confirmation: 確認
258 label_export_to: 他の形式に出力
258 label_export_to: 他の形式に出力
259 label_read: 読む...
259 label_read: 読む...
260 label_public_projects: 公開プロジェクト
260 label_public_projects: 公開プロジェクト
261 label_open_issues: 未着手
261 label_open_issues: 未着手
262 label_open_issues_plural: 未着手
262 label_open_issues_plural: 未着手
263 label_closed_issues: 終了
263 label_closed_issues: 終了
264 label_closed_issues_plural: 終了
264 label_closed_issues_plural: 終了
265 label_total: 合計
265 label_total: 合計
266 label_permissions: 権限
266 label_permissions: 権限
267 label_current_status: 現在の状態
267 label_current_status: 現在の状態
268 label_new_statuses_allowed: 状態の移行先
268 label_new_statuses_allowed: 状態の移行先
269 label_all: 全て
269 label_all: 全て
270 label_none: なし
270 label_none: なし
271 label_next:
271 label_next:
272 label_previous:
272 label_previous:
273 label_used_by: 使用中
273 label_used_by: 使用中
274 label_details: 詳細...
274 label_details: 詳細...
275 label_add_note: 注記を追加
275 label_add_note: 注記を追加
276 label_per_page: ページ毎
276 label_per_page: ページ毎
277 label_calendar: カレンダー
277 label_calendar: カレンダー
278 label_months_from: ヶ月 from
278 label_months_from: ヶ月 from
279 label_gantt: ガントチャート
279 label_gantt: ガントチャート
280 label_internal: Internal
280 label_internal: Internal
281 label_last_changes: 最新の変更 %d 件
281 label_last_changes: 最新の変更 %d 件
282 label_change_view_all: 全ての変更を見る
282 label_change_view_all: 全ての変更を見る
283 label_personalize_page: このページをパーソナライズする
283 label_personalize_page: このページをパーソナライズする
284 label_comment: コメント
284 label_comment: コメント
285 label_comment_plural: コメント
285 label_comment_plural: コメント
286 label_comment_add: コメント追加
286 label_comment_add: コメント追加
287 label_comment_added: 追加されたコメント
287 label_comment_added: 追加されたコメント
288 label_comment_delete: コメント削除
288 label_comment_delete: コメント削除
289 label_query: カスタムクエリ
289 label_query: カスタムクエリ
290 label_query_plural: カスタムクエリ
290 label_query_plural: カスタムクエリ
291 label_query_new: 新しいクエリ
291 label_query_new: 新しいクエリ
292 label_filter_add: フィルタ追加
292 label_filter_add: フィルタ追加
293 label_filter_plural: フィルタ
293 label_filter_plural: フィルタ
294 label_equals: 等しい
294 label_equals: 等しい
295 label_not_equals: 等しくない
295 label_not_equals: 等しくない
296 label_in_less_than: 残日数がこれより多い
296 label_in_less_than: 残日数がこれより多い
297 label_in_more_than: 残日数がこれより少ない
297 label_in_more_than: 残日数がこれより少ない
298 label_in: 残日数
298 label_in: 残日数
299 label_today: 今日
299 label_today: 今日
300 label_less_than_ago: 経過日数がこれより少ない
300 label_less_than_ago: 経過日数がこれより少ない
301 label_more_than_ago: 経過日数がこれより多い
301 label_more_than_ago: 経過日数がこれより多い
302 label_ago: 日前
302 label_ago: 日前
303 label_contains: 含む
303 label_contains: 含む
304 label_not_contains: 含まない
304 label_not_contains: 含まない
305 label_day_plural:
305 label_day_plural:
306 label_repository: SVNリポジトリ
306 label_repository: SVNリポジトリ
307 label_browse: ブラウズ
307 label_browse: ブラウズ
308 label_modification: %d 点の変更
308 label_modification: %d 点の変更
309 label_modification_plural: %d 点の変更
309 label_modification_plural: %d 点の変更
310 label_revision: リビジョン
310 label_revision: リビジョン
311 label_revision_plural: リビジョン
311 label_revision_plural: リビジョン
312 label_added: 追加された
312 label_added: 追加された
313 label_modified: 変更された
313 label_modified: 変更された
314 label_deleted: 削除された
314 label_deleted: 削除された
315 label_latest_revision: 最新リビジョン
315 label_latest_revision: 最新リビジョン
316 label_view_revisions: リビジョンを見る
316 label_view_revisions: リビジョンを見る
317 label_max_size: 最大サイズ
317 label_max_size: 最大サイズ
318 label_on:
318 label_on:
319 label_sort_highest: 一番上へ
319 label_sort_highest: 一番上へ
320 label_sort_higher: 上へ
320 label_sort_higher: 上へ
321 label_sort_lower: 下へ
321 label_sort_lower: 下へ
322 label_sort_lowest: 一番下へ
322 label_sort_lowest: 一番下へ
323 label_roadmap: ロードマップ
323 label_roadmap: ロードマップ
324 label_search: 検索
324 label_search: 検索
325 label_result: %d 件の結果
325 label_result: %d 件の結果
326 label_result_plural: %d 件の結果
326 label_result_plural: %d 件の結果
327 label_all_words: すべての単語
327 label_all_words: すべての単語
328 label_wiki: Wiki
328 label_wiki: Wiki
329 label_page_index: 索引
329 label_page_index: 索引
330 label_current_version: 最近版
330 label_current_version: 最近版
331 label_preview: 下検分
331 label_preview: 下検分
332 label_feed_plural: Feeds
332 label_feed_plural: Feeds
333 label_changes_details: Details of all changes
333 label_changes_details: Details of all changes
334 label_issue_tracking: Issue tracking
334
335
335 button_login: ログイン
336 button_login: ログイン
336 button_submit: 変更
337 button_submit: 変更
337 button_save: 保存
338 button_save: 保存
338 button_check_all: チェックを全部つける
339 button_check_all: チェックを全部つける
339 button_uncheck_all: チェックを全部外す
340 button_uncheck_all: チェックを全部外す
340 button_delete: 削除
341 button_delete: 削除
341 button_create: 作成
342 button_create: 作成
342 button_test: テスト
343 button_test: テスト
343 button_edit: 編集
344 button_edit: 編集
344 button_add: 追加
345 button_add: 追加
345 button_change: 変更
346 button_change: 変更
346 button_apply: 適用
347 button_apply: 適用
347 button_clear: クリア
348 button_clear: クリア
348 button_lock: ロック
349 button_lock: ロック
349 button_unlock: アンロック
350 button_unlock: アンロック
350 button_download: ダウンロード
351 button_download: ダウンロード
351 button_list: 一覧
352 button_list: 一覧
352 button_view: 見る
353 button_view: 見る
353 button_move: 移動
354 button_move: 移動
354 button_back: 戻る
355 button_back: 戻る
355 button_cancel: キャンセル
356 button_cancel: キャンセル
356 button_activate: 有効にする
357 button_activate: 有効にする
357 button_sort: ソート
358 button_sort: ソート
358
359
359 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
360 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
360 text_regexp_info: 例) ^[A-Z0-9]+$
361 text_regexp_info: 例) ^[A-Z0-9]+$
361 text_min_max_length_info: 0だと無制限になります
362 text_min_max_length_info: 0だと無制限になります
362 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
363 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
363 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
364 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
364 text_are_you_sure: 本当に?
365 text_are_you_sure: 本当に?
365 text_journal_changed: %s から %s への変更
366 text_journal_changed: %s から %s への変更
366 text_journal_set_to: %s にセット
367 text_journal_set_to: %s にセット
367 text_journal_deleted: 削除
368 text_journal_deleted: 削除
368 text_tip_task_begin_day: この日に開始するタスク
369 text_tip_task_begin_day: この日に開始するタスク
369 text_tip_task_end_day: この日に終了するタスク
370 text_tip_task_end_day: この日に終了するタスク
370 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
371 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
371
372
372 default_role_manager: 管理者
373 default_role_manager: 管理者
373 default_role_developper: 開発者
374 default_role_developper: 開発者
374 default_role_reporter: 報告者
375 default_role_reporter: 報告者
375 default_tracker_bug: バグ
376 default_tracker_bug: バグ
376 default_tracker_feature: 機能
377 default_tracker_feature: 機能
377 default_tracker_support: サポート
378 default_tracker_support: サポート
378 default_issue_status_new: 新規
379 default_issue_status_new: 新規
379 default_issue_status_assigned: 分担
380 default_issue_status_assigned: 分担
380 default_issue_status_resolved: 解決
381 default_issue_status_resolved: 解決
381 default_issue_status_feedback: フィードバック
382 default_issue_status_feedback: フィードバック
382 default_issue_status_closed: 終了
383 default_issue_status_closed: 終了
383 default_issue_status_rejected: 却下
384 default_issue_status_rejected: 却下
384 default_doc_category_user: ユーザ文書
385 default_doc_category_user: ユーザ文書
385 default_doc_category_tech: 技術文書
386 default_doc_category_tech: 技術文書
386 default_priority_low: 低め
387 default_priority_low: 低め
387 default_priority_normal: 通常
388 default_priority_normal: 通常
388 default_priority_high: 高め
389 default_priority_high: 高め
389 default_priority_urgent: 急いで
390 default_priority_urgent: 急いで
390 default_priority_immediate: 今すぐ
391 default_priority_immediate: 今すぐ
391
392
392 enumeration_issue_priorities: 問題の優先度
393 enumeration_issue_priorities: 問題の優先度
393 enumeration_doc_categories: 文書カテゴリ
394 enumeration_doc_categories: 文書カテゴリ
General Comments 0
You need to be logged in to leave comments. Login now