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