##// END OF EJS Templates
Added an ajax indicator for all ajax calls. Also removed highlight effects on my page layout edition....
Jean-Philippe Lang -
r482:5db3396c07b2
parent child
Show More
@@ -1,130 +1,134
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 63 <%= render :partial => 'admin/menu' %>
64 64 <% end %>
65 65
66 66 <% unless @project.nil? || @project.id.nil? %>
67 67 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
68 68 <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %>
69 69 <%= link_to l(:label_gantt), {:controller => 'projects', :action => 'gantt', :id => @project }, :class => "menuItem" %>
70 70 <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 }, :class => "menuItem" %>
71 71 <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %>
72 72 <%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %>
73 73 <%= link_to l(:label_news_plural), {:controller => 'projects', :action => 'list_news', :id => @project }, :class => "menuItem" %>
74 74 <%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %>
75 75 <%= link_to l(:label_roadmap), {:controller => 'projects', :action => 'roadmap', :id => @project }, :class => "menuItem" %>
76 76 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
77 77 <%= link_to l(:label_wiki), {:controller => 'wiki', :id => @project, :page => nil }, :class => "menuItem" if @project.wiki and !@project.wiki.new_record? %>
78 78 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
79 79 <%= link_to l(:label_search), {:controller => 'projects', :action => 'search', :id => @project }, :class => "menuItem" %>
80 80 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
81 81 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
82 82 </div>
83 83 <% end %>
84 84
85 85
86 86 <div id="subcontent">
87 87
88 88 <% unless @project.nil? || @project.id.nil? %>
89 89 <h2><%= @project.name %></h2>
90 90 <ul class="menublock">
91 91 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
92 92 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
93 93 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
94 94 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></li>
95 95 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
96 96 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
97 97 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
98 98 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
99 99 <li><%= link_to l(:label_roadmap), :controller => 'projects', :action => 'roadmap', :id => @project %></li>
100 100 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
101 101 <%= content_tag("li", link_to(l(:label_wiki), :controller => 'wiki', :id => @project, :page => nil)) if @project.wiki and !@project.wiki.new_record? %>
102 102 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
103 103 <li><%= link_to l(:label_search), :controller => 'projects', :action => 'search', :id => @project %></li>
104 104 <%= content_tag("li", link_to(l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project)) if @project.repository and !@project.repository.new_record? %>
105 105 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
106 106 </ul>
107 107 <% end %>
108 108
109 109 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
110 110 <h2><%=l(:label_my_projects) %></h2>
111 111 <ul class="menublock">
112 112 <% for membership in @logged_in_user.memberships %>
113 113 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
114 114 <% end %>
115 115 </ul>
116 116 <% end %>
117 117 </div>
118
118
119 119 <div id="content">
120 120 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
121 121 <%= yield %>
122 122 </div>
123 123
124 <div id="ajax-indicator" style="display:none;">
125 <span><%= l(:label_loading) %></span>
126 </div>
127
124 128 <div id="footer">
125 129 <p><a href="http://redmine.rubyforge.org/">redMine</a> <small><%= Redmine::VERSION %> &copy 2006-2007 Jean-Philippe Lang</small></p>
126 130 </div>
127 131
128 132 </div>
129 133 </body>
130 134 </html> No newline at end of file
@@ -1,16 +1,14
1 1 <div id="block_<%= block_name %>" class="mypage-box">
2 2
3 3 <div style="float:right;margin-right:16px;z-index:500;">
4 4 <%= link_to_remote "", {
5 5 :url => { :action => "remove_block", :block => block_name },
6 :complete => "removeBlock('block_#{block_name}')",
7 :loading => "Element.show('indicator')",
8 :loaded => "Element.hide('indicator')" },
6 :complete => "removeBlock('block_#{block_name}')" },
9 7 :class => "close-icon"
10 8 %>
11 9 </div>
12 10
13 11 <div class="handle">
14 12 <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
15 13 </div>
16 14 </div> No newline at end of file
@@ -1,117 +1,107
1 1 <script language="JavaScript">
2 2 //<![CDATA[
3 3 function recreateSortables() {
4 4 Sortable.destroy('list-top');
5 5 Sortable.destroy('list-left');
6 6 Sortable.destroy('list-right');
7 7
8 Sortable.create("list-top", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=top', {asynchronous:true, evalScripts:true, onComplete:function(request){new Effect.Highlight("list-top",{});}, onLoaded:function(request){Element.hide('indicator')}, onLoading:function(request){Element.show('indicator')}, parameters:Sortable.serialize("list-top")})}, only:'mypage-box', tag:'div'})
9 Sortable.create("list-left", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=left', {asynchronous:true, evalScripts:true, onComplete:function(request){new Effect.Highlight("list-left",{});}, onLoaded:function(request){Element.hide('indicator')}, onLoading:function(request){Element.show('indicator')}, parameters:Sortable.serialize("list-left")})}, only:'mypage-box', tag:'div'})
10 Sortable.create("list-right", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=right', {asynchronous:true, evalScripts:true, onComplete:function(request){new Effect.Highlight("list-right",{});}, onLoaded:function(request){Element.hide('indicator')}, onLoading:function(request){Element.show('indicator')}, parameters:Sortable.serialize("list-right")})}, only:'mypage-box', tag:'div'})
8 Sortable.create("list-top", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=top', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize("list-top")})}, only:'mypage-box', tag:'div'})
9 Sortable.create("list-left", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=left', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize("list-left")})}, only:'mypage-box', tag:'div'})
10 Sortable.create("list-right", {constraint:false, containment:['list-top','list-left','list-right'], dropOnEmpty:true, handle:'handle', onUpdate:function(){new Ajax.Request('/my/order_blocks?group=right', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize("list-right")})}, only:'mypage-box', tag:'div'})
11 11 }
12 12
13 13 function updateSelect() {
14 14 s = $('block-select')
15 15 for (var i = 0; i < s.options.length; i++) {
16 16 if ($('block_' + s.options[i].value)) {
17 17 s.options[i].disabled = true;
18 18 } else {
19 19 s.options[i].disabled = false;
20 20 }
21 21 }
22 22 s.options[0].selected = true;
23 23 }
24 24
25 25 function afterAddBlock() {
26 26 recreateSortables();
27 27 updateSelect();
28 28 }
29 29
30 30 function removeBlock(block) {
31 31 $(block).parentNode.removeChild($(block));
32 32 updateSelect();
33 33 }
34 34 //]]>
35 35 </script>
36 36
37 37 <div class="contextual">
38 <span id="indicator" style="display:none"><%= image_tag "loading.gif", :align => "absmiddle" %></span>
39 38 <% form_tag({:action => "add_block"}, :id => "block-form") do %>
40 39 <%= select_tag 'block', "<option></option>" + options_for_select(@block_options), :id => "block-select" %>
41 40 <%= link_to_remote l(:button_add),
42 41 {:url => { :action => "add_block" },
43 42 :with => "Form.serialize('block-form')",
44 43 :update => "list-top",
45 44 :position => :top,
46 :complete => "afterAddBlock();",
47 :loading => "Element.show('indicator')",
48 :loaded => "Element.hide('indicator')"
45 :complete => "afterAddBlock();"
49 46 }, :class => 'icon icon-add'
50 47 %>
51 48 <% end %>
52 49 <%= link_to l(:button_save), {:action => 'page_layout_save'}, :class => 'icon icon-save' %>
53 50 <%= link_to l(:button_cancel), {:action => 'page'}, :class => 'icon icon-cancel' %>
54 51 </div>
55 52
56 53 <h2><%=l(:label_my_page)%></h2>
57 54
58 55 <div id="list-top" class="block-receiver">
59 56 <% @blocks['top'].each do |b|
60 57 next unless MyController::BLOCKS.keys.include? b %>
61 58 <%= render :partial => 'block', :locals => {:user => @user, :block_name => b} %>
62 59 <% end if @blocks['top'] %>
63 60 </div>
64 61
65 62 <div id="list-left" class="splitcontentleft block-receiver">
66 63 <% @blocks['left'].each do |b|
67 64 next unless MyController::BLOCKS.keys.include? b %>
68 65 <%= render :partial => 'block', :locals => {:user => @user, :block_name => b} %>
69 66 <% end if @blocks['left'] %>
70 67 </div>
71 68
72 69 <div id="list-right" class="splitcontentright block-receiver">
73 70 <% @blocks['right'].each do |b|
74 71 next unless MyController::BLOCKS.keys.include? b %>
75 72 <%= render :partial => 'block', :locals => {:user => @user, :block_name => b} %>
76 73 <% end if @blocks['right'] %>
77 74 </div>
78 75
79 76 <%= sortable_element 'list-top',
80 77 :tag => 'div',
81 78 :only => 'mypage-box',
82 79 :handle => "handle",
83 80 :dropOnEmpty => true,
84 81 :containment => ['list-top', 'list-left', 'list-right'],
85 82 :constraint => false,
86 :complete => visual_effect(:highlight, 'list-top'),
87 :url => { :action => "order_blocks", :group => "top" },
88 :loading => "Element.show('indicator')",
89 :loaded => "Element.hide('indicator')"
83 :url => { :action => "order_blocks", :group => "top" }
90 84 %>
91 85
92 86
93 87 <%= sortable_element 'list-left',
94 88 :tag => 'div',
95 89 :only => 'mypage-box',
96 90 :handle => "handle",
97 91 :dropOnEmpty => true,
98 92 :containment => ['list-top', 'list-left', 'list-right'],
99 93 :constraint => false,
100 :complete => visual_effect(:highlight, 'list-left'),
101 :url => { :action => "order_blocks", :group => "left" },
102 :loading => "Element.show('indicator')",
103 :loaded => "Element.hide('indicator')" %>
94 :url => { :action => "order_blocks", :group => "left" }
95 %>
104 96
105 97 <%= sortable_element 'list-right',
106 98 :tag => 'div',
107 99 :only => 'mypage-box',
108 100 :handle => "handle",
109 101 :dropOnEmpty => true,
110 102 :containment => ['list-top', 'list-left', 'list-right'],
111 103 :constraint => false,
112 :complete => visual_effect(:highlight, 'list-right'),
113 :url => { :action => "order_blocks", :group => "right" },
114 :loading => "Element.show('indicator')",
115 :loaded => "Element.hide('indicator')" %>
104 :url => { :action => "order_blocks", :group => "right" }
105 %>
116 106
117 <%= javascript_tag "updateSelect()" %> No newline at end of file
107 <%= javascript_tag "updateSelect()" %>
@@ -1,44 +1,40
1 1 <div class="contextual">
2 2 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
3 3 </div>
4 4
5 5 <h2><%= @page.pretty_title %></h2>
6 6
7 7 <% form_for :content, @content, :url => {:action => 'edit', :page => @page.title}, :html => {:id => 'wiki_form'} do |f| %>
8 8 <%= error_messages_for 'content' %>
9 9 <div class="contextual">
10 10 <%= l(:setting_text_formatting) %>:
11 11 <%= link_to l(:label_help), {:controller => 'help', :ctrl => 'wiki', :page => 'syntax' },
12 12 :onclick => "window.open('#{ url_for :controller => 'help', :ctrl => 'wiki', :page => 'syntax' }', '', 'resizable=yes, location=no, width=300, height=500, menubar=no, status=no, scrollbars=yes'); return false;" %>
13 13 </div>
14 14 <p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit' %></p>
15 15 <p><label><%= l(:field_comments) %></label><br /><%= f.text_field :comments, :size => 120 %></p>
16 16 <p><%= submit_tag l(:button_save) %>
17 17 <%= link_to_remote l(:label_preview),
18 18 { :url => { :controller => 'wiki', :action => 'preview', :id => @project, :page => @page.title },
19 19 :method => 'get',
20 20 :update => 'preview',
21 :with => "Form.serialize('wiki_form')",
22 :loading => "Element.show('indicator')",
23 :loaded => "Element.hide('indicator')"
24 } %>
25 <span id="indicator" style="display:none"><%= image_tag "loading.gif", :align => "absmiddle" %></span>
26 </p>
21 :with => "Form.serialize('wiki_form')"
22 } %></p>
27 23
28 24 <% end %>
29 25
30 26 <% if Setting.text_formatting == 'textile' %>
31 27 <%= javascript_include_tag 'jstoolbar' %>
32 28 <script type="text/javascript">
33 29 //<![CDATA[
34 30 if (document.getElementById) {
35 31 if (document.getElementById('content_text')) {
36 32 var commentTb = new jsToolBar(document.getElementById('content_text'));
37 33 commentTb.draw();
38 34 }
39 35 }
40 36 //]]>
41 37 </script>
42 38 <% end %>
43 39
44 40 <div id="preview" class="wiki"></div> No newline at end of file
@@ -1,442 +1,443
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: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 Tag
9 9 actionview_datehelper_time_in_words_day_plural: %d Tage
10 10 actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde
11 11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 12 actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde
13 13 actionview_datehelper_time_in_words_minute: 1 Minute
14 14 actionview_datehelper_time_in_words_minute_half: halbe Minute
15 15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 18 actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 20 actionview_instancetag_blank_option: Bitte auswählen
21 21
22 22 activerecord_error_inclusion: ist nicht inbegriffen
23 23 activerecord_error_exclusion: ist reserviert
24 24 activerecord_error_invalid: ist unzulässig
25 25 activerecord_error_confirmation: Bestätigung nötig
26 26 activerecord_error_accepted: muss angenommen werden
27 27 activerecord_error_empty: darf nicht leer sein
28 28 activerecord_error_blank: darf 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: hat die falsche Länge
32 32 activerecord_error_taken: ist bereits vergeben
33 33 activerecord_error_not_a_number: ist keine Zahl
34 34 activerecord_error_not_a_date: ist kein gültiges Datum
35 35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 36
37 37 general_fmt_age: %d Jahr
38 38 general_fmt_age_plural: %d Jahre
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: '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: Benutzer oder Kennwort unzulässig
55 55 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
56 56 notice_account_wrong_password: Falsches Kennwort
57 57 notice_account_register_done: Konto wurde erfolgreich angelegt.
58 58 notice_account_unknown_email: Unbekannter Benutzer.
59 59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
60 60 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
61 61 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
62 62 notice_successful_create: Erfolgreich angelegt
63 63 notice_successful_update: Erfolgreiche Aktualisierung.
64 64 notice_successful_delete: Erfolgreiche Löschung.
65 65 notice_successful_connection: Verbindung erfolgreich.
66 66 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
67 67 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
68 68 notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN.
69 69
70 70 mail_subject_lost_password: Ihr redMine Kennwort
71 71 mail_subject_register: redMine Kontoaktivierung
72 72
73 73 gui_validation_error: 1 Fehler
74 74 gui_validation_error_plural: %d Fehler
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: Größe
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: Titel
98 98 field_project: Projekt
99 99 field_issue: Ticket
100 100 field_status: Status
101 101 field_notes: Kommentare
102 102 field_is_closed: Problem erledigt
103 103 field_is_default: Default
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: Unterprojekt von
116 116 field_is_in_chlog: Ansicht im Change-Log
117 117 field_is_in_roadmap: Ansicht in der Roadmap
118 118 field_login: Mitgliedsname
119 119 field_mail_notification: Mailbenachrichtigung
120 120 field_admin: Administrator
121 121 field_last_login_on: Letzte Anmeldung
122 122 field_language: Sprache
123 123 field_effective_date: Datum
124 124 field_password: Kennwort
125 125 field_new_password: Neues Kennwort
126 126 field_password_confirmation: Bestätigung
127 127 field_version: Version
128 128 field_type: Typ
129 129 field_host: Host
130 130 field_port: Port
131 131 field_account: Konto
132 132 field_base_dn: Base DN
133 133 field_attr_login: Mitgliedsnameattribut
134 134 field_attr_firstname: Vornamensattribut
135 135 field_attr_lastname: Namenattribut
136 136 field_attr_mail: Emailattribut
137 137 field_onthefly: On-the-fly Benutzerkreation
138 138 field_start_date: Beginn
139 139 field_done_ratio: %% erledigt
140 140 field_auth_source: Authentifizierungs-Modus
141 141 field_hide_mail: Email Adresse nicht anzeigen
142 142 field_comments: Kommentar
143 143 field_url: URL
144 144 field_start_page: Hauptseite
145 145 field_subproject: Subprojekt von
146 146 field_hours: Stunden
147 147 field_activity: Aktivität
148 148 field_spent_on: Datum
149 149 field_identifier: Identifier
150 150 field_is_filter: Used as a filter
151 151
152 152 setting_app_title: Applikation Titel
153 153 setting_app_subtitle: Applikation Untertitel
154 154 setting_welcome_text: Willkommenstext
155 155 setting_default_language: Default Sprache
156 156 setting_login_required: Authent. erfordert
157 157 setting_self_registration: Anmeldung ermöglicht
158 158 setting_attachment_max_size: max. Dateigröße
159 159 setting_issues_export_limit: Limit Export Tickets
160 160 setting_mail_from: Mail Absender
161 161 setting_host_name: Host Name
162 162 setting_text_formatting: Textformatierung
163 163 setting_wiki_compression: Wiki-Historie komprimieren
164 164 setting_feeds_limit: Limit Feed Inhalt
165 165 setting_autofetch_changesets: Autofetch SVN commits
166 166 setting_sys_api_enabled: Enable WS for repository management
167 167 setting_commit_ref_keywords: Referencing keywords
168 168 setting_commit_fix_keywords: Fixing keywords
169 169
170 170 label_user: Benutzer
171 171 label_user_plural: Benutzer
172 172 label_user_new: Neuer Benutzer
173 173 label_project: Projekt
174 174 label_project_new: Neues Projekt
175 175 label_project_plural: Projekte
176 176 label_project_latest: Neueste Projekte
177 177 label_issue: Ticket
178 178 label_issue_new: Neues Ticket
179 179 label_issue_plural: Tickets
180 180 label_issue_view_all: Alle Tickets ansehen
181 181 label_document: Dokument
182 182 label_document_new: Neues Dokument
183 183 label_document_plural: Dokumente
184 184 label_role: Rolle
185 185 label_role_plural: Rollen
186 186 label_role_new: Neue Rolle
187 187 label_role_and_permissions: Rollen und Rechte
188 188 label_member: Mitglied
189 189 label_member_new: Neues Mitglied
190 190 label_member_plural: Mitglieder
191 191 label_tracker: Tracker
192 192 label_tracker_plural: Tracker
193 193 label_tracker_new: Neuer Tracker
194 194 label_workflow: Workflow
195 195 label_issue_status: Ticket-Status
196 196 label_issue_status_plural: Ticket-Status
197 197 label_issue_status_new: Neuer Status
198 198 label_issue_category: Ticket-Kategorie
199 199 label_issue_category_plural: Ticket-Kategorien
200 200 label_issue_category_new: Neue Kategorie
201 201 label_custom_field: Benutzerdefiniertes Feld
202 202 label_custom_field_plural: Benutzerdefinierte Felder
203 203 label_custom_field_new: Neues Feld
204 204 label_enumerations: Aufzählungen
205 205 label_enumeration_new: Neuer Wert
206 206 label_information: Information
207 207 label_information_plural: Informationen
208 208 label_please_login: Anmelden
209 209 label_register: Anmelden
210 210 label_password_lost: Kennwort vergessen
211 211 label_home: Hauptseite
212 212 label_my_page: Meine Seite
213 213 label_my_account: Mein Konto
214 214 label_my_projects: Meine Projekte
215 215 label_administration: Administration
216 216 label_login: Einloggen
217 217 label_logout: Abmelden
218 218 label_help: Hilfe
219 219 label_reported_issues: Gemeldete Tickets
220 220 label_assigned_to_me_issues: Mir zugewiesen
221 221 label_last_login: Letzte Anmeldung
222 222 label_last_updates: zuletzt aktualisiert
223 223 label_last_updates_plural: %d zuletzt aktualisierten
224 224 label_registered_on: Angemeldet am
225 225 label_activity: Aktivität
226 226 label_new: Neu
227 227 label_logged_as: Angemeldet als
228 228 label_environment: Environment
229 229 label_authentication: Authentifizierung
230 230 label_auth_source: Authentifizierungs-Modus
231 231 label_auth_source_new: Neuer Authentifizierungs-Modus
232 232 label_auth_source_plural: Authentifizierungs-Arten
233 233 label_subproject_plural: Sub Projekte
234 234 label_min_max_length: Min - Max Länge
235 235 label_list: Liste
236 236 label_date: Datum
237 237 label_integer: Zahl
238 238 label_boolean: Boolean
239 239 label_string: Text
240 240 label_text: Langer Text
241 241 label_attribute: Attribut
242 242 label_attribute_plural: Attribute
243 243 label_download: %d Download
244 244 label_download_plural: %d Downloads
245 245 label_no_data: Nichts anzuzeigen
246 246 label_change_status: Statuswechsel
247 247 label_history: Historie
248 248 label_attachment: Datei
249 249 label_attachment_new: Neue Datei
250 250 label_attachment_delete: Anhang löschen
251 251 label_attachment_plural: Dateien
252 252 label_report: Bericht
253 253 label_report_plural: Berichte
254 254 label_news: News
255 255 label_news_new: News hinzufügen
256 256 label_news_plural: News
257 257 label_news_latest: Letzte News
258 258 label_news_view_all: Alle News anzeigen
259 259 label_change_log: Change-Log
260 260 label_settings: Konfiguration
261 261 label_overview: Übersicht
262 262 label_version: Version
263 263 label_version_new: Neue Version
264 264 label_version_plural: Versionen
265 265 label_confirmation: Bestätigung
266 266 label_export_to: Export zu
267 267 label_read: Lesen...
268 268 label_public_projects: Öffentliche Projekte
269 269 label_open_issues: offen
270 270 label_open_issues_plural: offen
271 271 label_closed_issues: geschlossen
272 272 label_closed_issues_plural: geschlossen
273 273 label_total: Gesamtzahl
274 274 label_permissions: Berechtigungen
275 275 label_current_status: Gegenwärtiger Status
276 276 label_new_statuses_allowed: Neue Berechtigungen
277 277 label_all: alle
278 278 label_none: kein
279 279 label_next: Weiter
280 280 label_previous: Zurück
281 281 label_used_by: Benutzt von
282 282 label_details: Details...
283 283 label_add_note: Kommentar hinzufügen
284 284 label_per_page: Pro Seite
285 285 label_calendar: Kalender
286 286 label_months_from: Monate ab
287 287 label_gantt: Gantt
288 288 label_internal: Intern
289 289 label_last_changes: %d letzte Änderungen
290 290 label_change_view_all: Alle Änderungen ansehen
291 291 label_personalize_page: Diese Seite anpassen
292 292 label_comment: Kommentar
293 293 label_comment_plural: Kommentare
294 294 label_comment_add: Kommentar hinzufügen
295 295 label_comment_added: Kommentar hinzugefügt
296 296 label_comment_delete: Kommentar löschen
297 297 label_query: Benutzerdefinierte Abfrage
298 298 label_query_plural: Benutzerdefinierte Berichte
299 299 label_query_new: Neuer Bericht
300 300 label_filter_add: Filter hinzufügen
301 301 label_filter_plural: Filter
302 302 label_equals: ist
303 303 label_not_equals: ist nicht
304 304 label_in_less_than: in weniger als
305 305 label_in_more_than: in mehr als
306 306 label_in: an
307 307 label_today: heute
308 308 label_less_than_ago: vor weniger als
309 309 label_more_than_ago: vor mehr als
310 310 label_ago: vor
311 311 label_contains: enthält
312 312 label_not_contains: enthält nicht
313 313 label_day_plural: Tage
314 314 label_repository: SVN Projektarchiv
315 315 label_browse: Codebrowser
316 316 label_modification: %d Änderung
317 317 label_modification_plural: %d Änderungen
318 318 label_revision: Revision
319 319 label_revision_plural: Revisionen
320 320 label_added: hinzugefügt
321 321 label_modified: geändert
322 322 label_deleted: gelöscht
323 323 label_latest_revision: Aktuellste Revision
324 324 label_latest_revision_plural: Aktuellste Revisionen
325 325 label_view_revisions: Revisionen anzeigen
326 326 label_max_size: Maximale Größe
327 327 label_on: von
328 328 label_sort_highest: Anfang
329 329 label_sort_higher: eins höher
330 330 label_sort_lower: eins tiefer
331 331 label_sort_lowest: Ende
332 332 label_roadmap: Roadmap
333 333 label_roadmap_due_in: Fällig in
334 334 label_roadmap_no_issues: Keine Tickets für diese Version
335 335 label_search: Suche
336 336 label_result: %d Resultat
337 337 label_result_plural: %d Resultate
338 338 label_all_words: Alle Wörter
339 339 label_wiki: Wiki
340 340 label_wiki_edit: Wiki Bearbeitung
341 341 label_wiki_edit_plural: Wiki Bearbeitungen
342 342 label_page_index: Index
343 343 label_current_version: Gegenwärtige Version
344 344 label_preview: Vorschau
345 345 label_feed_plural: Feeds
346 346 label_changes_details: Details aller Änderungen
347 347 label_issue_tracking: Tickets
348 348 label_spent_time: Aufgewendete Zeit
349 349 label_f_hour: %.2f Stunde
350 350 label_f_hour_plural: %.2f Stunden
351 351 label_time_tracking: Zeiterfassung
352 352 label_change_plural: Änderungen
353 353 label_statistics: Statistiken
354 354 label_commits_per_month: Übertragungen pro Monat
355 355 label_commits_per_author: Übertragungen pro Autor
356 356 label_view_diff: View differences
357 357 label_diff_inline: inline
358 358 label_diff_side_by_side: side by side
359 359 label_options: Options
360 360 label_copy_workflow_from: Copy workflow from
361 361 label_permissions_report: Permissions report
362 362 label_watched_issues: Watched issues
363 363 label_related_issues: Related issues
364 364 label_applied_status: Applied status
365 label_loading: Loading...
365 366
366 367 button_login: Einloggen
367 368 button_submit: OK
368 369 button_save: Speichern
369 370 button_check_all: Alles auswählen
370 371 button_uncheck_all: Alles abwählen
371 372 button_delete: Löschen
372 373 button_create: Anlegen
373 374 button_test: Testen
374 375 button_edit: Bearbeiten
375 376 button_add: Hinzufügen
376 377 button_change: Wechseln
377 378 button_apply: Anwenden
378 379 button_clear: Zurücksetzen
379 380 button_lock: Sperren
380 381 button_unlock: Entsperren
381 382 button_download: Download
382 383 button_list: Liste
383 384 button_view: Siehe
384 385 button_move: Verschieben
385 386 button_back: Zurück
386 387 button_cancel: Abbrechen
387 388 button_activate: Aktivieren
388 389 button_sort: Sortieren
389 390 button_log_time: Log time
390 391 button_rollback: Rollback to this version
391 392 button_watch: Watch
392 393 button_unwatch: Unwatch
393 394
394 395 status_active: aktiv
395 396 status_registered: angemeldet
396 397 status_locked: gesperrt
397 398
398 399 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
399 400 text_regexp_info: eg. ^[A-Z0-9]+$
400 401 text_min_max_length_info: 0 heißt keine Beschränkung
401 402 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
402 403 text_workflow_edit: Workflow zum Bearbeiten auswählen
403 404 text_are_you_sure: Sind Sie sicher?
404 405 text_journal_changed: geändert von %s zu %s
405 406 text_journal_set_to: gestellt zu %s
406 407 text_journal_deleted: gelöscht
407 408 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
408 409 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
409 410 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
410 411 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 412 text_caracters_maximum: %d characters maximum.
412 413 text_length_between: Length between %d and %d characters.
413 414 text_tracker_no_workflow: No workflow defined for this tracker
414 415 text_unallowed_characters: Unallowed characters
415 416 text_coma_separated: Multiple values allowed (coma separated).
416 417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417 418
418 419 default_role_manager: Manager
419 420 default_role_developper: Developer
420 421 default_role_reporter: Reporter
421 422 default_tracker_bug: Fehler
422 423 default_tracker_feature: Feature
423 424 default_tracker_support: Support
424 425 default_issue_status_new: Neu
425 426 default_issue_status_assigned: Zugewiesen
426 427 default_issue_status_resolved: Gelöst
427 428 default_issue_status_feedback: Feedback
428 429 default_issue_status_closed: Erledigt
429 430 default_issue_status_rejected: Abgewiesen
430 431 default_doc_category_user: Benutzerdokumentation
431 432 default_doc_category_tech: Technische Dokumentation
432 433 default_priority_low: Niedrig
433 434 default_priority_normal: Normal
434 435 default_priority_high: Hoch
435 436 default_priority_urgent: Dringend
436 437 default_priority_immediate: Sofort
437 438 default_activity_design: Design
438 439 default_activity_development: Development
439 440
440 441 enumeration_issue_priorities: Ticket-Prioritäten
441 442 enumeration_doc_categories: Dokumentenkategorien
442 443 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,442 +1,443
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_last_login_on: Last connection
122 122 field_language: Language
123 123 field_effective_date: Date
124 124 field_password: Password
125 125 field_new_password: New password
126 126 field_password_confirmation: Confirmation
127 127 field_version: Version
128 128 field_type: Type
129 129 field_host: Host
130 130 field_port: Port
131 131 field_account: Account
132 132 field_base_dn: Base DN
133 133 field_attr_login: Login attribute
134 134 field_attr_firstname: Firstname attribute
135 135 field_attr_lastname: Lastname attribute
136 136 field_attr_mail: Email attribute
137 137 field_onthefly: On-the-fly user creation
138 138 field_start_date: Start
139 139 field_done_ratio: %% Done
140 140 field_auth_source: Authentication mode
141 141 field_hide_mail: Hide my email address
142 142 field_comments: Comment
143 143 field_url: URL
144 144 field_start_page: Start page
145 145 field_subproject: Subproject
146 146 field_hours: Hours
147 147 field_activity: Activity
148 148 field_spent_on: Date
149 149 field_identifier: Identifier
150 150 field_is_filter: Used as a filter
151 151
152 152 setting_app_title: Application title
153 153 setting_app_subtitle: Application subtitle
154 154 setting_welcome_text: Welcome text
155 155 setting_default_language: Default language
156 156 setting_login_required: Authent. required
157 157 setting_self_registration: Self-registration enabled
158 158 setting_attachment_max_size: Attachment max. size
159 159 setting_issues_export_limit: Issues export limit
160 160 setting_mail_from: Emission mail address
161 161 setting_host_name: Host name
162 162 setting_text_formatting: Text formatting
163 163 setting_wiki_compression: Wiki history compression
164 164 setting_feeds_limit: Feed content limit
165 165 setting_autofetch_changesets: Autofetch SVN commits
166 166 setting_sys_api_enabled: Enable WS for repository management
167 167 setting_commit_ref_keywords: Referencing keywords
168 168 setting_commit_fix_keywords: Fixing keywords
169 169
170 170 label_user: User
171 171 label_user_plural: Users
172 172 label_user_new: New user
173 173 label_project: Project
174 174 label_project_new: New project
175 175 label_project_plural: Projects
176 176 label_project_latest: Latest projects
177 177 label_issue: Issue
178 178 label_issue_new: New issue
179 179 label_issue_plural: Issues
180 180 label_issue_view_all: View all issues
181 181 label_document: Document
182 182 label_document_new: New document
183 183 label_document_plural: Documents
184 184 label_role: Role
185 185 label_role_plural: Roles
186 186 label_role_new: New role
187 187 label_role_and_permissions: Roles and permissions
188 188 label_member: Member
189 189 label_member_new: New member
190 190 label_member_plural: Members
191 191 label_tracker: Tracker
192 192 label_tracker_plural: Trackers
193 193 label_tracker_new: New tracker
194 194 label_workflow: Workflow
195 195 label_issue_status: Issue status
196 196 label_issue_status_plural: Issue statuses
197 197 label_issue_status_new: New status
198 198 label_issue_category: Issue category
199 199 label_issue_category_plural: Issue categories
200 200 label_issue_category_new: New category
201 201 label_custom_field: Custom field
202 202 label_custom_field_plural: Custom fields
203 203 label_custom_field_new: New custom field
204 204 label_enumerations: Enumerations
205 205 label_enumeration_new: New value
206 206 label_information: Information
207 207 label_information_plural: Information
208 208 label_please_login: Please login
209 209 label_register: Register
210 210 label_password_lost: Lost password
211 211 label_home: Home
212 212 label_my_page: My page
213 213 label_my_account: My account
214 214 label_my_projects: My projects
215 215 label_administration: Administration
216 216 label_login: Login
217 217 label_logout: Logout
218 218 label_help: Help
219 219 label_reported_issues: Reported issues
220 220 label_assigned_to_me_issues: Issues assigned to me
221 221 label_last_login: Last connection
222 222 label_last_updates: Last updated
223 223 label_last_updates_plural: %d last updated
224 224 label_registered_on: Registered on
225 225 label_activity: Activity
226 226 label_new: New
227 227 label_logged_as: Logged as
228 228 label_environment: Environment
229 229 label_authentication: Authentication
230 230 label_auth_source: Authentication mode
231 231 label_auth_source_new: New authentication mode
232 232 label_auth_source_plural: Authentication modes
233 233 label_subproject_plural: Subprojects
234 234 label_min_max_length: Min - Max length
235 235 label_list: List
236 236 label_date: Date
237 237 label_integer: Integer
238 238 label_boolean: Boolean
239 239 label_string: Text
240 240 label_text: Long text
241 241 label_attribute: Attribute
242 242 label_attribute_plural: Attributes
243 243 label_download: %d Download
244 244 label_download_plural: %d Downloads
245 245 label_no_data: No data to display
246 246 label_change_status: Change status
247 247 label_history: History
248 248 label_attachment: File
249 249 label_attachment_new: New file
250 250 label_attachment_delete: Delete file
251 251 label_attachment_plural: Files
252 252 label_report: Report
253 253 label_report_plural: Reports
254 254 label_news: News
255 255 label_news_new: Add news
256 256 label_news_plural: News
257 257 label_news_latest: Latest news
258 258 label_news_view_all: View all news
259 259 label_change_log: Change log
260 260 label_settings: Settings
261 261 label_overview: Overview
262 262 label_version: Version
263 263 label_version_new: New version
264 264 label_version_plural: Versions
265 265 label_confirmation: Confirmation
266 266 label_export_to: Export to
267 267 label_read: Read...
268 268 label_public_projects: Public projects
269 269 label_open_issues: open
270 270 label_open_issues_plural: open
271 271 label_closed_issues: closed
272 272 label_closed_issues_plural: closed
273 273 label_total: Total
274 274 label_permissions: Permissions
275 275 label_current_status: Current status
276 276 label_new_statuses_allowed: New statuses allowed
277 277 label_all: all
278 278 label_none: none
279 279 label_next: Next
280 280 label_previous: Previous
281 281 label_used_by: Used by
282 282 label_details: Details...
283 283 label_add_note: Add a note
284 284 label_per_page: Per page
285 285 label_calendar: Calendar
286 286 label_months_from: months from
287 287 label_gantt: Gantt
288 288 label_internal: Internal
289 289 label_last_changes: last %d changes
290 290 label_change_view_all: View all changes
291 291 label_personalize_page: Personalize this page
292 292 label_comment: Comment
293 293 label_comment_plural: Comments
294 294 label_comment_add: Add a comment
295 295 label_comment_added: Comment added
296 296 label_comment_delete: Delete comments
297 297 label_query: Custom query
298 298 label_query_plural: Custom queries
299 299 label_query_new: New query
300 300 label_filter_add: Add filter
301 301 label_filter_plural: Filters
302 302 label_equals: is
303 303 label_not_equals: is not
304 304 label_in_less_than: in less than
305 305 label_in_more_than: in more than
306 306 label_in: in
307 307 label_today: today
308 308 label_less_than_ago: less than days ago
309 309 label_more_than_ago: more than days ago
310 310 label_ago: days ago
311 311 label_contains: contains
312 312 label_not_contains: doesn't contain
313 313 label_day_plural: days
314 314 label_repository: SVN Repository
315 315 label_browse: Browse
316 316 label_modification: %d change
317 317 label_modification_plural: %d changes
318 318 label_revision: Revision
319 319 label_revision_plural: Revisions
320 320 label_added: added
321 321 label_modified: modified
322 322 label_deleted: deleted
323 323 label_latest_revision: Latest revision
324 324 label_latest_revision_plural: Latest revisions
325 325 label_view_revisions: View revisions
326 326 label_max_size: Maximum size
327 327 label_on: 'on'
328 328 label_sort_highest: Move to top
329 329 label_sort_higher: Move up
330 330 label_sort_lower: Move down
331 331 label_sort_lowest: Move to bottom
332 332 label_roadmap: Roadmap
333 333 label_roadmap_due_in: Due in
334 334 label_roadmap_no_issues: No issues for this version
335 335 label_search: Search
336 336 label_result: %d result
337 337 label_result_plural: %d results
338 338 label_all_words: All words
339 339 label_wiki: Wiki
340 340 label_wiki_edit: Wiki edit
341 341 label_wiki_edit_plural: Wiki edits
342 342 label_page_index: Index
343 343 label_current_version: Current version
344 344 label_preview: Preview
345 345 label_feed_plural: Feeds
346 346 label_changes_details: Details of all changes
347 347 label_issue_tracking: Issue tracking
348 348 label_spent_time: Spent time
349 349 label_f_hour: %.2f hour
350 350 label_f_hour_plural: %.2f hours
351 351 label_time_tracking: Time tracking
352 352 label_change_plural: Changes
353 353 label_statistics: Statistics
354 354 label_commits_per_month: Commits per month
355 355 label_commits_per_author: Commits per author
356 356 label_view_diff: View differences
357 357 label_diff_inline: inline
358 358 label_diff_side_by_side: side by side
359 359 label_options: Options
360 360 label_copy_workflow_from: Copy workflow from
361 361 label_permissions_report: Permissions report
362 362 label_watched_issues: Watched issues
363 363 label_related_issues: Related issues
364 364 label_applied_status: Applied status
365 label_loading: Loading...
365 366
366 367 button_login: Login
367 368 button_submit: Submit
368 369 button_save: Save
369 370 button_check_all: Check all
370 371 button_uncheck_all: Uncheck all
371 372 button_delete: Delete
372 373 button_create: Create
373 374 button_test: Test
374 375 button_edit: Edit
375 376 button_add: Add
376 377 button_change: Change
377 378 button_apply: Apply
378 379 button_clear: Clear
379 380 button_lock: Lock
380 381 button_unlock: Unlock
381 382 button_download: Download
382 383 button_list: List
383 384 button_view: View
384 385 button_move: Move
385 386 button_back: Back
386 387 button_cancel: Cancel
387 388 button_activate: Activate
388 389 button_sort: Sort
389 390 button_log_time: Log time
390 391 button_rollback: Rollback to this version
391 392 button_watch: Watch
392 393 button_unwatch: Unwatch
393 394
394 395 status_active: active
395 396 status_registered: registered
396 397 status_locked: locked
397 398
398 399 text_select_mail_notifications: Select actions for which mail notifications should be sent.
399 400 text_regexp_info: eg. ^[A-Z0-9]+$
400 401 text_min_max_length_info: 0 means no restriction
401 402 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
402 403 text_workflow_edit: Select a role and a tracker to edit the workflow
403 404 text_are_you_sure: Are you sure ?
404 405 text_journal_changed: changed from %s to %s
405 406 text_journal_set_to: set to %s
406 407 text_journal_deleted: deleted
407 408 text_tip_task_begin_day: task beginning this day
408 409 text_tip_task_end_day: task ending this day
409 410 text_tip_task_begin_end_day: task beginning and ending this day
410 411 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 412 text_caracters_maximum: %d characters maximum.
412 413 text_length_between: Length between %d and %d characters.
413 414 text_tracker_no_workflow: No workflow defined for this tracker
414 415 text_unallowed_characters: Unallowed characters
415 416 text_coma_separated: Multiple values allowed (coma separated).
416 417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417 418
418 419 default_role_manager: Manager
419 420 default_role_developper: Developer
420 421 default_role_reporter: Reporter
421 422 default_tracker_bug: Bug
422 423 default_tracker_feature: Feature
423 424 default_tracker_support: Support
424 425 default_issue_status_new: New
425 426 default_issue_status_assigned: Assigned
426 427 default_issue_status_resolved: Resolved
427 428 default_issue_status_feedback: Feedback
428 429 default_issue_status_closed: Closed
429 430 default_issue_status_rejected: Rejected
430 431 default_doc_category_user: User documentation
431 432 default_doc_category_tech: Technical documentation
432 433 default_priority_low: Low
433 434 default_priority_normal: Normal
434 435 default_priority_high: High
435 436 default_priority_urgent: Urgent
436 437 default_priority_immediate: Immediate
437 438 default_activity_design: Design
438 439 default_activity_development: Development
439 440
440 441 enumeration_issue_priorities: Issue priorities
441 442 enumeration_doc_categories: Document categories
442 443 enumeration_activities: Activities (time tracking)
@@ -1,442 +1,443
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_last_login_on: Última conexión
122 122 field_language: Lengua
123 123 field_effective_date: Fecha
124 124 field_password: Contraseña
125 125 field_new_password: Nueva contraseña
126 126 field_password_confirmation: Confirmación
127 127 field_version: Versión
128 128 field_type: Tipo
129 129 field_host: Anfitrión
130 130 field_port: Puerto
131 131 field_account: Cuenta
132 132 field_base_dn: Base DN
133 133 field_attr_login: Cualidad del identificador
134 134 field_attr_firstname: Cualidad del nombre
135 135 field_attr_lastname: Cualidad del apellido
136 136 field_attr_mail: Cualidad del Email
137 137 field_onthefly: Creación del usuario On-the-fly
138 138 field_start_date: Comienzo
139 139 field_done_ratio: %% Realizado
140 140 field_auth_source: Modo de la autentificación
141 141 field_hide_mail: Ocultar mi email address
142 142 field_comments: Comentario
143 143 field_url: URL
144 144 field_start_page: Página principal
145 145 field_subproject: Proyecto secundario
146 146 field_hours: Hours
147 147 field_activity: Activity
148 148 field_spent_on: Fecha
149 149 field_identifier: Identifier
150 150 field_is_filter: Used as a filter
151 151
152 152 setting_app_title: Título del aplicación
153 153 setting_app_subtitle: Subtítulo del aplicación
154 154 setting_welcome_text: Texto acogida
155 155 setting_default_language: Lengua del defecto
156 156 setting_login_required: Autentif. requerida
157 157 setting_self_registration: Registro permitido
158 158 setting_attachment_max_size: Tamaño máximo del fichero
159 159 setting_issues_export_limit: Issues export limit
160 160 setting_mail_from: Email de la emisión
161 161 setting_host_name: Nombre de anfitrión
162 162 setting_text_formatting: Formato de texto
163 163 setting_wiki_compression: Compresión de la historia de Wiki
164 164 setting_feeds_limit: Feed content limit
165 165 setting_autofetch_changesets: Autofetch SVN commits
166 166 setting_sys_api_enabled: Enable WS for repository management
167 167 setting_commit_ref_keywords: Referencing keywords
168 168 setting_commit_fix_keywords: Fixing keywords
169 169
170 170 label_user: Usuario
171 171 label_user_plural: Usuarios
172 172 label_user_new: Nuevo usuario
173 173 label_project: Proyecto
174 174 label_project_new: Nuevo proyecto
175 175 label_project_plural: Proyectos
176 176 label_project_latest: Los proyectos más últimos
177 177 label_issue: Petición
178 178 label_issue_new: Nueva petición
179 179 label_issue_plural: Peticiones
180 180 label_issue_view_all: Ver todas las peticiones
181 181 label_document: Documento
182 182 label_document_new: Nuevo documento
183 183 label_document_plural: Documentos
184 184 label_role: Papel
185 185 label_role_plural: Papeles
186 186 label_role_new: Nuevo papel
187 187 label_role_and_permissions: Papeles y permisos
188 188 label_member: Miembro
189 189 label_member_new: Nuevo miembro
190 190 label_member_plural: Miembros
191 191 label_tracker: Tracker
192 192 label_tracker_plural: Trackers
193 193 label_tracker_new: Nuevo tracker
194 194 label_workflow: Workflow
195 195 label_issue_status: Estatuto de petición
196 196 label_issue_status_plural: Estatutos de las peticiones
197 197 label_issue_status_new: Nuevo estatuto
198 198 label_issue_category: Categoría de las peticiones
199 199 label_issue_category_plural: Categorías de las peticiones
200 200 label_issue_category_new: Nueva categoría
201 201 label_custom_field: Campo personalizado
202 202 label_custom_field_plural: Campos personalizados
203 203 label_custom_field_new: Nuevo campo personalizado
204 204 label_enumerations: Listas de valores
205 205 label_enumeration_new: Nuevo valor
206 206 label_information: Informacion
207 207 label_information_plural: Informaciones
208 208 label_please_login: Conexión
209 209 label_register: Registrar
210 210 label_password_lost: ¿Olvidaste la contraseña?
211 211 label_home: Acogida
212 212 label_my_page: Mi página
213 213 label_my_account: Mi cuenta
214 214 label_my_projects: Mis proyectos
215 215 label_administration: Administración
216 216 label_login: Conexión
217 217 label_logout: Desconexión
218 218 label_help: Ayuda
219 219 label_reported_issues: Peticiones registradas
220 220 label_assigned_to_me_issues: Peticiones que me están asignadas
221 221 label_last_login: Última conexión
222 222 label_last_updates: Actualizado
223 223 label_last_updates_plural: %d Actualizados
224 224 label_registered_on: Inscrito el
225 225 label_activity: Actividad
226 226 label_new: Nuevo
227 227 label_logged_as: Conectado como
228 228 label_environment: Environment
229 229 label_authentication: Autentificación
230 230 label_auth_source: Modo de la autentificación
231 231 label_auth_source_new: Nuevo modo de la autentificación
232 232 label_auth_source_plural: Modos de la autentificación
233 233 label_subproject_plural: Proyectos secundarios
234 234 label_min_max_length: Longitud mín - máx
235 235 label_list: Lista
236 236 label_date: Fecha
237 237 label_integer: Número
238 238 label_boolean: Boleano
239 239 label_string: Texto
240 240 label_text: Texto largo
241 241 label_attribute: Cualidad
242 242 label_attribute_plural: Cualidades
243 243 label_download: %d Telecarga
244 244 label_download_plural: %d Telecargas
245 245 label_no_data: Ningunos datos a exhibir
246 246 label_change_status: Cambiar el estatuto
247 247 label_history: Histórico
248 248 label_attachment: Fichero
249 249 label_attachment_new: Nuevo fichero
250 250 label_attachment_delete: Suprimir el fichero
251 251 label_attachment_plural: Ficheros
252 252 label_report: Informe
253 253 label_report_plural: Informes
254 254 label_news: Noticia
255 255 label_news_new: Nueva noticia
256 256 label_news_plural: Noticias
257 257 label_news_latest: Últimas noticias
258 258 label_news_view_all: Ver todas las noticias
259 259 label_change_log: Cambios
260 260 label_settings: Configuración
261 261 label_overview: Vistazo
262 262 label_version: Versión
263 263 label_version_new: Nueva versión
264 264 label_version_plural: Versiónes
265 265 label_confirmation: Confirmación
266 266 label_export_to: Exportar a
267 267 label_read: Leer...
268 268 label_public_projects: Proyectos publicos
269 269 label_open_issues: abierta
270 270 label_open_issues_plural: abiertas
271 271 label_closed_issues: cerrada
272 272 label_closed_issues_plural: cerradas
273 273 label_total: Total
274 274 label_permissions: Permisos
275 275 label_current_status: Estado actual
276 276 label_new_statuses_allowed: Nuevos estatutos autorizados
277 277 label_all: todos
278 278 label_none: ninguno
279 279 label_next: Próximo
280 280 label_previous: Precedente
281 281 label_used_by: Utilizado por
282 282 label_details: Detalles...
283 283 label_add_note: Agregar una nota
284 284 label_per_page: Por la página
285 285 label_calendar: Calendario
286 286 label_months_from: meses de
287 287 label_gantt: Gantt
288 288 label_internal: Interno
289 289 label_last_changes: %d cambios del último
290 290 label_change_view_all: Ver todos los cambios
291 291 label_personalize_page: Personalizar esta página
292 292 label_comment: Comentario
293 293 label_comment_plural: Comentarios
294 294 label_comment_add: Agregar un comentario
295 295 label_comment_added: Comentario agregó
296 296 label_comment_delete: Suprimir comentarios
297 297 label_query: Pregunta personalizada
298 298 label_query_plural: Preguntas personalizadas
299 299 label_query_new: Nueva preguntas
300 300 label_filter_add: Agregar el filtro
301 301 label_filter_plural: Filtros
302 302 label_equals: igual
303 303 label_not_equals: no igual
304 304 label_in_less_than: en menos que
305 305 label_in_more_than: en más que
306 306 label_in: en
307 307 label_today: hoy
308 308 label_less_than_ago: hace menos de
309 309 label_more_than_ago: hace más de
310 310 label_ago: hace
311 311 label_contains: contiene
312 312 label_not_contains: no contiene
313 313 label_day_plural: días
314 314 label_repository: Depósito SVN
315 315 label_browse: Hojear
316 316 label_modification: %d modificación
317 317 label_modification_plural: %d modificaciones
318 318 label_revision: Revisión
319 319 label_revision_plural: Revisiones
320 320 label_added: agregado
321 321 label_modified: modificado
322 322 label_deleted: suprimido
323 323 label_latest_revision: La revisión más última
324 324 label_latest_revision_plural: Latest revisions
325 325 label_view_revisions: Ver las revisiones
326 326 label_max_size: Tamaño máximo
327 327 label_on: en
328 328 label_sort_highest: Primero
329 329 label_sort_higher: Subir
330 330 label_sort_lower: Bajar
331 331 label_sort_lowest: Último
332 332 label_roadmap: Roadmap
333 333 label_roadmap_due_in: Due in
334 334 label_roadmap_no_issues: No issues for this version
335 335 label_search: Búsqueda
336 336 label_result: %d resultado
337 337 label_result_plural: %d resultados
338 338 label_all_words: Todas las palabras
339 339 label_wiki: Wiki
340 340 label_wiki_edit: Wiki edit
341 341 label_wiki_edit_plural: Wiki edits
342 342 label_page_index: Índice
343 343 label_current_version: Versión actual
344 344 label_preview: Previo
345 345 label_feed_plural: Feeds
346 346 label_changes_details: Detalles de todos los cambios
347 347 label_issue_tracking: Issue tracking
348 348 label_spent_time: Spent time
349 349 label_f_hour: %.2f hour
350 350 label_f_hour_plural: %.2f hours
351 351 label_time_tracking: Time tracking
352 352 label_change_plural: Changes
353 353 label_statistics: Statistics
354 354 label_commits_per_month: Commits per month
355 355 label_commits_per_author: Commits per author
356 356 label_view_diff: View differences
357 357 label_diff_inline: inline
358 358 label_diff_side_by_side: side by side
359 359 label_options: Options
360 360 label_copy_workflow_from: Copy workflow from
361 361 label_permissions_report: Permissions report
362 362 label_watched_issues: Watched issues
363 363 label_related_issues: Related issues
364 364 label_applied_status: Applied status
365 label_loading: Loading...
365 366
366 367 button_login: Conexión
367 368 button_submit: Someter
368 369 button_save: Validar
369 370 button_check_all: Seleccionar todo
370 371 button_uncheck_all: No seleccionar nada
371 372 button_delete: Suprimir
372 373 button_create: Crear
373 374 button_test: Testar
374 375 button_edit: Modificar
375 376 button_add: Añadir
376 377 button_change: Cambiar
377 378 button_apply: Aplicar
378 379 button_clear: Anular
379 380 button_lock: Bloquear
380 381 button_unlock: Desbloquear
381 382 button_download: Telecargar
382 383 button_list: Listar
383 384 button_view: Ver
384 385 button_move: Mover
385 386 button_back: Atrás
386 387 button_cancel: Cancelar
387 388 button_activate: Activar
388 389 button_sort: Clasificar
389 390 button_log_time: Log time
390 391 button_rollback: Rollback to this version
391 392 button_watch: Watch
392 393 button_unwatch: Unwatch
393 394
394 395 status_active: active
395 396 status_registered: registered
396 397 status_locked: locked
397 398
398 399 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
399 400 text_regexp_info: eg. ^[A-Z0-9]+$
400 401 text_min_max_length_info: 0 para ninguna restricción
401 402 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
402 403 text_workflow_edit: Seleccionar un workflow para actualizar
403 404 text_are_you_sure: ¿ Estás seguro ?
404 405 text_journal_changed: cambiado de %s a %s
405 406 text_journal_set_to: fijado a %s
406 407 text_journal_deleted: suprimido
407 408 text_tip_task_begin_day: tarea que comienza este día
408 409 text_tip_task_end_day: tarea que termina este día
409 410 text_tip_task_begin_end_day: tarea que comienza y termina este día
410 411 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 412 text_caracters_maximum: %d characters maximum.
412 413 text_length_between: Length between %d and %d characters.
413 414 text_tracker_no_workflow: No workflow defined for this tracker
414 415 text_unallowed_characters: Unallowed characters
415 416 text_coma_separated: Multiple values allowed (coma separated).
416 417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417 418
418 419 default_role_manager: Manager
419 420 default_role_developper: Desarrollador
420 421 default_role_reporter: Informador
421 422 default_tracker_bug: Anomalía
422 423 default_tracker_feature: Evolución
423 424 default_tracker_support: Asistencia
424 425 default_issue_status_new: Nuevo
425 426 default_issue_status_assigned: Asignada
426 427 default_issue_status_resolved: Resuelta
427 428 default_issue_status_feedback: Comentario
428 429 default_issue_status_closed: Cerrada
429 430 default_issue_status_rejected: Rechazada
430 431 default_doc_category_user: Documentación del usuario
431 432 default_doc_category_tech: Documentación tecnica
432 433 default_priority_low: Bajo
433 434 default_priority_normal: Normal
434 435 default_priority_high: Alto
435 436 default_priority_urgent: Urgente
436 437 default_priority_immediate: Ahora
437 438 default_activity_design: Design
438 439 default_activity_development: Development
439 440
440 441 enumeration_issue_priorities: Prioridad de las peticiones
441 442 enumeration_doc_categories: Categorías del documento
442 443 enumeration_activities: Activities (time tracking)
@@ -1,442 +1,443
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_last_login_on: Dernière connexion
122 122 field_language: Langue
123 123 field_effective_date: Date
124 124 field_password: Mot de passe
125 125 field_new_password: Nouveau mot de passe
126 126 field_password_confirmation: Confirmation
127 127 field_version: Version
128 128 field_type: Type
129 129 field_host: Hôte
130 130 field_port: Port
131 131 field_account: Compte
132 132 field_base_dn: Base DN
133 133 field_attr_login: Attribut Identifiant
134 134 field_attr_firstname: Attribut Prénom
135 135 field_attr_lastname: Attribut Nom
136 136 field_attr_mail: Attribut Email
137 137 field_onthefly: Création des utilisateurs à la volée
138 138 field_start_date: Début
139 139 field_done_ratio: %% Réalisé
140 140 field_auth_source: Mode d'authentification
141 141 field_hide_mail: Cacher mon adresse mail
142 142 field_comments: Commentaire
143 143 field_url: URL
144 144 field_start_page: Page de démarrage
145 145 field_subproject: Sous-projet
146 146 field_hours: Heures
147 147 field_activity: Activité
148 148 field_spent_on: Date
149 149 field_identifier: Identifiant
150 150 field_is_filter: Utilisé comme filtre
151 151
152 152 setting_app_title: Titre de l'application
153 153 setting_app_subtitle: Sous-titre de l'application
154 154 setting_welcome_text: Texte d'accueil
155 155 setting_default_language: Langue par défaut
156 156 setting_login_required: Authentif. obligatoire
157 157 setting_self_registration: Enregistrement autorisé
158 158 setting_attachment_max_size: Taille max des fichiers
159 159 setting_issues_export_limit: Limite export demandes
160 160 setting_mail_from: Adresse d'émission
161 161 setting_host_name: Nom d'hôte
162 162 setting_text_formatting: Formatage du texte
163 163 setting_wiki_compression: Compression historique wiki
164 164 setting_feeds_limit: Limite du contenu des flux RSS
165 165 setting_autofetch_changesets: Récupération auto. des commits SVN
166 166 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
167 167 setting_commit_ref_keywords: Mot-clés de référencement
168 168 setting_commit_fix_keywords: Mot-clés de résolution
169 169
170 170 label_user: Utilisateur
171 171 label_user_plural: Utilisateurs
172 172 label_user_new: Nouvel utilisateur
173 173 label_project: Projet
174 174 label_project_new: Nouveau projet
175 175 label_project_plural: Projets
176 176 label_project_latest: Derniers projets
177 177 label_issue: Demande
178 178 label_issue_new: Nouvelle demande
179 179 label_issue_plural: Demandes
180 180 label_issue_view_all: Voir toutes les demandes
181 181 label_document: Document
182 182 label_document_new: Nouveau document
183 183 label_document_plural: Documents
184 184 label_role: Rôle
185 185 label_role_plural: Rôles
186 186 label_role_new: Nouveau rôle
187 187 label_role_and_permissions: Rôles et permissions
188 188 label_member: Membre
189 189 label_member_new: Nouveau membre
190 190 label_member_plural: Membres
191 191 label_tracker: Tracker
192 192 label_tracker_plural: Trackers
193 193 label_tracker_new: Nouveau tracker
194 194 label_workflow: Workflow
195 195 label_issue_status: Statut de demandes
196 196 label_issue_status_plural: Statuts de demandes
197 197 label_issue_status_new: Nouveau statut
198 198 label_issue_category: Catégorie de demandes
199 199 label_issue_category_plural: Catégories de demandes
200 200 label_issue_category_new: Nouvelle catégorie
201 201 label_custom_field: Champ personnalisé
202 202 label_custom_field_plural: Champs personnalisés
203 203 label_custom_field_new: Nouveau champ personnalisé
204 204 label_enumerations: Listes de valeurs
205 205 label_enumeration_new: Nouvelle valeur
206 206 label_information: Information
207 207 label_information_plural: Informations
208 208 label_please_login: Identification
209 209 label_register: S'enregistrer
210 210 label_password_lost: Mot de passe perdu
211 211 label_home: Accueil
212 212 label_my_page: Ma page
213 213 label_my_account: Mon compte
214 214 label_my_projects: Mes projets
215 215 label_administration: Administration
216 216 label_login: Connexion
217 217 label_logout: Déconnexion
218 218 label_help: Aide
219 219 label_reported_issues: Demandes soumises
220 220 label_assigned_to_me_issues: Demandes qui me sont assignées
221 221 label_last_login: Dernière connexion
222 222 label_last_updates: Dernière mise à jour
223 223 label_last_updates_plural: %d dernières mises à jour
224 224 label_registered_on: Inscrit le
225 225 label_activity: Activité
226 226 label_new: Nouveau
227 227 label_logged_as: Connecté en tant que
228 228 label_environment: Environnement
229 229 label_authentication: Authentification
230 230 label_auth_source: Mode d'authentification
231 231 label_auth_source_new: Nouveau mode d'authentification
232 232 label_auth_source_plural: Modes d'authentification
233 233 label_subproject_plural: Sous-projets
234 234 label_min_max_length: Longueurs mini - maxi
235 235 label_list: Liste
236 236 label_date: Date
237 237 label_integer: Entier
238 238 label_boolean: Booléen
239 239 label_string: Texte
240 240 label_text: Texte long
241 241 label_attribute: Attribut
242 242 label_attribute_plural: Attributs
243 243 label_download: %d Téléchargement
244 244 label_download_plural: %d Téléchargements
245 245 label_no_data: Aucune donnée à afficher
246 246 label_change_status: Changer le statut
247 247 label_history: Historique
248 248 label_attachment: Fichier
249 249 label_attachment_new: Nouveau fichier
250 250 label_attachment_delete: Supprimer le fichier
251 251 label_attachment_plural: Fichiers
252 252 label_report: Rapport
253 253 label_report_plural: Rapports
254 254 label_news: Annonce
255 255 label_news_new: Nouvelle annonce
256 256 label_news_plural: Annonces
257 257 label_news_latest: Dernières annonces
258 258 label_news_view_all: Voir toutes les annonces
259 259 label_change_log: Historique
260 260 label_settings: Configuration
261 261 label_overview: Aperçu
262 262 label_version: Version
263 263 label_version_new: Nouvelle version
264 264 label_version_plural: Versions
265 265 label_confirmation: Confirmation
266 266 label_export_to: Exporter en
267 267 label_read: Lire...
268 268 label_public_projects: Projets publics
269 269 label_open_issues: ouvert
270 270 label_open_issues_plural: ouverts
271 271 label_closed_issues: fermé
272 272 label_closed_issues_plural: fermés
273 273 label_total: Total
274 274 label_permissions: Permissions
275 275 label_current_status: Statut actuel
276 276 label_new_statuses_allowed: Nouveaux statuts autorisés
277 277 label_all: tous
278 278 label_none: aucun
279 279 label_next: Suivant
280 280 label_previous: Précédent
281 281 label_used_by: Utilisé par
282 282 label_details: Détails...
283 283 label_add_note: Ajouter une note
284 284 label_per_page: Par page
285 285 label_calendar: Calendrier
286 286 label_months_from: mois depuis
287 287 label_gantt: Gantt
288 288 label_internal: Interne
289 289 label_last_changes: %d derniers changements
290 290 label_change_view_all: Voir tous les changements
291 291 label_personalize_page: Personnaliser cette page
292 292 label_comment: Commentaire
293 293 label_comment_plural: Commentaires
294 294 label_comment_add: Ajouter un commentaire
295 295 label_comment_added: Commentaire ajouté
296 296 label_comment_delete: Supprimer les commentaires
297 297 label_query: Rapport personnalisé
298 298 label_query_plural: Rapports personnalisés
299 299 label_query_new: Nouveau rapport
300 300 label_filter_add: Ajouter le filtre
301 301 label_filter_plural: Filtres
302 302 label_equals: égal
303 303 label_not_equals: différent
304 304 label_in_less_than: dans moins de
305 305 label_in_more_than: dans plus de
306 306 label_in: dans
307 307 label_today: aujourd'hui
308 308 label_less_than_ago: il y a moins de
309 309 label_more_than_ago: il y a plus de
310 310 label_ago: il y a
311 311 label_contains: contient
312 312 label_not_contains: ne contient pas
313 313 label_day_plural: jours
314 314 label_repository: Dépôt SVN
315 315 label_browse: Parcourir
316 316 label_modification: %d modification
317 317 label_modification_plural: %d modifications
318 318 label_revision: Révision
319 319 label_revision_plural: Révisions
320 320 label_added: ajouté
321 321 label_modified: modifié
322 322 label_deleted: supprimé
323 323 label_latest_revision: Dernière révision
324 324 label_latest_revision_plural: Dernières révisions
325 325 label_view_revisions: Voir les révisions
326 326 label_max_size: Taille maximale
327 327 label_on: sur
328 328 label_sort_highest: Remonter en premier
329 329 label_sort_higher: Remonter
330 330 label_sort_lower: Descendre
331 331 label_sort_lowest: Descendre en dernier
332 332 label_roadmap: Roadmap
333 333 label_roadmap_due_in: Echéance dans
334 334 label_roadmap_no_issues: Aucune demande pour cette version
335 335 label_search: Recherche
336 336 label_result: %d résultat
337 337 label_result_plural: %d résultats
338 338 label_all_words: Tous les mots
339 339 label_wiki: Wiki
340 340 label_wiki_edit: Révision wiki
341 341 label_wiki_edit_plural: Révisions wiki
342 342 label_page_index: Index
343 343 label_current_version: Version actuelle
344 344 label_preview: Prévisualisation
345 345 label_feed_plural: Flux RSS
346 346 label_changes_details: Détails de tous les changements
347 347 label_issue_tracking: Suivi des demandes
348 348 label_spent_time: Temps passé
349 349 label_f_hour: %.2f heure
350 350 label_f_hour_plural: %.2f heures
351 351 label_time_tracking: Suivi du temps
352 352 label_change_plural: Changements
353 353 label_statistics: Statistiques
354 354 label_commits_per_month: Commits par mois
355 355 label_commits_per_author: Commits par auteur
356 356 label_view_diff: Voir les différences
357 357 label_diff_inline: en ligne
358 358 label_diff_side_by_side: côte à côte
359 359 label_options: Options
360 360 label_copy_workflow_from: Copier le workflow de
361 361 label_permissions_report: Synthèse des permissions
362 362 label_watched_issues: Demandes surveillées
363 363 label_related_issues: Demandes liées
364 364 label_applied_status: Statut appliqué
365 label_loading: Chargement...
365 366
366 367 button_login: Connexion
367 368 button_submit: Soumettre
368 369 button_save: Sauvegarder
369 370 button_check_all: Tout cocher
370 371 button_uncheck_all: Tout décocher
371 372 button_delete: Supprimer
372 373 button_create: Créer
373 374 button_test: Tester
374 375 button_edit: Modifier
375 376 button_add: Ajouter
376 377 button_change: Changer
377 378 button_apply: Appliquer
378 379 button_clear: Effacer
379 380 button_lock: Verrouiller
380 381 button_unlock: Déverrouiller
381 382 button_download: Télécharger
382 383 button_list: Lister
383 384 button_view: Voir
384 385 button_move: Déplacer
385 386 button_back: Retour
386 387 button_cancel: Annuler
387 388 button_activate: Activer
388 389 button_sort: Trier
389 390 button_log_time: Saisir temps
390 391 button_rollback: Revenir à cette version
391 392 button_watch: Surveiller
392 393 button_unwatch: Ne plus surveiller
393 394
394 395 status_active: actif
395 396 status_registered: enregistré
396 397 status_locked: vérouillé
397 398
398 399 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
399 400 text_regexp_info: ex. ^[A-Z0-9]+$
400 401 text_min_max_length_info: 0 pour aucune restriction
401 402 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
402 403 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
403 404 text_are_you_sure: Etes-vous sûr ?
404 405 text_journal_changed: changé de %s à %s
405 406 text_journal_set_to: mis à %s
406 407 text_journal_deleted: supprimé
407 408 text_tip_task_begin_day: tâche commençant ce jour
408 409 text_tip_task_end_day: tâche finissant ce jour
409 410 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
410 411 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
411 412 text_caracters_maximum: %d caractères maximum.
412 413 text_length_between: Longueur comprise entre %d et %d caractères.
413 414 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
414 415 text_unallowed_characters: Caractères non autorisés
415 416 text_coma_separated: Plusieurs valeurs possibles (séparées par des virgules).
416 417 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires SVN
417 418
418 419 default_role_manager: Manager
419 420 default_role_developper: Développeur
420 421 default_role_reporter: Rapporteur
421 422 default_tracker_bug: Anomalie
422 423 default_tracker_feature: Evolution
423 424 default_tracker_support: Assistance
424 425 default_issue_status_new: Nouveau
425 426 default_issue_status_assigned: Assigné
426 427 default_issue_status_resolved: Résolu
427 428 default_issue_status_feedback: Commentaire
428 429 default_issue_status_closed: Fermé
429 430 default_issue_status_rejected: Rejeté
430 431 default_doc_category_user: Documentation utilisateur
431 432 default_doc_category_tech: Documentation technique
432 433 default_priority_low: Bas
433 434 default_priority_normal: Normal
434 435 default_priority_high: Haut
435 436 default_priority_urgent: Urgent
436 437 default_priority_immediate: Immédiat
437 438 default_activity_design: Conception
438 439 default_activity_development: Développement
439 440
440 441 enumeration_issue_priorities: Priorités des demandes
441 442 enumeration_doc_categories: Catégories des documents
442 443 enumeration_activities: Activités (suivi du temps)
@@ -1,442 +1,443
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: non coincide con la conferma
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: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
60 60 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
61 61 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
62 62 notice_successful_create: Creazione effettuata.
63 63 notice_successful_update: Modifica effettuata.
64 64 notice_successful_delete: Eliminazione effettuata.
65 65 notice_successful_connection: Connessione effettuata.
66 66 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
67 67 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
68 68 notice_scm_error: La risorsa e/o la versione non esistono nel 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: Download
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_last_login_on: Ultima connessione
122 122 field_language: Lingua
123 123 field_effective_date: Data
124 124 field_password: Password
125 125 field_new_password: Nuova password
126 126 field_password_confirmation: Conferma
127 127 field_version: Versione
128 128 field_type: Tipo
129 129 field_host: Host
130 130 field_port: Porta
131 131 field_account: Utenza
132 132 field_base_dn: DN base
133 133 field_attr_login: Attributo login
134 134 field_attr_firstname: Attributo nome
135 135 field_attr_lastname: Attributo cognome
136 136 field_attr_mail: Attributo e-mail
137 137 field_onthefly: Creazione utenza "al volo"
138 138 field_start_date: Inizio
139 139 field_done_ratio: %% completo
140 140 field_auth_source: Modalità di autenticazione
141 141 field_hide_mail: Nascondi il mio indirizzo di e-mail
142 142 field_comments: Commento
143 143 field_url: URL
144 144 field_start_page: Pagina principale
145 145 field_subproject: Sottoprogetto
146 146 field_hours: Hours
147 147 field_activity: Activity
148 148 field_spent_on: Data
149 149 field_identifier: Identifier
150 150 field_is_filter: Used as a filter
151 151
152 152 setting_app_title: Titolo applicazione
153 153 setting_app_subtitle: Sottotitolo applicazione
154 154 setting_welcome_text: Testo di benvenuto
155 155 setting_default_language: Lingua di default
156 156 setting_login_required: Autenticazione richiesta
157 157 setting_self_registration: Auto-registrazione abilitata
158 158 setting_attachment_max_size: Massima dimensione allegati
159 159 setting_issues_export_limit: Limite esportazione contesti
160 160 setting_mail_from: Indirizzo sorgente e-mail
161 161 setting_host_name: Nome host
162 162 setting_text_formatting: Formattazione testo
163 163 setting_wiki_compression: Compressione di storia di Wiki
164 164 setting_feeds_limit: Limite contenuti del feed
165 165 setting_autofetch_changesets: Acquisisci automaticamente le commit SVN
166 166 setting_sys_api_enabled: Abilita WS per la gestione del repository
167 167 setting_commit_ref_keywords: Referencing keywords
168 168 setting_commit_fix_keywords: Fixing keywords
169 169
170 170 label_user: Utente
171 171 label_user_plural: Utenti
172 172 label_user_new: Nuovo utente
173 173 label_project: Progetto
174 174 label_project_new: Nuovo progetto
175 175 label_project_plural: Progetti
176 176 label_project_latest: Ultimi progetti registrati
177 177 label_issue: Contesto
178 178 label_issue_new: Nuovo contesto
179 179 label_issue_plural: Contesti
180 180 label_issue_view_all: Mostra tutti i contesti
181 181 label_document: Documento
182 182 label_document_new: Nuovo documento
183 183 label_document_plural: Documenti
184 184 label_role: Ruolo
185 185 label_role_plural: Ruoli
186 186 label_role_new: Nuovo ruolo
187 187 label_role_and_permissions: Ruoli e permessi
188 188 label_member: Membro
189 189 label_member_new: Nuovo membro
190 190 label_member_plural: Membri
191 191 label_tracker: Tracker
192 192 label_tracker_plural: Tracker
193 193 label_tracker_new: Nuovo tracker
194 194 label_workflow: Workflow
195 195 label_issue_status: Stato contesti
196 196 label_issue_status_plural: Stati contesto
197 197 label_issue_status_new: Nuovo stato
198 198 label_issue_category: Categorie contesti
199 199 label_issue_category_plural: Categorie contesto
200 200 label_issue_category_new: Nuova categoria
201 201 label_custom_field: Campo personalizzato
202 202 label_custom_field_plural: Campi personalizzati
203 203 label_custom_field_new: Nuovo campo personalizzato
204 204 label_enumerations: Enumerazioni
205 205 label_enumeration_new: Nuovo valore
206 206 label_information: Informazione
207 207 label_information_plural: Informazioni
208 208 label_please_login: Autenticarsi
209 209 label_register: Registrati
210 210 label_password_lost: Password dimenticata
211 211 label_home: Home
212 212 label_my_page: Pagina personale
213 213 label_my_account: La mia utenza
214 214 label_my_projects: I miei progetti
215 215 label_administration: Amministrazione
216 216 label_login: Login
217 217 label_logout: Logout
218 218 label_help: Aiuto
219 219 label_reported_issues: Contesti segnalati
220 220 label_assigned_to_me_issues: I miei contesti
221 221 label_last_login: Ultimo collegamento
222 222 label_last_updates: Ultimo aggiornamento
223 223 label_last_updates_plural: %d ultimo aggiornamento
224 224 label_registered_on: Registrato il
225 225 label_activity: Attività
226 226 label_new: Nuovo
227 227 label_logged_as: Autenticato come
228 228 label_environment: Ambiente
229 229 label_authentication: Autenticazione
230 230 label_auth_source: Modalità di autenticazione
231 231 label_auth_source_new: Nuova modalità di autenticazione
232 232 label_auth_source_plural: Modalità di autenticazione
233 233 label_subproject_plural: Sottoprogetti
234 234 label_min_max_length: Lunghezza minima - massima
235 235 label_list: Elenco
236 236 label_date: Data
237 237 label_integer: Intero
238 238 label_boolean: Booleano
239 239 label_string: Testo
240 240 label_text: Testo esteso
241 241 label_attribute: Attributo
242 242 label_attribute_plural: Attributi
243 243 label_download: %d Download
244 244 label_download_plural: %d Download
245 245 label_no_data: Nessun dato disponibile
246 246 label_change_status: Cambia stato
247 247 label_history: Cronologia
248 248 label_attachment: File
249 249 label_attachment_new: Nuovo file
250 250 label_attachment_delete: Elimina file
251 251 label_attachment_plural: File
252 252 label_report: Report
253 253 label_report_plural: Report
254 254 label_news: Notizia
255 255 label_news_new: Aggiungi notizia
256 256 label_news_plural: Notizie
257 257 label_news_latest: Utime notizie
258 258 label_news_view_all: Tutte le notizie
259 259 label_change_log: Change log
260 260 label_settings: Impostazioni
261 261 label_overview: Panoramica
262 262 label_version: Versione
263 263 label_version_new: Nuova versione
264 264 label_version_plural: Versioni
265 265 label_confirmation: Conferma
266 266 label_export_to: Esporta su
267 267 label_read: Leggi...
268 268 label_public_projects: Progetti pubblici
269 269 label_open_issues: aperta
270 270 label_open_issues_plural: aperte
271 271 label_closed_issues: chiusa
272 272 label_closed_issues_plural: chiuse
273 273 label_total: Totale
274 274 label_permissions: Permessi
275 275 label_current_status: Stato attuale
276 276 label_new_statuses_allowed: Nuovi stati possibili
277 277 label_all: tutti
278 278 label_none: nessuno
279 279 label_next: Successivo
280 280 label_previous: Precedente
281 281 label_used_by: Usato da
282 282 label_details: Dettagli...
283 283 label_add_note: Aggiungi una nota
284 284 label_per_page: Per pagina
285 285 label_calendar: Calendario
286 286 label_months_from: mesi da
287 287 label_gantt: Gantt
288 288 label_internal: Interno
289 289 label_last_changes: ultime %d modifiche
290 290 label_change_view_all: Tutte le modifiche
291 291 label_personalize_page: Personalizza la pagina
292 292 label_comment: Commento
293 293 label_comment_plural: Commenti
294 294 label_comment_add: Aggiungi un commento
295 295 label_comment_added: Commento aggiunto
296 296 label_comment_delete: Elimina commenti
297 297 label_query: Custom query
298 298 label_query_plural: Query personalizzate
299 299 label_query_new: Nuova query
300 300 label_filter_add: Aggiungi filtro
301 301 label_filter_plural: Filtri
302 302 label_equals: è
303 303 label_not_equals: non è
304 304 label_in_less_than: è minore di
305 305 label_in_more_than: è maggiore di
306 306 label_in: in
307 307 label_today: oggi
308 308 label_less_than_ago: meno di giorni fa
309 309 label_more_than_ago: più di giorni fa
310 310 label_ago: giorni fa
311 311 label_contains: contiene
312 312 label_not_contains: non contiene
313 313 label_day_plural: giorni
314 314 label_repository: SVN Repository
315 315 label_browse: Browse
316 316 label_modification: %d modifica
317 317 label_modification_plural: %d modifiche
318 318 label_revision: Versione
319 319 label_revision_plural: Versioni
320 320 label_added: aggiunto
321 321 label_modified: modificato
322 322 label_deleted: eliminato
323 323 label_latest_revision: Ultima versione
324 324 label_latest_revision_plural: Ultime versioni
325 325 label_view_revisions: Mostra versioni
326 326 label_max_size: Dimensione massima
327 327 label_on: 'on'
328 328 label_sort_highest: Sposta in cima
329 329 label_sort_higher: Su
330 330 label_sort_lower: Giù
331 331 label_sort_lowest: Sposta in fondo
332 332 label_roadmap: Roadmap
333 333 label_roadmap_due_in: Da ultimare in
334 334 label_roadmap_no_issues: Nessun contesto per questa versione
335 335 label_search: Ricerca
336 336 label_result: %d risultato
337 337 label_result_plural: %d risultati
338 338 label_all_words: Tutte le parole
339 339 label_wiki: Wiki
340 340 label_wiki_edit: Modifica Wiki
341 341 label_wiki_edit_plural: Modfiche wiki
342 342 label_page_index: Indice
343 343 label_current_version: Versione corrente
344 344 label_preview: Anteprima
345 345 label_feed_plural: Feed
346 346 label_changes_details: Particolari di tutti i cambiamenti
347 347 label_issue_tracking: tracking dei contesti
348 348 label_spent_time: Tempo impiegato
349 349 label_f_hour: %.2f ora
350 350 label_f_hour_plural: %.2f ore
351 351 label_time_tracking: Tracking del tempo
352 352 label_change_plural: Modifiche
353 353 label_statistics: Statistiche
354 354 label_commits_per_month: Commit per mese
355 355 label_commits_per_author: Commit per autore
356 356 label_view_diff: mostra differenze
357 357 label_diff_inline: inline
358 358 label_diff_side_by_side: side by side
359 359 label_options: Opzioni
360 360 label_copy_workflow_from: Copia workflow da
361 361 label_permissions_report: Report permessi
362 362 label_watched_issues: Watched issues
363 363 label_related_issues: Related issues
364 364 label_applied_status: Applied status
365 label_loading: Loading...
365 366
366 367 button_login: Login
367 368 button_submit: Invia
368 369 button_save: Salva
369 370 button_check_all: Seleziona tutti
370 371 button_uncheck_all: Deseleziona tutti
371 372 button_delete: Elimina
372 373 button_create: Crea
373 374 button_test: Test
374 375 button_edit: Modifica
375 376 button_add: Aggiungi
376 377 button_change: Modifica
377 378 button_apply: Applica
378 379 button_clear: Pulisci
379 380 button_lock: Blocca
380 381 button_unlock: Sblocca
381 382 button_download: Scarica
382 383 button_list: Elenca
383 384 button_view: Mostra
384 385 button_move: Sposta
385 386 button_back: Indietro
386 387 button_cancel: Annulla
387 388 button_activate: Attiva
388 389 button_sort: Ordina
389 390 button_log_time: Registra tempo
390 391 button_rollback: Ripristina questa versione
391 392 button_watch: Watch
392 393 button_unwatch: Unwatch
393 394
394 395 status_active: attivo
395 396 status_registered: registrato
396 397 status_locked: bloccato
397 398
398 399 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
399 400 text_regexp_info: eg. ^[A-Z0-9]+$
400 401 text_min_max_length_info: 0 significa nessuna restrizione
401 402 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
402 403 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
403 404 text_are_you_sure: Sei sicuro ?
404 405 text_journal_changed: cambiato da %s a %s
405 406 text_journal_set_to: impostato a %s
406 407 text_journal_deleted: cancellato
407 408 text_tip_task_begin_day: attività che iniziano in questa giornata
408 409 text_tip_task_end_day: attività che terminano in questa giornata
409 410 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
410 411 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
411 412 text_caracters_maximum: massimo %d caratteri.
412 413 text_length_between: Lunghezza compresa tra %d e %d caratteri.
413 414 text_tracker_no_workflow: Nessun workflow definito per questo tracker
414 415 text_unallowed_characters: Unallowed characters
415 416 text_coma_separated: Multiple values allowed (coma separated).
416 417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417 418
418 419 default_role_manager: Manager
419 420 default_role_developper: Sviluppatore
420 421 default_role_reporter: Reporter
421 422 default_tracker_bug: Contesto
422 423 default_tracker_feature: Funzione
423 424 default_tracker_support: Supporto
424 425 default_issue_status_new: Nuovo/a
425 426 default_issue_status_assigned: Assegnato/a
426 427 default_issue_status_resolved: Risolto/a
427 428 default_issue_status_feedback: Feedback
428 429 default_issue_status_closed: Chiuso/a
429 430 default_issue_status_rejected: Rifiutato/a
430 431 default_doc_category_user: Documentazione utente
431 432 default_doc_category_tech: Documentazione tecnica
432 433 default_priority_low: Bassa
433 434 default_priority_normal: Normale
434 435 default_priority_high: Alta
435 436 default_priority_urgent: Urgente
436 437 default_priority_immediate: Immediata
437 438 default_activity_design: Design
438 439 default_activity_development: Development
439 440
440 441 enumeration_issue_priorities: Priorità contesti
441 442 enumeration_doc_categories: Categorie di documenti
442 443 enumeration_activities: Attività (time tracking)
@@ -1,443 +1,444
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: を承諾してください
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: はすでに登録されています
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: ロードマップに表示されている問題
119 119 field_login: ログイン
120 120 field_mail_notification: メール通知
121 121 field_admin: 管理者
122 122 field_last_login_on: 最終接続日
123 123 field_language: 言語
124 124 field_effective_date: 日付
125 125 field_password: パスワード
126 126 field_new_password: 新しいパスワード
127 127 field_password_confirmation: パスワードの確認
128 128 field_version: バージョン
129 129 field_type: タイプ
130 130 field_host: ホスト
131 131 field_port: ポート
132 132 field_account: アカウント
133 133 field_base_dn: Base DN
134 134 field_attr_login: ログイン名属性
135 135 field_attr_firstname: 名前属性
136 136 field_attr_lastname: 苗字属性
137 137 field_attr_mail: メール属性
138 138 field_onthefly: あわせてユーザを作成
139 139 field_start_date: 開始日
140 140 field_done_ratio: 進捗 %%
141 141 field_auth_source: 認証モード
142 142 field_hide_mail: メールアドレスを隠す
143 143 field_comments: コメント
144 144 field_url: URL
145 145 field_start_page: メインページ
146 146 field_subproject: サブプロジェクト
147 147 field_hours: 時間
148 148 field_activity: 活動
149 149 field_spent_on: 日付
150 150 field_identifier: 識別子
151 151 field_is_filter: Used as a filter
152 152
153 153 setting_app_title: アプリケーションのタイトル
154 154 setting_app_subtitle: アプリケーションのサブタイトル
155 155 setting_welcome_text: ウェルカムメッセージ
156 156 setting_default_language: 既定の言語
157 157 setting_login_required: 認証が必要
158 158 setting_self_registration: ユーザは自分で登録できる
159 159 setting_attachment_max_size: 添付の最大サイズ
160 160 setting_issues_export_limit: 出力する問題数の上限
161 161 setting_mail_from: 送信元メールアドレス
162 162 setting_host_name: ホスト名
163 163 setting_text_formatting: テキストの書式
164 164 setting_wiki_compression: Wiki履歴を圧縮する
165 165 setting_feeds_limit: フィード内容の上限
166 166 setting_autofetch_changesets: SVNコミットを自動取得する
167 167 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
168 168 setting_commit_ref_keywords: Referencing keywords
169 169 setting_commit_fix_keywords: Fixing keywords
170 170
171 171 label_user: ユーザ
172 172 label_user_plural: ユーザ
173 173 label_user_new: 新しいユーザ
174 174 label_project: プロジェクト
175 175 label_project_new: 新しいプロジェクト
176 176 label_project_plural: プロジェクト
177 177 label_project_latest: 最近のプロジェクト
178 178 label_issue: 問題
179 179 label_issue_new: 新しい問題
180 180 label_issue_plural: 問題
181 181 label_issue_view_all: 問題を全て見る
182 182 label_document: 文書
183 183 label_document_new: 新しい文書
184 184 label_document_plural: 文書
185 185 label_role: ロール
186 186 label_role_plural: ロール
187 187 label_role_new: 新しいロール
188 188 label_role_and_permissions: ロールと権限
189 189 label_member: メンバー
190 190 label_member_new: 新しいメンバー
191 191 label_member_plural: メンバー
192 192 label_tracker: トラッカー
193 193 label_tracker_plural: トラッカー
194 194 label_tracker_new: 新しいトラッカーを作成
195 195 label_workflow: ワークフロー
196 196 label_issue_status: 問題のステータス
197 197 label_issue_status_plural: 問題のステータス
198 198 label_issue_status_new: 新しいステータス
199 199 label_issue_category: 問題のカテゴリ
200 200 label_issue_category_plural: 問題のカテゴリ
201 201 label_issue_category_new: 新しいカテゴリ
202 202 label_custom_field: カスタムフィールド
203 203 label_custom_field_plural: カスタムフィールド
204 204 label_custom_field_new: 新しいカスタムフィールドを作成
205 205 label_enumerations: 列挙項目
206 206 label_enumeration_new: 新しい値
207 207 label_information: 情報
208 208 label_information_plural: 情報
209 209 label_please_login: ログインしてください
210 210 label_register: 登録する
211 211 label_password_lost: パスワードの再発行
212 212 label_home: ホーム
213 213 label_my_page: マイページ
214 214 label_my_account: マイアカウント
215 215 label_my_projects: マイプロジェクト
216 216 label_administration: 管理
217 217 label_login: ログイン
218 218 label_logout: ログアウト
219 219 label_help: ヘルプ
220 220 label_reported_issues: 報告した問題
221 221 label_assigned_to_me_issues: 担当している問題
222 222 label_last_login: 最近の接続
223 223 label_last_updates: 最近の更新 1 件
224 224 label_last_updates_plural: 最近の更新 %d 件
225 225 label_registered_on: 登録日
226 226 label_activity: 活動
227 227 label_new: 新しく作成
228 228 label_logged_as: ログイン中:
229 229 label_environment: 環境
230 230 label_authentication: 認証
231 231 label_auth_source: 認証モード
232 232 label_auth_source_new: 新しい認証モード
233 233 label_auth_source_plural: 認証モード
234 234 label_subproject_plural: サブプロジェクト
235 235 label_min_max_length: 最小値 - 最大値の長さ
236 236 label_list: リストから選択
237 237 label_date: 日付
238 238 label_integer: 整数
239 239 label_boolean: 真偽値
240 240 label_string: テキスト
241 241 label_text: 長いテキスト
242 242 label_attribute: 属性
243 243 label_attribute_plural: 属性
244 244 label_download: %d ダウンロード
245 245 label_download_plural: %d ダウンロード
246 246 label_no_data: 表示するデータがありません
247 247 label_change_status: ステータスの変更
248 248 label_history: 履歴
249 249 label_attachment: ファイル
250 250 label_attachment_new: 新しいファイル
251 251 label_attachment_delete: ファイルを削除
252 252 label_attachment_plural: ファイル
253 253 label_report: レポート
254 254 label_report_plural: レポート
255 255 label_news: ニュース
256 256 label_news_new: ニュースを追加
257 257 label_news_plural: ニュース
258 258 label_news_latest: 最新ニュース
259 259 label_news_view_all: 全てのニュースを見る
260 260 label_change_log: 変更記録
261 261 label_settings: 設定
262 262 label_overview: 概要
263 263 label_version: バージョン
264 264 label_version_new: 新しいバージョン
265 265 label_version_plural: バージョン
266 266 label_confirmation: 確認
267 267 label_export_to: 他の形式に出力
268 268 label_read: 読む...
269 269 label_public_projects: 公開プロジェクト
270 270 label_open_issues: 未完了
271 271 label_open_issues_plural: 未完了
272 272 label_closed_issues: 終了
273 273 label_closed_issues_plural: 終了
274 274 label_total: 合計
275 275 label_permissions: 権限
276 276 label_current_status: 現在のステータス
277 277 label_new_statuses_allowed: ステータスの移行先
278 278 label_all: 全て
279 279 label_none: なし
280 280 label_next:
281 281 label_previous:
282 282 label_used_by: 使用中
283 283 label_details: 詳細...
284 284 label_add_note: 注記を追加
285 285 label_per_page: ページ毎
286 286 label_calendar: カレンダー
287 287 label_months_from: ヶ月 from
288 288 label_gantt: ガントチャート
289 289 label_internal: Internal
290 290 label_last_changes: 最新の変更 %d 件
291 291 label_change_view_all: 全ての変更を見る
292 292 label_personalize_page: このページをパーソナライズする
293 293 label_comment: コメント
294 294 label_comment_plural: コメント
295 295 label_comment_add: コメント追加
296 296 label_comment_added: 追加されたコメント
297 297 label_comment_delete: コメント削除
298 298 label_query: カスタムクエリ
299 299 label_query_plural: カスタムクエリ
300 300 label_query_new: 新しいクエリ
301 301 label_filter_add: フィルタ追加
302 302 label_filter_plural: フィルタ
303 303 label_equals: 等しい
304 304 label_not_equals: 等しくない
305 305 label_in_less_than: 残日数がこれより多い
306 306 label_in_more_than: 残日数がこれより少ない
307 307 label_in: 残日数
308 308 label_today: 今日
309 309 label_less_than_ago: 経過日数がこれより少ない
310 310 label_more_than_ago: 経過日数がこれより多い
311 311 label_ago: 日前
312 312 label_contains: 含む
313 313 label_not_contains: 含まない
314 314 label_day_plural:
315 315 label_repository: SVNリポジトリ
316 316 label_browse: ブラウズ
317 317 label_modification: %d 点の変更
318 318 label_modification_plural: %d 点の変更
319 319 label_revision: リビジョン
320 320 label_revision_plural: リビジョン
321 321 label_added: 追加
322 322 label_modified: 変更
323 323 label_deleted: 削除
324 324 label_latest_revision: 最新リビジョン
325 325 label_latest_revision_plural: 最新リビジョン
326 326 label_view_revisions: リビジョンを見る
327 327 label_max_size: 最大サイズ
328 328 label_on:
329 329 label_sort_highest: 一番上へ
330 330 label_sort_higher: 上へ
331 331 label_sort_lower: 下へ
332 332 label_sort_lowest: 一番下へ
333 333 label_roadmap: ロードマップ
334 334 label_roadmap_due_in: 期日まで
335 335 label_roadmap_no_issues: このバージョンに向けての問題はありません
336 336 label_search: 検索
337 337 label_result: %d 件の結果
338 338 label_result_plural: %d 件の結果
339 339 label_all_words: すべての単語
340 340 label_wiki: Wiki
341 341 label_wiki_edit: Wiki編集
342 342 label_wiki_edit_plural: Wiki編集
343 343 label_page_index: 索引
344 344 label_current_version: 最新版
345 345 label_preview: プレビュー
346 346 label_feed_plural: フィード
347 347 label_changes_details: 全変更の詳細
348 348 label_issue_tracking: 問題トラッキング
349 349 label_spent_time: 経過時間
350 350 label_f_hour: %.2f 時間
351 351 label_f_hour_plural: %.2f 時間
352 352 label_time_tracking: 時間トラッキング
353 353 label_change_plural: 変更
354 354 label_statistics: 統計
355 355 label_commits_per_month: 月別のコミット
356 356 label_commits_per_author: 起票者別のコミット
357 357 label_view_diff: 差分を見る
358 358 label_diff_inline: インライン
359 359 label_diff_side_by_side: 横に並べる
360 360 label_options: オプション
361 361 label_copy_workflow_from: ワークフローをここからコピー
362 362 label_permissions_report: 権限レポート
363 363 label_watched_issues: Watched issues
364 364 label_related_issues: Related issues
365 365 label_applied_status: Applied status
366 label_loading: Loading...
366 367
367 368 button_login: ログイン
368 369 button_submit: 変更
369 370 button_save: 保存
370 371 button_check_all: チェックを全部つける
371 372 button_uncheck_all: チェックを全部外す
372 373 button_delete: 削除
373 374 button_create: 作成
374 375 button_test: テスト
375 376 button_edit: 編集
376 377 button_add: 追加
377 378 button_change: 変更
378 379 button_apply: 適用
379 380 button_clear: クリア
380 381 button_lock: ロック
381 382 button_unlock: アンロック
382 383 button_download: ダウンロード
383 384 button_list: 一覧
384 385 button_view: 見る
385 386 button_move: 移動
386 387 button_back: 戻る
387 388 button_cancel: キャンセル
388 389 button_activate: 有効にする
389 390 button_sort: ソート
390 391 button_log_time: 時間を記録
391 392 button_rollback: このバージョンにロールバック
392 393 button_watch: Watch
393 394 button_unwatch: Unwatch
394 395
395 396 status_active: 有効
396 397 status_registered: 登録
397 398 status_locked: ロック
398 399
399 400 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
400 401 text_regexp_info: 例) ^[A-Z0-9]+$
401 402 text_min_max_length_info: 0だと無制限になります
402 403 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
403 404 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
404 405 text_are_you_sure: 本当に?
405 406 text_journal_changed: %s から %s への変更
406 407 text_journal_set_to: %s にセット
407 408 text_journal_deleted: 削除
408 409 text_tip_task_begin_day: この日に開始するタスク
409 410 text_tip_task_end_day: この日に終了するタスク
410 411 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
411 412 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
412 413 text_caracters_maximum: 最大 %d 文字です。
413 414 text_length_between: 長さは %d から %d 文字までです。
414 415 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
415 416 text_unallowed_characters: Unallowed characters
416 417 text_coma_separated: Multiple values allowed (coma separated).
417 418 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
418 419
419 420 default_role_manager: 管理者
420 421 default_role_developper: 開発者
421 422 default_role_reporter: 報告者
422 423 default_tracker_bug: バグ
423 424 default_tracker_feature: 機能
424 425 default_tracker_support: サポート
425 426 default_issue_status_new: 新規
426 427 default_issue_status_assigned: 担当
427 428 default_issue_status_resolved: 解決
428 429 default_issue_status_feedback: フィードバック
429 430 default_issue_status_closed: 終了
430 431 default_issue_status_rejected: 却下
431 432 default_doc_category_user: ユーザ文書
432 433 default_doc_category_tech: 技術文書
433 434 default_priority_low: 低め
434 435 default_priority_normal: 通常
435 436 default_priority_high: 高め
436 437 default_priority_urgent: 急いで
437 438 default_priority_immediate: 今すぐ
438 439 default_activity_design: デザイン作業
439 440 default_activity_development: 開発作業
440 441
441 442 enumeration_issue_priorities: 問題の優先度
442 443 enumeration_doc_categories: 文書カテゴリ
443 444 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,442 +1,443
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: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 dia
9 9 actionview_datehelper_time_in_words_day_plural: %d dias
10 10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
13 13 actionview_datehelper_time_in_words_minute: 1 minuto
14 14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 20 actionview_instancetag_blank_option: Selecione
21 21
22 22 activerecord_error_inclusion: nao esta incluido na lista
23 23 activerecord_error_exclusion: esta reservado
24 24 activerecord_error_invalid: e invalido
25 25 activerecord_error_confirmation: confirmacao nao confere
26 26 activerecord_error_accepted: deve ser aceito
27 27 activerecord_error_empty: nao pode ser vazio
28 28 activerecord_error_blank: nao pode estar em branco
29 29 activerecord_error_too_long: e muito longo
30 30 activerecord_error_too_short: e muito comprido
31 31 activerecord_error_wrong_length: esta com o comprimento errado
32 32 activerecord_error_taken: ja esta examinado
33 33 activerecord_error_not_a_number: nao e um numero
34 34 activerecord_error_not_a_date: nao e uma data valida
35 35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
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: 'Nao'
44 44 general_text_Yes: 'Sim'
45 45 general_text_no: 'nao'
46 46 general_text_yes: 'sim'
47 47 general_lang_pt: 'Portugues'
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: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
52 52
53 53 notice_account_updated: Conta foi alterada com sucesso.
54 54 notice_account_invalid_creditentials: Usuario ou senha invalido.
55 55 notice_account_password_updated: Senha foi alterada com sucesso.
56 56 notice_account_wrong_password: Senha errada.
57 57 notice_account_register_done: Conta foi criada com sucesso.
58 58 notice_account_unknown_email: Usuario desconhecido.
59 59 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
60 60 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
61 61 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
62 62 notice_successful_create: Criado com sucesso.
63 63 notice_successful_update: Alterado com sucesso.
64 64 notice_successful_delete: Apagado com sucesso.
65 65 notice_successful_connection: Conectado com sucesso.
66 66 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
67 67 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
68 68 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
69 69
70 70 mail_subject_lost_password: Sua senha do redMine.
71 71 mail_subject_register: Ativacao de conta do redMine.
72 72
73 73 gui_validation_error: 1 erro
74 74 gui_validation_error_plural: %d erros
75 75
76 76 field_name: Nome
77 77 field_description: Descricao
78 78 field_summary: Sumario
79 79 field_is_required: Obrigatorio
80 80 field_firstname: Primeiro nome
81 81 field_lastname: Ultimo nome
82 82 field_mail: Email
83 83 field_filename: Arquivo
84 84 field_filesize: Tamanho
85 85 field_downloads: Downloads
86 86 field_author: Autor
87 87 field_created_on: Criado
88 88 field_updated_on: Alterado
89 89 field_field_format: Formato
90 90 field_is_for_all: Para todos os projetos
91 91 field_possible_values: Possiveis valores
92 92 field_regexp: Expressao regular
93 93 field_min_length: Tamanho minimo
94 94 field_max_length: Tamanho maximo
95 95 field_value: Valor
96 96 field_category: Categoria
97 97 field_title: Titulo
98 98 field_project: Projeto
99 99 field_issue: Tarefa
100 100 field_status: Status
101 101 field_notes: Notas
102 102 field_is_closed: Tarefa fechada
103 103 field_is_default: Status padrao
104 104 field_html_color: Cor
105 105 field_tracker: Tipo
106 106 field_subject: Titulo
107 107 field_due_date: Data devida
108 108 field_assigned_to: Atribuido para
109 109 field_priority: Prioridade
110 110 field_fixed_version: Versao corrigida
111 111 field_user: Usuario
112 112 field_role: Regra
113 113 field_homepage: Pagina inicial
114 114 field_is_public: Publico
115 115 field_parent: Sub-projeto de
116 116 field_is_in_chlog: Tarefas mostradas no changelog
117 117 field_is_in_roadmap: Tarefas mostradas no roadmap
118 118 field_login: Login
119 119 field_mail_notification: Notificacoes por email
120 120 field_admin: Administrador
121 121 field_last_login_on: Ultima conexao
122 122 field_language: Lingua
123 123 field_effective_date: Data
124 124 field_password: Senha
125 125 field_new_password: Nova senha
126 126 field_password_confirmation: Confirmacao
127 127 field_version: Versao
128 128 field_type: Tipo
129 129 field_host: Servidor
130 130 field_port: Porta
131 131 field_account: Conta
132 132 field_base_dn: Base DN
133 133 field_attr_login: Atributo login
134 134 field_attr_firstname: Atributo primeiro nome
135 135 field_attr_lastname: Atributo ultimo nome
136 136 field_attr_mail: Atributo email
137 137 field_onthefly: Criacao de usuario on-the-fly
138 138 field_start_date: Inicio
139 139 field_done_ratio: %% Terminado
140 140 field_auth_source: Modo de autenticacao
141 141 field_hide_mail: Esconder meu email
142 142 field_comments: Comentario
143 143 field_url: URL
144 144 field_start_page: Pagina inicial
145 145 field_subproject: Sub-projeto
146 146 field_hours: Horas
147 147 field_activity: Atividade
148 148 field_spent_on: Data
149 149 field_identifier: Identificador
150 150 field_is_filter: Used as a filter
151 151
152 152 setting_app_title: Titulo da aplicacao
153 153 setting_app_subtitle: Sub-titulo da aplicacao
154 154 setting_welcome_text: Texto de boa-vinda
155 155 setting_default_language: Lingua padrao
156 156 setting_login_required: Autenticacao obrigatoria
157 157 setting_self_registration: Registro de si mesmo permitido
158 158 setting_attachment_max_size: Tamanho maximo do anexo
159 159 setting_issues_export_limit: Limite de exportacao das tarefas
160 160 setting_mail_from: Email enviado de
161 161 setting_host_name: Servidor
162 162 setting_text_formatting: Formato do texto
163 163 setting_wiki_compression: Compactacao do historio do Wiki
164 164 setting_feeds_limit: Limite do Feed
165 165 setting_autofetch_changesets: Autofetch SVN commits
166 166 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
167 167 setting_commit_ref_keywords: Referencing keywords
168 168 setting_commit_fix_keywords: Fixing keywords
169 169
170 170 label_user: Usuario
171 171 label_user_plural: Usuarios
172 172 label_user_new: Novo usuario
173 173 label_project: Projeto
174 174 label_project_new: Novo projeto
175 175 label_project_plural: Projetos
176 176 label_project_latest: Ultimos projetos
177 177 label_issue: Tarefa
178 178 label_issue_new: Nova tarefa
179 179 label_issue_plural: Tarefas
180 180 label_issue_view_all: Ver todas as tarefas
181 181 label_document: Documento
182 182 label_document_new: Novo documento
183 183 label_document_plural: Documentos
184 184 label_role: Regra
185 185 label_role_plural: Regras
186 186 label_role_new: Nova regra
187 187 label_role_and_permissions: Regras e permissoes
188 188 label_member: Membro
189 189 label_member_new: Novo membro
190 190 label_member_plural: Membros
191 191 label_tracker: Tipo
192 192 label_tracker_plural: Tipos
193 193 label_tracker_new: Novo tipo
194 194 label_workflow: Workflow
195 195 label_issue_status: Status da tarefa
196 196 label_issue_status_plural: Status das tarefas
197 197 label_issue_status_new: Novo status
198 198 label_issue_category: Categoria de tarefa
199 199 label_issue_category_plural: Categorias de tarefa
200 200 label_issue_category_new: Nova categoria
201 201 label_custom_field: Campo personalizado
202 202 label_custom_field_plural: Campos personalizado
203 203 label_custom_field_new: Novo campo personalizado
204 204 label_enumerations: Enumeracao
205 205 label_enumeration_new: Novo valor
206 206 label_information: Informacao
207 207 label_information_plural: Informacoes
208 208 label_please_login: Efetue login
209 209 label_register: Registre-se
210 210 label_password_lost: Perdi a senha
211 211 label_home: Pagina inicial
212 212 label_my_page: Minha pagina
213 213 label_my_account: Minha conta
214 214 label_my_projects: Meus projetos
215 215 label_administration: Administracao
216 216 label_login: Login
217 217 label_logout: Logout
218 218 label_help: Ajuda
219 219 label_reported_issues: Tarefas reportadas
220 220 label_assigned_to_me_issues: Tarefas atribuidas a mim
221 221 label_last_login: Utima conexao
222 222 label_last_updates: Ultima alteracao
223 223 label_last_updates_plural: %d Ultimas alteracoes
224 224 label_registered_on: Registrado em
225 225 label_activity: Atividade
226 226 label_new: Novo
227 227 label_logged_as: Logado como
228 228 label_environment: Ambiente
229 229 label_authentication: Autenticacao
230 230 label_auth_source: Modo de autenticacao
231 231 label_auth_source_new: Novo modo de autenticacao
232 232 label_auth_source_plural: Modos de autenticacao
233 233 label_subproject_plural: Sub-projetos
234 234 label_min_max_length: Tamanho min-max
235 235 label_list: Lista
236 236 label_date: Data
237 237 label_integer: Inteiro
238 238 label_boolean: Boleano
239 239 label_string: Texto
240 240 label_text: Texto longo
241 241 label_attribute: Atributo
242 242 label_attribute_plural: Atributos
243 243 label_download: %d Download
244 244 label_download_plural: %d Downloads
245 245 label_no_data: Sem dados para mostrar
246 246 label_change_status: Mudar status
247 247 label_history: Historico
248 248 label_attachment: Arquivo
249 249 label_attachment_new: Novo arquivo
250 250 label_attachment_delete: Apagar arquivo
251 251 label_attachment_plural: Arquivos
252 252 label_report: Relatorio
253 253 label_report_plural: Relatorio
254 254 label_news: Noticias
255 255 label_news_new: Adicionar noticias
256 256 label_news_plural: Noticias
257 257 label_news_latest: Ultimas noticias
258 258 label_news_view_all: Ver todas as noticias
259 259 label_change_log: Change log
260 260 label_settings: Ajustes
261 261 label_overview: Visao geral
262 262 label_version: Versao
263 263 label_version_new: Nova versao
264 264 label_version_plural: Versoes
265 265 label_confirmation: Confirmacao
266 266 label_export_to: Exportar para
267 267 label_read: Ler...
268 268 label_public_projects: Projetos publicos
269 269 label_open_issues: Aberto
270 270 label_open_issues_plural: Abertos
271 271 label_closed_issues: Fechado
272 272 label_closed_issues_plural: Fechados
273 273 label_total: Total
274 274 label_permissions: Permissoes
275 275 label_current_status: Status atual
276 276 label_new_statuses_allowed: Novo status permitido
277 277 label_all: todos
278 278 label_none: nenhum
279 279 label_next: Proximo
280 280 label_previous: Anterior
281 281 label_used_by: Usado por
282 282 label_details: Detalhes...
283 283 label_add_note: Adicionar nota
284 284 label_per_page: Por pagina
285 285 label_calendar: Calendario
286 286 label_months_from: Meses de
287 287 label_gantt: Gantt
288 288 label_internal: Interno
289 289 label_last_changes: utlimas %d mudancas
290 290 label_change_view_all: Mostrar todas as mudancas
291 291 label_personalize_page: Personalizar esta pagina
292 292 label_comment: Comentario
293 293 label_comment_plural: Comentarios
294 294 label_comment_add: Adicionar comentario
295 295 label_comment_added: Comentario adicionado
296 296 label_comment_delete: Apagar comentario
297 297 label_query: Consulta personalizada
298 298 label_query_plural: Consultas personalizadas
299 299 label_query_new: Nova consulta
300 300 label_filter_add: Adicionar filtro
301 301 label_filter_plural: Filtros
302 302 label_equals: e
303 303 label_not_equals: nao e
304 304 label_in_less_than: e maior que
305 305 label_in_more_than: e menor que
306 306 label_in: em
307 307 label_today: hoje
308 308 label_less_than_ago: faz menos de
309 309 label_more_than_ago: faz mais de
310 310 label_ago: dias atras
311 311 label_contains: contem
312 312 label_not_contains: nao contem
313 313 label_day_plural: dias
314 314 label_repository: SVN Repository
315 315 label_browse: Browse
316 316 label_modification: %d change
317 317 label_modification_plural: %d changes
318 318 label_revision: Revision
319 319 label_revision_plural: Revisions
320 320 label_added: added
321 321 label_modified: modified
322 322 label_deleted: deleted
323 323 label_latest_revision: Latest revision
324 324 label_latest_revision_plural: Latest revisions
325 325 label_view_revisions: View revisions
326 326 label_max_size: Maximum size
327 327 label_on: 'em'
328 328 label_sort_highest: Mover para o inicio
329 329 label_sort_higher: Mover para cima
330 330 label_sort_lower: Mover para baixo
331 331 label_sort_lowest: Mover para o fim
332 332 label_roadmap: Roadmap
333 333 label_roadmap_due_in: Due in
334 334 label_roadmap_no_issues: Sem tarefas para essa versao
335 335 label_search: Busca
336 336 label_result: %d resultado
337 337 label_result_plural: %d resultados
338 338 label_all_words: Todas as palavras
339 339 label_wiki: Wiki
340 340 label_wiki_edit: Wiki edit
341 341 label_wiki_edit_plural: Wiki edits
342 342 label_page_index: Index
343 343 label_current_version: Versao atual
344 344 label_preview: Previa
345 345 label_feed_plural: Feeds
346 346 label_changes_details: Detalhes de todas as mudancas
347 347 label_issue_tracking: Tarefas
348 348 label_spent_time: Tempo gasto
349 349 label_f_hour: %.2f hora
350 350 label_f_hour_plural: %.2f horas
351 351 label_time_tracking: Tempo trabalhado
352 352 label_change_plural: Mudancas
353 353 label_statistics: Estatisticas
354 354 label_commits_per_month: Commits por mes
355 355 label_commits_per_author: Commits por autor
356 356 label_view_diff: Ver diferencas
357 357 label_diff_inline: inline
358 358 label_diff_side_by_side: side by side
359 359 label_options: Opcoes
360 360 label_copy_workflow_from: Copiar workflow de
361 361 label_permissions_report: Relatorio de permissoes
362 362 label_watched_issues: Watched issues
363 363 label_related_issues: Related issues
364 364 label_applied_status: Applied status
365 label_loading: Loading...
365 366
366 367 button_login: Login
367 368 button_submit: Enviar
368 369 button_save: Salvar
369 370 button_check_all: Marcar todos
370 371 button_uncheck_all: Desmarcar todos
371 372 button_delete: Apagar
372 373 button_create: Criar
373 374 button_test: Testar
374 375 button_edit: Editar
375 376 button_add: Adicionar
376 377 button_change: Mudar
377 378 button_apply: Aplicar
378 379 button_clear: Limpar
379 380 button_lock: Bloquear
380 381 button_unlock: Desbloquear
381 382 button_download: Download
382 383 button_list: Listar
383 384 button_view: Ver
384 385 button_move: Mover
385 386 button_back: Voltar
386 387 button_cancel: Cancelar
387 388 button_activate: Ativar
388 389 button_sort: Ordenar
389 390 button_log_time: Tempo de trabalho
390 391 button_rollback: Voltar para esta versao
391 392 button_watch: Watch
392 393 button_unwatch: Unwatch
393 394
394 395 status_active: ativo
395 396 status_registered: registrado
396 397 status_locked: bloqueado
397 398
398 399 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
399 400 text_regexp_info: eg. ^[A-Z0-9]+$
400 401 text_min_max_length_info: 0 siginifica sem restricao
401 402 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
402 403 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
403 404 text_are_you_sure: Voce tem certeza ?
404 405 text_journal_changed: alterado de %s para %s
405 406 text_journal_set_to: setar para %s
406 407 text_journal_deleted: apagado
407 408 text_tip_task_begin_day: tarefa comeca neste dia
408 409 text_tip_task_end_day: tarefa termina neste dia
409 410 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
410 411 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
411 412 text_caracters_maximum: %d maximo de caracteres
412 413 text_length_between: Tamanho entre %d e %d caracteres.
413 414 text_tracker_no_workflow: Sem workflow definido para este tipo.
414 415 text_unallowed_characters: Unallowed characters
415 416 text_coma_separated: Multiple values allowed (coma separated).
416 417 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
417 418
418 419 default_role_manager: Analista de Negocio ou Gerente de Projeto
419 420 default_role_developper: Desenvolvedor
420 421 default_role_reporter: Analista de Suporte
421 422 default_tracker_bug: Bug
422 423 default_tracker_feature: Implementacao
423 424 default_tracker_support: Suporte
424 425 default_issue_status_new: Novo
425 426 default_issue_status_assigned: Atribuido
426 427 default_issue_status_resolved: Resolvido
427 428 default_issue_status_feedback: Feedback
428 429 default_issue_status_closed: Fechado
429 430 default_issue_status_rejected: Rejeitado
430 431 default_doc_category_user: Documentacao do usuario
431 432 default_doc_category_tech: Documentacao do tecnica
432 433 default_priority_low: Baixo
433 434 default_priority_normal: Normal
434 435 default_priority_high: Alto
435 436 default_priority_urgent: Urgente
436 437 default_priority_immediate: Imediato
437 438 default_activity_design: Design
438 439 default_activity_development: Desenvolvimento
439 440
440 441 enumeration_issue_priorities: Prioridade das tarefas
441 442 enumeration_doc_categories: Categorias de documento
442 443 enumeration_activities: Atividades (time tracking)
@@ -1,445 +1,446
1 1 # translated by andy wu
2 2 # email:andywu.zh@gmail.com
3 3
4 4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5 5
6 6 actionview_datehelper_select_day_prefix:
7 7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
8 8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
9 9 actionview_datehelper_select_month_prefix:
10 10 actionview_datehelper_select_year_prefix:
11 11 actionview_datehelper_time_in_words_day: 1 天
12 12 actionview_datehelper_time_in_words_day_plural: %d 天
13 13 actionview_datehelper_time_in_words_hour_about: 约1小时
14 14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
15 15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
16 16 actionview_datehelper_time_in_words_minute: 1分钟
17 17 actionview_datehelper_time_in_words_minute_half: 半分钟
18 18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
19 19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
20 20 actionview_datehelper_time_in_words_minute_single: 1分钟
21 21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
22 22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
23 23 actionview_instancetag_blank_option: 请选择
24 24
25 25 activerecord_error_inclusion: 未包含在列表中
26 26 activerecord_error_exclusion: 保留的
27 27 activerecord_error_invalid: 无效的
28 28 activerecord_error_confirmation: 和确认输入不匹配
29 29 activerecord_error_accepted: 必需被接受
30 30 activerecord_error_empty: 不能为空
31 31 activerecord_error_blank: 不能是空格
32 32 activerecord_error_too_long: 太长
33 33 activerecord_error_too_short: 太短
34 34 activerecord_error_wrong_length: 长度有问题
35 35 activerecord_error_taken: has already been taken
36 36 activerecord_error_not_a_number: 不是数字
37 37 activerecord_error_not_a_date: 不是有效的日期
38 38 activerecord_error_greater_than_start_date: 必需大于开始日期
39 39
40 40 general_fmt_age: %d yr
41 41 general_fmt_age_plural: %d yrs
42 42 general_fmt_date: %%m/%%d/%%Y
43 43 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
44 44 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
45 45 general_fmt_time: %%I:%%M %%p
46 46 general_text_No: '否'
47 47 general_text_Yes: '是'
48 48 general_text_no: '否'
49 49 general_text_yes: '是'
50 50 general_lang_zh: 'Chinese (简体中文)'
51 51 general_csv_separator: ','
52 52 general_csv_encoding: gb2312
53 53 general_pdf_encoding: Big5
54 54 general_day_names: 一,二,三,四,五,六,日
55 55
56 56 notice_account_updated: 帐户更新成功。
57 57 notice_account_invalid_creditentials: 用户名或密码不正确
58 58 notice_account_password_updated: 成功更新口令
59 59 notice_account_wrong_password: 错误的口令
60 60 notice_account_register_done: 帐户已创建成功
61 61 notice_account_unknown_email: 未知用户
62 62 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
63 63 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
64 64 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
65 65 notice_successful_create: 创建成功
66 66 notice_successful_update: 更新成功
67 67 notice_successful_delete: 删除成功
68 68 notice_successful_connection: 连接成功
69 69 notice_file_not_found: 您访问的页面不存在或已被删除。
70 70 notice_locking_conflict: 数据已被另一个用户更新
71 71 notice_scm_error: 在版本库中不存在该条目或修订
72 72
73 73 mail_subject_lost_password: 您的redMine口令
74 74 mail_subject_register: redMine帐户激活
75 75
76 76 gui_validation_error: 1 个错误
77 77 gui_validation_error_plural: %d 个错误
78 78
79 79 field_name: 名称
80 80 field_description: 描述
81 81 field_summary: 摘要
82 82 field_is_required: 必填
83 83 field_firstname: 名字
84 84 field_lastname:
85 85 field_mail: 邮件地址
86 86 field_filename: 文件
87 87 field_filesize: 大小
88 88 field_downloads: 下载次数
89 89 field_author: 作者
90 90 field_created_on: 创建于
91 91 field_updated_on: 更新于
92 92 field_field_format: 格式
93 93 field_is_for_all: 应用于所有项目
94 94 field_possible_values: 可能的值
95 95 field_regexp: 正则表达式
96 96 field_min_length: 最小长度
97 97 field_max_length: 最大长度
98 98 field_value:
99 99 field_category: 分类
100 100 field_title: 标题
101 101 field_project: 项目
102 102 field_issue: 任务
103 103 field_status: 状态
104 104 field_notes: 说明
105 105 field_is_closed: 已关闭的任务
106 106 field_is_default: 默认状态
107 107 field_html_color: 颜色
108 108 field_tracker: 跟踪
109 109 field_subject: 主题
110 110 field_due_date: 到期日
111 111 field_assigned_to: 指派
112 112 field_priority: 优先级
113 113 field_fixed_version: 修订版本
114 114 field_user: 用户
115 115 field_role: 角色
116 116 field_homepage: 主页
117 117 field_is_public: 公开
118 118 field_parent: 上级项目
119 119 field_is_in_chlog: 在更新日志中显示任务
120 120 field_is_in_roadmap: 在路线图中显示任务
121 121 field_login: 登录名
122 122 field_mail_notification: 邮件通知
123 123 field_admin: 管理员
124 124 field_last_login_on: 最后登录
125 125 field_language: 语言
126 126 field_effective_date: 日期
127 127 field_password: 口令
128 128 field_new_password: 新口令
129 129 field_password_confirmation: 确认
130 130 field_version: 版本
131 131 field_type: 类别
132 132 field_host: 主机
133 133 field_port: 端口
134 134 field_account: 帐号
135 135 field_base_dn: Base DN
136 136 field_attr_login: 登录名属性
137 137 field_attr_firstname: 名字属性
138 138 field_attr_lastname: 姓属性
139 139 field_attr_mail: 邮件属性
140 140 field_onthefly: On-the-fly user creation
141 141 field_start_date: 开始
142 142 field_done_ratio: %% 完成
143 143 field_auth_source: 认证模式
144 144 field_hide_mail: 隐藏我的邮件
145 145 field_comments: 注释
146 146 field_url: URL
147 147 field_start_page: 起始页
148 148 field_subproject: 子项目
149 149 field_hours: Hours
150 150 field_activity: 活动
151 151 field_spent_on: 日期
152 152 field_identifier: Identifier
153 153 field_is_filter: Used as a filter
154 154
155 155 setting_app_title: 应用程序标题
156 156 setting_app_subtitle: 应用程序子标题
157 157 setting_welcome_text: 欢迎文字
158 158 setting_default_language: 默认语言
159 159 setting_login_required: 要求认证
160 160 setting_self_registration: 允许自注册
161 161 setting_attachment_max_size: 附件最大尺寸
162 162 setting_issues_export_limit: Issues export limit
163 163 setting_mail_from: Emission mail address
164 164 setting_host_name: 主机名称
165 165 setting_text_formatting: 文本格式
166 166 setting_wiki_compression: Wiki history compression
167 167 setting_feeds_limit: Feed content limit
168 168 setting_autofetch_changesets: Autofetch SVN commits
169 169 setting_sys_api_enabled: Enable WS for repository management
170 170 setting_commit_ref_keywords: Referencing keywords
171 171 setting_commit_fix_keywords: Fixing keywords
172 172
173 173 label_user: 用户
174 174 label_user_plural: 用户列表
175 175 label_user_new: 新建用户
176 176 label_project: 项目
177 177 label_project_new: 新建项目
178 178 label_project_plural: 项目列表
179 179 label_project_latest: 最近的项目列表
180 180 label_issue: 任务
181 181 label_issue_new: 新建任务
182 182 label_issue_plural: 任务列表
183 183 label_issue_view_all: 查看所有任务
184 184 label_document: 文档
185 185 label_document_new: 新建文档
186 186 label_document_plural: 文档列表
187 187 label_role: 角色
188 188 label_role_plural: 角色列表
189 189 label_role_new: 新建角色
190 190 label_role_and_permissions: 角色和权限
191 191 label_member: 成员
192 192 label_member_new: 新建成员
193 193 label_member_plural: 成员列表
194 194 label_tracker: 跟踪标签
195 195 label_tracker_plural: 跟踪标签列表
196 196 label_tracker_new: 新建跟踪标签
197 197 label_workflow: 工作流
198 198 label_issue_status: 任务状态列表
199 199 label_issue_status_plural: 任务状态列表
200 200 label_issue_status_new: 新建任务状态列表
201 201 label_issue_category: 任务类别
202 202 label_issue_category_plural: 任务类别列表
203 203 label_issue_category_new: 新建任务类别
204 204 label_custom_field: 自定义字段
205 205 label_custom_field_plural: 自定义字段列表
206 206 label_custom_field_new: 新建自定义字段
207 207 label_enumerations: 枚举列表
208 208 label_enumeration_new: 新建枚举值
209 209 label_information: 信息
210 210 label_information_plural: 信息
211 211 label_please_login: 请登录
212 212 label_register: 注册
213 213 label_password_lost: 忘记口令
214 214 label_home: 主页
215 215 label_my_page: 我的工作台
216 216 label_my_account: 我的帐号
217 217 label_my_projects: 我的项目列表
218 218 label_administration: 管理
219 219 label_login: 登录
220 220 label_logout: 退出
221 221 label_help: 帮助
222 222 label_reported_issues: 已报告的问题
223 223 label_assigned_to_me_issues: 分配给我的任务
224 224 label_last_login: 最后登录
225 225 label_last_updates: 最后更新
226 226 label_last_updates_plural: %d 最后更新
227 227 label_registered_on: 注册于
228 228 label_activity: 活动
229 229 label_new: 新建
230 230 label_logged_as: 登录为
231 231 label_environment: 环境
232 232 label_authentication: 认证
233 233 label_auth_source: 认证模式
234 234 label_auth_source_new: 新建认证模式
235 235 label_auth_source_plural: 认证模式列表
236 236 label_subproject_plural: 子项目列表
237 237 label_min_max_length: 最小 - 最大 长度
238 238 label_list: list
239 239 label_date: Date
240 240 label_integer: Integer
241 241 label_boolean: Boolean
242 242 label_string: Text
243 243 label_text: Long text
244 244 label_attribute: 属性
245 245 label_attribute_plural: 属性
246 246 label_download: %d 个下载次数
247 247 label_download_plural: %d 个下载次数
248 248 label_no_data: 没有数据用于显示
249 249 label_change_status: 改变状态
250 250 label_history: 历史记录
251 251 label_attachment: 文件
252 252 label_attachment_new: 新建文件
253 253 label_attachment_delete: 删除文件
254 254 label_attachment_plural: 文件列表
255 255 label_report: 报表
256 256 label_report_plural: 报表列表
257 257 label_news: 新闻
258 258 label_news_new: 增加新闻
259 259 label_news_plural: 新闻列表
260 260 label_news_latest: 最近的新闻
261 261 label_news_view_all: 查看所有新闻
262 262 label_change_log: 更新日志
263 263 label_settings: 配置
264 264 label_overview: 概述
265 265 label_version: 版本
266 266 label_version_new: 新建版本
267 267 label_version_plural: 版本列表
268 268 label_confirmation: 确认
269 269 label_export_to: 导出
270 270 label_read: 读取...
271 271 label_public_projects: 公开的项目列表
272 272 label_open_issues: 打开
273 273 label_open_issues_plural: 打开
274 274 label_closed_issues: 已关闭
275 275 label_closed_issues_plural: 已关闭
276 276 label_total: 合计
277 277 label_permissions: 权限列表
278 278 label_current_status: 当前状态
279 279 label_new_statuses_allowed: New statuses allowed
280 280 label_all: 全部
281 281 label_none:
282 282 label_next: 下一个
283 283 label_previous: 上一个
284 284 label_used_by: 使用中
285 285 label_details: 详情...
286 286 label_add_note: 添加说明
287 287 label_per_page: 每面
288 288 label_calendar: 日历
289 289 label_months_from: months from
290 290 label_gantt: 甘特图(Gantt)
291 291 label_internal: 内部
292 292 label_last_changes: 最近的 %d 次更改
293 293 label_change_view_all: 查看所有更改
294 294 label_personalize_page: 个性化定制本页
295 295 label_comment: 注释
296 296 label_comment_plural: 注释列表
297 297 label_comment_add: 添加注释
298 298 label_comment_added: 已加入注释
299 299 label_comment_delete: 删除注释
300 300 label_query: 自定义查询
301 301 label_query_plural: 自定义查询列表
302 302 label_query_new: 新建查询
303 303 label_filter_add: 增加过滤器
304 304 label_filter_plural: 过滤器列表
305 305 label_equals: 等于
306 306 label_not_equals: 不等于
307 307 label_in_less_than: 剩余天数小于
308 308 label_in_more_than: 剩余天数大于
309 309 label_in: 剩余天数
310 310 label_today: 今天
311 311 label_less_than_ago: 之前天数少于
312 312 label_more_than_ago: 之前天数大于
313 313 label_ago: 之前天数
314 314 label_contains: 包含
315 315 label_not_contains: 不包含
316 316 label_day_plural: 天数
317 317 label_repository: SVN 版本库
318 318 label_browse: 浏览
319 319 label_modification: %d 个更新
320 320 label_modification_plural: %d 个更新
321 321 label_revision: 修订
322 322 label_revision_plural: 修订
323 323 label_added: 已增加
324 324 label_modified: 已修改
325 325 label_deleted: 已删除
326 326 label_latest_revision: 最近的版本
327 327 label_latest_revision_plural: 最近的版本列表
328 328 label_view_revisions: 查看修订列表
329 329 label_max_size: 最大尺寸
330 330 label_on: 'on'
331 331 label_sort_highest: 置顶
332 332 label_sort_higher: 上移
333 333 label_sort_lower: 下移
334 334 label_sort_lowest: 置底
335 335 label_roadmap: 路线图
336 336 label_roadmap_due_in: Due in
337 337 label_roadmap_no_issues: 该版本没有任务
338 338 label_search: 查找
339 339 label_result: %d 个结果
340 340 label_result_plural: %d 个结果
341 341 label_all_words: 所有单词
342 342 label_wiki: Wiki
343 343 label_wiki_edit: Wiki edit
344 344 label_wiki_edit_plural: Wiki edits
345 345 label_page_index: 索引
346 346 label_current_version: 当前版本
347 347 label_preview: 预览
348 348 label_feed_plural: Feeds
349 349 label_changes_details: 所有更改的详情
350 350 label_issue_tracking: 任务跟踪
351 351 label_spent_time: 耗时
352 352 label_f_hour: %.2f 小时
353 353 label_f_hour_plural: %.2f 小时
354 354 label_time_tracking: 时间跟踪
355 355 label_change_plural: 更改列表
356 356 label_statistics: 统计
357 357 label_commits_per_month: Commits per month
358 358 label_commits_per_author: Commits per author
359 359 label_view_diff: View differences
360 360 label_diff_inline: inline
361 361 label_diff_side_by_side: side by side
362 362 label_options: Options
363 363 label_copy_workflow_from: Copy workflow from
364 364 label_permissions_report: Permissions report
365 365 label_watched_issues: Watched issues
366 366 label_related_issues: Related issues
367 367 label_applied_status: Applied status
368 label_loading: Loading...
368 369
369 370 button_login: 登录
370 371 button_submit: 提交
371 372 button_save: 保存
372 373 button_check_all: 全选
373 374 button_uncheck_all: 清除
374 375 button_delete: 删除
375 376 button_create: 创建
376 377 button_test: 测试
377 378 button_edit: 编辑
378 379 button_add: 新增
379 380 button_change: 修改
380 381 button_apply: 应用
381 382 button_clear: 清除
382 383 button_lock: 锁定
383 384 button_unlock: 解锁
384 385 button_download: 下载
385 386 button_list: 列表
386 387 button_view: 查看
387 388 button_move: 移动
388 389 button_back: 返回
389 390 button_cancel: 取消
390 391 button_activate: 激活
391 392 button_sort: 排序
392 393 button_log_time: 登记工时
393 394 button_rollback: Rollback to this version
394 395 button_watch: Watch
395 396 button_unwatch: Unwatch
396 397
397 398 status_active: 激活
398 399 status_registered: 已注册
399 400 status_locked: 已锁定
400 401
401 402 text_select_mail_notifications: 选择需要发送邮件通知的动作。
402 403 text_regexp_info: eg. ^[A-Z0-9]+$
403 404 text_min_max_length_info: 0 表示没有限制
404 405 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
405 406 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
406 407 text_are_you_sure: 您确定?
407 408 text_journal_changed: 从 %s 更改为 %s
408 409 text_journal_set_to: 设置为 %s
409 410 text_journal_deleted: 已删除
410 411 text_tip_task_begin_day: 开始于此
411 412 text_tip_task_end_day: 在此结束
412 413 text_tip_task_begin_end_day: 开始并结束于此
413 414 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
414 415 text_caracters_maximum: %d characters maximum.
415 416 text_length_between: Length between %d and %d characters.
416 417 text_tracker_no_workflow: No workflow defined for this tracker
417 418 text_unallowed_characters: Unallowed characters
418 419 text_coma_separated: Multiple values allowed (coma separated).
419 420 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
420 421
421 422 default_role_manager: 管理员
422 423 default_role_developper: 开发人员
423 424 default_role_reporter: 报告人员
424 425 default_tracker_bug: 问题
425 426 default_tracker_feature: 功能
426 427 default_tracker_support: 支持
427 428 default_issue_status_new: 新建
428 429 default_issue_status_assigned: 已分配
429 430 default_issue_status_resolved: 已解决
430 431 default_issue_status_feedback: 回复
431 432 default_issue_status_closed: 已关闭
432 433 default_issue_status_rejected: 已打回
433 434 default_doc_category_user: 用户文档
434 435 default_doc_category_tech: 技术文档
435 436 default_priority_low:
436 437 default_priority_normal: 普通
437 438 default_priority_high:
438 439 default_priority_urgent: 紧急
439 440 default_priority_immediate: 立刻
440 441 default_activity_design: 设计
441 442 default_activity_development: 开发
442 443
443 444 enumeration_issue_priorities: 任务优先级
444 445 enumeration_doc_categories: 文档类别
445 446 enumeration_activities: Activities (time tracking)
@@ -1,33 +1,47
1 1 function checkAll (id, checked) {
2 2 var el = document.getElementById(id);
3 3 for (var i = 0; i < el.elements.length; i++) {
4 4 if (el.elements[i].disabled==false) {
5 5 el.elements[i].checked = checked;
6 6 }
7 7 }
8 8 }
9 9
10 10 function addFileField() {
11 11 var f = document.createElement("input");
12 12 f.type = "file";
13 13 f.name = "attachments[]";
14 14 f.size = 30;
15 15
16 16 p = document.getElementById("attachments_p");
17 17 p.appendChild(document.createElement("br"));
18 18 p.appendChild(f);
19 19 }
20 20
21 21 function showTab(name) {
22 22 var f = $$('div#content .tab-content');
23 23 for(var i=0; i<f.length; i++){
24 24 Element.hide(f[i]);
25 25 }
26 26 var f = $$('div.tabs a');
27 27 for(var i=0; i<f.length; i++){
28 28 Element.removeClassName(f[i], "selected");
29 29 }
30 30 Element.show('tab-content-' + name);
31 31 Element.addClassName('tab-' + name, "selected");
32 32 return false;
33 } No newline at end of file
33 }
34
35 /* shows and hides ajax indicator */
36 Ajax.Responders.register({
37 onCreate: function(){
38 if ($('ajax-indicator') && Ajax.activeRequestCount > 0) {
39 Element.show('ajax-indicator');
40 }
41 },
42 onComplete: function(){
43 if ($('ajax-indicator') && Ajax.activeRequestCount == 0) {
44 Element.hide('ajax-indicator');
45 }
46 }
47 });
@@ -1,638 +1,665
1 1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
2 2 /* Edited by Jean-Philippe Lang *>
3 3 /**************** Body and tag styles ****************/
4 4
5 5 #header * {margin:0; padding:0;}
6 6 p, ul, ol, li {margin:0; padding:0;}
7 7
8 8 body{
9 9 font:76% Verdana,Tahoma,Arial,sans-serif;
10 10 line-height:1.4em;
11 11 text-align:center;
12 12 color:#303030;
13 13 background:#e8eaec;
14 14 margin:0;
15 15 }
16 16
17 17 a{color:#467aa7;font-weight:bold;text-decoration:none;background-color:inherit;}
18 18 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
19 19 a img{border:none;}
20 20
21 21 p{margin:0 0 1em 0;}
22 22 p form{margin-top:0; margin-bottom:20px;}
23 23
24 24 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
25 25 img.left{float:left; margin:0 12px 5px 0;}
26 26 img.center{display:block; margin:0 auto 5px auto;}
27 27 img.right{float:right; margin:0 0 5px 12px;}
28 28
29 29 /**************** Header and navigation styles ****************/
30 30
31 31 #container{
32 32 width:100%;
33 33 min-width: 800px;
34 34 margin:0;
35 35 padding:0;
36 36 text-align:left;
37 37 background:#ffffff;
38 38 color:#303030;
39 39 }
40 40
41 41 #header{
42 42 height:4.5em;
43 43 margin:0;
44 44 background:#467aa7;
45 45 color:#ffffff;
46 46 margin-bottom:1px;
47 47 }
48 48
49 49 #header h1{
50 50 padding:10px 0 0 20px;
51 51 font-size:2em;
52 52 background-color:inherit;
53 53 color:#fff;
54 54 letter-spacing:-1px;
55 55 font-weight:bold;
56 56 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
57 57 }
58 58
59 59 #header h2{
60 60 margin:3px 0 0 40px;
61 61 font-size:1.5em;
62 62 background-color:inherit;
63 63 color:#f0f2f4;
64 64 letter-spacing:-1px;
65 65 font-weight:normal;
66 66 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
67 67 }
68 68
69 69 #navigation{
70 70 height:2.2em;
71 71 line-height:2.2em;
72 72 margin:0;
73 73 background:#578bb8;
74 74 color:#ffffff;
75 75 }
76 76
77 77 #navigation li{
78 78 float:left;
79 79 list-style-type:none;
80 80 border-right:1px solid #ffffff;
81 81 white-space:nowrap;
82 82 }
83 83
84 84 #navigation li.right {
85 85 float:right;
86 86 list-style-type:none;
87 87 border-right:0;
88 88 border-left:1px solid #ffffff;
89 89 white-space:nowrap;
90 90 }
91 91
92 92 #navigation li a{
93 93 display:block;
94 94 padding:0px 10px 0px 22px;
95 95 font-size:0.8em;
96 96 font-weight:normal;
97 97 text-decoration:none;
98 98 background-color:inherit;
99 99 color: #ffffff;
100 100 }
101 101
102 102 #navigation li.submenu {background:url(../images/arrow_down.png) 96% 80% no-repeat;}
103 103 #navigation li.submenu a {padding:0px 16px 0px 22px;}
104 104 * html #navigation a {width:1%;}
105 105
106 106 #navigation .selected,#navigation a:hover{
107 107 color:#ffffff;
108 108 text-decoration:none;
109 109 background-color: #80b0da;
110 110 }
111 111
112 112 /**************** Icons *******************/
113 113 .icon {
114 114 background-position: 0% 40%;
115 115 background-repeat: no-repeat;
116 116 padding-left: 20px;
117 117 padding-top: 2px;
118 118 padding-bottom: 3px;
119 119 vertical-align: middle;
120 120 }
121 121
122 122 #navigation .icon {
123 123 background-position: 4px 50%;
124 124 }
125 125
126 126 .icon22 {
127 127 background-position: 0% 40%;
128 128 background-repeat: no-repeat;
129 129 padding-left: 26px;
130 130 line-height: 22px;
131 131 vertical-align: middle;
132 132 }
133 133
134 134 .icon-add { background-image: url(../images/add.png); }
135 135 .icon-edit { background-image: url(../images/edit.png); }
136 136 .icon-del { background-image: url(../images/delete.png); }
137 137 .icon-move { background-image: url(../images/move.png); }
138 138 .icon-save { background-image: url(../images/save.png); }
139 139 .icon-cancel { background-image: url(../images/cancel.png); }
140 140 .icon-pdf { background-image: url(../images/pdf.png); }
141 141 .icon-csv { background-image: url(../images/csv.png); }
142 142 .icon-html { background-image: url(../images/html.png); }
143 143 .icon-txt { background-image: url(../images/txt.png); }
144 144 .icon-file { background-image: url(../images/file.png); }
145 145 .icon-folder { background-image: url(../images/folder.png); }
146 146 .icon-package { background-image: url(../images/package.png); }
147 147 .icon-home { background-image: url(../images/home.png); }
148 148 .icon-user { background-image: url(../images/user.png); }
149 149 .icon-mypage { background-image: url(../images/user_page.png); }
150 150 .icon-admin { background-image: url(../images/admin.png); }
151 151 .icon-projects { background-image: url(../images/projects.png); }
152 152 .icon-logout { background-image: url(../images/logout.png); }
153 153 .icon-help { background-image: url(../images/help.png); }
154 154 .icon-attachment { background-image: url(../images/attachment.png); }
155 155 .icon-index { background-image: url(../images/index.png); }
156 156 .icon-history { background-image: url(../images/history.png); }
157 157 .icon-feed { background-image: url(../images/feed.png); }
158 158 .icon-time { background-image: url(../images/time.png); }
159 159 .icon-stats { background-image: url(../images/stats.png); }
160 160 .icon-warning { background-image: url(../images/warning.png); }
161 161 .icon-fav { background-image: url(../images/fav.png); }
162 162 .icon-fav-off { background-image: url(../images/fav_off.png); }
163 163
164 164 .icon22-projects { background-image: url(../images/22x22/projects.png); }
165 165 .icon22-users { background-image: url(../images/22x22/users.png); }
166 166 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
167 167 .icon22-role { background-image: url(../images/22x22/role.png); }
168 168 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
169 169 .icon22-options { background-image: url(../images/22x22/options.png); }
170 170 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
171 171 .icon22-authent { background-image: url(../images/22x22/authent.png); }
172 172 .icon22-info { background-image: url(../images/22x22/info.png); }
173 173 .icon22-comment { background-image: url(../images/22x22/comment.png); }
174 174 .icon22-package { background-image: url(../images/22x22/package.png); }
175 175 .icon22-settings { background-image: url(../images/22x22/settings.png); }
176 176
177 177 /**************** Content styles ****************/
178 178
179 179 html>body #content {
180 180 height: auto;
181 181 min-height: 500px;
182 182 }
183 183
184 184 #content{
185 185 width: auto;
186 186 height:500px;
187 187 font-size:0.9em;
188 188 padding:20px 10px 10px 20px;
189 189 margin-left: 120px;
190 190 border-left: 1px dashed #c0c0c0;
191 191
192 192 }
193 193
194 194 #content h2, #content div.wiki h1 {
195 195 display:block;
196 196 margin:0 0 16px 0;
197 197 font-size:1.7em;
198 198 font-weight:normal;
199 199 letter-spacing:-1px;
200 200 color:#606060;
201 201 background-color:inherit;
202 202 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
203 203 }
204 204
205 205 #content h2 a{font-weight:normal;}
206 206 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
207 207 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
208 208 #content a:hover,#subcontent a:hover{text-decoration:underline;}
209 209 #content ul,#content ol{margin:0 5px 16px 35px;}
210 210 #content dl{margin:0 5px 10px 25px;}
211 211 #content dt{font-weight:bold; margin-bottom:5px;}
212 212 #content dd{margin:0 0 10px 15px;}
213 213
214 214 #content .tabs{height: 2.6em;}
215 215 #content .tabs ul{margin:0;}
216 216 #content .tabs ul li{
217 217 float:left;
218 218 list-style-type:none;
219 219 white-space:nowrap;
220 220 margin-right:8px;
221 221 background:#fff;
222 222 }
223 223 #content .tabs ul li a{
224 224 display:block;
225 225 font-size: 0.9em;
226 226 text-decoration:none;
227 227 line-height:1em;
228 228 padding:4px;
229 229 border: 1px solid #c0c0c0;
230 230 }
231 231
232 232 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
233 233 background-color: #80b0da;
234 234 border: 1px solid #80b0da;
235 235 color: #fff;
236 236 text-decoration:none;
237 237 }
238 238
239 239 /***********************************************/
240 240
241 241 form {display: inline;}
242 242 blockquote {padding-left: 6px; border-left: 2px solid #ccc;}
243 243 input, select {vertical-align: middle; margin-bottom: 4px;}
244 244
245 245 input.button-small {font-size: 0.8em;}
246 246 textarea.wiki-edit { width: 99.5%; }
247 247 .select-small {font-size: 0.8em;}
248 248 label {font-weight: bold; font-size: 1em; color: #505050;}
249 249 fieldset {border:1px solid #c0c0c0; padding: 6px;}
250 250 legend {color: #505050;}
251 251 .required {color: #bb0000;}
252 252 .odd {background-color:#f6f7f8;}
253 253 .even {background-color: #fff;}
254 254 hr { border:0; border-top: dotted 1px #fff; border-bottom: dotted 1px #c0c0c0; }
255 255 table p {margin:0; padding:0;}
256 256
257 257 .highlight { background-color: #FCFD8D;}
258 258
259 259 div.square {
260 260 border: 1px solid #999;
261 261 float: left;
262 262 margin: .4em .5em 0 0;
263 263 overflow: hidden;
264 264 width: .6em; height: .6em;
265 265 }
266 266
267 267 ul.documents {
268 268 list-style-type: none;
269 269 padding: 0;
270 270 margin: 0;
271 271 }
272 272
273 273 ul.documents li {
274 274 background-image: url(../images/32x32/file.png);
275 275 background-repeat: no-repeat;
276 276 background-position: 0 1px;
277 277 padding-left: 36px;
278 278 margin-bottom: 10px;
279 279 margin-left: -37px;
280 280 }
281 281
282 282 /********** Table used to display lists of things ***********/
283 283
284 284 table.list {
285 285 width:100%;
286 286 border-collapse: collapse;
287 287 border: 1px dotted #d0d0d0;
288 288 margin-bottom: 6px;
289 289 }
290 290
291 291 table.with-cells td {
292 292 border: 1px solid #d7d7d7;
293 293 }
294 294
295 295 table.list td {
296 296 padding:2px;
297 297 }
298 298
299 299 table.list thead th {
300 300 text-align: center;
301 301 background: #eee;
302 302 border: 1px solid #d7d7d7;
303 303 color: #777;
304 304 }
305 305
306 306 table.list tbody th {
307 307 font-weight: bold;
308 308 background: #eed;
309 309 border: 1px solid #d7d7d7;
310 310 color: #777;
311 311 }
312 312
313 313 /********** Validation error messages *************/
314 314 #errorExplanation {
315 315 width: 400px;
316 316 border: 0;
317 317 padding: 7px;
318 318 padding-bottom: 3px;
319 319 margin-bottom: 0px;
320 320 }
321 321
322 322 #errorExplanation h2 {
323 323 text-align: left;
324 324 font-weight: bold;
325 325 padding: 5px 5px 10px 26px;
326 326 font-size: 1em;
327 327 margin: -7px;
328 328 background: url(../images/alert.png) no-repeat 6px 6px;
329 329 }
330 330
331 331 #errorExplanation p {
332 332 color: #333;
333 333 margin-bottom: 0;
334 334 padding: 5px;
335 335 }
336 336
337 337 #errorExplanation ul li {
338 338 font-size: 1em;
339 339 list-style: none;
340 340 margin-left: -16px;
341 341 }
342 342
343 343 /*========== Drop down menu ==============*/
344 344 div.menu {
345 345 background-color: #FFFFFF;
346 346 border-style: solid;
347 347 border-width: 1px;
348 348 border-color: #7F9DB9;
349 349 position: absolute;
350 350 top: 0px;
351 351 left: 0px;
352 352 padding: 0;
353 353 visibility: hidden;
354 354 z-index: 101;
355 355 }
356 356
357 357 div.menu a.menuItem {
358 358 font-size: 10px;
359 359 font-weight: normal;
360 360 line-height: 2em;
361 361 color: #000000;
362 362 background-color: #FFFFFF;
363 363 cursor: default;
364 364 display: block;
365 365 padding: 0 1em;
366 366 margin: 0;
367 367 border: 0;
368 368 text-decoration: none;
369 369 white-space: nowrap;
370 370 }
371 371
372 372 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
373 373 background-color: #80b0da;
374 374 color: #ffffff;
375 375 }
376 376
377 377 div.menu a.menuItem span.menuItemText {}
378 378
379 379 div.menu a.menuItem span.menuItemArrow {
380 380 margin-right: -.75em;
381 381 }
382 382
383 383 /**************** Sidebar styles ****************/
384 384
385 385 #subcontent{
386 386 position: absolute;
387 387 left: 0px;
388 388 width:95px;
389 389 padding:20px 20px 10px 5px;
390 390 overflow: hidden;
391 391 }
392 392
393 393 #subcontent h2{
394 394 display:block;
395 395 margin:0 0 5px 0;
396 396 font-size:1.0em;
397 397 font-weight:bold;
398 398 text-align:left;
399 399 color:#606060;
400 400 background-color:inherit;
401 401 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
402 402 }
403 403
404 404 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
405 405
406 406 /**************** Menublock styles ****************/
407 407
408 408 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
409 409 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
410 410 .menublock li a{font-weight:bold; text-decoration:none;}
411 411 .menublock li a:hover{text-decoration:none;}
412 412 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
413 413 .menublock li ul li{margin-bottom:0;}
414 414 .menublock li ul a{font-weight:normal;}
415 415
416 416 /**************** Footer styles ****************/
417 417
418 418 #footer{
419 419 clear:both;
420 420 padding:5px 0;
421 421 margin:0;
422 422 font-size:0.9em;
423 423 color:#f0f0f0;
424 424 background:#467aa7;
425 425 }
426 426
427 427 #footer p{padding:0; margin:0; text-align:center;}
428 428 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
429 429 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
430 430
431 431 /**************** Misc classes and styles ****************/
432 432
433 433 .splitcontentleft{float:left; width:49%;}
434 434 .splitcontentright{float:right; width:49%;}
435 435 .clear{clear:both;}
436 436 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
437 437 .hide{display:none;}
438 438 .textcenter{text-align:center;}
439 439 .textright{text-align:right;}
440 440 .important{color:#f02025; background-color:inherit; font-weight:bold;}
441 441
442 442 .box{
443 443 margin:0 0 20px 0;
444 444 padding:10px;
445 445 border:1px solid #c0c0c0;
446 446 background-color:#fafbfc;
447 447 color:#505050;
448 448 line-height:1.5em;
449 449 }
450 450
451 451 a.close-icon {
452 452 display:block;
453 453 margin-top:3px;
454 454 overflow:hidden;
455 455 width:12px;
456 456 height:12px;
457 457 background-repeat: no-repeat;
458 458 cursor:pointer;
459 459 background-image:url('../images/close.png');
460 460 }
461 461
462 462 a.close-icon:hover {
463 463 background-image:url('../images/close_hl.png');
464 464 }
465 465
466 466 .rightbox{
467 467 background: #fafbfc;
468 468 border: 1px solid #c0c0c0;
469 469 float: right;
470 470 padding: 8px;
471 471 position: relative;
472 472 margin: 0 5px 5px;
473 473 }
474 474
475 475 .overlay{
476 476 position: absolute;
477 477 margin-left:0;
478 478 z-index: 50;
479 479 }
480 480
481 481 .layout-active {
482 482 background: #ECF3E1;
483 483 }
484 484
485 485 .block-receiver {
486 486 border:1px dashed #c0c0c0;
487 487 margin-bottom: 20px;
488 488 padding: 15px 0 15px 0;
489 489 }
490 490
491 491 .mypage-box {
492 492 margin:0 0 20px 0;
493 493 color:#505050;
494 494 line-height:1.5em;
495 495 }
496 496
497 497 .handle {
498 498 cursor: move;
499 499 }
500 500
501 501 .login {
502 502 width: 50%;
503 503 text-align: left;
504 504 }
505 505
506 506 img.calendar-trigger {
507 507 cursor: pointer;
508 508 vertical-align: middle;
509 509 margin-left: 4px;
510 510 }
511 511
512 512 #history p {
513 513 margin-left: 34px;
514 514 }
515 515
516 516 .progress {
517 517 border: 1px solid #D7D7D7;
518 518 border-collapse: collapse;
519 519 border-spacing: 0pt;
520 520 empty-cells: show;
521 521 padding: 3px;
522 522 width: 40em;
523 523 text-align: center;
524 524 }
525 525
526 526 .progress td { height: 1em; }
527 527 .progress .closed { background: #BAE0BA none repeat scroll 0%; }
528 528 .progress .open { background: #FFF none repeat scroll 0%; }
529 529
530 530 /***** Contextual links div *****/
531 531 .contextual {
532 532 float: right;
533 533 font-size: 0.8em;
534 534 line-height: 16px;
535 535 padding: 2px;
536 536 }
537 537
538 538 .contextual select, .contextual input {
539 539 font-size: 1em;
540 540 }
541 541
542 542 /***** Gantt chart *****/
543 543 .gantt_hdr {
544 544 position:absolute;
545 545 top:0;
546 546 height:16px;
547 547 border-top: 1px solid #c0c0c0;
548 548 border-bottom: 1px solid #c0c0c0;
549 549 border-right: 1px solid #c0c0c0;
550 550 text-align: center;
551 551 overflow: hidden;
552 552 }
553 553
554 554 .task {
555 555 position: absolute;
556 556 height:8px;
557 557 font-size:0.8em;
558 558 color:#888;
559 559 padding:0;
560 560 margin:0;
561 561 line-height:0.8em;
562 562 }
563 563
564 564 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
565 565 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
566 566 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
567 567 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
568 568
569 569 /***** Tooltips ******/
570 570 .tooltip{position:relative;z-index:24;}
571 571 .tooltip:hover{z-index:25;color:#000;}
572 572 .tooltip span.tip{display: none; text-align:left;}
573 573
574 574 div.tooltip:hover span.tip{
575 575 display:block;
576 576 position:absolute;
577 577 top:12px; left:24px; width:270px;
578 578 border:1px solid #555;
579 579 background-color:#fff;
580 580 padding: 4px;
581 581 font-size: 0.8em;
582 582 color:#505050;
583 583 }
584 584
585 585 /***** CSS FORM ******/
586 586 .tabular p{
587 587 margin: 0;
588 588 padding: 5px 0 8px 0;
589 589 padding-left: 180px; /*width of left column containing the label elements*/
590 590 height: 1%;
591 591 }
592 592
593 593 .tabular label{
594 594 font-weight: bold;
595 595 float: left;
596 596 margin-left: -180px; /*width of left column*/
597 597 width: 175px; /*width of labels. Should be smaller than left column to create some right
598 598 margin*/
599 599 }
600 600
601 601 .error {
602 602 color: #cc0000;
603 603 }
604 604
605 605 #settings .tabular p{ padding-left: 300px; }
606 606 #settings .tabular label{ margin-left: -300px; width: 295px; }
607 607
608 608 /*.threepxfix class below:
609 609 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
610 610 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
611 611 */
612 612
613 613 * html .threepxfix{
614 614 margin-left: 3px;
615 615 }
616 616
617 617 /***** Wiki sections ****/
618 618 #content div.wiki { font-size: 110%}
619 619
620 620 #content div.wiki h2, div.wiki h3 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; color:#606060; }
621 621 #content div.wiki h2 { font-size: 1.4em;}
622 622 #content div.wiki h3 { font-size: 1.2em;}
623 623
624 624 div.wiki table {
625 625 border: 1px solid #505050;
626 626 border-collapse: collapse;
627 627 }
628 628
629 629 div.wiki table, div.wiki td {
630 630 border: 1px solid #bbb;
631 631 padding: 4px;
632 632 }
633 633
634 634 div.wiki code {
635 635 font-size: 1.2em;
636 636 }
637 637
638 638 #preview .preview { background: #fafbfc url(../images/draft.png); }
639
640 #ajax-indicator {
641 position: absolute; /* fixed not supported by IE */
642 background-color:#eee;
643 border: 1px solid #bbb;
644 top:35%;
645 left:40%;
646 width:20%;
647 font-weight:bold;
648 text-align:center;
649 padding:0.6em;
650 z-index:100;
651 filter:alpha(opacity=50);
652 -moz-opacity:0.5;
653 opacity: 0.5;
654 -khtml-opacity: 0.5;
655 }
656
657 html>body #ajax-indicator { position: fixed; }
658
659 #ajax-indicator span {
660 background-position: 0% 40%;
661 background-repeat: no-repeat;
662 background-image: url(../images/loading.gif);
663 padding-left: 26px;
664 vertical-align: bottom;
665 }
General Comments 0
You need to be logged in to leave comments. Login now