##// END OF EJS Templates
Added the ability to rename wiki pages (specific permission required)....
Jean-Philippe Lang -
r709:b4d9ca887589
parent child
Show More
@@ -0,0 +1,23
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 class WikiRedirect < ActiveRecord::Base
19 belongs_to :wiki
20
21 validates_presence_of :title, :redirects_to
22 validates_length_of :title, :redirects_to, :maximum => 255
23 end
@@ -0,0 +1,11
1 <h2><%= l(:button_rename) %>: <%= @original_title %></h2>
2
3 <%= error_messages_for 'page' %>
4
5 <% labelled_tabular_form_for :wiki_page, @page, :url => { :action => 'rename' } do |f| %>
6 <div class="box">
7 <p><%= f.text_field :title, :required => true, :size => 255 %></p>
8 <p><%= f.check_box :redirect_existing_links %></p>
9 </div>
10 <%= submit_tag l(:button_rename) %>
11 <% end %>
@@ -0,0 +1,15
1 class CreateWikiRedirects < ActiveRecord::Migration
2 def self.up
3 create_table :wiki_redirects do |t|
4 t.column :wiki_id, :integer, :null => false
5 t.column :title, :string
6 t.column :redirects_to, :string
7 t.column :created_on, :datetime, :null => false
8 end
9 add_index :wiki_redirects, [:wiki_id, :title], :name => :wiki_redirects_wiki_id_title
10 end
11
12 def self.down
13 drop_table :wiki_redirects
14 end
15 end
@@ -0,0 +1,73
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 require File.dirname(__FILE__) + '/../test_helper'
19
20 class WikiRedirectTest < Test::Unit::TestCase
21 fixtures :projects, :wikis
22
23 def setup
24 @wiki = Wiki.find(1)
25 @original = WikiPage.create(:wiki => @wiki, :title => 'Original title')
26 end
27
28 def test_create_redirect
29 @original.title = 'New title'
30 assert @original.save
31 @original.reload
32
33 assert_equal 'New_title', @original.title
34 assert @wiki.redirects.find_by_title('Original_title')
35 assert @wiki.find_page('Original title')
36 end
37
38 def test_update_redirect
39 # create a redirect that point to this page
40 assert WikiRedirect.create(:wiki => @wiki, :title => 'An_old_page', :redirects_to => 'Original_title')
41
42 @original.title = 'New title'
43 @original.save
44 # make sure the old page now points to the new page
45 assert_equal 'New_title', @wiki.find_page('An old page').title
46 end
47
48 def test_reverse_rename
49 # create a redirect that point to this page
50 assert WikiRedirect.create(:wiki => @wiki, :title => 'An_old_page', :redirects_to => 'Original_title')
51
52 @original.title = 'An old page'
53 @original.save
54 assert !@wiki.redirects.find_by_title_and_redirects_to('An_old_page', 'An_old_page')
55 assert @wiki.redirects.find_by_title_and_redirects_to('Original_title', 'An_old_page')
56 end
57
58 def test_rename_to_already_redirected
59 assert WikiRedirect.create(:wiki => @wiki, :title => 'An_old_page', :redirects_to => 'Other_page')
60
61 @original.title = 'An old page'
62 @original.save
63 # this redirect have to be removed since 'An old page' page now exists
64 assert !@wiki.redirects.find_by_title_and_redirects_to('An_old_page', 'Other_page')
65 end
66
67 def test_redirects_removed_when_deleting_page
68 assert WikiRedirect.create(:wiki => @wiki, :title => 'An_old_page', :redirects_to => 'Original_title')
69
70 @original.destroy
71 assert !@wiki.redirects.find(:first)
72 end
73 end
@@ -1,162 +1,174
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require 'diff'
19 19
20 20 class WikiController < ApplicationController
21 21 layout 'base'
22 22 before_filter :find_wiki, :authorize
23 23
24 24 verify :method => :post, :only => [:destroy, :destroy_attachment], :redirect_to => { :action => :index }
25 25
26 26 helper :attachments
27 27 include AttachmentsHelper
28 28
29 29 # display a page (in editing mode if it doesn't exist)
30 30 def index
31 31 page_title = params[:page]
32 32 @page = @wiki.find_or_new_page(page_title)
33 33 if @page.new_record?
34 34 edit
35 35 render :action => 'edit' and return
36 36 end
37 37 @content = @page.content_for_version(params[:version])
38 38 if params[:export] == 'html'
39 39 export = render_to_string :action => 'export', :layout => false
40 40 send_data(export, :type => 'text/html', :filename => "#{@page.title}.html")
41 41 return
42 42 elsif params[:export] == 'txt'
43 43 send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt")
44 44 return
45 45 end
46 46 render :action => 'show'
47 47 end
48 48
49 49 # edit an existing page or a new one
50 50 def edit
51 51 @page = @wiki.find_or_new_page(params[:page])
52 52 @page.content = WikiContent.new(:page => @page) if @page.new_record?
53 53
54 54 @content = @page.content_for_version(params[:version])
55 55 @content.text = "h1. #{@page.pretty_title}" if @content.text.blank?
56 56 # don't keep previous comment
57 57 @content.comments = nil
58 58 if request.post?
59 59 if @content.text == params[:content][:text]
60 60 # don't save if text wasn't changed
61 61 redirect_to :action => 'index', :id => @project, :page => @page.title
62 62 return
63 63 end
64 64 #@content.text = params[:content][:text]
65 65 #@content.comments = params[:content][:comments]
66 66 @content.attributes = params[:content]
67 67 @content.author = logged_in_user
68 68 # if page is new @page.save will also save content, but not if page isn't a new record
69 69 if (@page.new_record? ? @page.save : @content.save)
70 70 redirect_to :action => 'index', :id => @project, :page => @page.title
71 71 end
72 72 end
73 73 rescue ActiveRecord::StaleObjectError
74 74 # Optimistic locking exception
75 75 flash[:error] = l(:notice_locking_conflict)
76 76 end
77 77
78 # rename a page
79 def rename
80 @page = @wiki.find_page(params[:page])
81 @page.redirect_existing_links = true
82 # used to display the *original* title if some AR validation errors occur
83 @original_title = @page.pretty_title
84 if request.post? && @page.update_attributes(params[:wiki_page])
85 flash[:notice] = l(:notice_successful_update)
86 redirect_to :action => 'index', :id => @project, :page => @page.title
87 end
88 end
89
78 90 # show page history
79 91 def history
80 92 @page = @wiki.find_page(params[:page])
81 93
82 94 @version_count = @page.content.versions.count
83 95 @version_pages = Paginator.new self, @version_count, 25, params['p']
84 96 # don't load text
85 97 @versions = @page.content.versions.find :all,
86 98 :select => "id, author_id, comments, updated_on, version",
87 99 :order => 'version DESC',
88 100 :limit => @version_pages.items_per_page + 1,
89 101 :offset => @version_pages.current.offset
90 102
91 103 render :layout => false if request.xhr?
92 104 end
93 105
94 106 def diff
95 107 @page = @wiki.find_page(params[:page])
96 108 @diff = @page.diff(params[:version], params[:version_from])
97 109 render_404 unless @diff
98 110 end
99 111
100 112 # remove a wiki page and its history
101 113 def destroy
102 114 @page = @wiki.find_page(params[:page])
103 115 @page.destroy if @page
104 116 redirect_to :action => 'special', :id => @project, :page => 'Page_index'
105 117 end
106 118
107 119 # display special pages
108 120 def special
109 121 page_title = params[:page].downcase
110 122 case page_title
111 123 # show pages index, sorted by title
112 124 when 'page_index'
113 125 # eager load information about last updates, without loading text
114 126 @pages = @wiki.pages.find :all, :select => "#{WikiPage.table_name}.*, #{WikiContent.table_name}.updated_on",
115 127 :joins => "LEFT JOIN #{WikiContent.table_name} ON #{WikiContent.table_name}.page_id = #{WikiPage.table_name}.id",
116 128 :order => 'title'
117 129 # export wiki to a single html file
118 130 when 'export'
119 131 @pages = @wiki.pages.find :all, :order => 'title'
120 132 export = render_to_string :action => 'export_multiple', :layout => false
121 133 send_data(export, :type => 'text/html', :filename => "wiki.html")
122 134 return
123 135 else
124 136 # requested special page doesn't exist, redirect to default page
125 137 redirect_to :action => 'index', :id => @project, :page => nil and return
126 138 end
127 139 render :action => "special_#{page_title}"
128 140 end
129 141
130 142 def preview
131 143 page = @wiki.find_page(params[:page])
132 144 @attachements = page.attachments if page
133 145 @text = params[:content][:text]
134 146 render :partial => 'preview'
135 147 end
136 148
137 149 def add_attachment
138 150 @page = @wiki.find_page(params[:page])
139 151 # Save the attachments
140 152 params[:attachments].each { |file|
141 153 next unless file.size > 0
142 154 a = Attachment.create(:container => @page, :file => file, :author => logged_in_user)
143 155 } if params[:attachments] and params[:attachments].is_a? Array
144 156 redirect_to :action => 'index', :page => @page.title
145 157 end
146 158
147 159 def destroy_attachment
148 160 @page = @wiki.find_page(params[:page])
149 161 @page.attachments.find(params[:attachment_id]).destroy
150 162 redirect_to :action => 'index', :page => @page.title
151 163 end
152 164
153 165 private
154 166
155 167 def find_wiki
156 168 @project = Project.find(params[:id])
157 169 @wiki = @project.wiki
158 170 render_404 unless @wiki
159 171 rescue ActiveRecord::RecordNotFound
160 172 render_404
161 173 end
162 174 end
@@ -1,46 +1,53
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class Wiki < ActiveRecord::Base
19 19 belongs_to :project
20 20 has_many :pages, :class_name => 'WikiPage', :dependent => :destroy
21 has_many :redirects, :class_name => 'WikiRedirect', :dependent => :delete_all
21 22
22 23 validates_presence_of :start_page
23 24 validates_format_of :start_page, :with => /^[^,\.\/\?\;\|\:]*$/
24 25
25 26 # find the page with the given title
26 27 # if page doesn't exist, return a new page
27 28 def find_or_new_page(title)
28 title = Wiki.titleize(title || start_page)
29 find_page(title) || WikiPage.new(:wiki => self, :title => title)
29 find_page(title) || WikiPage.new(:wiki => self, :title => Wiki.titleize(title))
30 30 end
31 31
32 32 # find the page with the given title
33 def find_page(title)
33 def find_page(title, options = {})
34 34 title = start_page if title.blank?
35 pages.find_by_title(Wiki.titleize(title))
35 title = Wiki.titleize(title)
36 page = pages.find_by_title(title)
37 if !page && !(options[:with_redirect] == false)
38 # search for a redirect
39 redirect = redirects.find_by_title(title)
40 page = find_page(redirect.redirects_to, :with_redirect => false) if redirect
41 end
42 page
36 43 end
37 44
38 45 # turn a string into a valid page title
39 46 def self.titleize(title)
40 47 # replace spaces with _ and remove unwanted caracters
41 48 title = title.gsub(/\s+/, '_').delete(',./?;|:') if title
42 49 # upcase the first letter
43 50 title = (title.length > 1 ? title.first.upcase + title[1..-1] : title.upcase) if title
44 51 title
45 52 end
46 53 end
@@ -1,76 +1,102
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require 'diff'
19 19
20 20 class WikiPage < ActiveRecord::Base
21 21 belongs_to :wiki
22 22 has_one :content, :class_name => 'WikiContent', :foreign_key => 'page_id', :dependent => :destroy
23 23 has_many :attachments, :as => :container, :dependent => :destroy
24 24
25 attr_accessor :redirect_existing_links
26
25 27 validates_presence_of :title
26 28 validates_format_of :title, :with => /^[^,\.\/\?\;\|\s]*$/
27 29 validates_uniqueness_of :title, :scope => :wiki_id, :case_sensitive => false
28 30 validates_associated :content
29
31
32 def title=(value)
33 value = Wiki.titleize(value)
34 @previous_title = read_attribute(:title) if @previous_title.blank?
35 write_attribute(:title, value)
36 end
37
30 38 def before_save
31 self.title = Wiki.titleize(title)
39 self.title = Wiki.titleize(title)
40 # Manage redirects if the title has changed
41 if !@previous_title.blank? && (@previous_title != title) && !new_record?
42 # Update redirects that point to the old title
43 wiki.redirects.find_all_by_redirects_to(@previous_title).each do |r|
44 r.redirects_to = title
45 r.title == r.redirects_to ? r.destroy : r.save
46 end
47 # Remove redirects for the new title
48 wiki.redirects.find_all_by_title(title).each(&:destroy)
49 # Create a redirect to the new title
50 wiki.redirects << WikiRedirect.new(:title => @previous_title, :redirects_to => title) unless redirect_existing_links == "0"
51 @previous_title = nil
52 end
53 end
54
55 def before_destroy
56 # Remove redirects to this page
57 wiki.redirects.find_all_by_redirects_to(title).each(&:destroy)
32 58 end
33 59
34 60 def pretty_title
35 61 WikiPage.pretty_title(title)
36 62 end
37 63
38 64 def content_for_version(version=nil)
39 65 result = content.versions.find_by_version(version.to_i) if version
40 66 result ||= content
41 67 result
42 68 end
43 69
44 70 def diff(version_to=nil, version_from=nil)
45 71 version_to = version_to ? version_to.to_i : self.content.version
46 72 version_from = version_from ? version_from.to_i : version_to - 1
47 73 version_to, version_from = version_from, version_to unless version_from < version_to
48 74
49 75 content_to = content.versions.find_by_version(version_to)
50 76 content_from = content.versions.find_by_version(version_from)
51 77
52 78 (content_to && content_from) ? WikiDiff.new(content_to, content_from) : nil
53 79 end
54 80
55 81 def self.pretty_title(str)
56 82 (str && str.is_a?(String)) ? str.tr('_', ' ') : str
57 83 end
58 84
59 85 def project
60 86 wiki.project
61 87 end
62 88 end
63 89
64 90 class WikiDiff
65 91 attr_reader :diff, :words, :content_to, :content_from
66 92
67 93 def initialize(content_to, content_from)
68 94 @content_to = content_to
69 95 @content_from = content_from
70 96 @words = content_to.text.split(/(\s+)/)
71 97 @words = @words.select {|word| word != ' '}
72 98 words_from = content_from.text.split(/(\s+)/)
73 99 words_from = words_from.select {|word| word != ' '}
74 100 @diff = words_from.diff @words
75 101 end
76 102 end
@@ -1,45 +1,46
1 1 <div class="contextual">
2 2 <%= link_to_if_authorized(l(:button_edit), {:action => 'edit', :page => @page.title}, :class => 'icon icon-edit') if @content.version == @page.content.version %>
3 <%= link_to_if_authorized(l(:button_rename), {:action => 'rename', :page => @page.title}, :class => 'icon icon-move') if @content.version == @page.content.version %>
3 4 <%= link_to_if_authorized(l(:button_delete), {:action => 'destroy', :page => @page.title}, :method => :post, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') %>
4 5 <%= link_to_if_authorized(l(:button_rollback), {:action => 'edit', :page => @page.title, :version => @content.version }, :class => 'icon icon-cancel') if @content.version < @page.content.version %>
5 6 <%= link_to(l(:label_history), {:action => 'history', :page => @page.title}, :class => 'icon icon-history') %>
6 7 <%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
7 8 </div>
8 9
9 10 <% if @content.version != @page.content.version %>
10 11 <p>
11 12 <%= link_to(('&#171; ' + l(:label_previous)), :action => 'index', :page => @page.title, :version => (@content.version - 1)) + " - " if @content.version > 1 %>
12 13 <%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %>
13 14 <%= '(' + link_to('diff', :controller => 'wiki', :action => 'diff', :page => @page.title, :version => @content.version) + ')' if @content.version > 1 %> -
14 15 <%= link_to((l(:label_next) + ' &#187;'), :action => 'index', :page => @page.title, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
15 16 <%= link_to(l(:label_current_version), :action => 'index', :page => @page.title) %>
16 17 <br />
17 18 <em><%= @content.author ? @content.author.name : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
18 19 <%=h @content.comments %>
19 20 </p>
20 21 <hr />
21 22 <% end %>
22 23
23 24 <%= render(:partial => "wiki/content", :locals => {:content => @content}) %>
24 25
25 26 <%= link_to_attachments @page.attachments, :delete_url => (authorize_for('wiki', 'destroy_attachment') ? {:controller => 'wiki', :action => 'destroy_attachment', :page => @page.title} : nil) %>
26 27
27 28 <div class="contextual">
28 29 <%= l(:label_export_to) %>
29 <%= link_to 'HTML', {:export => 'html', :version => @content.version}, :class => 'icon icon-html' %>,
30 <%= link_to 'TXT', {:export => 'txt', :version => @content.version}, :class => 'icon icon-txt' %>
30 <%= link_to 'HTML', {:page => @page.title, :export => 'html', :version => @content.version}, :class => 'icon icon-html' %>,
31 <%= link_to 'TXT', {:page => @page.title, :export => 'txt', :version => @content.version}, :class => 'icon icon-txt' %>
31 32 </div>
32 33
33 34 <% if authorize_for('wiki', 'add_attachment') %>
34 35 <p><%= toggle_link l(:label_attachment_new), "add_attachment_form" %></p>
35 36 <% form_tag({ :controller => 'wiki', :action => 'add_attachment', :page => @page.title }, :multipart => true, :class => "tabular", :id => "add_attachment_form", :style => "display:none;") do %>
36 37 <%= render :partial => 'attachments/form' %>
37 38 <%= submit_tag l(:button_add) %>
38 39 <% end %>
39 40 <% end %>
40 41
41 42 <% content_for :header_tags do %>
42 43 <%= stylesheet_link_tag 'scm' %>
43 44 <% end %>
44 45
45 46 <% set_html_title @page.pretty_title %>
@@ -1,498 +1,500
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: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 ден
9 9 actionview_datehelper_time_in_words_day_plural: %d дни
10 10 actionview_datehelper_time_in_words_hour_about: около час
11 11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 12 actionview_datehelper_time_in_words_hour_about_single: около час
13 13 actionview_datehelper_time_in_words_minute: 1 минута
14 14 actionview_datehelper_time_in_words_minute_half: половин минута
15 15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 20 actionview_instancetag_blank_option: Изберете
21 21
22 22 activerecord_error_inclusion: не съществува в списъка
23 23 activerecord_error_exclusion: е запазено
24 24 activerecord_error_invalid: е невалидно
25 25 activerecord_error_confirmation: липсва одобрение
26 26 activerecord_error_accepted: трябва да се приеме
27 27 activerecord_error_empty: не може да е празно
28 28 activerecord_error_blank: не може да е празно
29 29 activerecord_error_too_long: е прекалено дълго
30 30 activerecord_error_too_short: е прекалено късо
31 31 activerecord_error_wrong_length: е с грешна дължина
32 32 activerecord_error_taken: вече съществува
33 33 activerecord_error_not_a_number: не е число
34 34 activerecord_error_not_a_date: е невалидна дата
35 35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%d.%%m.%%Y
42 42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Не'
46 46 general_text_Yes: 'Да'
47 47 general_text_no: 'не'
48 48 general_text_yes: 'да'
49 49 general_lang_name: 'Bulgarian'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 54
55 55 notice_account_updated: Профилът е обновен успешно.
56 56 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 57 notice_account_password_updated: Паролата е успешно променена.
58 58 notice_account_wrong_password: Грешна парола
59 59 notice_account_register_done: Акаунтът е създаден успешно.
60 60 notice_account_unknown_email: Непознат потребител.
61 61 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
62 62 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 63 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
64 64 notice_successful_create: Успешно създаване.
65 65 notice_successful_update: Успешно обновяване.
66 66 notice_successful_delete: Успешно изтриване.
67 67 notice_successful_connection: Успешно свързване.
68 68 notice_file_not_found: Несъществуваща или преместена страница.
69 69 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 70 notice_scm_error: Несъществуващ обект в склада.
71 71 notice_not_authorized: Нямате право на достъп до тази страница.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Вашата парола
77 77 mail_subject_register: Активация на акаунт
78 78
79 79 gui_validation_error: 1 грешка
80 80 gui_validation_error_plural: %d грешки
81 81
82 82 field_name: Име
83 83 field_description: Описание
84 84 field_summary: Тема
85 85 field_is_required: Задължително
86 86 field_firstname: Име
87 87 field_lastname: Фамилия
88 88 field_mail: Email
89 89 field_filename: Файл
90 90 field_filesize: Големина
91 91 field_downloads: Downloads
92 92 field_author: Автор
93 93 field_created_on: Създадена
94 94 field_updated_on: Обновена
95 95 field_field_format: Формат
96 96 field_is_for_all: За всички проекти
97 97 field_possible_values: Възможни стойности
98 98 field_regexp: Регулярен израз
99 99 field_min_length: Мин. дължина
100 100 field_max_length: Макс. дължина
101 101 field_value: Стойност
102 102 field_category: Категория
103 103 field_title: Заглавие
104 104 field_project: Проект
105 105 field_issue: Задача
106 106 field_status: Статус
107 107 field_notes: Бележка
108 108 field_is_closed: Затворена задача
109 109 field_is_default: Статус по подразбиране
110 110 field_html_color: Цвят
111 111 field_tracker: Тракер
112 112 field_subject: Тема
113 113 field_due_date: Крайна дата
114 114 field_assigned_to: Възложена на
115 115 field_priority: Приоритет
116 116 field_fixed_version: Версия
117 117 field_user: Потребител
118 118 field_role: Роля
119 119 field_homepage: Начална страница
120 120 field_is_public: Публичен
121 121 field_parent: Подпроект на
122 122 field_is_in_chlog: Да се вижда ли в Изменения
123 123 field_is_in_roadmap: Да се вижда ли в Пътна карта
124 124 field_login: Потребител
125 125 field_mail_notification: Известия по пощата
126 126 field_admin: Администратор
127 127 field_last_login_on: Последно свързване
128 128 field_language: Език
129 129 field_effective_date: Дата
130 130 field_password: Парола
131 131 field_new_password: Нова парола
132 132 field_password_confirmation: Потвърждение
133 133 field_version: Версия
134 134 field_type: Type
135 135 field_host: Хост
136 136 field_port: Порт
137 137 field_account: Акаунт
138 138 field_base_dn: Base DN
139 139 field_attr_login: Login attribute
140 140 field_attr_firstname: Firstname attribute
141 141 field_attr_lastname: Lastname attribute
142 142 field_attr_mail: Email attribute
143 143 field_onthefly: Динамично създаване на потребител
144 144 field_start_date: Начална дата
145 145 field_done_ratio: %% Прогрес
146 146 field_auth_source: Начин на оторизация
147 147 field_hide_mail: Скрий e-mail адреса ми
148 148 field_comments: Коментар
149 149 field_url: Адрес
150 150 field_start_page: Начална страница
151 151 field_subproject: Подпроект
152 152 field_hours: Часове
153 153 field_activity: Дейност
154 154 field_spent_on: Дата
155 155 field_identifier: Идентификатор
156 156 field_is_filter: Използва се за филтър
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Заглавие
162 163 setting_app_subtitle: Описание
163 164 setting_welcome_text: Допълнителен текст
164 165 setting_default_language: Език по подразбиране
165 166 setting_login_required: Изискване за вход
166 167 setting_self_registration: Регистрация от потребители
167 168 setting_attachment_max_size: Максимално голям приложен файл
168 169 setting_issues_export_limit: Лимит за експорт на задачи
169 170 setting_mail_from: E-mail адрес за емисии
170 171 setting_host_name: Хост
171 172 setting_text_formatting: Форматиране на текста
172 173 setting_wiki_compression: Wiki компресиране на историята
173 174 setting_feeds_limit: Лимит на Feeds
174 175 setting_autofetch_changesets: Автоматично обработване на commits в склада
175 176 setting_sys_api_enabled: Разрешаване на WS за управление на склада
176 177 setting_commit_ref_keywords: Отбелязващи ключови думи
177 178 setting_commit_fix_keywords: Приключващи ключови думи
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Потребител
183 184 label_user_plural: Потребители
184 185 label_user_new: Нов потребител
185 186 label_project: Проект
186 187 label_project_new: Нов проект
187 188 label_project_plural: Проекти
188 189 label_project_all: All Projects
189 190 label_project_latest: Последни проекти
190 191 label_issue: Задача
191 192 label_issue_new: Нова задача
192 193 label_issue_plural: Задачи
193 194 label_issue_view_all: Всички задачи
194 195 label_document: Документ
195 196 label_document_new: Нов документ
196 197 label_document_plural: Документи
197 198 label_role: Роля
198 199 label_role_plural: Роли
199 200 label_role_new: Нова роля
200 201 label_role_and_permissions: Роли и права
201 202 label_member: Член
202 203 label_member_new: Нов член
203 204 label_member_plural: Членове
204 205 label_tracker: Тракер
205 206 label_tracker_plural: Тракери
206 207 label_tracker_new: Нов тракер
207 208 label_workflow: Workflow
208 209 label_issue_status: Статус на задача
209 210 label_issue_status_plural: Статуси на задачи
210 211 label_issue_status_new: Нов статус
211 212 label_issue_category: Категория задача
212 213 label_issue_category_plural: Категории задачи
213 214 label_issue_category_new: Нова категория
214 215 label_custom_field: Измислено поле
215 216 label_custom_field_plural: Измислени полета
216 217 label_custom_field_new: Ново измислено поле
217 218 label_enumerations: Списъци
218 219 label_enumeration_new: Нова стойност
219 220 label_information: Информация
220 221 label_information_plural: Информация
221 222 label_please_login: Вход
222 223 label_register: Регистрация
223 224 label_password_lost: Забравена парола
224 225 label_home: Начало
225 226 label_my_page: Моята страница
226 227 label_my_account: Моят профил
227 228 label_my_projects: Моите проекти
228 229 label_administration: Администрация
229 230 label_login: Вход
230 231 label_logout: Изход
231 232 label_help: Помощ
232 233 label_reported_issues: Публикувани задачи
233 234 label_assigned_to_me_issues: Назначени на мен
234 235 label_last_login: Последно свързване
235 236 label_last_updates: Последно обновена
236 237 label_last_updates_plural: %d последно обновени
237 238 label_registered_on: Регистрация
238 239 label_activity: Дейност
239 240 label_new: Нов
240 241 label_logged_as: Логнат като
241 242 label_environment: Среда
242 243 label_authentication: Оторизация
243 244 label_auth_source: Начин на оторозация
244 245 label_auth_source_new: Нов начин на оторизация
245 246 label_auth_source_plural: Начини на оторизация
246 247 label_subproject_plural: Подпроекти
247 248 label_min_max_length: Мин. - Макс. дължина
248 249 label_list: Списък
249 250 label_date: Дата
250 251 label_integer: Число
251 252 label_boolean: Чекбокс
252 253 label_string: Текст
253 254 label_text: Дълъг текст
254 255 label_attribute: Атрибут
255 256 label_attribute_plural: Атрибути
256 257 label_download: %d Download
257 258 label_download_plural: %d Downloads
258 259 label_no_data: Няма изходни данни
259 260 label_change_status: Промяна на статуса
260 261 label_history: История
261 262 label_attachment: Файл
262 263 label_attachment_new: Нов файл
263 264 label_attachment_delete: Изтриване
264 265 label_attachment_plural: Файлове
265 266 label_report: Доклад
266 267 label_report_plural: Доклади
267 268 label_news: Новини
268 269 label_news_new: Добави
269 270 label_news_plural: Новини
270 271 label_news_latest: Последни новини
271 272 label_news_view_all: Виж всички
272 273 label_change_log: Изменения
273 274 label_settings: Настройки
274 275 label_overview: Общ изглед
275 276 label_version: Версия
276 277 label_version_new: Нова версия
277 278 label_version_plural: Версии
278 279 label_confirmation: Одобрение
279 280 label_export_to: Експорт към
280 281 label_read: Read...
281 282 label_public_projects: Публични проекти
282 283 label_open_issues: отворена
283 284 label_open_issues_plural: отворени
284 285 label_closed_issues: затворена
285 286 label_closed_issues_plural: затворени
286 287 label_total: Общо
287 288 label_permissions: Права
288 289 label_current_status: Текущ статус
289 290 label_new_statuses_allowed: Позволени статуси
290 291 label_all: всички
291 292 label_none: никакви
292 293 label_next: Следващ
293 294 label_previous: Предишен
294 295 label_used_by: Използва се от
295 296 label_details: Детайли
296 297 label_add_note: Добавяне на бележка
297 298 label_per_page: На страница
298 299 label_calendar: Календар
299 300 label_months_from: месеци от
300 301 label_gantt: Gantt
301 302 label_internal: Вътрешен
302 303 label_last_changes: последни %d промени
303 304 label_change_view_all: Виж всички промени
304 305 label_personalize_page: Персонализиране
305 306 label_comment: Коментар
306 307 label_comment_plural: Коментари
307 308 label_comment_add: Добавяне на коментар
308 309 label_comment_added: Добавен коментар
309 310 label_comment_delete: Изтриване на коментари
310 311 label_query: Измислена заявка
311 312 label_query_plural: Измислени заявки
312 313 label_query_new: Нова заявка
313 314 label_filter_add: Добави филтър
314 315 label_filter_plural: Филтри
315 316 label_equals: е
316 317 label_not_equals: не е
317 318 label_in_less_than: по-малко от
318 319 label_in_more_than: повече от
319 320 label_in: в следващите
320 321 label_today: днес
321 322 label_this_week: this week
322 323 label_less_than_ago: преди по-малко от
323 324 label_more_than_ago: преди повече от
324 325 label_ago: преди дни
325 326 label_contains: съдържа
326 327 label_not_contains: не съдържа
327 328 label_day_plural: дни
328 329 label_repository: Склад
329 330 label_browse: Разглеждане
330 331 label_modification: %d промяна
331 332 label_modification_plural: %d промени
332 333 label_revision: Ревизия
333 334 label_revision_plural: Ревизии
334 335 label_added: добавено
335 336 label_modified: променено
336 337 label_deleted: изтрито
337 338 label_latest_revision: Последна ревизия
338 339 label_latest_revision_plural: Последни ревизии
339 340 label_view_revisions: Виж ревизиите
340 341 label_max_size: Максимална големина
341 342 label_on: 'от'
342 343 label_sort_highest: Премести най-горе
343 344 label_sort_higher: Премести по-горе
344 345 label_sort_lower: Премести по-долу
345 346 label_sort_lowest: Премести най-долу
346 347 label_roadmap: Пътна карта
347 348 label_roadmap_due_in: Излиза след
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Няма задачи за тази версия
350 351 label_search: Търсене
351 352 label_result: %d резултат
352 353 label_result_plural: %d резултати
353 354 label_all_words: Всички думи
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki редакция
356 357 label_wiki_edit_plural: Wiki редакции
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Индекс
360 361 label_current_version: Текуща версия
361 362 label_preview: Преглед
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Подробни промени
364 365 label_issue_tracking: Тракинг
365 366 label_spent_time: Отделено време
366 367 label_f_hour: %.2f час
367 368 label_f_hour_plural: %.2f часа
368 369 label_time_tracking: Отделяне на време
369 370 label_change_plural: Промени
370 371 label_statistics: Статистики
371 372 label_commits_per_month: Commits за месец
372 373 label_commits_per_author: Commits за автор
373 374 label_view_diff: Виж разликите
374 375 label_diff_inline: хоризонтално
375 376 label_diff_side_by_side: вертикално
376 377 label_options: Опции
377 378 label_copy_workflow_from: Копирай workflow от
378 379 label_permissions_report: Справка за права
379 380 label_watched_issues: Наблюдавани задачи
380 381 label_related_issues: Свързани задачи
381 382 label_applied_status: Промени статуса на
382 383 label_loading: Зареждане...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Вход
419 420 button_submit: Изпращане
420 421 button_save: Запис
421 422 button_check_all: Маркирай всички
422 423 button_uncheck_all: Изчисти всички
423 424 button_delete: Изтриване
424 425 button_create: Създаване
425 426 button_test: Тест
426 427 button_edit: Редакция
427 428 button_add: Добавяне
428 429 button_change: Промяна
429 430 button_apply: Приложи
430 431 button_clear: Изчисти
431 432 button_lock: Заключване
432 433 button_unlock: Отключване
433 434 button_download: Download
434 435 button_list: Списък
435 436 button_view: Преглед
436 437 button_move: Преместване
437 438 button_back: Назад
438 439 button_cancel: Отказ
439 440 button_activate: Активация
440 441 button_sort: Сортиране
441 442 button_log_time: Отделяне на време
442 443 button_rollback: Върни се към тази ревизия
443 444 button_watch: Наблюдавай
444 445 button_unwatch: Спри наблюдението
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: активен
451 453 status_registered: регистриран
452 454 status_locked: заключен
453 455
454 456 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
455 457 text_regexp_info: пр. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 - без ограничения
457 459 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
458 460 text_workflow_edit: Изберете роля и тракер за да редактирате workflow
459 461 text_are_you_sure: Сигурни ли сте?
460 462 text_journal_changed: промяна от %s на %s
461 463 text_journal_set_to: установено на %s
462 464 text_journal_deleted: изтрито
463 465 text_tip_task_begin_day: задача започваща този ден
464 466 text_tip_task_end_day: задача завършваща този ден
465 467 text_tip_task_begin_end_day: задача започваща и завършваща този ден
466 468 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
467 469 text_caracters_maximum: До %d символа.
468 470 text_length_between: От %d до %d символа.
469 471 text_tracker_no_workflow: Няма дефиниран workflow за този тракер
470 472 text_unallowed_characters: Непозволени символи
471 473 text_comma_separated: Позволено е изброяване (с разделител запетая).
472 474 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
473 475
474 476 default_role_manager: Мениджър
475 477 default_role_developper: Разработчик
476 478 default_role_reporter: Публикуващ
477 479 default_tracker_bug: Бъг
478 480 default_tracker_feature: Функционалност
479 481 default_tracker_support: Поддръжка
480 482 default_issue_status_new: Нова
481 483 default_issue_status_assigned: Възложена
482 484 default_issue_status_resolved: Приключена
483 485 default_issue_status_feedback: Обратна връзка
484 486 default_issue_status_closed: Затворена
485 487 default_issue_status_rejected: Отхвърлена
486 488 default_doc_category_user: Документация за потребителя
487 489 default_doc_category_tech: Техническа документация
488 490 default_priority_low: Нисък
489 491 default_priority_normal: Нормален
490 492 default_priority_high: Висок
491 493 default_priority_urgent: Спешен
492 494 default_priority_immediate: Веднага
493 495 default_activity_design: Дизайн
494 496 default_activity_development: Разработка
495 497
496 498 enumeration_issue_priorities: Приоритети на задачи
497 499 enumeration_doc_categories: Категории документи
498 500 enumeration_activities: Дейности (time tracking)
@@ -1,498 +1,500
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 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 37 activerecord_error_circular_dependency: diese Relation würde eine zyklische Abhängigkeit erzeugen
38 38
39 39 general_fmt_age: %d Jahr
40 40 general_fmt_age_plural: %d Jahre
41 41 general_fmt_date: %%d.%%m.%%y
42 42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Nein'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nein'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Deutsch'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54 54
55 55 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 56 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 57 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 58 notice_account_wrong_password: Falsches Kennwort
59 59 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 60 notice_account_unknown_email: Unbekannter Benutzer.
61 61 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 62 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 63 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
64 64 notice_successful_create: Erfolgreich angelegt
65 65 notice_successful_update: Erfolgreiche Aktualisierung.
66 66 notice_successful_delete: Erfolgreiche Löschung.
67 67 notice_successful_connection: Verbindung erfolgreich.
68 68 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 69 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 70 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
71 71 notice_not_authorized: Sie sind nicht berechtigt auf diese Seite zuzugreifen.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Ihr redMine Kennwort
77 77 mail_subject_register: redMine Kontoaktivierung
78 78
79 79 gui_validation_error: 1 Fehler
80 80 gui_validation_error_plural: %d Fehler
81 81
82 82 field_name: Name
83 83 field_description: Beschreibung
84 84 field_summary: Zusammenfassung
85 85 field_is_required: Erforderlich
86 86 field_firstname: Vorname
87 87 field_lastname: Nachname
88 88 field_mail: Email
89 89 field_filename: Datei
90 90 field_filesize: Größe
91 91 field_downloads: Downloads
92 92 field_author: Autor
93 93 field_created_on: Angelegt
94 94 field_updated_on: Aktualisiert
95 95 field_field_format: Format
96 96 field_is_for_all: Für alle Projekte
97 97 field_possible_values: Mögliche Werte
98 98 field_regexp: Regulärer Ausdruck
99 99 field_min_length: Minimale Länge
100 100 field_max_length: Maximale Länge
101 101 field_value: Wert
102 102 field_category: Kategorie
103 103 field_title: Titel
104 104 field_project: Projekt
105 105 field_issue: Ticket
106 106 field_status: Status
107 107 field_notes: Kommentare
108 108 field_is_closed: Problem erledigt
109 109 field_is_default: Default
110 110 field_html_color: Farbe
111 111 field_tracker: Tracker
112 112 field_subject: Thema
113 113 field_due_date: Abgabedatum
114 114 field_assigned_to: Zugewiesen an
115 115 field_priority: Priorität
116 116 field_fixed_version: Erledigt in Version
117 117 field_user: Benutzer
118 118 field_role: Rolle
119 119 field_homepage: Startseite
120 120 field_is_public: Öffentlich
121 121 field_parent: Unterprojekt von
122 122 field_is_in_chlog: Ansicht im Change-Log
123 123 field_is_in_roadmap: Ansicht in der Roadmap
124 124 field_login: Mitgliedsname
125 125 field_mail_notification: Mailbenachrichtigung
126 126 field_admin: Administrator
127 127 field_last_login_on: Letzte Anmeldung
128 128 field_language: Sprache
129 129 field_effective_date: Datum
130 130 field_password: Kennwort
131 131 field_new_password: Neues Kennwort
132 132 field_password_confirmation: Bestätigung
133 133 field_version: Version
134 134 field_type: Typ
135 135 field_host: Host
136 136 field_port: Port
137 137 field_account: Konto
138 138 field_base_dn: Base DN
139 139 field_attr_login: Mitgliedsname-Attribut
140 140 field_attr_firstname: Vorname-Attribut
141 141 field_attr_lastname: Name-Attribut
142 142 field_attr_mail: Email-Attribut
143 143 field_onthefly: On-the-fly-Benutzererstellung
144 144 field_start_date: Beginn
145 145 field_done_ratio: %% erledigt
146 146 field_auth_source: Authentifizierungs-Modus
147 147 field_hide_mail: Email-Adresse nicht anzeigen
148 148 field_comments: Kommentar
149 149 field_url: URL
150 150 field_start_page: Hauptseite
151 151 field_subproject: Subprojekt von
152 152 field_hours: Stunden
153 153 field_activity: Aktivität
154 154 field_spent_on: Datum
155 155 field_identifier: Identifier
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Applikation Titel
162 163 setting_app_subtitle: Applikation Untertitel
163 164 setting_welcome_text: Willkommenstext
164 165 setting_default_language: Default Sprache
165 166 setting_login_required: Authent. erfordert
166 167 setting_self_registration: Anmeldung ermöglicht
167 168 setting_attachment_max_size: max. Dateigröße
168 169 setting_issues_export_limit: Limit Export Tickets
169 170 setting_mail_from: Mail Absender
170 171 setting_host_name: Host Name
171 172 setting_text_formatting: Textformatierung
172 173 setting_wiki_compression: Wiki-Historie komprimieren
173 174 setting_feeds_limit: Limit Feed Inhalt
174 175 setting_autofetch_changesets: Autofetch commits
175 176 setting_sys_api_enabled: Enable WS for repository management
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Benutzer
183 184 label_user_plural: Benutzer
184 185 label_user_new: Neuer Benutzer
185 186 label_project: Projekt
186 187 label_project_new: Neues Projekt
187 188 label_project_plural: Projekte
188 189 label_project_all: All Projects
189 190 label_project_latest: Neueste Projekte
190 191 label_issue: Ticket
191 192 label_issue_new: Neues Ticket
192 193 label_issue_plural: Tickets
193 194 label_issue_view_all: Alle Tickets ansehen
194 195 label_document: Dokument
195 196 label_document_new: Neues Dokument
196 197 label_document_plural: Dokumente
197 198 label_role: Rolle
198 199 label_role_plural: Rollen
199 200 label_role_new: Neue Rolle
200 201 label_role_and_permissions: Rollen und Rechte
201 202 label_member: Mitglied
202 203 label_member_new: Neues Mitglied
203 204 label_member_plural: Mitglieder
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Tracker
206 207 label_tracker_new: Neuer Tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Ticket-Status
209 210 label_issue_status_plural: Ticket-Status
210 211 label_issue_status_new: Neuer Status
211 212 label_issue_category: Ticket-Kategorie
212 213 label_issue_category_plural: Ticket-Kategorien
213 214 label_issue_category_new: Neue Kategorie
214 215 label_custom_field: Benutzerdefiniertes Feld
215 216 label_custom_field_plural: Benutzerdefinierte Felder
216 217 label_custom_field_new: Neues Feld
217 218 label_enumerations: Aufzählungen
218 219 label_enumeration_new: Neuer Wert
219 220 label_information: Information
220 221 label_information_plural: Informationen
221 222 label_please_login: Anmelden
222 223 label_register: Anmelden
223 224 label_password_lost: Kennwort vergessen
224 225 label_home: Hauptseite
225 226 label_my_page: Meine Seite
226 227 label_my_account: Mein Konto
227 228 label_my_projects: Meine Projekte
228 229 label_administration: Administration
229 230 label_login: Einloggen
230 231 label_logout: Abmelden
231 232 label_help: Hilfe
232 233 label_reported_issues: Gemeldete Tickets
233 234 label_assigned_to_me_issues: Mir zugewiesen
234 235 label_last_login: Letzte Anmeldung
235 236 label_last_updates: zuletzt aktualisiert
236 237 label_last_updates_plural: %d zuletzt aktualisierten
237 238 label_registered_on: Angemeldet am
238 239 label_activity: Aktivität
239 240 label_new: Neu
240 241 label_logged_as: Angemeldet als
241 242 label_environment: Environment
242 243 label_authentication: Authentifizierung
243 244 label_auth_source: Authentifizierungs-Modus
244 245 label_auth_source_new: Neuer Authentifizierungs-Modus
245 246 label_auth_source_plural: Authentifizierungs-Arten
246 247 label_subproject_plural: Sub Projekte
247 248 label_min_max_length: Min - Max Länge
248 249 label_list: Liste
249 250 label_date: Datum
250 251 label_integer: Zahl
251 252 label_boolean: Boolean
252 253 label_string: Text
253 254 label_text: Langer Text
254 255 label_attribute: Attribut
255 256 label_attribute_plural: Attribute
256 257 label_download: %d Download
257 258 label_download_plural: %d Downloads
258 259 label_no_data: Nichts anzuzeigen
259 260 label_change_status: Statuswechsel
260 261 label_history: Historie
261 262 label_attachment: Datei
262 263 label_attachment_new: Neue Datei
263 264 label_attachment_delete: Anhang löschen
264 265 label_attachment_plural: Dateien
265 266 label_report: Bericht
266 267 label_report_plural: Berichte
267 268 label_news: News
268 269 label_news_new: News hinzufügen
269 270 label_news_plural: News
270 271 label_news_latest: Letzte News
271 272 label_news_view_all: Alle News anzeigen
272 273 label_change_log: Change-Log
273 274 label_settings: Konfiguration
274 275 label_overview: Übersicht
275 276 label_version: Version
276 277 label_version_new: Neue Version
277 278 label_version_plural: Versionen
278 279 label_confirmation: Bestätigung
279 280 label_export_to: Export zu
280 281 label_read: Lesen...
281 282 label_public_projects: Öffentliche Projekte
282 283 label_open_issues: offen
283 284 label_open_issues_plural: offen
284 285 label_closed_issues: geschlossen
285 286 label_closed_issues_plural: geschlossen
286 287 label_total: Gesamtzahl
287 288 label_permissions: Berechtigungen
288 289 label_current_status: Gegenwärtiger Status
289 290 label_new_statuses_allowed: Neue Berechtigungen
290 291 label_all: alle
291 292 label_none: kein
292 293 label_next: Weiter
293 294 label_previous: Zurück
294 295 label_used_by: Benutzt von
295 296 label_details: Details
296 297 label_add_note: Kommentar hinzufügen
297 298 label_per_page: Pro Seite
298 299 label_calendar: Kalender
299 300 label_months_from: Monate ab
300 301 label_gantt: Gantt
301 302 label_internal: Intern
302 303 label_last_changes: %d letzte Änderungen
303 304 label_change_view_all: Alle Änderungen ansehen
304 305 label_personalize_page: Diese Seite anpassen
305 306 label_comment: Kommentar
306 307 label_comment_plural: Kommentare
307 308 label_comment_add: Kommentar hinzufügen
308 309 label_comment_added: Kommentar hinzugefügt
309 310 label_comment_delete: Kommentar löschen
310 311 label_query: Benutzerdefinierte Abfrage
311 312 label_query_plural: Benutzerdefinierte Berichte
312 313 label_query_new: Neuer Bericht
313 314 label_filter_add: Filter hinzufügen
314 315 label_filter_plural: Filter
315 316 label_equals: ist
316 317 label_not_equals: ist nicht
317 318 label_in_less_than: in weniger als
318 319 label_in_more_than: in mehr als
319 320 label_in: an
320 321 label_today: heute
321 322 label_this_week: this week
322 323 label_less_than_ago: vor weniger als
323 324 label_more_than_ago: vor mehr als
324 325 label_ago: vor
325 326 label_contains: enthält
326 327 label_not_contains: enthält nicht
327 328 label_day_plural: Tage
328 329 label_repository: Projektarchiv
329 330 label_browse: Codebrowser
330 331 label_modification: %d Änderung
331 332 label_modification_plural: %d Änderungen
332 333 label_revision: Revision
333 334 label_revision_plural: Revisionen
334 335 label_added: hinzugefügt
335 336 label_modified: geändert
336 337 label_deleted: gelöscht
337 338 label_latest_revision: Aktuellste Revision
338 339 label_latest_revision_plural: Aktuellste Revisionen
339 340 label_view_revisions: Revisionen anzeigen
340 341 label_max_size: Maximale Größe
341 342 label_on: von
342 343 label_sort_highest: Anfang
343 344 label_sort_higher: eins höher
344 345 label_sort_lower: eins tiefer
345 346 label_sort_lowest: Ende
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Fällig in
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Keine Tickets für diese Version
350 351 label_search: Suche
351 352 label_result: %d Resultat
352 353 label_result_plural: %d Resultate
353 354 label_all_words: Alle Wörter
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki Bearbeitung
356 357 label_wiki_edit_plural: Wiki Bearbeitungen
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Index
360 361 label_current_version: Gegenwärtige Version
361 362 label_preview: Vorschau
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Details aller Änderungen
364 365 label_issue_tracking: Tickets
365 366 label_spent_time: Aufgewendete Zeit
366 367 label_f_hour: %.2f Stunde
367 368 label_f_hour_plural: %.2f Stunden
368 369 label_time_tracking: Zeiterfassung
369 370 label_change_plural: Änderungen
370 371 label_statistics: Statistiken
371 372 label_commits_per_month: Übertragungen pro Monat
372 373 label_commits_per_author: Übertragungen pro Autor
373 374 label_view_diff: View differences
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: side by side
376 377 label_options: Options
377 378 label_copy_workflow_from: Copy workflow from
378 379 label_permissions_report: Permissions report
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: Neues Forum
401 402 label_board_plural: Foren
402 403 label_topic_plural: Themen
403 404 label_message_plural: Nachrichten
404 405 label_message_last: Letzte Nachricht
405 406 label_message_new: Neue Nachricht
406 407 label_reply_plural: Antworten
407 408 label_send_information: Sende Kontoinformationen zum Benutzer
408 409 label_year: Jahr
409 410 label_month: Monat
410 411 label_week: Woche
411 412 label_date_from: Von
412 413 label_date_to: Bis
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Einloggen
419 420 button_submit: OK
420 421 button_save: Speichern
421 422 button_check_all: Alles auswählen
422 423 button_uncheck_all: Alles abwählen
423 424 button_delete: Löschen
424 425 button_create: Anlegen
425 426 button_test: Testen
426 427 button_edit: Bearbeiten
427 428 button_add: Hinzufügen
428 429 button_change: Wechseln
429 430 button_apply: Anwenden
430 431 button_clear: Zurücksetzen
431 432 button_lock: Sperren
432 433 button_unlock: Entsperren
433 434 button_download: Download
434 435 button_list: Liste
435 436 button_view: Siehe
436 437 button_move: Verschieben
437 438 button_back: Zurück
438 439 button_cancel: Abbrechen
439 440 button_activate: Aktivieren
440 441 button_sort: Sortieren
441 442 button_log_time: Log time
442 443 button_rollback: Rollback to this version
443 444 button_watch: Watch
444 445 button_unwatch: Unwatch
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: aktiv
451 453 status_registered: angemeldet
452 454 status_locked: gesperrt
453 455
454 456 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
455 457 text_regexp_info: eg. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 heißt keine Beschränkung
457 459 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
458 460 text_workflow_edit: Workflow zum Bearbeiten auswählen
459 461 text_are_you_sure: Sind Sie sicher?
460 462 text_journal_changed: geändert von %s zu %s
461 463 text_journal_set_to: gestellt zu %s
462 464 text_journal_deleted: gelöscht
463 465 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
464 466 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
465 467 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
466 468 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
467 469 text_caracters_maximum: %d characters maximum.
468 470 text_length_between: Length between %d and %d characters.
469 471 text_tracker_no_workflow: No workflow defined for this tracker
470 472 text_unallowed_characters: Unallowed characters
471 473 text_comma_separated: Multiple values allowed (comma separated).
472 474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
473 475
474 476 default_role_manager: Manager
475 477 default_role_developper: Developer
476 478 default_role_reporter: Reporter
477 479 default_tracker_bug: Fehler
478 480 default_tracker_feature: Feature
479 481 default_tracker_support: Support
480 482 default_issue_status_new: Neu
481 483 default_issue_status_assigned: Zugewiesen
482 484 default_issue_status_resolved: Gelöst
483 485 default_issue_status_feedback: Feedback
484 486 default_issue_status_closed: Erledigt
485 487 default_issue_status_rejected: Abgewiesen
486 488 default_doc_category_user: Benutzerdokumentation
487 489 default_doc_category_tech: Technische Dokumentation
488 490 default_priority_low: Niedrig
489 491 default_priority_normal: Normal
490 492 default_priority_high: Hoch
491 493 default_priority_urgent: Dringend
492 494 default_priority_immediate: Sofort
493 495 default_activity_design: Design
494 496 default_activity_development: Development
495 497
496 498 enumeration_issue_priorities: Ticket-Prioritäten
497 499 enumeration_doc_categories: Dokumentenkategorien
498 500 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,498 +1,500
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 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Yes'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'yes'
49 49 general_lang_name: 'English'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54 54
55 55 notice_account_updated: Account was successfully updated.
56 56 notice_account_invalid_creditentials: Invalid user or password
57 57 notice_account_password_updated: Password was successfully updated.
58 58 notice_account_wrong_password: Wrong password
59 59 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 60 notice_account_unknown_email: Unknown user.
61 61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 63 notice_account_activated: Your account has been activated. You can now log in.
64 64 notice_successful_create: Successful creation.
65 65 notice_successful_update: Successful update.
66 66 notice_successful_delete: Successful deletion.
67 67 notice_successful_connection: Successful connection.
68 68 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 69 notice_locking_conflict: Data have been updated by another user.
70 70 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Your redMine password
77 77 mail_subject_register: redMine account activation
78 78
79 79 gui_validation_error: 1 error
80 80 gui_validation_error_plural: %d errors
81 81
82 82 field_name: Name
83 83 field_description: Description
84 84 field_summary: Summary
85 85 field_is_required: Required
86 86 field_firstname: Firstname
87 87 field_lastname: Lastname
88 88 field_mail: Email
89 89 field_filename: File
90 90 field_filesize: Size
91 91 field_downloads: Downloads
92 92 field_author: Author
93 93 field_created_on: Created
94 94 field_updated_on: Updated
95 95 field_field_format: Format
96 96 field_is_for_all: For all projects
97 97 field_possible_values: Possible values
98 98 field_regexp: Regular expression
99 99 field_min_length: Minimum length
100 100 field_max_length: Maximum length
101 101 field_value: Value
102 102 field_category: Category
103 103 field_title: Title
104 104 field_project: Project
105 105 field_issue: Issue
106 106 field_status: Status
107 107 field_notes: Notes
108 108 field_is_closed: Issue closed
109 109 field_is_default: Default status
110 110 field_html_color: Color
111 111 field_tracker: Tracker
112 112 field_subject: Subject
113 113 field_due_date: Due date
114 114 field_assigned_to: Assigned to
115 115 field_priority: Priority
116 116 field_fixed_version: Fixed version
117 117 field_user: User
118 118 field_role: Role
119 119 field_homepage: Homepage
120 120 field_is_public: Public
121 121 field_parent: Subproject of
122 122 field_is_in_chlog: Issues displayed in changelog
123 123 field_is_in_roadmap: Issues displayed in roadmap
124 124 field_login: Login
125 125 field_mail_notification: Mail notifications
126 126 field_admin: Administrator
127 127 field_last_login_on: Last connection
128 128 field_language: Language
129 129 field_effective_date: Date
130 130 field_password: Password
131 131 field_new_password: New password
132 132 field_password_confirmation: Confirmation
133 133 field_version: Version
134 134 field_type: Type
135 135 field_host: Host
136 136 field_port: Port
137 137 field_account: Account
138 138 field_base_dn: Base DN
139 139 field_attr_login: Login attribute
140 140 field_attr_firstname: Firstname attribute
141 141 field_attr_lastname: Lastname attribute
142 142 field_attr_mail: Email attribute
143 143 field_onthefly: On-the-fly user creation
144 144 field_start_date: Start
145 145 field_done_ratio: %% Done
146 146 field_auth_source: Authentication mode
147 147 field_hide_mail: Hide my email address
148 148 field_comments: Comment
149 149 field_url: URL
150 150 field_start_page: Start page
151 151 field_subproject: Subproject
152 152 field_hours: Hours
153 153 field_activity: Activity
154 154 field_spent_on: Date
155 155 field_identifier: Identifier
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Application title
162 163 setting_app_subtitle: Application subtitle
163 164 setting_welcome_text: Welcome text
164 165 setting_default_language: Default language
165 166 setting_login_required: Authent. required
166 167 setting_self_registration: Self-registration enabled
167 168 setting_attachment_max_size: Attachment max. size
168 169 setting_issues_export_limit: Issues export limit
169 170 setting_mail_from: Emission mail address
170 171 setting_host_name: Host name
171 172 setting_text_formatting: Text formatting
172 173 setting_wiki_compression: Wiki history compression
173 174 setting_feeds_limit: Feed content limit
174 175 setting_autofetch_changesets: Autofetch commits
175 176 setting_sys_api_enabled: Enable WS for repository management
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: User
183 184 label_user_plural: Users
184 185 label_user_new: New user
185 186 label_project: Project
186 187 label_project_new: New project
187 188 label_project_plural: Projects
188 189 label_project_all: All Projects
189 190 label_project_latest: Latest projects
190 191 label_issue: Issue
191 192 label_issue_new: New issue
192 193 label_issue_plural: Issues
193 194 label_issue_view_all: View all issues
194 195 label_document: Document
195 196 label_document_new: New document
196 197 label_document_plural: Documents
197 198 label_role: Role
198 199 label_role_plural: Roles
199 200 label_role_new: New role
200 201 label_role_and_permissions: Roles and permissions
201 202 label_member: Member
202 203 label_member_new: New member
203 204 label_member_plural: Members
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Trackers
206 207 label_tracker_new: New tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Issue status
209 210 label_issue_status_plural: Issue statuses
210 211 label_issue_status_new: New status
211 212 label_issue_category: Issue category
212 213 label_issue_category_plural: Issue categories
213 214 label_issue_category_new: New category
214 215 label_custom_field: Custom field
215 216 label_custom_field_plural: Custom fields
216 217 label_custom_field_new: New custom field
217 218 label_enumerations: Enumerations
218 219 label_enumeration_new: New value
219 220 label_information: Information
220 221 label_information_plural: Information
221 222 label_please_login: Please login
222 223 label_register: Register
223 224 label_password_lost: Lost password
224 225 label_home: Home
225 226 label_my_page: My page
226 227 label_my_account: My account
227 228 label_my_projects: My projects
228 229 label_administration: Administration
229 230 label_login: Login
230 231 label_logout: Logout
231 232 label_help: Help
232 233 label_reported_issues: Reported issues
233 234 label_assigned_to_me_issues: Issues assigned to me
234 235 label_last_login: Last connection
235 236 label_last_updates: Last updated
236 237 label_last_updates_plural: %d last updated
237 238 label_registered_on: Registered on
238 239 label_activity: Activity
239 240 label_new: New
240 241 label_logged_as: Logged as
241 242 label_environment: Environment
242 243 label_authentication: Authentication
243 244 label_auth_source: Authentication mode
244 245 label_auth_source_new: New authentication mode
245 246 label_auth_source_plural: Authentication modes
246 247 label_subproject_plural: Subprojects
247 248 label_min_max_length: Min - Max length
248 249 label_list: List
249 250 label_date: Date
250 251 label_integer: Integer
251 252 label_boolean: Boolean
252 253 label_string: Text
253 254 label_text: Long text
254 255 label_attribute: Attribute
255 256 label_attribute_plural: Attributes
256 257 label_download: %d Download
257 258 label_download_plural: %d Downloads
258 259 label_no_data: No data to display
259 260 label_change_status: Change status
260 261 label_history: History
261 262 label_attachment: File
262 263 label_attachment_new: New file
263 264 label_attachment_delete: Delete file
264 265 label_attachment_plural: Files
265 266 label_report: Report
266 267 label_report_plural: Reports
267 268 label_news: News
268 269 label_news_new: Add news
269 270 label_news_plural: News
270 271 label_news_latest: Latest news
271 272 label_news_view_all: View all news
272 273 label_change_log: Change log
273 274 label_settings: Settings
274 275 label_overview: Overview
275 276 label_version: Version
276 277 label_version_new: New version
277 278 label_version_plural: Versions
278 279 label_confirmation: Confirmation
279 280 label_export_to: Export to
280 281 label_read: Read...
281 282 label_public_projects: Public projects
282 283 label_open_issues: open
283 284 label_open_issues_plural: open
284 285 label_closed_issues: closed
285 286 label_closed_issues_plural: closed
286 287 label_total: Total
287 288 label_permissions: Permissions
288 289 label_current_status: Current status
289 290 label_new_statuses_allowed: New statuses allowed
290 291 label_all: all
291 292 label_none: none
292 293 label_next: Next
293 294 label_previous: Previous
294 295 label_used_by: Used by
295 296 label_details: Details
296 297 label_add_note: Add a note
297 298 label_per_page: Per page
298 299 label_calendar: Calendar
299 300 label_months_from: months from
300 301 label_gantt: Gantt
301 302 label_internal: Internal
302 303 label_last_changes: last %d changes
303 304 label_change_view_all: View all changes
304 305 label_personalize_page: Personalize this page
305 306 label_comment: Comment
306 307 label_comment_plural: Comments
307 308 label_comment_add: Add a comment
308 309 label_comment_added: Comment added
309 310 label_comment_delete: Delete comments
310 311 label_query: Custom query
311 312 label_query_plural: Custom queries
312 313 label_query_new: New query
313 314 label_filter_add: Add filter
314 315 label_filter_plural: Filters
315 316 label_equals: is
316 317 label_not_equals: is not
317 318 label_in_less_than: in less than
318 319 label_in_more_than: in more than
319 320 label_in: in
320 321 label_today: today
321 322 label_this_week: this week
322 323 label_less_than_ago: less than days ago
323 324 label_more_than_ago: more than days ago
324 325 label_ago: days ago
325 326 label_contains: contains
326 327 label_not_contains: doesn't contain
327 328 label_day_plural: days
328 329 label_repository: Repository
329 330 label_browse: Browse
330 331 label_modification: %d change
331 332 label_modification_plural: %d changes
332 333 label_revision: Revision
333 334 label_revision_plural: Revisions
334 335 label_added: added
335 336 label_modified: modified
336 337 label_deleted: deleted
337 338 label_latest_revision: Latest revision
338 339 label_latest_revision_plural: Latest revisions
339 340 label_view_revisions: View revisions
340 341 label_max_size: Maximum size
341 342 label_on: 'on'
342 343 label_sort_highest: Move to top
343 344 label_sort_higher: Move up
344 345 label_sort_lower: Move down
345 346 label_sort_lowest: Move to bottom
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Due in
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: No issues for this version
350 351 label_search: Search
351 352 label_result: %d result
352 353 label_result_plural: %d results
353 354 label_all_words: All words
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki edit
356 357 label_wiki_edit_plural: Wiki edits
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Index
360 361 label_current_version: Current version
361 362 label_preview: Preview
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Details of all changes
364 365 label_issue_tracking: Issue tracking
365 366 label_spent_time: Spent time
366 367 label_f_hour: %.2f hour
367 368 label_f_hour_plural: %.2f hours
368 369 label_time_tracking: Time tracking
369 370 label_change_plural: Changes
370 371 label_statistics: Statistics
371 372 label_commits_per_month: Commits per month
372 373 label_commits_per_author: Commits per author
373 374 label_view_diff: View differences
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: side by side
376 377 label_options: Options
377 378 label_copy_workflow_from: Copy workflow from
378 379 label_permissions_report: Permissions report
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Login
419 420 button_submit: Submit
420 421 button_save: Save
421 422 button_check_all: Check all
422 423 button_uncheck_all: Uncheck all
423 424 button_delete: Delete
424 425 button_create: Create
425 426 button_test: Test
426 427 button_edit: Edit
427 428 button_add: Add
428 429 button_change: Change
429 430 button_apply: Apply
430 431 button_clear: Clear
431 432 button_lock: Lock
432 433 button_unlock: Unlock
433 434 button_download: Download
434 435 button_list: List
435 436 button_view: View
436 437 button_move: Move
437 438 button_back: Back
438 439 button_cancel: Cancel
439 440 button_activate: Activate
440 441 button_sort: Sort
441 442 button_log_time: Log time
442 443 button_rollback: Rollback to this version
443 444 button_watch: Watch
444 445 button_unwatch: Unwatch
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: active
451 453 status_registered: registered
452 454 status_locked: locked
453 455
454 456 text_select_mail_notifications: Select actions for which mail notifications should be sent.
455 457 text_regexp_info: eg. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 means no restriction
457 459 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
458 460 text_workflow_edit: Select a role and a tracker to edit the workflow
459 461 text_are_you_sure: Are you sure ?
460 462 text_journal_changed: changed from %s to %s
461 463 text_journal_set_to: set to %s
462 464 text_journal_deleted: deleted
463 465 text_tip_task_begin_day: task beginning this day
464 466 text_tip_task_end_day: task ending this day
465 467 text_tip_task_begin_end_day: task beginning and ending this day
466 468 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
467 469 text_caracters_maximum: %d characters maximum.
468 470 text_length_between: Length between %d and %d characters.
469 471 text_tracker_no_workflow: No workflow defined for this tracker
470 472 text_unallowed_characters: Unallowed characters
471 473 text_comma_separated: Multiple values allowed (comma separated).
472 474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
473 475
474 476 default_role_manager: Manager
475 477 default_role_developper: Developer
476 478 default_role_reporter: Reporter
477 479 default_tracker_bug: Bug
478 480 default_tracker_feature: Feature
479 481 default_tracker_support: Support
480 482 default_issue_status_new: New
481 483 default_issue_status_assigned: Assigned
482 484 default_issue_status_resolved: Resolved
483 485 default_issue_status_feedback: Feedback
484 486 default_issue_status_closed: Closed
485 487 default_issue_status_rejected: Rejected
486 488 default_doc_category_user: User documentation
487 489 default_doc_category_tech: Technical documentation
488 490 default_priority_low: Low
489 491 default_priority_normal: Normal
490 492 default_priority_high: High
491 493 default_priority_urgent: Urgent
492 494 default_priority_immediate: Immediate
493 495 default_activity_design: Design
494 496 default_activity_development: Development
495 497
496 498 enumeration_issue_priorities: Issue priorities
497 499 enumeration_doc_categories: Document categories
498 500 enumeration_activities: Activities (time tracking)
@@ -1,498 +1,500
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 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d año
40 40 general_fmt_age_plural: %d años
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Sí'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'sí'
49 49 general_lang_name: 'Español'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 54
55 55 notice_account_updated: Account was successfully updated.
56 56 notice_account_invalid_creditentials: Invalid user or password
57 57 notice_account_password_updated: Password was successfully updated.
58 58 notice_account_wrong_password: Wrong password
59 59 notice_account_register_done: Account was successfully created.
60 60 notice_account_unknown_email: Unknown user.
61 61 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 62 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 63 notice_account_activated: Your account has been activated. You can now log in.
64 64 notice_successful_create: Successful creation.
65 65 notice_successful_update: Successful update.
66 66 notice_successful_delete: Successful deletion.
67 67 notice_successful_connection: Successful connection.
68 68 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
69 69 notice_locking_conflict: Data have been updated by another user.
70 70 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Tu contraseña del redMine
77 77 mail_subject_register: Activación de la cuenta del redMine
78 78
79 79 gui_validation_error: 1 error
80 80 gui_validation_error_plural: %d errores
81 81
82 82 field_name: Nombre
83 83 field_description: Descripción
84 84 field_summary: Resumen
85 85 field_is_required: Obligatorio
86 86 field_firstname: Nombre
87 87 field_lastname: Apellido
88 88 field_mail: Email
89 89 field_filename: Fichero
90 90 field_filesize: Tamaño
91 91 field_downloads: Telecargas
92 92 field_author: Autor
93 93 field_created_on: Creado
94 94 field_updated_on: Actualizado
95 95 field_field_format: Formato
96 96 field_is_for_all: Para todos los proyectos
97 97 field_possible_values: Valores posibles
98 98 field_regexp: Expresión regular
99 99 field_min_length: Longitud mínima
100 100 field_max_length: Longitud máxima
101 101 field_value: Valor
102 102 field_category: Categoría
103 103 field_title: Título
104 104 field_project: Proyecto
105 105 field_issue: Petición
106 106 field_status: Estatuto
107 107 field_notes: Notas
108 108 field_is_closed: Petición resuelta
109 109 field_is_default: Estatuto por defecto
110 110 field_html_color: Color
111 111 field_tracker: Tracker
112 112 field_subject: Tema
113 113 field_due_date: Fecha debida
114 114 field_assigned_to: Asignado a
115 115 field_priority: Prioridad
116 116 field_fixed_version: Versión corregida
117 117 field_user: Usuario
118 118 field_role: Papel
119 119 field_homepage: Sitio web
120 120 field_is_public: Público
121 121 field_parent: Proyecto secundario de
122 122 field_is_in_chlog: Consultar las peticiones en el histórico
123 123 field_is_in_roadmap: Consultar las peticiones en el roadmap
124 124 field_login: Identificador
125 125 field_mail_notification: Notificación por mail
126 126 field_admin: Administrador
127 127 field_last_login_on: Última conexión
128 128 field_language: Lengua
129 129 field_effective_date: Fecha
130 130 field_password: Contraseña
131 131 field_new_password: Nueva contraseña
132 132 field_password_confirmation: Confirmación
133 133 field_version: Versión
134 134 field_type: Tipo
135 135 field_host: Anfitrión
136 136 field_port: Puerto
137 137 field_account: Cuenta
138 138 field_base_dn: Base DN
139 139 field_attr_login: Cualidad del identificador
140 140 field_attr_firstname: Cualidad del nombre
141 141 field_attr_lastname: Cualidad del apellido
142 142 field_attr_mail: Cualidad del Email
143 143 field_onthefly: Creación del usuario On-the-fly
144 144 field_start_date: Comienzo
145 145 field_done_ratio: %% Realizado
146 146 field_auth_source: Modo de la autentificación
147 147 field_hide_mail: Ocultar mi email address
148 148 field_comments: Comentario
149 149 field_url: URL
150 150 field_start_page: Página principal
151 151 field_subproject: Proyecto secundario
152 152 field_hours: Hours
153 153 field_activity: Activity
154 154 field_spent_on: Fecha
155 155 field_identifier: Identifier
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Título del aplicación
162 163 setting_app_subtitle: Subtítulo del aplicación
163 164 setting_welcome_text: Texto acogida
164 165 setting_default_language: Lengua del defecto
165 166 setting_login_required: Autentif. requerida
166 167 setting_self_registration: Registro permitido
167 168 setting_attachment_max_size: Tamaño máximo del fichero
168 169 setting_issues_export_limit: Issues export limit
169 170 setting_mail_from: Email de la emisión
170 171 setting_host_name: Nombre de anfitrión
171 172 setting_text_formatting: Formato de texto
172 173 setting_wiki_compression: Compresión de la historia de Wiki
173 174 setting_feeds_limit: Feed content limit
174 175 setting_autofetch_changesets: Autofetch commits
175 176 setting_sys_api_enabled: Enable WS for repository management
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Usuario
183 184 label_user_plural: Usuarios
184 185 label_user_new: Nuevo usuario
185 186 label_project: Proyecto
186 187 label_project_new: Nuevo proyecto
187 188 label_project_plural: Proyectos
188 189 label_project_all: All Projects
189 190 label_project_latest: Los proyectos más últimos
190 191 label_issue: Petición
191 192 label_issue_new: Nueva petición
192 193 label_issue_plural: Peticiones
193 194 label_issue_view_all: Ver todas las peticiones
194 195 label_document: Documento
195 196 label_document_new: Nuevo documento
196 197 label_document_plural: Documentos
197 198 label_role: Papel
198 199 label_role_plural: Papeles
199 200 label_role_new: Nuevo papel
200 201 label_role_and_permissions: Papeles y permisos
201 202 label_member: Miembro
202 203 label_member_new: Nuevo miembro
203 204 label_member_plural: Miembros
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Trackers
206 207 label_tracker_new: Nuevo tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Estatuto de petición
209 210 label_issue_status_plural: Estatutos de las peticiones
210 211 label_issue_status_new: Nuevo estatuto
211 212 label_issue_category: Categoría de las peticiones
212 213 label_issue_category_plural: Categorías de las peticiones
213 214 label_issue_category_new: Nueva categoría
214 215 label_custom_field: Campo personalizado
215 216 label_custom_field_plural: Campos personalizados
216 217 label_custom_field_new: Nuevo campo personalizado
217 218 label_enumerations: Listas de valores
218 219 label_enumeration_new: Nuevo valor
219 220 label_information: Informacion
220 221 label_information_plural: Informaciones
221 222 label_please_login: Conexión
222 223 label_register: Registrar
223 224 label_password_lost: ¿Olvidaste la contraseña?
224 225 label_home: Acogida
225 226 label_my_page: Mi página
226 227 label_my_account: Mi cuenta
227 228 label_my_projects: Mis proyectos
228 229 label_administration: Administración
229 230 label_login: Conexión
230 231 label_logout: Desconexión
231 232 label_help: Ayuda
232 233 label_reported_issues: Peticiones registradas
233 234 label_assigned_to_me_issues: Peticiones que me están asignadas
234 235 label_last_login: Última conexión
235 236 label_last_updates: Actualizado
236 237 label_last_updates_plural: %d Actualizados
237 238 label_registered_on: Inscrito el
238 239 label_activity: Actividad
239 240 label_new: Nuevo
240 241 label_logged_as: Conectado como
241 242 label_environment: Environment
242 243 label_authentication: Autentificación
243 244 label_auth_source: Modo de la autentificación
244 245 label_auth_source_new: Nuevo modo de la autentificación
245 246 label_auth_source_plural: Modos de la autentificación
246 247 label_subproject_plural: Proyectos secundarios
247 248 label_min_max_length: Longitud mín - máx
248 249 label_list: Lista
249 250 label_date: Fecha
250 251 label_integer: Número
251 252 label_boolean: Boleano
252 253 label_string: Texto
253 254 label_text: Texto largo
254 255 label_attribute: Cualidad
255 256 label_attribute_plural: Cualidades
256 257 label_download: %d Telecarga
257 258 label_download_plural: %d Telecargas
258 259 label_no_data: Ningunos datos a exhibir
259 260 label_change_status: Cambiar el estatuto
260 261 label_history: Histórico
261 262 label_attachment: Fichero
262 263 label_attachment_new: Nuevo fichero
263 264 label_attachment_delete: Suprimir el fichero
264 265 label_attachment_plural: Ficheros
265 266 label_report: Informe
266 267 label_report_plural: Informes
267 268 label_news: Noticia
268 269 label_news_new: Nueva noticia
269 270 label_news_plural: Noticias
270 271 label_news_latest: Últimas noticias
271 272 label_news_view_all: Ver todas las noticias
272 273 label_change_log: Cambios
273 274 label_settings: Configuración
274 275 label_overview: Vistazo
275 276 label_version: Versión
276 277 label_version_new: Nueva versión
277 278 label_version_plural: Versiónes
278 279 label_confirmation: Confirmación
279 280 label_export_to: Exportar a
280 281 label_read: Leer...
281 282 label_public_projects: Proyectos publicos
282 283 label_open_issues: abierta
283 284 label_open_issues_plural: abiertas
284 285 label_closed_issues: cerrada
285 286 label_closed_issues_plural: cerradas
286 287 label_total: Total
287 288 label_permissions: Permisos
288 289 label_current_status: Estado actual
289 290 label_new_statuses_allowed: Nuevos estatutos autorizados
290 291 label_all: todos
291 292 label_none: ninguno
292 293 label_next: Próximo
293 294 label_previous: Precedente
294 295 label_used_by: Utilizado por
295 296 label_details: Detalles
296 297 label_add_note: Agregar una nota
297 298 label_per_page: Por la página
298 299 label_calendar: Calendario
299 300 label_months_from: meses de
300 301 label_gantt: Gantt
301 302 label_internal: Interno
302 303 label_last_changes: %d cambios del último
303 304 label_change_view_all: Ver todos los cambios
304 305 label_personalize_page: Personalizar esta página
305 306 label_comment: Comentario
306 307 label_comment_plural: Comentarios
307 308 label_comment_add: Agregar un comentario
308 309 label_comment_added: Comentario agregó
309 310 label_comment_delete: Suprimir comentarios
310 311 label_query: Pregunta personalizada
311 312 label_query_plural: Preguntas personalizadas
312 313 label_query_new: Nueva preguntas
313 314 label_filter_add: Agregar el filtro
314 315 label_filter_plural: Filtros
315 316 label_equals: igual
316 317 label_not_equals: no igual
317 318 label_in_less_than: en menos que
318 319 label_in_more_than: en más que
319 320 label_in: en
320 321 label_today: hoy
321 322 label_this_week: this week
322 323 label_less_than_ago: hace menos de
323 324 label_more_than_ago: hace más de
324 325 label_ago: hace
325 326 label_contains: contiene
326 327 label_not_contains: no contiene
327 328 label_day_plural: días
328 329 label_repository: Depósito
329 330 label_browse: Hojear
330 331 label_modification: %d modificación
331 332 label_modification_plural: %d modificaciones
332 333 label_revision: Revisión
333 334 label_revision_plural: Revisiones
334 335 label_added: agregado
335 336 label_modified: modificado
336 337 label_deleted: suprimido
337 338 label_latest_revision: La revisión más última
338 339 label_latest_revision_plural: Latest revisions
339 340 label_view_revisions: Ver las revisiones
340 341 label_max_size: Tamaño máximo
341 342 label_on: en
342 343 label_sort_highest: Primero
343 344 label_sort_higher: Subir
344 345 label_sort_lower: Bajar
345 346 label_sort_lowest: Último
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Due in
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: No issues for this version
350 351 label_search: Búsqueda
351 352 label_result: %d resultado
352 353 label_result_plural: %d resultados
353 354 label_all_words: Todas las palabras
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki edit
356 357 label_wiki_edit_plural: Wiki edits
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Índice
360 361 label_current_version: Versión actual
361 362 label_preview: Previo
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Detalles de todos los cambios
364 365 label_issue_tracking: Issue tracking
365 366 label_spent_time: Spent time
366 367 label_f_hour: %.2f hour
367 368 label_f_hour_plural: %.2f hours
368 369 label_time_tracking: Time tracking
369 370 label_change_plural: Changes
370 371 label_statistics: Statistics
371 372 label_commits_per_month: Commits per month
372 373 label_commits_per_author: Commits per author
373 374 label_view_diff: View differences
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: side by side
376 377 label_options: Options
377 378 label_copy_workflow_from: Copy workflow from
378 379 label_permissions_report: Permissions report
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Conexión
419 420 button_submit: Someter
420 421 button_save: Validar
421 422 button_check_all: Seleccionar todo
422 423 button_uncheck_all: No seleccionar nada
423 424 button_delete: Suprimir
424 425 button_create: Crear
425 426 button_test: Testar
426 427 button_edit: Modificar
427 428 button_add: Añadir
428 429 button_change: Cambiar
429 430 button_apply: Aplicar
430 431 button_clear: Anular
431 432 button_lock: Bloquear
432 433 button_unlock: Desbloquear
433 434 button_download: Telecargar
434 435 button_list: Listar
435 436 button_view: Ver
436 437 button_move: Mover
437 438 button_back: Atrás
438 439 button_cancel: Cancelar
439 440 button_activate: Activar
440 441 button_sort: Clasificar
441 442 button_log_time: Log time
442 443 button_rollback: Rollback to this version
443 444 button_watch: Watch
444 445 button_unwatch: Unwatch
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: active
451 453 status_registered: registered
452 454 status_locked: locked
453 455
454 456 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
455 457 text_regexp_info: eg. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 para ninguna restricción
457 459 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
458 460 text_workflow_edit: Seleccionar un workflow para actualizar
459 461 text_are_you_sure: ¿ Estás seguro ?
460 462 text_journal_changed: cambiado de %s a %s
461 463 text_journal_set_to: fijado a %s
462 464 text_journal_deleted: suprimido
463 465 text_tip_task_begin_day: tarea que comienza este día
464 466 text_tip_task_end_day: tarea que termina este día
465 467 text_tip_task_begin_end_day: tarea que comienza y termina este día
466 468 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
467 469 text_caracters_maximum: %d characters maximum.
468 470 text_length_between: Length between %d and %d characters.
469 471 text_tracker_no_workflow: No workflow defined for this tracker
470 472 text_unallowed_characters: Unallowed characters
471 473 text_comma_separated: Multiple values allowed (comma separated).
472 474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
473 475
474 476 default_role_manager: Manager
475 477 default_role_developper: Desarrollador
476 478 default_role_reporter: Informador
477 479 default_tracker_bug: Anomalía
478 480 default_tracker_feature: Evolución
479 481 default_tracker_support: Asistencia
480 482 default_issue_status_new: Nuevo
481 483 default_issue_status_assigned: Asignada
482 484 default_issue_status_resolved: Resuelta
483 485 default_issue_status_feedback: Comentario
484 486 default_issue_status_closed: Cerrada
485 487 default_issue_status_rejected: Rechazada
486 488 default_doc_category_user: Documentación del usuario
487 489 default_doc_category_tech: Documentación tecnica
488 490 default_priority_low: Bajo
489 491 default_priority_normal: Normal
490 492 default_priority_high: Alto
491 493 default_priority_urgent: Urgente
492 494 default_priority_immediate: Ahora
493 495 default_activity_design: Design
494 496 default_activity_development: Development
495 497
496 498 enumeration_issue_priorities: Prioridad de las peticiones
497 499 enumeration_doc_categories: Categorías del documento
498 500 enumeration_activities: Activities (time tracking)
@@ -1,498 +1,500
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: environ une heure
11 11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
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 activerecord_error_not_same_project: n'appartient pas au même projet
37 37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38 38
39 39 general_fmt_age: %d an
40 40 general_fmt_age_plural: %d ans
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 44 general_fmt_time: %%H:%%M
45 45 general_text_No: 'Non'
46 46 general_text_Yes: 'Oui'
47 47 general_text_no: 'non'
48 48 general_text_yes: 'oui'
49 49 general_lang_name: 'Français'
50 50 general_csv_separator: ';'
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54 54
55 55 notice_account_updated: Le compte a été mis à jour avec succès.
56 56 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 57 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 58 notice_account_wrong_password: Mot de passe incorrect
59 59 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 60 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 61 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 62 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 63 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 64 notice_successful_create: Création effectuée avec succès.
65 65 notice_successful_update: Mise à jour effectuée avec succès.
66 66 notice_successful_delete: Suppression effectuée avec succès.
67 67 notice_successful_connection: Connection réussie.
68 68 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
69 69 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 70 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
71 71 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 72 notice_email_sent: "Un email a été envoyé à %s"
73 73 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74 74 notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée.
75 75
76 76 mail_subject_lost_password: Votre mot de passe redMine
77 77 mail_subject_register: Activation de votre compte redMine
78 78
79 79 gui_validation_error: 1 erreur
80 80 gui_validation_error_plural: %d erreurs
81 81
82 82 field_name: Nom
83 83 field_description: Description
84 84 field_summary: Résumé
85 85 field_is_required: Obligatoire
86 86 field_firstname: Prénom
87 87 field_lastname: Nom
88 88 field_mail: Email
89 89 field_filename: Fichier
90 90 field_filesize: Taille
91 91 field_downloads: Téléchargements
92 92 field_author: Auteur
93 93 field_created_on: Créé
94 94 field_updated_on: Mis à jour
95 95 field_field_format: Format
96 96 field_is_for_all: Pour tous les projets
97 97 field_possible_values: Valeurs possibles
98 98 field_regexp: Expression régulière
99 99 field_min_length: Longueur minimum
100 100 field_max_length: Longueur maximum
101 101 field_value: Valeur
102 102 field_category: Catégorie
103 103 field_title: Titre
104 104 field_project: Projet
105 105 field_issue: Demande
106 106 field_status: Statut
107 107 field_notes: Notes
108 108 field_is_closed: Demande fermée
109 109 field_is_default: Statut par défaut
110 110 field_html_color: Couleur
111 111 field_tracker: Tracker
112 112 field_subject: Sujet
113 113 field_due_date: Date d'échéance
114 114 field_assigned_to: Assigné à
115 115 field_priority: Priorité
116 116 field_fixed_version: Version corrigée
117 117 field_user: Utilisateur
118 118 field_role: Rôle
119 119 field_homepage: Site web
120 120 field_is_public: Public
121 121 field_parent: Sous-projet de
122 122 field_is_in_chlog: Demandes affichées dans l'historique
123 123 field_is_in_roadmap: Demandes affichées dans la roadmap
124 124 field_login: Identifiant
125 125 field_mail_notification: Notifications par mail
126 126 field_admin: Administrateur
127 127 field_last_login_on: Dernière connexion
128 128 field_language: Langue
129 129 field_effective_date: Date
130 130 field_password: Mot de passe
131 131 field_new_password: Nouveau mot de passe
132 132 field_password_confirmation: Confirmation
133 133 field_version: Version
134 134 field_type: Type
135 135 field_host: Hôte
136 136 field_port: Port
137 137 field_account: Compte
138 138 field_base_dn: Base DN
139 139 field_attr_login: Attribut Identifiant
140 140 field_attr_firstname: Attribut Prénom
141 141 field_attr_lastname: Attribut Nom
142 142 field_attr_mail: Attribut Email
143 143 field_onthefly: Création des utilisateurs à la volée
144 144 field_start_date: Début
145 145 field_done_ratio: %% Réalisé
146 146 field_auth_source: Mode d'authentification
147 147 field_hide_mail: Cacher mon adresse mail
148 148 field_comments: Commentaire
149 149 field_url: URL
150 150 field_start_page: Page de démarrage
151 151 field_subproject: Sous-projet
152 152 field_hours: Heures
153 153 field_activity: Activité
154 154 field_spent_on: Date
155 155 field_identifier: Identifiant
156 156 field_is_filter: Utilisé comme filtre
157 157 field_issue_to_id: Demande liée
158 158 field_delay: Retard
159 159 field_assignable: Demandes assignables à ce rôle
160 field_redirect_existing_links: Rediriger les liens existants
160 161
161 162 setting_app_title: Titre de l'application
162 163 setting_app_subtitle: Sous-titre de l'application
163 164 setting_welcome_text: Texte d'accueil
164 165 setting_default_language: Langue par défaut
165 166 setting_login_required: Authentif. obligatoire
166 167 setting_self_registration: Enregistrement autorisé
167 168 setting_attachment_max_size: Taille max des fichiers
168 169 setting_issues_export_limit: Limite export demandes
169 170 setting_mail_from: Adresse d'émission
170 171 setting_host_name: Nom d'hôte
171 172 setting_text_formatting: Formatage du texte
172 173 setting_wiki_compression: Compression historique wiki
173 174 setting_feeds_limit: Limite du contenu des flux RSS
174 175 setting_autofetch_changesets: Récupération auto. des commits
175 176 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
176 177 setting_commit_ref_keywords: Mot-clés de référencement
177 178 setting_commit_fix_keywords: Mot-clés de résolution
178 179 setting_autologin: Autologin
179 180 setting_date_format: Format de date
180 181 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
181 182
182 183 label_user: Utilisateur
183 184 label_user_plural: Utilisateurs
184 185 label_user_new: Nouvel utilisateur
185 186 label_project: Projet
186 187 label_project_new: Nouveau projet
187 188 label_project_plural: Projets
188 189 label_project_all: Tous les projets
189 190 label_project_latest: Derniers projets
190 191 label_issue: Demande
191 192 label_issue_new: Nouvelle demande
192 193 label_issue_plural: Demandes
193 194 label_issue_view_all: Voir toutes les demandes
194 195 label_document: Document
195 196 label_document_new: Nouveau document
196 197 label_document_plural: Documents
197 198 label_role: Rôle
198 199 label_role_plural: Rôles
199 200 label_role_new: Nouveau rôle
200 201 label_role_and_permissions: Rôles et permissions
201 202 label_member: Membre
202 203 label_member_new: Nouveau membre
203 204 label_member_plural: Membres
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Trackers
206 207 label_tracker_new: Nouveau tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Statut de demandes
209 210 label_issue_status_plural: Statuts de demandes
210 211 label_issue_status_new: Nouveau statut
211 212 label_issue_category: Catégorie de demandes
212 213 label_issue_category_plural: Catégories de demandes
213 214 label_issue_category_new: Nouvelle catégorie
214 215 label_custom_field: Champ personnalisé
215 216 label_custom_field_plural: Champs personnalisés
216 217 label_custom_field_new: Nouveau champ personnalisé
217 218 label_enumerations: Listes de valeurs
218 219 label_enumeration_new: Nouvelle valeur
219 220 label_information: Information
220 221 label_information_plural: Informations
221 222 label_please_login: Identification
222 223 label_register: S'enregistrer
223 224 label_password_lost: Mot de passe perdu
224 225 label_home: Accueil
225 226 label_my_page: Ma page
226 227 label_my_account: Mon compte
227 228 label_my_projects: Mes projets
228 229 label_administration: Administration
229 230 label_login: Connexion
230 231 label_logout: Déconnexion
231 232 label_help: Aide
232 233 label_reported_issues: Demandes soumises
233 234 label_assigned_to_me_issues: Demandes qui me sont assignées
234 235 label_last_login: Dernière connexion
235 236 label_last_updates: Dernière mise à jour
236 237 label_last_updates_plural: %d dernières mises à jour
237 238 label_registered_on: Inscrit le
238 239 label_activity: Activité
239 240 label_new: Nouveau
240 241 label_logged_as: Connecté en tant que
241 242 label_environment: Environnement
242 243 label_authentication: Authentification
243 244 label_auth_source: Mode d'authentification
244 245 label_auth_source_new: Nouveau mode d'authentification
245 246 label_auth_source_plural: Modes d'authentification
246 247 label_subproject_plural: Sous-projets
247 248 label_min_max_length: Longueurs mini - maxi
248 249 label_list: Liste
249 250 label_date: Date
250 251 label_integer: Entier
251 252 label_boolean: Booléen
252 253 label_string: Texte
253 254 label_text: Texte long
254 255 label_attribute: Attribut
255 256 label_attribute_plural: Attributs
256 257 label_download: %d Téléchargement
257 258 label_download_plural: %d Téléchargements
258 259 label_no_data: Aucune donnée à afficher
259 260 label_change_status: Changer le statut
260 261 label_history: Historique
261 262 label_attachment: Fichier
262 263 label_attachment_new: Nouveau fichier
263 264 label_attachment_delete: Supprimer le fichier
264 265 label_attachment_plural: Fichiers
265 266 label_report: Rapport
266 267 label_report_plural: Rapports
267 268 label_news: Annonce
268 269 label_news_new: Nouvelle annonce
269 270 label_news_plural: Annonces
270 271 label_news_latest: Dernières annonces
271 272 label_news_view_all: Voir toutes les annonces
272 273 label_change_log: Historique
273 274 label_settings: Configuration
274 275 label_overview: Aperçu
275 276 label_version: Version
276 277 label_version_new: Nouvelle version
277 278 label_version_plural: Versions
278 279 label_confirmation: Confirmation
279 280 label_export_to: Exporter en
280 281 label_read: Lire...
281 282 label_public_projects: Projets publics
282 283 label_open_issues: ouvert
283 284 label_open_issues_plural: ouverts
284 285 label_closed_issues: fermé
285 286 label_closed_issues_plural: fermés
286 287 label_total: Total
287 288 label_permissions: Permissions
288 289 label_current_status: Statut actuel
289 290 label_new_statuses_allowed: Nouveaux statuts autorisés
290 291 label_all: tous
291 292 label_none: aucun
292 293 label_next: Suivant
293 294 label_previous: Précédent
294 295 label_used_by: Utilisé par
295 296 label_details: Détails
296 297 label_add_note: Ajouter une note
297 298 label_per_page: Par page
298 299 label_calendar: Calendrier
299 300 label_months_from: mois depuis
300 301 label_gantt: Gantt
301 302 label_internal: Interne
302 303 label_last_changes: %d derniers changements
303 304 label_change_view_all: Voir tous les changements
304 305 label_personalize_page: Personnaliser cette page
305 306 label_comment: Commentaire
306 307 label_comment_plural: Commentaires
307 308 label_comment_add: Ajouter un commentaire
308 309 label_comment_added: Commentaire ajouté
309 310 label_comment_delete: Supprimer les commentaires
310 311 label_query: Rapport personnalisé
311 312 label_query_plural: Rapports personnalisés
312 313 label_query_new: Nouveau rapport
313 314 label_filter_add: Ajouter le filtre
314 315 label_filter_plural: Filtres
315 316 label_equals: égal
316 317 label_not_equals: différent
317 318 label_in_less_than: dans moins de
318 319 label_in_more_than: dans plus de
319 320 label_in: dans
320 321 label_today: aujourd'hui
321 322 label_this_week: cette semaine
322 323 label_less_than_ago: il y a moins de
323 324 label_more_than_ago: il y a plus de
324 325 label_ago: il y a
325 326 label_contains: contient
326 327 label_not_contains: ne contient pas
327 328 label_day_plural: jours
328 329 label_repository: Dépôt
329 330 label_browse: Parcourir
330 331 label_modification: %d modification
331 332 label_modification_plural: %d modifications
332 333 label_revision: Révision
333 334 label_revision_plural: Révisions
334 335 label_added: ajouté
335 336 label_modified: modifié
336 337 label_deleted: supprimé
337 338 label_latest_revision: Dernière révision
338 339 label_latest_revision_plural: Dernières révisions
339 340 label_view_revisions: Voir les révisions
340 341 label_max_size: Taille maximale
341 342 label_on: sur
342 343 label_sort_highest: Remonter en premier
343 344 label_sort_higher: Remonter
344 345 label_sort_lower: Descendre
345 346 label_sort_lowest: Descendre en dernier
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Echéance dans
348 349 label_roadmap_overdue: En retard de %s
349 350 label_roadmap_no_issues: Aucune demande pour cette version
350 351 label_search: Recherche
351 352 label_result: %d résultat
352 353 label_result_plural: %d résultats
353 354 label_all_words: Tous les mots
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Révision wiki
356 357 label_wiki_edit_plural: Révisions wiki
357 358 label_wiki_page: Page wiki
358 359 label_wiki_page_plural: Pages wiki
359 360 label_page_index: Index
360 361 label_current_version: Version actuelle
361 362 label_preview: Prévisualisation
362 363 label_feed_plural: Flux RSS
363 364 label_changes_details: Détails de tous les changements
364 365 label_issue_tracking: Suivi des demandes
365 366 label_spent_time: Temps passé
366 367 label_f_hour: %.2f heure
367 368 label_f_hour_plural: %.2f heures
368 369 label_time_tracking: Suivi du temps
369 370 label_change_plural: Changements
370 371 label_statistics: Statistiques
371 372 label_commits_per_month: Commits par mois
372 373 label_commits_per_author: Commits par auteur
373 374 label_view_diff: Voir les différences
374 375 label_diff_inline: en ligne
375 376 label_diff_side_by_side: côte à côte
376 377 label_options: Options
377 378 label_copy_workflow_from: Copier le workflow de
378 379 label_permissions_report: Synthèse des permissions
379 380 label_watched_issues: Demandes surveillées
380 381 label_related_issues: Demandes liées
381 382 label_applied_status: Statut appliqué
382 383 label_loading: Chargement...
383 384 label_relation_new: Nouvelle relation
384 385 label_relation_delete: Supprimer la relation
385 386 label_relates_to: lié à
386 387 label_duplicates: doublon de
387 388 label_blocks: bloque
388 389 label_blocked_by: bloqué par
389 390 label_precedes: précède
390 391 label_follows: suit
391 392 label_end_to_start: début à fin
392 393 label_end_to_end: fin à fin
393 394 label_start_to_start: début à début
394 395 label_start_to_end: début à fin
395 396 label_stay_logged_in: Rester connecté
396 397 label_disabled: désactivé
397 398 label_show_completed_versions: Voire les versions passées
398 399 label_me: moi
399 400 label_board: Forum
400 401 label_board_new: Nouveau forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Discussions
403 404 label_message_plural: Messages
404 405 label_message_last: Dernier message
405 406 label_message_new: Nouveau message
406 407 label_reply_plural: Réponses
407 408 label_send_information: Envoyer les informations à l'utilisateur
408 409 label_year: Année
409 410 label_month: Mois
410 411 label_week: Semaine
411 412 label_date_from: Du
412 413 label_date_to: Au
413 414 label_language_based: Basé sur la langue
414 415 label_sort_by: Trier par "%s"
415 416 label_send_test_email: Envoyer un email de test
416 417 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
417 418
418 419 button_login: Connexion
419 420 button_submit: Soumettre
420 421 button_save: Sauvegarder
421 422 button_check_all: Tout cocher
422 423 button_uncheck_all: Tout décocher
423 424 button_delete: Supprimer
424 425 button_create: Créer
425 426 button_test: Tester
426 427 button_edit: Modifier
427 428 button_add: Ajouter
428 429 button_change: Changer
429 430 button_apply: Appliquer
430 431 button_clear: Effacer
431 432 button_lock: Verrouiller
432 433 button_unlock: Déverrouiller
433 434 button_download: Télécharger
434 435 button_list: Lister
435 436 button_view: Voir
436 437 button_move: Déplacer
437 438 button_back: Retour
438 439 button_cancel: Annuler
439 440 button_activate: Activer
440 441 button_sort: Trier
441 442 button_log_time: Saisir temps
442 443 button_rollback: Revenir à cette version
443 444 button_watch: Surveiller
444 445 button_unwatch: Ne plus surveiller
445 446 button_reply: Répondre
446 447 button_archive: Archiver
447 448 button_unarchive: Désarchiver
448 449 button_reset: Réinitialiser
450 button_rename: Renommer
449 451
450 452 status_active: actif
451 453 status_registered: enregistré
452 454 status_locked: vérouillé
453 455
454 456 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
455 457 text_regexp_info: ex. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 pour aucune restriction
457 459 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
458 460 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
459 461 text_are_you_sure: Etes-vous sûr ?
460 462 text_journal_changed: changé de %s à %s
461 463 text_journal_set_to: mis à %s
462 464 text_journal_deleted: supprimé
463 465 text_tip_task_begin_day: tâche commençant ce jour
464 466 text_tip_task_end_day: tâche finissant ce jour
465 467 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
466 468 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
467 469 text_caracters_maximum: %d caractères maximum.
468 470 text_length_between: Longueur comprise entre %d et %d caractères.
469 471 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
470 472 text_unallowed_characters: Caractères non autorisés
471 473 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
472 474 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
473 475
474 476 default_role_manager: Manager
475 477 default_role_developper: Développeur
476 478 default_role_reporter: Rapporteur
477 479 default_tracker_bug: Anomalie
478 480 default_tracker_feature: Evolution
479 481 default_tracker_support: Assistance
480 482 default_issue_status_new: Nouveau
481 483 default_issue_status_assigned: Assigné
482 484 default_issue_status_resolved: Résolu
483 485 default_issue_status_feedback: Commentaire
484 486 default_issue_status_closed: Fermé
485 487 default_issue_status_rejected: Rejeté
486 488 default_doc_category_user: Documentation utilisateur
487 489 default_doc_category_tech: Documentation technique
488 490 default_priority_low: Bas
489 491 default_priority_normal: Normal
490 492 default_priority_high: Haut
491 493 default_priority_urgent: Urgent
492 494 default_priority_immediate: Immédiat
493 495 default_activity_design: Conception
494 496 default_activity_development: Développement
495 497
496 498 enumeration_issue_priorities: Priorités des demandes
497 499 enumeration_doc_categories: Catégories des documents
498 500 enumeration_activities: Activités (suivi du temps)
@@ -1,498 +1,500
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 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'No'
46 46 general_text_Yes: 'Si'
47 47 general_text_no: 'no'
48 48 general_text_yes: 'si'
49 49 general_lang_name: 'Italiano'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54 54
55 55 notice_account_updated: L'utenza è stata aggiornata.
56 56 notice_account_invalid_creditentials: Nome utente o password non validi.
57 57 notice_account_password_updated: La password è stata aggiornata.
58 58 notice_account_wrong_password: Password errata
59 59 notice_account_register_done: L'utenza è stata creata.
60 60 notice_account_unknown_email: Utente sconosciuto.
61 61 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 62 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 63 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 64 notice_successful_create: Creazione effettuata.
65 65 notice_successful_update: Modifica effettuata.
66 66 notice_successful_delete: Eliminazione effettuata.
67 67 notice_successful_connection: Connessione effettuata.
68 68 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 69 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 70 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Password redMine
77 77 mail_subject_register: Attivazione utenza redMine
78 78
79 79 gui_validation_error: 1 errore
80 80 gui_validation_error_plural: %d errori
81 81
82 82 field_name: Nome
83 83 field_description: Descrizione
84 84 field_summary: Sommario
85 85 field_is_required: Richiesto
86 86 field_firstname: Nome
87 87 field_lastname: Cognome
88 88 field_mail: Email
89 89 field_filename: File
90 90 field_filesize: Dimensione
91 91 field_downloads: Download
92 92 field_author: Autore
93 93 field_created_on: Creato
94 94 field_updated_on: Aggiornato
95 95 field_field_format: Formato
96 96 field_is_for_all: Per tutti i progetti
97 97 field_possible_values: Valori possibili
98 98 field_regexp: Espressione regolare
99 99 field_min_length: Lunghezza minima
100 100 field_max_length: Lunghezza massima
101 101 field_value: Valore
102 102 field_category: Categoria
103 103 field_title: Titolo
104 104 field_project: Progetto
105 105 field_issue: Issue
106 106 field_status: Stato
107 107 field_notes: Note
108 108 field_is_closed: Chiude il contesto
109 109 field_is_default: Stato predefinito
110 110 field_html_color: Colore
111 111 field_tracker: Tracker
112 112 field_subject: Oggetto
113 113 field_due_date: Data ultima
114 114 field_assigned_to: Assegnato a
115 115 field_priority: Priorita'
116 116 field_fixed_version: Versione di fix
117 117 field_user: Utente
118 118 field_role: Ruolo
119 119 field_homepage: Homepage
120 120 field_is_public: Pubblico
121 121 field_parent: Sottoprogetto di
122 122 field_is_in_chlog: Contesti mostrati nel changelog
123 123 field_is_in_roadmap: Contesti mostrati nel roadmap
124 124 field_login: Login
125 125 field_mail_notification: Notifiche via e-mail
126 126 field_admin: Amministratore
127 127 field_last_login_on: Ultima connessione
128 128 field_language: Lingua
129 129 field_effective_date: Data
130 130 field_password: Password
131 131 field_new_password: Nuova password
132 132 field_password_confirmation: Conferma
133 133 field_version: Versione
134 134 field_type: Tipo
135 135 field_host: Host
136 136 field_port: Porta
137 137 field_account: Utenza
138 138 field_base_dn: DN base
139 139 field_attr_login: Attributo login
140 140 field_attr_firstname: Attributo nome
141 141 field_attr_lastname: Attributo cognome
142 142 field_attr_mail: Attributo e-mail
143 143 field_onthefly: Creazione utenza "al volo"
144 144 field_start_date: Inizio
145 145 field_done_ratio: %% completo
146 146 field_auth_source: Modalità di autenticazione
147 147 field_hide_mail: Nascondi il mio indirizzo di e-mail
148 148 field_comments: Commento
149 149 field_url: URL
150 150 field_start_page: Pagina principale
151 151 field_subproject: Sottoprogetto
152 152 field_hours: Hours
153 153 field_activity: Activity
154 154 field_spent_on: Data
155 155 field_identifier: Identifier
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Titolo applicazione
162 163 setting_app_subtitle: Sottotitolo applicazione
163 164 setting_welcome_text: Testo di benvenuto
164 165 setting_default_language: Lingua di default
165 166 setting_login_required: Autenticazione richiesta
166 167 setting_self_registration: Auto-registrazione abilitata
167 168 setting_attachment_max_size: Massima dimensione allegati
168 169 setting_issues_export_limit: Limite esportazione contesti
169 170 setting_mail_from: Indirizzo sorgente e-mail
170 171 setting_host_name: Nome host
171 172 setting_text_formatting: Formattazione testo
172 173 setting_wiki_compression: Compressione di storia di Wiki
173 174 setting_feeds_limit: Limite contenuti del feed
174 175 setting_autofetch_changesets: Acquisisci automaticamente le commit
175 176 setting_sys_api_enabled: Abilita WS per la gestione del repository
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Utente
183 184 label_user_plural: Utenti
184 185 label_user_new: Nuovo utente
185 186 label_project: Progetto
186 187 label_project_new: Nuovo progetto
187 188 label_project_plural: Progetti
188 189 label_project_all: All Projects
189 190 label_project_latest: Ultimi progetti registrati
190 191 label_issue: Contesto
191 192 label_issue_new: Nuovo contesto
192 193 label_issue_plural: Contesti
193 194 label_issue_view_all: Mostra tutti i contesti
194 195 label_document: Documento
195 196 label_document_new: Nuovo documento
196 197 label_document_plural: Documenti
197 198 label_role: Ruolo
198 199 label_role_plural: Ruoli
199 200 label_role_new: Nuovo ruolo
200 201 label_role_and_permissions: Ruoli e permessi
201 202 label_member: Membro
202 203 label_member_new: Nuovo membro
203 204 label_member_plural: Membri
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Tracker
206 207 label_tracker_new: Nuovo tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Stato contesti
209 210 label_issue_status_plural: Stati contesto
210 211 label_issue_status_new: Nuovo stato
211 212 label_issue_category: Categorie contesti
212 213 label_issue_category_plural: Categorie contesto
213 214 label_issue_category_new: Nuova categoria
214 215 label_custom_field: Campo personalizzato
215 216 label_custom_field_plural: Campi personalizzati
216 217 label_custom_field_new: Nuovo campo personalizzato
217 218 label_enumerations: Enumerazioni
218 219 label_enumeration_new: Nuovo valore
219 220 label_information: Informazione
220 221 label_information_plural: Informazioni
221 222 label_please_login: Autenticarsi
222 223 label_register: Registrati
223 224 label_password_lost: Password dimenticata
224 225 label_home: Home
225 226 label_my_page: Pagina personale
226 227 label_my_account: La mia utenza
227 228 label_my_projects: I miei progetti
228 229 label_administration: Amministrazione
229 230 label_login: Login
230 231 label_logout: Logout
231 232 label_help: Aiuto
232 233 label_reported_issues: Contesti segnalati
233 234 label_assigned_to_me_issues: I miei contesti
234 235 label_last_login: Ultimo collegamento
235 236 label_last_updates: Ultimo aggiornamento
236 237 label_last_updates_plural: %d ultimo aggiornamento
237 238 label_registered_on: Registrato il
238 239 label_activity: Attività
239 240 label_new: Nuovo
240 241 label_logged_as: Autenticato come
241 242 label_environment: Ambiente
242 243 label_authentication: Autenticazione
243 244 label_auth_source: Modalità di autenticazione
244 245 label_auth_source_new: Nuova modalità di autenticazione
245 246 label_auth_source_plural: Modalità di autenticazione
246 247 label_subproject_plural: Sottoprogetti
247 248 label_min_max_length: Lunghezza minima - massima
248 249 label_list: Elenco
249 250 label_date: Data
250 251 label_integer: Intero
251 252 label_boolean: Booleano
252 253 label_string: Testo
253 254 label_text: Testo esteso
254 255 label_attribute: Attributo
255 256 label_attribute_plural: Attributi
256 257 label_download: %d Download
257 258 label_download_plural: %d Download
258 259 label_no_data: Nessun dato disponibile
259 260 label_change_status: Cambia stato
260 261 label_history: Cronologia
261 262 label_attachment: File
262 263 label_attachment_new: Nuovo file
263 264 label_attachment_delete: Elimina file
264 265 label_attachment_plural: File
265 266 label_report: Report
266 267 label_report_plural: Report
267 268 label_news: Notizia
268 269 label_news_new: Aggiungi notizia
269 270 label_news_plural: Notizie
270 271 label_news_latest: Utime notizie
271 272 label_news_view_all: Tutte le notizie
272 273 label_change_log: Change log
273 274 label_settings: Impostazioni
274 275 label_overview: Panoramica
275 276 label_version: Versione
276 277 label_version_new: Nuova versione
277 278 label_version_plural: Versioni
278 279 label_confirmation: Conferma
279 280 label_export_to: Esporta su
280 281 label_read: Leggi...
281 282 label_public_projects: Progetti pubblici
282 283 label_open_issues: aperta
283 284 label_open_issues_plural: aperte
284 285 label_closed_issues: chiusa
285 286 label_closed_issues_plural: chiuse
286 287 label_total: Totale
287 288 label_permissions: Permessi
288 289 label_current_status: Stato attuale
289 290 label_new_statuses_allowed: Nuovi stati possibili
290 291 label_all: tutti
291 292 label_none: nessuno
292 293 label_next: Successivo
293 294 label_previous: Precedente
294 295 label_used_by: Usato da
295 296 label_details: Dettagli
296 297 label_add_note: Aggiungi una nota
297 298 label_per_page: Per pagina
298 299 label_calendar: Calendario
299 300 label_months_from: mesi da
300 301 label_gantt: Gantt
301 302 label_internal: Interno
302 303 label_last_changes: ultime %d modifiche
303 304 label_change_view_all: Tutte le modifiche
304 305 label_personalize_page: Personalizza la pagina
305 306 label_comment: Commento
306 307 label_comment_plural: Commenti
307 308 label_comment_add: Aggiungi un commento
308 309 label_comment_added: Commento aggiunto
309 310 label_comment_delete: Elimina commenti
310 311 label_query: Custom query
311 312 label_query_plural: Query personalizzate
312 313 label_query_new: Nuova query
313 314 label_filter_add: Aggiungi filtro
314 315 label_filter_plural: Filtri
315 316 label_equals: è
316 317 label_not_equals: non è
317 318 label_in_less_than: è minore di
318 319 label_in_more_than: è maggiore di
319 320 label_in: in
320 321 label_today: oggi
321 322 label_this_week: this week
322 323 label_less_than_ago: meno di giorni fa
323 324 label_more_than_ago: più di giorni fa
324 325 label_ago: giorni fa
325 326 label_contains: contiene
326 327 label_not_contains: non contiene
327 328 label_day_plural: giorni
328 329 label_repository: Repository
329 330 label_browse: Browse
330 331 label_modification: %d modifica
331 332 label_modification_plural: %d modifiche
332 333 label_revision: Versione
333 334 label_revision_plural: Versioni
334 335 label_added: aggiunto
335 336 label_modified: modificato
336 337 label_deleted: eliminato
337 338 label_latest_revision: Ultima versione
338 339 label_latest_revision_plural: Ultime versioni
339 340 label_view_revisions: Mostra versioni
340 341 label_max_size: Dimensione massima
341 342 label_on: 'on'
342 343 label_sort_highest: Sposta in cima
343 344 label_sort_higher: Su
344 345 label_sort_lower: Giù
345 346 label_sort_lowest: Sposta in fondo
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Da ultimare in
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Nessun contesto per questa versione
350 351 label_search: Ricerca
351 352 label_result: %d risultato
352 353 label_result_plural: %d risultati
353 354 label_all_words: Tutte le parole
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Modifica Wiki
356 357 label_wiki_edit_plural: Modfiche wiki
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Indice
360 361 label_current_version: Versione corrente
361 362 label_preview: Anteprima
362 363 label_feed_plural: Feed
363 364 label_changes_details: Particolari di tutti i cambiamenti
364 365 label_issue_tracking: tracking dei contesti
365 366 label_spent_time: Tempo impiegato
366 367 label_f_hour: %.2f ora
367 368 label_f_hour_plural: %.2f ore
368 369 label_time_tracking: Tracking del tempo
369 370 label_change_plural: Modifiche
370 371 label_statistics: Statistiche
371 372 label_commits_per_month: Commit per mese
372 373 label_commits_per_author: Commit per autore
373 374 label_view_diff: mostra differenze
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: side by side
376 377 label_options: Opzioni
377 378 label_copy_workflow_from: Copia workflow da
378 379 label_permissions_report: Report permessi
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Login
419 420 button_submit: Invia
420 421 button_save: Salva
421 422 button_check_all: Seleziona tutti
422 423 button_uncheck_all: Deseleziona tutti
423 424 button_delete: Elimina
424 425 button_create: Crea
425 426 button_test: Test
426 427 button_edit: Modifica
427 428 button_add: Aggiungi
428 429 button_change: Modifica
429 430 button_apply: Applica
430 431 button_clear: Pulisci
431 432 button_lock: Blocca
432 433 button_unlock: Sblocca
433 434 button_download: Scarica
434 435 button_list: Elenca
435 436 button_view: Mostra
436 437 button_move: Sposta
437 438 button_back: Indietro
438 439 button_cancel: Annulla
439 440 button_activate: Attiva
440 441 button_sort: Ordina
441 442 button_log_time: Registra tempo
442 443 button_rollback: Ripristina questa versione
443 444 button_watch: Watch
444 445 button_unwatch: Unwatch
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: attivo
451 453 status_registered: registrato
452 454 status_locked: bloccato
453 455
454 456 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
455 457 text_regexp_info: eg. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 significa nessuna restrizione
457 459 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
458 460 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
459 461 text_are_you_sure: Sei sicuro ?
460 462 text_journal_changed: cambiato da %s a %s
461 463 text_journal_set_to: impostato a %s
462 464 text_journal_deleted: cancellato
463 465 text_tip_task_begin_day: attività che iniziano in questa giornata
464 466 text_tip_task_end_day: attività che terminano in questa giornata
465 467 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
466 468 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
467 469 text_caracters_maximum: massimo %d caratteri.
468 470 text_length_between: Lunghezza compresa tra %d e %d caratteri.
469 471 text_tracker_no_workflow: Nessun workflow definito per questo tracker
470 472 text_unallowed_characters: Unallowed characters
471 473 text_comma_separated: Multiple values allowed (comma separated).
472 474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
473 475
474 476 default_role_manager: Manager
475 477 default_role_developper: Sviluppatore
476 478 default_role_reporter: Reporter
477 479 default_tracker_bug: Contesto
478 480 default_tracker_feature: Funzione
479 481 default_tracker_support: Supporto
480 482 default_issue_status_new: Nuovo/a
481 483 default_issue_status_assigned: Assegnato/a
482 484 default_issue_status_resolved: Risolto/a
483 485 default_issue_status_feedback: Feedback
484 486 default_issue_status_closed: Chiuso/a
485 487 default_issue_status_rejected: Rifiutato/a
486 488 default_doc_category_user: Documentazione utente
487 489 default_doc_category_tech: Documentazione tecnica
488 490 default_priority_low: Bassa
489 491 default_priority_normal: Normale
490 492 default_priority_high: Alta
491 493 default_priority_urgent: Urgente
492 494 default_priority_immediate: Immediata
493 495 default_activity_design: Design
494 496 default_activity_development: Development
495 497
496 498 enumeration_issue_priorities: Priorità contesti
497 499 enumeration_doc_categories: Categorie di documenti
498 500 enumeration_activities: Attività (time tracking)
@@ -1,499 +1,501
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 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 38 activerecord_error_circular_dependency: この関係では、循環依存になります
39 39
40 40 general_fmt_age: %d歳
41 41 general_fmt_age_plural: %d歳
42 42 general_fmt_date: %%Y年%%m月%%d日
43 43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 45 general_fmt_time: %%H:%%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_name: 'Japanese (日本語)'
51 51 general_csv_separator: ','
52 52 general_csv_encoding: SJIS
53 53 general_pdf_encoding: SJIS
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 notice_not_authorized: このページにアクセスするには認証が必要です。
73 73 notice_email_sent: An email was sent to %s
74 74 notice_email_error: An error occurred while sending mail (%s)
75 75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 76
77 77 mail_subject_lost_password: redMineパスワード
78 78 mail_subject_register: redMineアカウントが有効になりました
79 79
80 80 gui_validation_error: 1件のエラー
81 81 gui_validation_error_plural: %d件のエラー
82 82
83 83 field_name: 名前
84 84 field_description: 説明
85 85 field_summary: サマリ
86 86 field_is_required: 必須
87 87 field_firstname: 名前
88 88 field_lastname: 苗字
89 89 field_mail: メールアドレス
90 90 field_filename: ファイル
91 91 field_filesize: サイズ
92 92 field_downloads: ダウンロード
93 93 field_author: 起票者
94 94 field_created_on: 作成日
95 95 field_updated_on: 更新日
96 96 field_field_format: 書式
97 97 field_is_for_all: 全プロジェクト向け
98 98 field_possible_values: 選択肢
99 99 field_regexp: 正規表現
100 100 field_min_length: 最小値
101 101 field_max_length: 最大値
102 102 field_value:
103 103 field_category: カテゴリ
104 104 field_title: タイトル
105 105 field_project: プロジェクト
106 106 field_issue: 問題
107 107 field_status: ステータス
108 108 field_notes: 注記
109 109 field_is_closed: 終了した問題
110 110 field_is_default: デフォルトのステータス
111 111 field_html_color:
112 112 field_tracker: トラッカー
113 113 field_subject: 題名
114 114 field_due_date: 期限日
115 115 field_assigned_to: 担当者
116 116 field_priority: 優先度
117 117 field_fixed_version: 修正されたバージョン
118 118 field_user: ユーザ
119 119 field_role: 役割
120 120 field_homepage: ホームページ
121 121 field_is_public: 公開
122 122 field_parent: 親プロジェクト名
123 123 field_is_in_chlog: 変更記録に表示されている問題
124 124 field_is_in_roadmap: ロードマップに表示されている問題
125 125 field_login: ログイン
126 126 field_mail_notification: メール通知
127 127 field_admin: 管理者
128 128 field_last_login_on: 最終接続日
129 129 field_language: 言語
130 130 field_effective_date: 日付
131 131 field_password: パスワード
132 132 field_new_password: 新しいパスワード
133 133 field_password_confirmation: パスワードの確認
134 134 field_version: バージョン
135 135 field_type: タイプ
136 136 field_host: ホスト
137 137 field_port: ポート
138 138 field_account: アカウント
139 139 field_base_dn: Base DN
140 140 field_attr_login: ログイン名属性
141 141 field_attr_firstname: 名前属性
142 142 field_attr_lastname: 苗字属性
143 143 field_attr_mail: メール属性
144 144 field_onthefly: あわせてユーザを作成
145 145 field_start_date: 開始日
146 146 field_done_ratio: 進捗 %%
147 147 field_auth_source: 認証モード
148 148 field_hide_mail: メールアドレスを隠す
149 149 field_comments: コメント
150 150 field_url: URL
151 151 field_start_page: メインページ
152 152 field_subproject: サブプロジェクト
153 153 field_hours: 時間
154 154 field_activity: 活動
155 155 field_spent_on: 日付
156 156 field_identifier: 識別子
157 157 field_is_filter: フィルタとして使う
158 158 field_issue_to_id: 関連する問題
159 159 field_delay: 遅延
160 160 field_assignable: Issues can be assigned to this role
161 field_redirect_existing_links: Redirect existing links
161 162
162 163 setting_app_title: アプリケーションのタイトル
163 164 setting_app_subtitle: アプリケーションのサブタイトル
164 165 setting_welcome_text: ウェルカムメッセージ
165 166 setting_default_language: 既定の言語
166 167 setting_login_required: 認証が必要
167 168 setting_self_registration: ユーザは自分で登録できる
168 169 setting_attachment_max_size: 添付の最大サイズ
169 170 setting_issues_export_limit: 出力する問題数の上限
170 171 setting_mail_from: 送信元メールアドレス
171 172 setting_host_name: ホスト名
172 173 setting_text_formatting: テキストの書式
173 174 setting_wiki_compression: Wiki履歴を圧縮する
174 175 setting_feeds_limit: フィード内容の上限
175 176 setting_autofetch_changesets: コミットを自動取得する
176 177 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
177 178 setting_commit_ref_keywords: 参照用キーワード
178 179 setting_commit_fix_keywords: 修正用キーワード
179 180 setting_autologin: 自動ログイン
180 181 setting_date_format: Date format
181 182 setting_cross_project_issue_relations: Allow cross-project issue relations
182 183
183 184 label_user: ユーザ
184 185 label_user_plural: ユーザ
185 186 label_user_new: 新しいユーザ
186 187 label_project: プロジェクト
187 188 label_project_new: 新しいプロジェクト
188 189 label_project_plural: プロジェクト
189 190 label_project_all: 全プロジェクト
190 191 label_project_latest: 最近のプロジェクト
191 192 label_issue: 問題
192 193 label_issue_new: 新しい問題
193 194 label_issue_plural: 問題
194 195 label_issue_view_all: 問題を全て見る
195 196 label_document: 文書
196 197 label_document_new: 新しい文書
197 198 label_document_plural: 文書
198 199 label_role: ロール
199 200 label_role_plural: ロール
200 201 label_role_new: 新しいロール
201 202 label_role_and_permissions: ロールと権限
202 203 label_member: メンバー
203 204 label_member_new: 新しいメンバー
204 205 label_member_plural: メンバー
205 206 label_tracker: トラッカー
206 207 label_tracker_plural: トラッカー
207 208 label_tracker_new: 新しいトラッカーを作成
208 209 label_workflow: ワークフロー
209 210 label_issue_status: 問題のステータス
210 211 label_issue_status_plural: 問題のステータス
211 212 label_issue_status_new: 新しいステータス
212 213 label_issue_category: 問題のカテゴリ
213 214 label_issue_category_plural: 問題のカテゴリ
214 215 label_issue_category_new: 新しいカテゴリ
215 216 label_custom_field: カスタムフィールド
216 217 label_custom_field_plural: カスタムフィールド
217 218 label_custom_field_new: 新しいカスタムフィールドを作成
218 219 label_enumerations: 列挙項目
219 220 label_enumeration_new: 新しい値
220 221 label_information: 情報
221 222 label_information_plural: 情報
222 223 label_please_login: ログインしてください
223 224 label_register: 登録する
224 225 label_password_lost: パスワードの再発行
225 226 label_home: ホーム
226 227 label_my_page: マイページ
227 228 label_my_account: マイアカウント
228 229 label_my_projects: マイプロジェクト
229 230 label_administration: 管理
230 231 label_login: ログイン
231 232 label_logout: ログアウト
232 233 label_help: ヘルプ
233 234 label_reported_issues: 報告した問題
234 235 label_assigned_to_me_issues: 担当している問題
235 236 label_last_login: 最近の接続
236 237 label_last_updates: 最近の更新1件
237 238 label_last_updates_plural: 最近の更新%d件
238 239 label_registered_on: 登録日
239 240 label_activity: 活動
240 241 label_new: 新しく作成
241 242 label_logged_as: ログイン中:
242 243 label_environment: 環境
243 244 label_authentication: 認証
244 245 label_auth_source: 認証モード
245 246 label_auth_source_new: 新しい認証モード
246 247 label_auth_source_plural: 認証モード
247 248 label_subproject_plural: サブプロジェクト
248 249 label_min_max_length: 最小値 - 最大値の長さ
249 250 label_list: リストから選択
250 251 label_date: 日付
251 252 label_integer: 整数
252 253 label_boolean: 真偽値
253 254 label_string: テキスト
254 255 label_text: 長いテキスト
255 256 label_attribute: 属性
256 257 label_attribute_plural: 属性
257 258 label_download: %d ダウンロード
258 259 label_download_plural: %d ダウンロード
259 260 label_no_data: 表示するデータがありません
260 261 label_change_status: ステータスの変更
261 262 label_history: 履歴
262 263 label_attachment: ファイル
263 264 label_attachment_new: 新しいファイル
264 265 label_attachment_delete: ファイルを削除
265 266 label_attachment_plural: ファイル
266 267 label_report: レポート
267 268 label_report_plural: レポート
268 269 label_news: ニュース
269 270 label_news_new: ニュースを追加
270 271 label_news_plural: ニュース
271 272 label_news_latest: 最新ニュース
272 273 label_news_view_all: 全てのニュースを見る
273 274 label_change_log: 変更記録
274 275 label_settings: 設定
275 276 label_overview: 概要
276 277 label_version: バージョン
277 278 label_version_new: 新しいバージョン
278 279 label_version_plural: バージョン
279 280 label_confirmation: 確認
280 281 label_export_to: 他の形式に出力
281 282 label_read: 読む...
282 283 label_public_projects: 公開プロジェクト
283 284 label_open_issues: 未完了
284 285 label_open_issues_plural: 未完了
285 286 label_closed_issues: 終了
286 287 label_closed_issues_plural: 終了
287 288 label_total: 合計
288 289 label_permissions: 権限
289 290 label_current_status: 現在のステータス
290 291 label_new_statuses_allowed: ステータスの移行先
291 292 label_all: 全て
292 293 label_none: なし
293 294 label_next:
294 295 label_previous:
295 296 label_used_by: 使用中
296 297 label_details: 詳細
297 298 label_add_note: 注記を追加
298 299 label_per_page: ページ毎
299 300 label_calendar: カレンダー
300 301 label_months_from: ヶ月 from
301 302 label_gantt: ガントチャート
302 303 label_internal: Internal
303 304 label_last_changes: 最新の変更%d件
304 305 label_change_view_all: 全ての変更を見る
305 306 label_personalize_page: このページをパーソナライズする
306 307 label_comment: コメント
307 308 label_comment_plural: コメント
308 309 label_comment_add: コメント追加
309 310 label_comment_added: 追加されたコメント
310 311 label_comment_delete: コメント削除
311 312 label_query: カスタムクエリ
312 313 label_query_plural: カスタムクエリ
313 314 label_query_new: 新しいクエリ
314 315 label_filter_add: フィルタ追加
315 316 label_filter_plural: フィルタ
316 317 label_equals: 等しい
317 318 label_not_equals: 等しくない
318 319 label_in_less_than: 残日数がこれより多い
319 320 label_in_more_than: 残日数がこれより少ない
320 321 label_in: 残日数
321 322 label_today: 今日
322 323 label_this_week: this week
323 324 label_less_than_ago: 経過日数がこれより少ない
324 325 label_more_than_ago: 経過日数がこれより多い
325 326 label_ago: 日前
326 327 label_contains: 含む
327 328 label_not_contains: 含まない
328 329 label_day_plural:
329 330 label_repository: リポジトリ
330 331 label_browse: ブラウズ
331 332 label_modification: %d点の変更
332 333 label_modification_plural: %d点の変更
333 334 label_revision: リビジョン
334 335 label_revision_plural: リビジョン
335 336 label_added: 追加
336 337 label_modified: 変更
337 338 label_deleted: 削除
338 339 label_latest_revision: 最新リビジョン
339 340 label_latest_revision_plural: 最新リビジョン
340 341 label_view_revisions: リビジョンを見る
341 342 label_max_size: 最大サイズ
342 343 label_on: 合計
343 344 label_sort_highest: 一番上へ
344 345 label_sort_higher: 上へ
345 346 label_sort_lower: 下へ
346 347 label_sort_lowest: 一番下へ
347 348 label_roadmap: ロードマップ
348 349 label_roadmap_due_in: 期日まで
349 350 label_roadmap_overdue: %s late
350 351 label_roadmap_no_issues: このバージョンに向けての問題はありません
351 352 label_search: 検索
352 353 label_result: %d件の結果
353 354 label_result_plural: %d件の結果
354 355 label_all_words: すべての単語
355 356 label_wiki: Wiki
356 357 label_wiki_edit: Wiki編集
357 358 label_wiki_edit_plural: Wiki編集
358 359 label_wiki_page: Wiki page
359 360 label_wiki_page_plural: Wikiページ
360 361 label_page_index: 索引
361 362 label_current_version: 最新版
362 363 label_preview: プレビュー
363 364 label_feed_plural: フィード
364 365 label_changes_details: 全変更の詳細
365 366 label_issue_tracking: 問題トラッキング
366 367 label_spent_time: 経過時間
367 368 label_f_hour: %.2f 時間
368 369 label_f_hour_plural: %.2f 時間
369 370 label_time_tracking: 時間トラッキング
370 371 label_change_plural: 変更
371 372 label_statistics: 統計
372 373 label_commits_per_month: 月別のコミット
373 374 label_commits_per_author: 起票者別のコミット
374 375 label_view_diff: 差分を見る
375 376 label_diff_inline: インライン
376 377 label_diff_side_by_side: 横に並べる
377 378 label_options: オプション
378 379 label_copy_workflow_from: ワークフローをここからコピー
379 380 label_permissions_report: 権限レポート
380 381 label_watched_issues: ウォッチ中の問題
381 382 label_related_issues: 関連する問題
382 383 label_applied_status: 適用されたステータス
383 384 label_loading: ロード中...
384 385 label_relation_new: 新しい関連
385 386 label_relation_delete: 関連の削除
386 387 label_relates_to: 関係している
387 388 label_duplicates: 重複している
388 389 label_blocks: ブロックしている
389 390 label_blocked_by: ブロックされている
390 391 label_precedes: 先行する
391 392 label_follows: 後続する
392 393 label_end_to_start: start to end
393 394 label_end_to_end: end to end
394 395 label_start_to_start: start to start
395 396 label_start_to_end: start to end
396 397 label_stay_logged_in: ログインを維持
397 398 label_disabled: 無効
398 399 label_show_completed_versions: 完了したバージョンを表示
399 400 label_me: 自分
400 401 label_board: フォーラム
401 402 label_board_new: 新しいフォーラム
402 403 label_board_plural: フォーラム
403 404 label_topic_plural: トピック
404 405 label_message_plural: メッセージ
405 406 label_message_last: 最新のメッセージ
406 407 label_message_new: 新しいメッセージ
407 408 label_reply_plural: 返答
408 409 label_send_information: アカウント情報をユーザに送信
409 410 label_year: Year
410 411 label_month: Month
411 412 label_week: Week
412 413 label_date_from: From
413 414 label_date_to: To
414 415 label_language_based: Language based
415 416 label_sort_by: Sort by "%s"
416 417 label_send_test_email: Send a test email
417 418 label_feeds_access_key_created_on: RSS access key created %s ago
418 419
419 420 button_login: ログイン
420 421 button_submit: 変更
421 422 button_save: 保存
422 423 button_check_all: チェックを全部つける
423 424 button_uncheck_all: チェックを全部外す
424 425 button_delete: 削除
425 426 button_create: 作成
426 427 button_test: テスト
427 428 button_edit: 編集
428 429 button_add: 追加
429 430 button_change: 変更
430 431 button_apply: 適用
431 432 button_clear: クリア
432 433 button_lock: ロック
433 434 button_unlock: アンロック
434 435 button_download: ダウンロード
435 436 button_list: 一覧
436 437 button_view: 見る
437 438 button_move: 移動
438 439 button_back: 戻る
439 440 button_cancel: キャンセル
440 441 button_activate: 有効にする
441 442 button_sort: ソート
442 443 button_log_time: 時間を記録
443 444 button_rollback: このバージョンにロールバック
444 445 button_watch: ウォッチ
445 446 button_unwatch: ウォッチをやめる
446 447 button_reply: 返答
447 448 button_archive: 書庫に保存
448 449 button_unarchive: 書庫から戻す
449 450 button_reset: Reset
451 button_rename: Rename
450 452
451 453 status_active: 有効
452 454 status_registered: 登録
453 455 status_locked: ロック
454 456
455 457 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
456 458 text_regexp_info: 例) ^[A-Z0-9]+$
457 459 text_min_max_length_info: 0だと無制限になります
458 460 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
459 461 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
460 462 text_are_you_sure: 本当に?
461 463 text_journal_changed: %sから%sに変更
462 464 text_journal_set_to: %sにセット
463 465 text_journal_deleted: 削除
464 466 text_tip_task_begin_day: この日に開始するタスク
465 467 text_tip_task_end_day: この日に終了するタスク
466 468 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
467 469 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
468 470 text_caracters_maximum: 最大 %d 文字です。
469 471 text_length_between: 長さは %d から %d 文字までです。
470 472 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
471 473 text_unallowed_characters: 使えない文字です
472 474 text_comma_separated: (カンマで区切った)複数の値が使えます
473 475 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
474 476
475 477 default_role_manager: 管理者
476 478 default_role_developper: 開発者
477 479 default_role_reporter: 報告者
478 480 default_tracker_bug: バグ
479 481 default_tracker_feature: 機能
480 482 default_tracker_support: サポート
481 483 default_issue_status_new: 新規
482 484 default_issue_status_assigned: 担当
483 485 default_issue_status_resolved: 解決
484 486 default_issue_status_feedback: フィードバック
485 487 default_issue_status_closed: 終了
486 488 default_issue_status_rejected: 却下
487 489 default_doc_category_user: ユーザ文書
488 490 default_doc_category_tech: 技術文書
489 491 default_priority_low: 低め
490 492 default_priority_normal: 通常
491 493 default_priority_high: 高め
492 494 default_priority_urgent: 急いで
493 495 default_priority_immediate: 今すぐ
494 496 default_activity_design: デザイン作業
495 497 default_activity_development: 開発作業
496 498
497 499 enumeration_issue_priorities: 問題の優先度
498 500 enumeration_doc_categories: 文書カテゴリ
499 501 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,498 +1,500
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: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,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 dag
9 9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 13 actionview_datehelper_time_in_words_minute: 1 minuut
14 14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 20 actionview_instancetag_blank_option: Selecteer
21 21
22 22 activerecord_error_inclusion: staat niet in de lijst
23 23 activerecord_error_exclusion: is gereserveerd
24 24 activerecord_error_invalid: is ongeldig
25 25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 26 activerecord_error_accepted: moet geaccepteerd worden
27 27 activerecord_error_empty: mag niet leeg zijn
28 28 activerecord_error_blank: mag niet blanco zijn
29 29 activerecord_error_too_long: is te lang
30 30 activerecord_error_too_short: is te kort
31 31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 32 activerecord_error_taken: is al in gebruik
33 33 activerecord_error_not_a_number: is geen getal
34 34 activerecord_error_not_a_date: is geen valide datum
35 35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38 38
39 39 general_fmt_age: %d jr
40 40 general_fmt_age_plural: %d jr
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nee'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nee'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Nederlands'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54 54
55 55 notice_account_updated: Account is met succes gewijzigd
56 56 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
57 57 notice_account_password_updated: Wachtwoord is met succes gewijzigd
58 58 notice_account_wrong_password: Incorrect wachtwoord
59 59 notice_account_register_done: Account is met succes aangemaakt.
60 60 notice_account_unknown_email: Onbekende gebruiker.
61 61 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
62 62 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
63 63 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
64 64 notice_successful_create: Maken succesvol.
65 65 notice_successful_update: Wijzigen succesvol.
66 66 notice_successful_delete: Verwijderen succesvol.
67 67 notice_successful_connection: Verbinding succesvol.
68 68 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
69 69 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
70 70 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
71 71 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Uw redMine wachtwoord
77 77 mail_subject_register: redMine account activatie
78 78
79 79 gui_validation_error: 1 fout
80 80 gui_validation_error_plural: %d fouten
81 81
82 82 field_name: Naam
83 83 field_description: Beschrijving
84 84 field_summary: Samenvatting
85 85 field_is_required: Verplicht
86 86 field_firstname: Voornaam
87 87 field_lastname: Achternaam
88 88 field_mail: Email
89 89 field_filename: Bestand
90 90 field_filesize: Grootte
91 91 field_downloads: Downloads
92 92 field_author: Auteur
93 93 field_created_on: Aangemaakt
94 94 field_updated_on: Gewijzigd
95 95 field_field_format: Formaat
96 96 field_is_for_all: Voor alle projecten
97 97 field_possible_values: Mogelijke waarden
98 98 field_regexp: Reguliere expressie
99 99 field_min_length: Minimale lengte
100 100 field_max_length: Maximale lengte
101 101 field_value: Waarde
102 102 field_category: Categorie
103 103 field_title: Titel
104 104 field_project: Project
105 105 field_issue: Issue
106 106 field_status: Status
107 107 field_notes: Notities
108 108 field_is_closed: Issue gesloten
109 109 field_is_default: Default status
110 110 field_html_color: Kleur
111 111 field_tracker: Tracker
112 112 field_subject: Onderwerp
113 113 field_due_date: Verwachte datum gereed
114 114 field_assigned_to: Toegewezen aan
115 115 field_priority: Prioriteit
116 116 field_fixed_version: Opgeloste versie
117 117 field_user: Gebruiker
118 118 field_role: Rol
119 119 field_homepage: Homepage
120 120 field_is_public: Publiek
121 121 field_parent: Subproject van
122 122 field_is_in_chlog: Issues weergegeven in wijzigingslog
123 123 field_is_in_roadmap: Issues weergegeven in roadmap
124 124 field_login: Inloggen
125 125 field_mail_notification: Mail mededelingen
126 126 field_admin: Administrateur
127 127 field_last_login_on: Laatste bezoek
128 128 field_language: Taal
129 129 field_effective_date: Datum
130 130 field_password: Wachtwoord
131 131 field_new_password: Nieuw wachtwoord
132 132 field_password_confirmation: Bevestigen
133 133 field_version: Versie
134 134 field_type: Type
135 135 field_host: Host
136 136 field_port: Port
137 137 field_account: Account
138 138 field_base_dn: Base DN
139 139 field_attr_login: Login attribuut
140 140 field_attr_firstname: Voornaam attribuut
141 141 field_attr_lastname: Achternaam attribuut
142 142 field_attr_mail: Email attribuut
143 143 field_onthefly: On-the-fly aanmaken van een gebruiker
144 144 field_start_date: Start
145 145 field_done_ratio: %% Gereed
146 146 field_auth_source: Authenticatiemethode
147 147 field_hide_mail: Verberg mijn emailadres
148 148 field_comments: Commentaar
149 149 field_url: URL
150 150 field_start_page: Startpagina
151 151 field_subproject: Subproject
152 152 field_hours: Uren
153 153 field_activity: Activiteit
154 154 field_spent_on: Datum
155 155 field_identifier: Identificatiecode
156 156 field_is_filter: Gebruikt als een filter
157 157 field_issue_to_id: Gerelateerd issue
158 158 field_delay: Vertraging
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Applicatie titel
162 163 setting_app_subtitle: Applicatie ondertitel
163 164 setting_welcome_text: Welkomsttekst
164 165 setting_default_language: Default taal
165 166 setting_login_required: Authent. nodig
166 167 setting_self_registration: Zelf-registratie toegestaan
167 168 setting_attachment_max_size: Attachment max. grootte
168 169 setting_issues_export_limit: Limiet export issues
169 170 setting_mail_from: Afzender mail adres
170 171 setting_host_name: Host naam
171 172 setting_text_formatting: Tekst formaat
172 173 setting_wiki_compression: Wiki geschiedenis comprimeren
173 174 setting_feeds_limit: Feed inhoud limiet
174 175 setting_autofetch_changesets: Haal commits automatisch op
175 176 setting_sys_api_enabled: Gebruik WS voor repository beheer
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Gebruiker
183 184 label_user_plural: Gebruikers
184 185 label_user_new: Nieuwe gebruiker
185 186 label_project: Project
186 187 label_project_new: Nieuw project
187 188 label_project_plural: Projecten
188 189 label_project_all: Alle Projecten
189 190 label_project_latest: Nieuwste projecten
190 191 label_issue: Issue
191 192 label_issue_new: Nieuw issue
192 193 label_issue_plural: Issues
193 194 label_issue_view_all: Bekijk alle issues
194 195 label_document: Document
195 196 label_document_new: Nieuw document
196 197 label_document_plural: Documenten
197 198 label_role: Rol
198 199 label_role_plural: Rollen
199 200 label_role_new: Nieuwe rol
200 201 label_role_and_permissions: Rollen en permissies
201 202 label_member: Lid
202 203 label_member_new: Nieuw lid
203 204 label_member_plural: Leden
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Trackers
206 207 label_tracker_new: Nieuwe tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Issue status
209 210 label_issue_status_plural: Issue statussen
210 211 label_issue_status_new: Nieuwe status
211 212 label_issue_category: Issue categorie
212 213 label_issue_category_plural: Issue categorieën
213 214 label_issue_category_new: Nieuwe categorie
214 215 label_custom_field: Custom veld
215 216 label_custom_field_plural: Custom velden
216 217 label_custom_field_new: Nieuw custom veld
217 218 label_enumerations: Enumeraties
218 219 label_enumeration_new: Nieuwe waarde
219 220 label_information: Informatie
220 221 label_information_plural: Informatie
221 222 label_please_login: Gaarne inloggen
222 223 label_register: Registreer
223 224 label_password_lost: Wachtwoord verloren
224 225 label_home: Home
225 226 label_my_page: Mijn pagina
226 227 label_my_account: Mijn account
227 228 label_my_projects: Mijn projecten
228 229 label_administration: Administratie
229 230 label_login: Inloggen
230 231 label_logout: Uitloggen
231 232 label_help: Help
232 233 label_reported_issues: Gemelde issues
233 234 label_assigned_to_me_issues: Aan mij toegewezen issues
234 235 label_last_login: Laatste bezoek
235 236 label_last_updates: Laatste wijziging
236 237 label_last_updates_plural: %d laatste wijziging
237 238 label_registered_on: Geregistreerd op
238 239 label_activity: Activiteit
239 240 label_new: Nieuw
240 241 label_logged_as: Ingelogd als
241 242 label_environment: Omgeving
242 243 label_authentication: Authenticatie
243 244 label_auth_source: Authenticatie modus
244 245 label_auth_source_new: Nieuwe authenticatie modus
245 246 label_auth_source_plural: Authenticatie modi
246 247 label_subproject_plural: Subprojecten
247 248 label_min_max_length: Min - Max lengte
248 249 label_list: Lijst
249 250 label_date: Datum
250 251 label_integer: Integer
251 252 label_boolean: Boolean
252 253 label_string: Tekst
253 254 label_text: Lange tekst
254 255 label_attribute: Attribuut
255 256 label_attribute_plural: Attributen
256 257 label_download: %d Download
257 258 label_download_plural: %d Downloads
258 259 label_no_data: Geen gegevens om te tonen
259 260 label_change_status: Wijzig status
260 261 label_history: Geschiedenis
261 262 label_attachment: Bestand
262 263 label_attachment_new: Nieuw bestand
263 264 label_attachment_delete: Verwijder bestand
264 265 label_attachment_plural: Bestanden
265 266 label_report: Rapport
266 267 label_report_plural: Rapporten
267 268 label_news: Nieuws
268 269 label_news_new: Voeg nieuws toe
269 270 label_news_plural: Nieuws
270 271 label_news_latest: Laatste nieuws
271 272 label_news_view_all: Bekijk al het nieuws
272 273 label_change_log: Wijzigingslog
273 274 label_settings: Instellingen
274 275 label_overview: Overzicht
275 276 label_version: Versie
276 277 label_version_new: Nieuwe versie
277 278 label_version_plural: Versies
278 279 label_confirmation: Bevestiging
279 280 label_export_to: Exporteer naar
280 281 label_read: Lees...
281 282 label_public_projects: Publieke projecten
282 283 label_open_issues: open
283 284 label_open_issues_plural: open
284 285 label_closed_issues: gesloten
285 286 label_closed_issues_plural: gesloten
286 287 label_total: Totaal
287 288 label_permissions: Permissies
288 289 label_current_status: Huidige status
289 290 label_new_statuses_allowed: Nieuwe statuses toegestaan
290 291 label_all: alle
291 292 label_none: geen
292 293 label_next: Volgende
293 294 label_previous: Vorige
294 295 label_used_by: Gebruikt door
295 296 label_details: Details
296 297 label_add_note: Voeg een notitie toe
297 298 label_per_page: Per pagina
298 299 label_calendar: Kalender
299 300 label_months_from: maanden vanaf
300 301 label_gantt: Gantt
301 302 label_internal: Intern
302 303 label_last_changes: laatste %d wijzigingen
303 304 label_change_view_all: Bekijk alle wijzigingen
304 305 label_personalize_page: Personaliseer deze pagina
305 306 label_comment: Commentaar
306 307 label_comment_plural: Commentaar
307 308 label_comment_add: Voeg commentaar toe
308 309 label_comment_added: Commentaar toegevoegd
309 310 label_comment_delete: Verwijder commentaar
310 311 label_query: Eigen zoekvraag
311 312 label_query_plural: Eigen zoekvragen
312 313 label_query_new: Nieuwe zoekvraag
313 314 label_filter_add: Voeg filter toe
314 315 label_filter_plural: Filters
315 316 label_equals: is gelijk
316 317 label_not_equals: is niet gelijk
317 318 label_in_less_than: in minder dan
318 319 label_in_more_than: in meer dan
319 320 label_in: in
320 321 label_today: vandaag
321 322 label_this_week: this week
322 323 label_less_than_ago: minder dan dagen geleden
323 324 label_more_than_ago: meer dan dagen geleden
324 325 label_ago: dagen geleden
325 326 label_contains: bevat
326 327 label_not_contains: bevat niet
327 328 label_day_plural: dagen
328 329 label_repository: Repository
329 330 label_browse: Blader
330 331 label_modification: %d wijziging
331 332 label_modification_plural: %d wijzigingen
332 333 label_revision: Revisie
333 334 label_revision_plural: Revisies
334 335 label_added: toegevoegd
335 336 label_modified: gewijzigd
336 337 label_deleted: verwijderd
337 338 label_latest_revision: Meest recente revisie
338 339 label_latest_revision_plural: Meest recente revisies
339 340 label_view_revisions: Bekijk revisies
340 341 label_max_size: Maximum grootte
341 342 label_on: 'van'
342 343 label_sort_highest: Verplaats naar begin
343 344 label_sort_higher: Verplaats naar boven
344 345 label_sort_lower: Verplaats naar beneden
345 346 label_sort_lowest: Verplaats naar eind
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Due in
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Geen issues voor deze versie
350 351 label_search: Zoeken
351 352 label_result: %d resultaat
352 353 label_result_plural: %d resultaten
353 354 label_all_words: Alle woorden
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki edit
356 357 label_wiki_edit_plural: Wiki edits
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Index
360 361 label_current_version: Huidige versie
361 362 label_preview: Testweergave
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Details van alle wijzigingen
364 365 label_issue_tracking: Issue tracking
365 366 label_spent_time: Gespendeerde tijd
366 367 label_f_hour: %.2f uur
367 368 label_f_hour_plural: %.2f uren
368 369 label_time_tracking: Tijd tracking
369 370 label_change_plural: Wijzigingen
370 371 label_statistics: Statistieken
371 372 label_commits_per_month: Commits per maand
372 373 label_commits_per_author: Commits per auteur
373 374 label_view_diff: Bekijk verschillen
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: naast elkaar
376 377 label_options: Opties
377 378 label_copy_workflow_from: Kopieer workflow van
378 379 label_permissions_report: Permissies rapport
379 380 label_watched_issues: Gemonitorde issues
380 381 label_related_issues: Gerelateerde issues
381 382 label_applied_status: Toegekende status
382 383 label_loading: Laden...
383 384 label_relation_new: Nieuwe relatie
384 385 label_relation_delete: Verwijder relatie
385 386 label_relates_to: gerelateerd aan
386 387 label_duplicates: dupliceert
387 388 label_blocks: blokkeert
388 389 label_blocked_by: geblokkeerd door
389 390 label_precedes: gaat vooraf aan
390 391 label_follows: volgt op
391 392 label_end_to_start: eind tot start
392 393 label_end_to_end: eind tot eind
393 394 label_start_to_start: start tot start
394 395 label_start_to_end: start tot eind
395 396 label_stay_logged_in: Blijf ingelogd
396 397 label_disabled: uitgeschakeld
397 398 label_show_completed_versions: Toon afgeronde versies
398 399 label_me: ik
399 400 label_board: Forum
400 401 label_board_new: Nieuw forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Onderwerpen
403 404 label_message_plural: Berichten
404 405 label_message_last: Laatste bericht
405 406 label_message_new: Nieuw bericht
406 407 label_reply_plural: Antwoorden
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Inloggen
419 420 button_submit: Toevoegen
420 421 button_save: Bewaren
421 422 button_check_all: Selecteer alle
422 423 button_uncheck_all: Deselecteer alle
423 424 button_delete: Verwijder
424 425 button_create: Maak
425 426 button_test: Test
426 427 button_edit: Bewerk
427 428 button_add: Voeg toe
428 429 button_change: Wijzig
429 430 button_apply: Pas toe
430 431 button_clear: Leeg maken
431 432 button_lock: Lock
432 433 button_unlock: Unlock
433 434 button_download: Download
434 435 button_list: Lijst
435 436 button_view: Bekijken
436 437 button_move: Verplaatsen
437 438 button_back: Terug
438 439 button_cancel: Annuleer
439 440 button_activate: Activeer
440 441 button_sort: Sorteer
441 442 button_log_time: Log tijd
442 443 button_rollback: Rollback naar deze versie
443 444 button_watch: Monitor
444 445 button_unwatch: Niet meer monitoren
445 446 button_reply: Antwoord
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: Actief
451 453 status_registered: geregistreerd
452 454 status_locked: gelockt
453 455
454 456 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
455 457 text_regexp_info: bv. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 betekent geen restrictie
457 459 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
458 460 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
459 461 text_are_you_sure: Weet U het zeker ?
460 462 text_journal_changed: gewijzigd van %s naar %s
461 463 text_journal_set_to: ingesteld op %s
462 464 text_journal_deleted: verwijderd
463 465 text_tip_task_begin_day: taak die op deze dag begint
464 466 text_tip_task_end_day: taak die op deze dag eindigt
465 467 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
466 468 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
467 469 text_caracters_maximum: %d van maximum aantal tekens.
468 470 text_length_between: Lengte tussen %d en %d tekens.
469 471 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
470 472 text_unallowed_characters: Niet toegestane tekens
471 473 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
472 474 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
473 475
474 476 default_role_manager: Manager
475 477 default_role_developper: Ontwikkelaar
476 478 default_role_reporter: Rapporteur
477 479 default_tracker_bug: Bug
478 480 default_tracker_feature: Feature
479 481 default_tracker_support: Support
480 482 default_issue_status_new: Nieuw
481 483 default_issue_status_assigned: Toegewezen
482 484 default_issue_status_resolved: Opgelost
483 485 default_issue_status_feedback: Terugkoppeling
484 486 default_issue_status_closed: Gesloten
485 487 default_issue_status_rejected: Afgewezen
486 488 default_doc_category_user: Gebruikersdocumentatie
487 489 default_doc_category_tech: Technische documentatie
488 490 default_priority_low: Laag
489 491 default_priority_normal: Normaal
490 492 default_priority_high: Hoog
491 493 default_priority_urgent: Spoed
492 494 default_priority_immediate: Onmiddellijk
493 495 default_activity_design: Design
494 496 default_activity_development: Development
495 497
496 498 enumeration_issue_priorities: Issue prioriteiten
497 499 enumeration_doc_categories: Document categorieën
498 500 enumeration_activities: Activiteiten (tijd tracking)
@@ -1,498 +1,500
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 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d yr
40 40 general_fmt_age_plural: %d yrs
41 41 general_fmt_date: %%m/%%d/%%Y
42 42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nao'
46 46 general_text_Yes: 'Sim'
47 47 general_text_no: 'nao'
48 48 general_text_yes: 'sim'
49 49 general_lang_name: 'Portugues Brasileiro'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
54 54
55 55 notice_account_updated: Conta foi alterada com sucesso.
56 56 notice_account_invalid_creditentials: Usuario ou senha invalido.
57 57 notice_account_password_updated: Senha foi alterada com sucesso.
58 58 notice_account_wrong_password: Senha errada.
59 59 notice_account_register_done: Conta foi criada com sucesso.
60 60 notice_account_unknown_email: Usuario desconhecido.
61 61 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 62 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 63 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 64 notice_successful_create: Criado com sucesso.
65 65 notice_successful_update: Alterado com sucesso.
66 66 notice_successful_delete: Apagado com sucesso.
67 67 notice_successful_connection: Conectado com sucesso.
68 68 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 69 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 70 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Sua senha do redMine.
77 77 mail_subject_register: Ativacao de conta do redMine.
78 78
79 79 gui_validation_error: 1 erro
80 80 gui_validation_error_plural: %d erros
81 81
82 82 field_name: Nome
83 83 field_description: Descricao
84 84 field_summary: Sumario
85 85 field_is_required: Obrigatorio
86 86 field_firstname: Primeiro nome
87 87 field_lastname: Ultimo nome
88 88 field_mail: Email
89 89 field_filename: Arquivo
90 90 field_filesize: Tamanho
91 91 field_downloads: Downloads
92 92 field_author: Autor
93 93 field_created_on: Criado
94 94 field_updated_on: Alterado
95 95 field_field_format: Formato
96 96 field_is_for_all: Para todos os projetos
97 97 field_possible_values: Possiveis valores
98 98 field_regexp: Expressao regular
99 99 field_min_length: Tamanho minimo
100 100 field_max_length: Tamanho maximo
101 101 field_value: Valor
102 102 field_category: Categoria
103 103 field_title: Titulo
104 104 field_project: Projeto
105 105 field_issue: Tarefa
106 106 field_status: Status
107 107 field_notes: Notas
108 108 field_is_closed: Tarefa fechada
109 109 field_is_default: Status padrao
110 110 field_html_color: Cor
111 111 field_tracker: Tipo
112 112 field_subject: Titulo
113 113 field_due_date: Data devida
114 114 field_assigned_to: Atribuido para
115 115 field_priority: Prioridade
116 116 field_fixed_version: Versao corrigida
117 117 field_user: Usuario
118 118 field_role: Regra
119 119 field_homepage: Pagina inicial
120 120 field_is_public: Publico
121 121 field_parent: Sub-projeto de
122 122 field_is_in_chlog: Tarefas mostradas no changelog
123 123 field_is_in_roadmap: Tarefas mostradas no roadmap
124 124 field_login: Login
125 125 field_mail_notification: Notificacoes por email
126 126 field_admin: Administrador
127 127 field_last_login_on: Ultima conexao
128 128 field_language: Lingua
129 129 field_effective_date: Data
130 130 field_password: Senha
131 131 field_new_password: Nova senha
132 132 field_password_confirmation: Confirmacao
133 133 field_version: Versao
134 134 field_type: Tipo
135 135 field_host: Servidor
136 136 field_port: Porta
137 137 field_account: Conta
138 138 field_base_dn: Base DN
139 139 field_attr_login: Atributo login
140 140 field_attr_firstname: Atributo primeiro nome
141 141 field_attr_lastname: Atributo ultimo nome
142 142 field_attr_mail: Atributo email
143 143 field_onthefly: Criacao de usuario on-the-fly
144 144 field_start_date: Inicio
145 145 field_done_ratio: %% Terminado
146 146 field_auth_source: Modo de autenticacao
147 147 field_hide_mail: Esconder meu email
148 148 field_comments: Comentario
149 149 field_url: URL
150 150 field_start_page: Pagina inicial
151 151 field_subproject: Sub-projeto
152 152 field_hours: Horas
153 153 field_activity: Atividade
154 154 field_spent_on: Data
155 155 field_identifier: Identificador
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Titulo da aplicacao
162 163 setting_app_subtitle: Sub-titulo da aplicacao
163 164 setting_welcome_text: Texto de boa-vinda
164 165 setting_default_language: Lingua padrao
165 166 setting_login_required: Autenticacao obrigatoria
166 167 setting_self_registration: Registro de si mesmo permitido
167 168 setting_attachment_max_size: Tamanho maximo do anexo
168 169 setting_issues_export_limit: Limite de exportacao das tarefas
169 170 setting_mail_from: Email enviado de
170 171 setting_host_name: Servidor
171 172 setting_text_formatting: Formato do texto
172 173 setting_wiki_compression: Compactacao do historio do Wiki
173 174 setting_feeds_limit: Limite do Feed
174 175 setting_autofetch_changesets: Autofetch commits
175 176 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Usuario
183 184 label_user_plural: Usuarios
184 185 label_user_new: Novo usuario
185 186 label_project: Projeto
186 187 label_project_new: Novo projeto
187 188 label_project_plural: Projetos
188 189 label_project_all: All Projects
189 190 label_project_latest: Ultimos projetos
190 191 label_issue: Tarefa
191 192 label_issue_new: Nova tarefa
192 193 label_issue_plural: Tarefas
193 194 label_issue_view_all: Ver todas as tarefas
194 195 label_document: Documento
195 196 label_document_new: Novo documento
196 197 label_document_plural: Documentos
197 198 label_role: Regra
198 199 label_role_plural: Regras
199 200 label_role_new: Nova regra
200 201 label_role_and_permissions: Regras e permissoes
201 202 label_member: Membro
202 203 label_member_new: Novo membro
203 204 label_member_plural: Membros
204 205 label_tracker: Tipo
205 206 label_tracker_plural: Tipos
206 207 label_tracker_new: Novo tipo
207 208 label_workflow: Workflow
208 209 label_issue_status: Status da tarefa
209 210 label_issue_status_plural: Status das tarefas
210 211 label_issue_status_new: Novo status
211 212 label_issue_category: Categoria de tarefa
212 213 label_issue_category_plural: Categorias de tarefa
213 214 label_issue_category_new: Nova categoria
214 215 label_custom_field: Campo personalizado
215 216 label_custom_field_plural: Campos personalizado
216 217 label_custom_field_new: Novo campo personalizado
217 218 label_enumerations: Enumeracao
218 219 label_enumeration_new: Novo valor
219 220 label_information: Informacao
220 221 label_information_plural: Informacoes
221 222 label_please_login: Efetue login
222 223 label_register: Registre-se
223 224 label_password_lost: Perdi a senha
224 225 label_home: Pagina inicial
225 226 label_my_page: Minha pagina
226 227 label_my_account: Minha conta
227 228 label_my_projects: Meus projetos
228 229 label_administration: Administracao
229 230 label_login: Login
230 231 label_logout: Logout
231 232 label_help: Ajuda
232 233 label_reported_issues: Tarefas reportadas
233 234 label_assigned_to_me_issues: Tarefas atribuidas a mim
234 235 label_last_login: Utima conexao
235 236 label_last_updates: Ultima alteracao
236 237 label_last_updates_plural: %d Ultimas alteracoes
237 238 label_registered_on: Registrado em
238 239 label_activity: Atividade
239 240 label_new: Novo
240 241 label_logged_as: Logado como
241 242 label_environment: Ambiente
242 243 label_authentication: Autenticacao
243 244 label_auth_source: Modo de autenticacao
244 245 label_auth_source_new: Novo modo de autenticacao
245 246 label_auth_source_plural: Modos de autenticacao
246 247 label_subproject_plural: Sub-projetos
247 248 label_min_max_length: Tamanho min-max
248 249 label_list: Lista
249 250 label_date: Data
250 251 label_integer: Inteiro
251 252 label_boolean: Boleano
252 253 label_string: Texto
253 254 label_text: Texto longo
254 255 label_attribute: Atributo
255 256 label_attribute_plural: Atributos
256 257 label_download: %d Download
257 258 label_download_plural: %d Downloads
258 259 label_no_data: Sem dados para mostrar
259 260 label_change_status: Mudar status
260 261 label_history: Historico
261 262 label_attachment: Arquivo
262 263 label_attachment_new: Novo arquivo
263 264 label_attachment_delete: Apagar arquivo
264 265 label_attachment_plural: Arquivos
265 266 label_report: Relatorio
266 267 label_report_plural: Relatorio
267 268 label_news: Noticias
268 269 label_news_new: Adicionar noticias
269 270 label_news_plural: Noticias
270 271 label_news_latest: Ultimas noticias
271 272 label_news_view_all: Ver todas as noticias
272 273 label_change_log: Change log
273 274 label_settings: Ajustes
274 275 label_overview: Visao geral
275 276 label_version: Versao
276 277 label_version_new: Nova versao
277 278 label_version_plural: Versoes
278 279 label_confirmation: Confirmacao
279 280 label_export_to: Exportar para
280 281 label_read: Ler...
281 282 label_public_projects: Projetos publicos
282 283 label_open_issues: Aberto
283 284 label_open_issues_plural: Abertos
284 285 label_closed_issues: Fechado
285 286 label_closed_issues_plural: Fechados
286 287 label_total: Total
287 288 label_permissions: Permissoes
288 289 label_current_status: Status atual
289 290 label_new_statuses_allowed: Novo status permitido
290 291 label_all: todos
291 292 label_none: nenhum
292 293 label_next: Proximo
293 294 label_previous: Anterior
294 295 label_used_by: Usado por
295 296 label_details: Detalhes
296 297 label_add_note: Adicionar nota
297 298 label_per_page: Por pagina
298 299 label_calendar: Calendario
299 300 label_months_from: Meses de
300 301 label_gantt: Gantt
301 302 label_internal: Interno
302 303 label_last_changes: utlimas %d mudancas
303 304 label_change_view_all: Mostrar todas as mudancas
304 305 label_personalize_page: Personalizar esta pagina
305 306 label_comment: Comentario
306 307 label_comment_plural: Comentarios
307 308 label_comment_add: Adicionar comentario
308 309 label_comment_added: Comentario adicionado
309 310 label_comment_delete: Apagar comentario
310 311 label_query: Consulta personalizada
311 312 label_query_plural: Consultas personalizadas
312 313 label_query_new: Nova consulta
313 314 label_filter_add: Adicionar filtro
314 315 label_filter_plural: Filtros
315 316 label_equals: e
316 317 label_not_equals: nao e
317 318 label_in_less_than: e maior que
318 319 label_in_more_than: e menor que
319 320 label_in: em
320 321 label_today: hoje
321 322 label_this_week: this week
322 323 label_less_than_ago: faz menos de
323 324 label_more_than_ago: faz mais de
324 325 label_ago: dias atras
325 326 label_contains: contem
326 327 label_not_contains: nao contem
327 328 label_day_plural: dias
328 329 label_repository: Repository
329 330 label_browse: Browse
330 331 label_modification: %d change
331 332 label_modification_plural: %d changes
332 333 label_revision: Revision
333 334 label_revision_plural: Revisions
334 335 label_added: added
335 336 label_modified: modified
336 337 label_deleted: deleted
337 338 label_latest_revision: Latest revision
338 339 label_latest_revision_plural: Latest revisions
339 340 label_view_revisions: View revisions
340 341 label_max_size: Maximum size
341 342 label_on: 'em'
342 343 label_sort_highest: Mover para o inicio
343 344 label_sort_higher: Mover para cima
344 345 label_sort_lower: Mover para baixo
345 346 label_sort_lowest: Mover para o fim
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Due in
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Sem tarefas para essa versao
350 351 label_search: Busca
351 352 label_result: %d resultado
352 353 label_result_plural: %d resultados
353 354 label_all_words: Todas as palavras
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki edit
356 357 label_wiki_edit_plural: Wiki edits
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Index
360 361 label_current_version: Versao atual
361 362 label_preview: Previa
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Detalhes de todas as mudancas
364 365 label_issue_tracking: Tarefas
365 366 label_spent_time: Tempo gasto
366 367 label_f_hour: %.2f hora
367 368 label_f_hour_plural: %.2f horas
368 369 label_time_tracking: Tempo trabalhado
369 370 label_change_plural: Mudancas
370 371 label_statistics: Estatisticas
371 372 label_commits_per_month: Commits por mes
372 373 label_commits_per_author: Commits por autor
373 374 label_view_diff: Ver diferencas
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: side by side
376 377 label_options: Opcoes
377 378 label_copy_workflow_from: Copiar workflow de
378 379 label_permissions_report: Relatorio de permissoes
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Login
419 420 button_submit: Enviar
420 421 button_save: Salvar
421 422 button_check_all: Marcar todos
422 423 button_uncheck_all: Desmarcar todos
423 424 button_delete: Apagar
424 425 button_create: Criar
425 426 button_test: Testar
426 427 button_edit: Editar
427 428 button_add: Adicionar
428 429 button_change: Mudar
429 430 button_apply: Aplicar
430 431 button_clear: Limpar
431 432 button_lock: Bloquear
432 433 button_unlock: Desbloquear
433 434 button_download: Download
434 435 button_list: Listar
435 436 button_view: Ver
436 437 button_move: Mover
437 438 button_back: Voltar
438 439 button_cancel: Cancelar
439 440 button_activate: Ativar
440 441 button_sort: Ordenar
441 442 button_log_time: Tempo de trabalho
442 443 button_rollback: Voltar para esta versao
443 444 button_watch: Watch
444 445 button_unwatch: Unwatch
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: ativo
451 453 status_registered: registrado
452 454 status_locked: bloqueado
453 455
454 456 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
455 457 text_regexp_info: eg. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 siginifica sem restricao
457 459 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
458 460 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
459 461 text_are_you_sure: Voce tem certeza ?
460 462 text_journal_changed: alterado de %s para %s
461 463 text_journal_set_to: setar para %s
462 464 text_journal_deleted: apagado
463 465 text_tip_task_begin_day: tarefa comeca neste dia
464 466 text_tip_task_end_day: tarefa termina neste dia
465 467 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
466 468 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
467 469 text_caracters_maximum: %d maximo de caracteres
468 470 text_length_between: Tamanho entre %d e %d caracteres.
469 471 text_tracker_no_workflow: Sem workflow definido para este tipo.
470 472 text_unallowed_characters: Unallowed characters
471 473 text_comma_separated: Multiple values allowed (comma separated).
472 474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
473 475
474 476 default_role_manager: Analista de Negocio ou Gerente de Projeto
475 477 default_role_developper: Desenvolvedor
476 478 default_role_reporter: Analista de Suporte
477 479 default_tracker_bug: Bug
478 480 default_tracker_feature: Implementacao
479 481 default_tracker_support: Suporte
480 482 default_issue_status_new: Novo
481 483 default_issue_status_assigned: Atribuido
482 484 default_issue_status_resolved: Resolvido
483 485 default_issue_status_feedback: Feedback
484 486 default_issue_status_closed: Fechado
485 487 default_issue_status_rejected: Rejeitado
486 488 default_doc_category_user: Documentacao do usuario
487 489 default_doc_category_tech: Documentacao do tecnica
488 490 default_priority_low: Baixo
489 491 default_priority_normal: Normal
490 492 default_priority_high: Alto
491 493 default_priority_urgent: Urgente
492 494 default_priority_immediate: Imediato
493 495 default_activity_design: Design
494 496 default_activity_development: Desenvolvimento
495 497
496 498 enumeration_issue_priorities: Prioridade das tarefas
497 499 enumeration_doc_categories: Categorias de documento
498 500 enumeration_activities: Atividades (time tracking)
@@ -1,498 +1,500
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,Março,Abril,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: em torno de uma hora
11 11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 12 actionview_datehelper_time_in_words_hour_about_single: em torno de 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 de 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 de um segundo
19 19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 20 actionview_instancetag_blank_option: Selecione
21 21
22 22 activerecord_error_inclusion: não existe na lista
23 23 activerecord_error_exclusion: já existe na lista
24 24 activerecord_error_invalid: é inválido
25 25 activerecord_error_confirmation: não confere com sua confirmação
26 26 activerecord_error_accepted: deve ser aceito
27 27 activerecord_error_empty: não pode ser vazio
28 28 activerecord_error_blank: não pode estar em branco
29 29 activerecord_error_too_long: é muito longo
30 30 activerecord_error_too_short: é muito curto
31 31 activerecord_error_wrong_length: possui o comprimento errado
32 32 activerecord_error_taken: já foi usado em outro registro
33 33 activerecord_error_not_a_number: não é um número
34 34 activerecord_error_not_a_date: não é uma data válida
35 35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
38 38
39 39 general_fmt_age: %d ano
40 40 general_fmt_age_plural: %d anos
41 41 general_fmt_date: %%d/%%m/%%Y
42 42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Não'
46 46 general_text_Yes: 'Sim'
47 47 general_text_no: 'não'
48 48 general_text_yes: 'sim'
49 49 general_lang_name: 'Português'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54 54
55 55 notice_account_updated: Conta foi atualizada com sucesso.
56 56 notice_account_invalid_creditentials: Usuário ou senha inválidos.
57 57 notice_account_password_updated: Senha foi alterada com sucesso.
58 58 notice_account_wrong_password: Senha errada.
59 59 notice_account_register_done: Conta foi criada com sucesso.
60 60 notice_account_unknown_email: Usuário desconhecido.
61 61 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
62 62 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
63 63 notice_account_activated: Sua conta foi ativada. Você pode logar agora
64 64 notice_successful_create: Criado com sucesso.
65 65 notice_successful_update: Alterado com sucesso.
66 66 notice_successful_delete: Apagado com sucesso.
67 67 notice_successful_connection: Conectado com sucesso.
68 68 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
69 69 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
70 70 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
71 71 notice_not_authorized: Você não está autorizado a acessar esta página.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Sua senha do redMine.
77 77 mail_subject_register: Ativação de conta do redMine.
78 78
79 79 gui_validation_error: 1 erro
80 80 gui_validation_error_plural: %d erros
81 81
82 82 field_name: Nome
83 83 field_description: Descrição
84 84 field_summary: Sumário
85 85 field_is_required: Obrigatório
86 86 field_firstname: Primeiro nome
87 87 field_lastname: Último nome
88 88 field_mail: Email
89 89 field_filename: Arquivo
90 90 field_filesize: Tamanho
91 91 field_downloads: Downloads
92 92 field_author: Autor
93 93 field_created_on: Criado
94 94 field_updated_on: Alterado
95 95 field_field_format: Formato
96 96 field_is_for_all: Para todos os projetos
97 97 field_possible_values: Possíveis valores
98 98 field_regexp: Expressão regular
99 99 field_min_length: Tamanho mínimo
100 100 field_max_length: Tamanho máximo
101 101 field_value: Valor
102 102 field_category: Categoria
103 103 field_title: Título
104 104 field_project: Projeto
105 105 field_issue: Tarefa
106 106 field_status: Status
107 107 field_notes: Notas
108 108 field_is_closed: Tarefa fechada
109 109 field_is_default: Status padrão
110 110 field_html_color: Cor
111 111 field_tracker: Tipo
112 112 field_subject: Assunto
113 113 field_due_date: Data final
114 114 field_assigned_to: Atribuído para
115 115 field_priority: Prioridade
116 116 field_fixed_version: Versão corrigida
117 117 field_user: Usuário
118 118 field_role: Regra
119 119 field_homepage: Página inicial
120 120 field_is_public: Público
121 121 field_parent: Sub-projeto de
122 122 field_is_in_chlog: Tarefas mostradas no changelog
123 123 field_is_in_roadmap: Tarefas mostradas no roadmap
124 124 field_login: Login
125 125 field_mail_notification: Notificações por email
126 126 field_admin: Administrador
127 127 field_last_login_on: Última conexão
128 128 field_language: Língua
129 129 field_effective_date: Data
130 130 field_password: Senha
131 131 field_new_password: Nova senha
132 132 field_password_confirmation: Confirmação
133 133 field_version: Versão
134 134 field_type: Tipo
135 135 field_host: Servidor
136 136 field_port: Porta
137 137 field_account: Conta
138 138 field_base_dn: Base DN
139 139 field_attr_login: Atributo login
140 140 field_attr_firstname: Atributo primeiro nome
141 141 field_attr_lastname: Atributo último nome
142 142 field_attr_mail: Atributo email
143 143 field_onthefly: Criação de usuário sob-demanda
144 144 field_start_date: Início
145 145 field_done_ratio: %% Terminado
146 146 field_auth_source: Modo de autenticação
147 147 field_hide_mail: Esconda meu email
148 148 field_comments: Comentário
149 149 field_url: URL
150 150 field_start_page: Página inicial
151 151 field_subproject: Sub-projeto
152 152 field_hours: Horas
153 153 field_activity: Atividade
154 154 field_spent_on: Data
155 155 field_identifier: Identificador
156 156 field_is_filter: Usado como filtro
157 157 field_issue_to_id: Tarefa relacionada
158 158 field_delay: Atraso
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Título da aplicação
162 163 setting_app_subtitle: Sub-título da aplicação
163 164 setting_welcome_text: Texto de boas-vindas
164 165 setting_default_language: Linguagem padrão
165 166 setting_login_required: Autenticação obrigatória
166 167 setting_self_registration: Registro permitido
167 168 setting_attachment_max_size: Tamanho máximo do anexo
168 169 setting_issues_export_limit: Limite de exportação das tarefas
169 170 setting_mail_from: Email enviado de
170 171 setting_host_name: Servidor
171 172 setting_text_formatting: Formato do texto
172 173 setting_wiki_compression: Compactação do histórico do Wiki
173 174 setting_feeds_limit: Limite do Feed
174 175 setting_autofetch_changesets: Buscar automaticamente commits
175 176 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
176 177 setting_commit_ref_keywords: Palavras-chave de referôncia
177 178 setting_commit_fix_keywords: Palavras-chave fixas
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Usuário
183 184 label_user_plural: Usuários
184 185 label_user_new: Novo usuário
185 186 label_project: Projeto
186 187 label_project_new: Novo projeto
187 188 label_project_plural: Projetos
188 189 label_project_all: All Projects
189 190 label_project_latest: Últimos projetos
190 191 label_issue: Tarefa
191 192 label_issue_new: Nova tarefa
192 193 label_issue_plural: Tarefas
193 194 label_issue_view_all: Ver todas as tarefas
194 195 label_document: Documento
195 196 label_document_new: Novo documento
196 197 label_document_plural: Documentos
197 198 label_role: Regra
198 199 label_role_plural: Regras
199 200 label_role_new: Nova regra
200 201 label_role_and_permissions: Regras e permissões
201 202 label_member: Membro
202 203 label_member_new: Novo membro
203 204 label_member_plural: Membros
204 205 label_tracker: Tipo
205 206 label_tracker_plural: Tipos
206 207 label_tracker_new: Novo tipo
207 208 label_workflow: Workflow
208 209 label_issue_status: Status da tarefa
209 210 label_issue_status_plural: Status das tarefas
210 211 label_issue_status_new: Novo status
211 212 label_issue_category: Categoria da tarefa
212 213 label_issue_category_plural: Categorias das tarefas
213 214 label_issue_category_new: Nova categoria
214 215 label_custom_field: Campo personalizado
215 216 label_custom_field_plural: Campos personalizados
216 217 label_custom_field_new: Novo campo personalizado
217 218 label_enumerations: Enumeração
218 219 label_enumeration_new: Novo valor
219 220 label_information: Informação
220 221 label_information_plural: Informações
221 222 label_please_login: Efetue login
222 223 label_register: Registre-se
223 224 label_password_lost: Perdi a senha
224 225 label_home: Página inicial
225 226 label_my_page: Minha página
226 227 label_my_account: Minha conta
227 228 label_my_projects: Meus projetos
228 229 label_administration: Administração
229 230 label_login: Login
230 231 label_logout: Logout
231 232 label_help: Ajuda
232 233 label_reported_issues: Tarefas reportadas
233 234 label_assigned_to_me_issues: Tarefas atribuídas à mim
234 235 label_last_login: Útima conexão
235 236 label_last_updates: Última alteração
236 237 label_last_updates_plural: %d Últimas alterações
237 238 label_registered_on: Registrado em
238 239 label_activity: Atividade
239 240 label_new: Novo
240 241 label_logged_as: Logado como
241 242 label_environment: Ambiente
242 243 label_authentication: Autenticação
243 244 label_auth_source: Modo de autenticação
244 245 label_auth_source_new: Novo modo de autenticação
245 246 label_auth_source_plural: Modos de autenticação
246 247 label_subproject_plural: Sub-projetos
247 248 label_min_max_length: Tamanho min-max
248 249 label_list: Lista
249 250 label_date: Data
250 251 label_integer: Inteiro
251 252 label_boolean: Booleano
252 253 label_string: Texto
253 254 label_text: Texto longo
254 255 label_attribute: Atributo
255 256 label_attribute_plural: Atributos
256 257 label_download: %d Download
257 258 label_download_plural: %d Downloads
258 259 label_no_data: Sem dados para mostrar
259 260 label_change_status: Mudar status
260 261 label_history: Histórico
261 262 label_attachment: Arquivo
262 263 label_attachment_new: Novo arquivo
263 264 label_attachment_delete: Apagar arquivo
264 265 label_attachment_plural: Arquivos
265 266 label_report: Relatório
266 267 label_report_plural: Relatório
267 268 label_news: Notícias
268 269 label_news_new: Adicionar notícias
269 270 label_news_plural: Notícias
270 271 label_news_latest: Últimas notícias
271 272 label_news_view_all: Ver todas as notícias
272 273 label_change_log: Log de mudanças
273 274 label_settings: Configurações
274 275 label_overview: Visão geral
275 276 label_version: Versão
276 277 label_version_new: Nova versão
277 278 label_version_plural: Versões
278 279 label_confirmation: Confirmação
279 280 label_export_to: Exportar para
280 281 label_read: Ler...
281 282 label_public_projects: Projetos públicos
282 283 label_open_issues: Aberto
283 284 label_open_issues_plural: Abertos
284 285 label_closed_issues: Fechado
285 286 label_closed_issues_plural: Fechados
286 287 label_total: Total
287 288 label_permissions: Permissões
288 289 label_current_status: Status atual
289 290 label_new_statuses_allowed: Novo status permitido
290 291 label_all: todos
291 292 label_none: nenhum
292 293 label_next: Próximo
293 294 label_previous: Anterior
294 295 label_used_by: Usado por
295 296 label_details: Detalhes
296 297 label_add_note: Adicionar nota
297 298 label_per_page: Por página
298 299 label_calendar: Calendário
299 300 label_months_from: Meses de
300 301 label_gantt: Gantt
301 302 label_internal: Interno
302 303 label_last_changes: últimas %d mudanças
303 304 label_change_view_all: Mostrar todas as mudanças
304 305 label_personalize_page: Personalizar esta página
305 306 label_comment: Comentário
306 307 label_comment_plural: Comentários
307 308 label_comment_add: Adicionar comentário
308 309 label_comment_added: Comentário adicionado
309 310 label_comment_delete: Apagar comentário
310 311 label_query: Consulta personalizada
311 312 label_query_plural: Consultas personalizadas
312 313 label_query_new: Nova consulta
313 314 label_filter_add: Adicionar filtro
314 315 label_filter_plural: Filtros
315 316 label_equals: é
316 317 label_not_equals: não e
317 318 label_in_less_than: é maior que
318 319 label_in_more_than: é menor que
319 320 label_in: em
320 321 label_today: hoje
321 322 label_this_week: this week
322 323 label_less_than_ago: faz menos de
323 324 label_more_than_ago: faz mais de
324 325 label_ago: dias atrás
325 326 label_contains: contém
326 327 label_not_contains: não contém
327 328 label_day_plural: dias
328 329 label_repository: Repositório
329 330 label_browse: Procurar
330 331 label_modification: %d mudança
331 332 label_modification_plural: %d mudanças
332 333 label_revision: Revisão
333 334 label_revision_plural: Revisões
334 335 label_added: adicionado
335 336 label_modified: modificado
336 337 label_deleted: deletado
337 338 label_latest_revision: Última revisão
338 339 label_latest_revision_plural: Últimas revisões
339 340 label_view_revisions: Ver revisões
340 341 label_max_size: Tamanho máximo
341 342 label_on: em
342 343 label_sort_highest: Mover para o início
343 344 label_sort_higher: Mover para cima
344 345 label_sort_lower: Mover para baixo
345 346 label_sort_lowest: Mover para o fim
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Termina em
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Sem tarefas para essa versão
350 351 label_search: Busca
351 352 label_result: %d resultado
352 353 label_result_plural: %d resultados
353 354 label_all_words: Todas as palavras
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki edit
356 357 label_wiki_edit_plural: Wiki edits
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Index
360 361 label_current_version: Versão atual
361 362 label_preview: Prévia
362 363 label_feed_plural: Feeds
363 364 label_changes_details: Detalhes de todas as mudanças
364 365 label_issue_tracking: Tarefas
365 366 label_spent_time: Tempo gasto
366 367 label_f_hour: %.2f hora
367 368 label_f_hour_plural: %.2f horas
368 369 label_time_tracking: Tempo trabalhado
369 370 label_change_plural: Mudanças
370 371 label_statistics: Estatísticas
371 372 label_commits_per_month: Commits por mês
372 373 label_commits_per_author: Commits por autor
373 374 label_view_diff: Ver diferenças
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: lado a lado
376 377 label_options: Opções
377 378 label_copy_workflow_from: Copiar workflow de
378 379 label_permissions_report: Relatório de permissões
379 380 label_watched_issues: Tarefas observadas
380 381 label_related_issues: tarefas relacionadas
381 382 label_applied_status: Status aplicado
382 383 label_loading: Carregando...
383 384 label_relation_new: Nova relação
384 385 label_relation_delete: Deletar relação
385 386 label_relates_to: relacionado à
386 387 label_duplicates: duplicadas
387 388 label_blocks: bloqueios
388 389 label_blocked_by: bloqueado por
389 390 label_precedes: procede
390 391 label_follows: segue
391 392 label_end_to_start: fim ao início
392 393 label_end_to_end: fim ao fim
393 394 label_start_to_start: ínícia ao inícia
394 395 label_start_to_end: inícia ao fim
395 396 label_stay_logged_in: Rester connecté
396 397 label_disabled: désactivé
397 398 label_show_completed_versions: Voire les versions passées
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Login
419 420 button_submit: Enviar
420 421 button_save: Salvar
421 422 button_check_all: Marcar todos
422 423 button_uncheck_all: Desmarcar todos
423 424 button_delete: Apagar
424 425 button_create: Criar
425 426 button_test: Testar
426 427 button_edit: Editar
427 428 button_add: Adicionar
428 429 button_change: Mudar
429 430 button_apply: Aplicar
430 431 button_clear: Limpar
431 432 button_lock: Bloquear
432 433 button_unlock: Desbloquear
433 434 button_download: Download
434 435 button_list: Listar
435 436 button_view: Ver
436 437 button_move: Mover
437 438 button_back: Voltar
438 439 button_cancel: Cancelar
439 440 button_activate: Ativar
440 441 button_sort: Ordenar
441 442 button_log_time: Tempo de trabalho
442 443 button_rollback: Voltar para esta versão
443 444 button_watch: Observar
444 445 button_unwatch: Não observar
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: ativo
451 453 status_registered: registrado
452 454 status_locked: bloqueado
453 455
454 456 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
455 457 text_regexp_info: ex. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 siginifica sem restrição
457 459 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
458 460 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
459 461 text_are_you_sure: Você tem certeza ?
460 462 text_journal_changed: alterado de %s para %s
461 463 text_journal_set_to: alterar para %s
462 464 text_journal_deleted: apagado
463 465 text_tip_task_begin_day: tarefa começa neste dia
464 466 text_tip_task_end_day: tarefa termina neste dia
465 467 text_tip_task_begin_end_day: tarefa começa e termina neste dia
466 468 text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
467 469 text_caracters_maximum: %d móximo de caracteres
468 470 text_length_between: Tamanho entre %d e %d caracteres.
469 471 text_tracker_no_workflow: Sem workflow definido para este tipo.
470 472 text_unallowed_characters: Caracteres não permitidos
471 473 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
472 474 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
473 475
474 476 default_role_manager: Analista de Negócio ou Gerente de Projeto
475 477 default_role_developper: Desenvolvedor
476 478 default_role_reporter: Analista de Suporte
477 479 default_tracker_bug: Bug
478 480 default_tracker_feature: Implementaçõo
479 481 default_tracker_support: Suporte
480 482 default_issue_status_new: Novo
481 483 default_issue_status_assigned: Atribuído
482 484 default_issue_status_resolved: Resolvido
483 485 default_issue_status_feedback: Feedback
484 486 default_issue_status_closed: Fechado
485 487 default_issue_status_rejected: Rejeitado
486 488 default_doc_category_user: Documentação do usuário
487 489 default_doc_category_tech: Documentação técnica
488 490 default_priority_low: Baixo
489 491 default_priority_normal: Normal
490 492 default_priority_high: Alto
491 493 default_priority_urgent: Urgente
492 494 default_priority_immediate: Imediato
493 495 default_activity_design: Design
494 496 default_activity_development: Desenvolvimento
495 497
496 498 enumeration_issue_priorities: Prioridade das tarefas
497 499 enumeration_doc_categories: Categorias de documento
498 500 enumeration_activities: Atividades (time tracking)
@@ -1,498 +1,500
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: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,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 dag
9 9 actionview_datehelper_time_in_words_day_plural: %d dagar
10 10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
13 13 actionview_datehelper_time_in_words_minute: 1 minut
14 14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 16 actionview_datehelper_time_in_words_minute_plural: %d minuter
17 17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 20 actionview_instancetag_blank_option: Var god välj
21 21
22 22 activerecord_error_inclusion: finns inte i listan
23 23 activerecord_error_exclusion: är reserverad
24 24 activerecord_error_invalid: är ogiltig
25 25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 26 activerecord_error_accepted: måste accepteras
27 27 activerecord_error_empty: får inte vara tom
28 28 activerecord_error_blank: får inte vara tom
29 29 activerecord_error_too_long: är för lång
30 30 activerecord_error_too_short: är för kort
31 31 activerecord_error_wrong_length: har fel längd
32 32 activerecord_error_taken: har redan blivit tagen
33 33 activerecord_error_not_a_number: är inte ett nummer
34 34 activerecord_error_not_a_date: är inte ett korrekt datum
35 35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
36 36 activerecord_error_not_same_project: doesn't belong to the same project
37 37 activerecord_error_circular_dependency: This relation would create a circular dependency
38 38
39 39 general_fmt_age: %d år
40 40 general_fmt_age_plural: %d år
41 41 general_fmt_date: %%Y-%%m-%%d
42 42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 44 general_fmt_time: %%I:%%M %%p
45 45 general_text_No: 'Nej'
46 46 general_text_Yes: 'Ja'
47 47 general_text_no: 'nej'
48 48 general_text_yes: 'ja'
49 49 general_lang_name: 'Svenska'
50 50 general_csv_separator: ','
51 51 general_csv_encoding: ISO-8859-1
52 52 general_pdf_encoding: ISO-8859-1
53 53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54 54
55 55 notice_account_updated: Kontot har uppdaterats
56 56 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
57 57 notice_account_password_updated: Lösenordet har uppdaterats
58 58 notice_account_wrong_password: Fel lösenord
59 59 notice_account_register_done: Kontot har skapats.
60 60 notice_account_unknown_email: Okäns användare.
61 61 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
62 62 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
63 63 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
64 64 notice_successful_create: Lyckat skapande.
65 65 notice_successful_update: Lyckad uppdatering.
66 66 notice_successful_delete: Lyckad borttagning.
67 67 notice_successful_connection: Lyckad uppkoppling.
68 68 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
69 69 notice_locking_conflict: Data har uppdaterats av en annan användare.
70 70 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
71 71 notice_not_authorized: You are not authorized to access this page.
72 72 notice_email_sent: An email was sent to %s
73 73 notice_email_error: An error occurred while sending mail (%s)
74 74 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 75
76 76 mail_subject_lost_password: Ditt redMine lösenord
77 77 mail_subject_register: redMine kontoaktivering
78 78
79 79 gui_validation_error: 1 fel
80 80 gui_validation_error_plural: %d fel
81 81
82 82 field_name: Namn
83 83 field_description: Beskrivning
84 84 field_summary: Sammanfattning
85 85 field_is_required: Obligatorisk
86 86 field_firstname: Förnamn
87 87 field_lastname: Efternamn
88 88 field_mail: Email
89 89 field_filename: Fil
90 90 field_filesize: Storlek
91 91 field_downloads: Nerladdningar
92 92 field_author: Författare
93 93 field_created_on: Skapad
94 94 field_updated_on: Uppdaterad
95 95 field_field_format: Format
96 96 field_is_for_all: För alla projekt
97 97 field_possible_values: Möjliga värden
98 98 field_regexp: Regular expression
99 99 field_min_length: Minimilängd
100 100 field_max_length: Maximumlängd
101 101 field_value: Värde
102 102 field_category: Kategori
103 103 field_title: Titel
104 104 field_project: Projekt
105 105 field_issue: Brist
106 106 field_status: Status
107 107 field_notes: Anteckningar
108 108 field_is_closed: Brist stängd
109 109 field_is_default: Defaultstatus
110 110 field_html_color: Färg
111 111 field_tracker: Tracker
112 112 field_subject: Rubrik
113 113 field_due_date: Färdigdatum
114 114 field_assigned_to: Tilldelad
115 115 field_priority: Prioritet
116 116 field_fixed_version: Fixed version
117 117 field_user: Användare
118 118 field_role: Roll
119 119 field_homepage: Hemsida
120 120 field_is_public: Offentlig
121 121 field_parent: Delprojekt av
122 122 field_is_in_chlog: Brister visade i ändringslogg
123 123 field_is_in_roadmap: Bsiter visade i roadmap
124 124 field_login: Inloggning
125 125 field_mail_notification: Emailnotifieringar
126 126 field_admin: Administratör
127 127 field_last_login_on: Senaste inloggning
128 128 field_language: Språk
129 129 field_effective_date: Datum
130 130 field_password: Lösenord
131 131 field_new_password: Nytt lösenord
132 132 field_password_confirmation: Bekräfta
133 133 field_version: Version
134 134 field_type: Typ
135 135 field_host: Värddator
136 136 field_port: Port
137 137 field_account: Konto
138 138 field_base_dn: Bas DN
139 139 field_attr_login: Inloggningsattribut
140 140 field_attr_firstname: Förnamnattribut
141 141 field_attr_lastname: Efternamnattribut
142 142 field_attr_mail: Emailattribut
143 143 field_onthefly: On-the-fly användarskapning
144 144 field_start_date: Start
145 145 field_done_ratio: %% Done
146 146 field_auth_source: Authentikeringsläge
147 147 field_hide_mail: Dölj min emailadress
148 148 field_comment: Kommentar
149 149 field_url: URL
150 150 field_start_page: Startsida
151 151 field_subproject: Delprojekt
152 152 field_hours: Timmar
153 153 field_activity: Aktivitet
154 154 field_spent_on: Datum
155 155 field_identifier: Identifierare
156 156 field_is_filter: Used as a filter
157 157 field_issue_to_id: Related issue
158 158 field_delay: Delay
159 159 field_assignable: Issues can be assigned to this role
160 field_redirect_existing_links: Redirect existing links
160 161
161 162 setting_app_title: Applikationstitel
162 163 setting_app_subtitle: Applicationsunderrubrik
163 164 setting_welcome_text: Välkommentext
164 165 setting_default_language: Default språk
165 166 setting_login_required: Authent. obligatoriskt
166 167 setting_self_registration: Självregistrering påslaget
167 168 setting_attachment_max_size: Bifogad maxstorlek
168 169 setting_issues_export_limit: Brist exportgräns
169 170 setting_mail_from: Emailavsändare
170 171 setting_host_name: Värddatornamn
171 172 setting_text_formatting: Textformattering
172 173 setting_wiki_compression: Wiki historiekomprimering
173 174 setting_feeds_limit: Feed innehållsgräns
174 175 setting_autofetch_changesets: Automatisk hämtning av commits
175 176 setting_sys_api_enabled: Aktivera WS för repository management
176 177 setting_commit_ref_keywords: Referencing keywords
177 178 setting_commit_fix_keywords: Fixing keywords
178 179 setting_autologin: Autologin
179 180 setting_date_format: Date format
180 181 setting_cross_project_issue_relations: Allow cross-project issue relations
181 182
182 183 label_user: Användare
183 184 label_user_plural: Användare
184 185 label_user_new: Ny användare
185 186 label_project: Projekt
186 187 label_project_new: Nytt projekt
187 188 label_project_plural: Projekt
188 189 label_project_all: All Projects
189 190 label_project_latest: Senaste projekt
190 191 label_issue: Brist
191 192 label_issue_new: Ny brist
192 193 label_issue_plural: Brister
193 194 label_issue_view_all: Visa alla brister
194 195 label_document: Dokument
195 196 label_document_new: Nytt dokument
196 197 label_document_plural: Dokument
197 198 label_role: Roll
198 199 label_role_plural: Roller
199 200 label_role_new: Ny roll
200 201 label_role_and_permissions: Roller och rättigheter
201 202 label_member: Medlem
202 203 label_member_new: Ny medlem
203 204 label_member_plural: Medlemmar
204 205 label_tracker: Tracker
205 206 label_tracker_plural: Trackers
206 207 label_tracker_new: Ny tracker
207 208 label_workflow: Workflow
208 209 label_issue_status: Briststatus
209 210 label_issue_status_plural: Briststatusar
210 211 label_issue_status_new: Ny status
211 212 label_issue_category: Bristkategori
212 213 label_issue_category_plural: Bristkategorier
213 214 label_issue_category_new: Ny kategori
214 215 label_custom_field: Användardefinerat fält
215 216 label_custom_field_plural: Användardefinerade fält
216 217 label_custom_field_new: Nytt Användardefinerat fält
217 218 label_enumerations: Uppräkningar
218 219 label_enumeration_new: Nytt värde
219 220 label_information: Information
220 221 label_information_plural: Information
221 222 label_please_login: Var god logga in
222 223 label_register: Registrera
223 224 label_password_lost: Glömt lösenord
224 225 label_home: Hem
225 226 label_my_page: Min sida
226 227 label_my_account: Mitt konto
227 228 label_my_projects: Mina projekt
228 229 label_administration: Administration
229 230 label_login: Logga in
230 231 label_logout: Logga ut
231 232 label_help: Hjälp
232 233 label_reported_issues: Rapporterade brister
233 234 label_assigned_to_me_issues: Brister tilldelade mig
234 235 label_last_login: Senaste inloggning
235 236 label_last_updates: Senast uppdaterad
236 237 label_last_updates_plural: %d senaste uppdateringarna
237 238 label_registered_on: Registrerad
238 239 label_activity: Aktivitet
239 240 label_new: Ny
240 241 label_logged_as: Loggad som
241 242 label_environment: Miljö
242 243 label_authentication: Authentikering
243 244 label_auth_source: Authentikeringsläge
244 245 label_auth_source_new: Nytt authentikeringsläge
245 246 label_auth_source_plural: Authentikeringslägen
246 247 label_subproject_plural: Delprojekt
247 248 label_min_max_length: Min - Max längd
248 249 label_list: Lista
249 250 label_date: Datum
250 251 label_integer: Heltal
251 252 label_boolean: Boolean
252 253 label_string: Text
253 254 label_text: Long text
254 255 label_attribute: Attribut
255 256 label_attribute_plural: Attribut
256 257 label_download: %d Nerladdning
257 258 label_download_plural: %d Nerladdningar
258 259 label_no_data: Ingen data att visa
259 260 label_change_status: Ändra status
260 261 label_history: Historia
261 262 label_attachment: Fil
262 263 label_attachment_new: Ny fil
263 264 label_attachment_delete: Ta bort fil
264 265 label_attachment_plural: Filer
265 266 label_report: Rapport
266 267 label_report_plural: Rapporter
267 268 label_news: Nyhet
268 269 label_news_new: Lägg till nyhet
269 270 label_news_plural: Nyheter
270 271 label_news_latest: Senaste neheten
271 272 label_news_view_all: Visa alla nyheter
272 273 label_change_log: Ändringslogg
273 274 label_settings: Inställningar
274 275 label_overview: Överblick
275 276 label_version: Version
276 277 label_version_new: Ny version
277 278 label_version_plural: Versioner
278 279 label_confirmation: Bekräftelse
279 280 label_export_to: Exportera till
280 281 label_read: Läs...
281 282 label_public_projects: Offentligt projekt
282 283 label_open_issues: öppen
283 284 label_open_issues_plural: öppna
284 285 label_closed_issues: stängd
285 286 label_closed_issues_plural: stängda
286 287 label_total: Total
287 288 label_permissions: Rättigheter
288 289 label_current_status: Nuvarande status
289 290 label_new_statuses_allowed: Nya statusar tillåtna
290 291 label_all: alla
291 292 label_none: inga
292 293 label_next: Nästa
293 294 label_previous: Föregående
294 295 label_used_by: Använd av
295 296 label_details: Detaljer
296 297 label_add_note: Lägg till anteckning
297 298 label_per_page: Per sida
298 299 label_calendar: Kalender
299 300 label_months_from: månader från
300 301 label_gantt: Gantt
301 302 label_internal: Intern
302 303 label_last_changes: senaste %d ändringar
303 304 label_change_view_all: Visa alla ändringar
304 305 label_personalize_page: Anpassa denna sida
305 306 label_comment: Kommentar
306 307 label_comment_plural: Kommentarer
307 308 label_comment_add: Lägg till kommentar
308 309 label_comment_added: Kommentar tillagd
309 310 label_comment_delete: Ta bort kommentar
310 311 label_query: Användardefinerad fråga
311 312 label_query_plural: Användardefinerade frågor
312 313 label_query_new: Ny fråga
313 314 label_filter_add: Lägg till filter
314 315 label_filter_plural: Filter
315 316 label_equals: är
316 317 label_not_equals: är inte
317 318 label_in_less_than: i mindre än
318 319 label_in_more_than: i mer än
319 320 label_in: i
320 321 label_today: idag
321 322 label_this_week: this week
322 323 label_less_than_ago: mindre än dagar sedan
323 324 label_more_than_ago: mer än dagar sedan
324 325 label_ago: dagar sedan
325 326 label_contains: innehåller
326 327 label_not_contains: innehåller inte
327 328 label_day_plural: dagar
328 329 label_repository: Repositorie
329 330 label_browse: Bläddra
330 331 label_modification: %d ändring
331 332 label_modification_plural: %d ändringar
332 333 label_revision: Revision
333 334 label_revision_plural: Revisioner
334 335 label_added: tillagd
335 336 label_modified: modifierad
336 337 label_deleted: borttagen
337 338 label_latest_revision: Senaste revisionen
338 339 label_latest_revision_plural: Senaste revisionerna
339 340 label_view_revisions: Visa revisioner
340 341 label_max_size: Maximumstorlek
341 342 label_on: 'på'
342 343 label_sort_highest: Flytta till top
343 344 label_sort_higher: Flytta up
344 345 label_sort_lower: Flytta ner
345 346 label_sort_lowest: Flytta till botten
346 347 label_roadmap: Roadmap
347 348 label_roadmap_due_in: Färdig om
348 349 label_roadmap_overdue: %s late
349 350 label_roadmap_no_issues: Inga brister för denna version
350 351 label_search: Sök
351 352 label_result: %d resultat
352 353 label_result_plural: %d resultat
353 354 label_all_words: Alla ord
354 355 label_wiki: Wiki
355 356 label_wiki_edit: Wiki editera
356 357 label_wiki_edit_plural: Wiki editeringar
357 358 label_wiki_page: Wiki page
358 359 label_wiki_page_plural: Wiki pages
359 360 label_page_index: Index
360 361 label_current_version: Nuvarande version
361 362 label_preview: Preview
362 363 label_feed_plural: Feeder
363 364 label_changes_details: Detaljer om alla ändringar
364 365 label_issue_tracking: Bristspårning
365 366 label_spent_time: Spenderad tid
366 367 label_f_hour: %.2f timmar
367 368 label_f_hour_plural: %.2f timmar
368 369 label_time_tracking: Tidsspårning
369 370 label_change_plural: Ändringar
370 371 label_statistics: Statistik
371 372 label_commits_per_month: Commit per månad
372 373 label_commits_per_author: Commit per författare
373 374 label_view_diff: Visa skillnader
374 375 label_diff_inline: inline
375 376 label_diff_side_by_side: sida vid sida
376 377 label_options: Inställningar
377 378 label_copy_workflow_from: Kopiera workflow från
378 379 label_permissions_report: Rättighetsrapport
379 380 label_watched_issues: Watched issues
380 381 label_related_issues: Related issues
381 382 label_applied_status: Applied status
382 383 label_loading: Loading...
383 384 label_relation_new: New relation
384 385 label_relation_delete: Delete relation
385 386 label_relates_to: related to
386 387 label_duplicates: duplicates
387 388 label_blocks: blocks
388 389 label_blocked_by: blocked by
389 390 label_precedes: precedes
390 391 label_follows: follows
391 392 label_end_to_start: start to end
392 393 label_end_to_end: end to end
393 394 label_start_to_start: start to start
394 395 label_start_to_end: start to end
395 396 label_stay_logged_in: Stay logged in
396 397 label_disabled: disabled
397 398 label_show_completed_versions: Show completed versions
398 399 label_me: me
399 400 label_board: Forum
400 401 label_board_new: New forum
401 402 label_board_plural: Forums
402 403 label_topic_plural: Topics
403 404 label_message_plural: Messages
404 405 label_message_last: Last message
405 406 label_message_new: New message
406 407 label_reply_plural: Replies
407 408 label_send_information: Send account information to the user
408 409 label_year: Year
409 410 label_month: Month
410 411 label_week: Week
411 412 label_date_from: From
412 413 label_date_to: To
413 414 label_language_based: Language based
414 415 label_sort_by: Sort by "%s"
415 416 label_send_test_email: Send a test email
416 417 label_feeds_access_key_created_on: RSS access key created %s ago
417 418
418 419 button_login: Logga in
419 420 button_submit: Skicka
420 421 button_save: Spara
421 422 button_check_all: Markera alla
422 423 button_uncheck_all: Avmarkera alla
423 424 button_delete: Ta bort
424 425 button_create: Skapa
425 426 button_test: Testa
426 427 button_edit: Editera
427 428 button_add: Lägg till
428 429 button_change: Ändra
429 430 button_apply: Värkställ
430 431 button_clear: Rensa
431 432 button_lock: Lås
432 433 button_unlock: Lås upp
433 434 button_download: Ladda ner
434 435 button_list: Lista
435 436 button_view: Visa
436 437 button_move: Flytta
437 438 button_back: Tillbaka
438 439 button_cancel: Avbryt
439 440 button_activate: Aktivera
440 441 button_sort: Sortera
441 442 button_log_time: Logga tid
442 443 button_rollback: Rulla tillbaka till denna version
443 444 button_watch: Watch
444 445 button_unwatch: Unwatch
445 446 button_reply: Reply
446 447 button_archive: Archive
447 448 button_unarchive: Unarchive
448 449 button_reset: Reset
450 button_rename: Rename
449 451
450 452 status_active: activ
451 453 status_registered: registrerad
452 454 status_locked: låst
453 455
454 456 text_select_mail_notifications: Väl action för vilka email ska skickas.
455 457 text_regexp_info: eg. ^[A-Z0-9]+$
456 458 text_min_max_length_info: 0 betyder ingen gräns
457 459 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
458 460 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
459 461 text_are_you_sure: Är du säker?
460 462 text_journal_changed: ändrad från %s till %s
461 463 text_journal_set_to: satt till %s
462 464 text_journal_deleted: borttagen
463 465 text_tip_task_begin_day: arbetsuppgift börjar denna dag
464 466 text_tip_task_end_day: arbetsuppgift slutar denna dag
465 467 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
466 468 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
467 469 text_caracters_maximum: %d tecken maximum.
468 470 text_length_between: Längd mellan %d och %d tecken.
469 471 text_tracker_no_workflow: Inget workflow definerat för denna tracker
470 472 text_unallowed_characters: Unallowed characters
471 473 text_comma_separated: Multiple values allowed (comma separated).
472 474 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
473 475
474 476 default_role_manager: Förvaltare
475 477 default_role_developper: Utvecklare
476 478 default_role_reporter: Rapporterare
477 479 default_tracker_bug: Bugg
478 480 default_tracker_feature: Finess
479 481 default_tracker_support: Support
480 482 default_issue_status_new: Ny
481 483 default_issue_status_assigned: Tilldelad
482 484 default_issue_status_resolved: Löst
483 485 default_issue_status_feedback: Feedback
484 486 default_issue_status_closed: Stängd
485 487 default_issue_status_rejected: Avslagen
486 488 default_doc_category_user: Användardokumentation
487 489 default_doc_category_tech: Teknisk dokumentation
488 490 default_priority_low: Låg
489 491 default_priority_normal: Normal
490 492 default_priority_high: Hög
491 493 default_priority_urgent: Bråttom
492 494 default_priority_immediate: Omedelbar
493 495 default_activity_design: Design
494 496 default_activity_development: Utveckling
495 497
496 498 enumeration_issue_priorities: Bristprioriteringar
497 499 enumeration_doc_categories: Dokumentkategorier
498 500 enumeration_activities: Aktiviteter (tidsspårning)
@@ -1,500 +1,502
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 activerecord_error_not_same_project: doesn't belong to the same project
40 40 activerecord_error_circular_dependency: This relation would create a circular dependency
41 41
42 42 general_fmt_age: %d yr
43 43 general_fmt_age_plural: %d yrs
44 44 general_fmt_date: %%m/%%d/%%Y
45 45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 47 general_fmt_time: %%I:%%M %%p
48 48 general_text_No: '否'
49 49 general_text_Yes: '是'
50 50 general_text_no: '否'
51 51 general_text_yes: '是'
52 52 general_lang_name: 'Chinese (简体中文)'
53 53 general_csv_separator: ','
54 54 general_csv_encoding: gb2312
55 55 general_pdf_encoding: Big5
56 56 general_day_names: 一,二,三,四,五,六,日
57 57
58 58 notice_account_updated: 帐户更新成功。
59 59 notice_account_invalid_creditentials: 用户名或密码不正确
60 60 notice_account_password_updated: 成功更新口令
61 61 notice_account_wrong_password: 错误的口令
62 62 notice_account_register_done: 帐户已创建成功
63 63 notice_account_unknown_email: 未知用户
64 64 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
65 65 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
66 66 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
67 67 notice_successful_create: 创建成功
68 68 notice_successful_update: 更新成功
69 69 notice_successful_delete: 删除成功
70 70 notice_successful_connection: 连接成功
71 71 notice_file_not_found: 您访问的页面不存在或已被删除。
72 72 notice_locking_conflict: 数据已被另一个用户更新
73 73 notice_scm_error: 在版本库中不存在该条目或修订
74 74 notice_not_authorized: You are not authorized to access this page.
75 75 notice_email_sent: An email was sent to %s
76 76 notice_email_error: An error occurred while sending mail (%s)
77 77 notice_feeds_access_key_reseted: Your RSS access key was reseted.
78 78
79 79 mail_subject_lost_password: 您的redMine口令
80 80 mail_subject_register: redMine帐户激活
81 81
82 82 gui_validation_error: 1 个错误
83 83 gui_validation_error_plural: %d 个错误
84 84
85 85 field_name: 名称
86 86 field_description: 描述
87 87 field_summary: 摘要
88 88 field_is_required: 必填
89 89 field_firstname: 名字
90 90 field_lastname:
91 91 field_mail: 邮件地址
92 92 field_filename: 文件
93 93 field_filesize: 大小
94 94 field_downloads: 下载次数
95 95 field_author: 作者
96 96 field_created_on: 创建于
97 97 field_updated_on: 更新于
98 98 field_field_format: 格式
99 99 field_is_for_all: 应用于所有项目
100 100 field_possible_values: 可能的值
101 101 field_regexp: 正则表达式
102 102 field_min_length: 最小长度
103 103 field_max_length: 最大长度
104 104 field_value:
105 105 field_category: 分类
106 106 field_title: 标题
107 107 field_project: 项目
108 108 field_issue: 任务
109 109 field_status: 状态
110 110 field_notes: 说明
111 111 field_is_closed: 已关闭的任务
112 112 field_is_default: 默认状态
113 113 field_html_color: 颜色
114 114 field_tracker: 跟踪
115 115 field_subject: 主题
116 116 field_due_date: 到期日
117 117 field_assigned_to: 指派
118 118 field_priority: 优先级
119 119 field_fixed_version: 修订版本
120 120 field_user: 用户
121 121 field_role: 角色
122 122 field_homepage: 主页
123 123 field_is_public: 公开
124 124 field_parent: 上级项目
125 125 field_is_in_chlog: 在更新日志中显示任务
126 126 field_is_in_roadmap: 在路线图中显示任务
127 127 field_login: 登录名
128 128 field_mail_notification: 邮件通知
129 129 field_admin: 管理员
130 130 field_last_login_on: 最后登录
131 131 field_language: 语言
132 132 field_effective_date: 日期
133 133 field_password: 口令
134 134 field_new_password: 新口令
135 135 field_password_confirmation: 确认
136 136 field_version: 版本
137 137 field_type: 类别
138 138 field_host: 主机
139 139 field_port: 端口
140 140 field_account: 帐号
141 141 field_base_dn: Base DN
142 142 field_attr_login: 登录名属性
143 143 field_attr_firstname: 名字属性
144 144 field_attr_lastname: 姓属性
145 145 field_attr_mail: 邮件属性
146 146 field_onthefly: On-the-fly user creation
147 147 field_start_date: 开始
148 148 field_done_ratio: %% 完成
149 149 field_auth_source: 认证模式
150 150 field_hide_mail: 隐藏我的邮件
151 151 field_comments: 注释
152 152 field_url: URL
153 153 field_start_page: 起始页
154 154 field_subproject: 子项目
155 155 field_hours: Hours
156 156 field_activity: 活动
157 157 field_spent_on: 日期
158 158 field_identifier: Identifier
159 159 field_is_filter: Used as a filter
160 160 field_issue_to_id: Related issue
161 161 field_delay: Delay
162 162 field_assignable: Issues can be assigned to this role
163 field_redirect_existing_links: Redirect existing links
163 164
164 165 setting_app_title: 应用程序标题
165 166 setting_app_subtitle: 应用程序子标题
166 167 setting_welcome_text: 欢迎文字
167 168 setting_default_language: 默认语言
168 169 setting_login_required: 要求认证
169 170 setting_self_registration: 允许自注册
170 171 setting_attachment_max_size: 附件最大尺寸
171 172 setting_issues_export_limit: Issues export limit
172 173 setting_mail_from: Emission mail address
173 174 setting_host_name: 主机名称
174 175 setting_text_formatting: 文本格式
175 176 setting_wiki_compression: Wiki history compression
176 177 setting_feeds_limit: Feed content limit
177 178 setting_autofetch_changesets: Autofetch commits
178 179 setting_sys_api_enabled: Enable WS for repository management
179 180 setting_commit_ref_keywords: Referencing keywords
180 181 setting_commit_fix_keywords: Fixing keywords
181 182 setting_autologin: Autologin
182 183 setting_date_format: Date format
183 184 setting_cross_project_issue_relations: Allow cross-project issue relations
184 185
185 186 label_user: 用户
186 187 label_user_plural: 用户列表
187 188 label_user_new: 新建用户
188 189 label_project: 项目
189 190 label_project_new: 新建项目
190 191 label_project_plural: 项目列表
191 192 label_project_all: All Projects
192 193 label_project_latest: 最近的项目列表
193 194 label_issue: 任务
194 195 label_issue_new: 新建任务
195 196 label_issue_plural: 任务列表
196 197 label_issue_view_all: 查看所有任务
197 198 label_document: 文档
198 199 label_document_new: 新建文档
199 200 label_document_plural: 文档列表
200 201 label_role: 角色
201 202 label_role_plural: 角色列表
202 203 label_role_new: 新建角色
203 204 label_role_and_permissions: 角色和权限
204 205 label_member: 成员
205 206 label_member_new: 新建成员
206 207 label_member_plural: 成员列表
207 208 label_tracker: 跟踪标签
208 209 label_tracker_plural: 跟踪标签列表
209 210 label_tracker_new: 新建跟踪标签
210 211 label_workflow: 工作流
211 212 label_issue_status: 任务状态列表
212 213 label_issue_status_plural: 任务状态列表
213 214 label_issue_status_new: 新建任务状态列表
214 215 label_issue_category: 任务类别
215 216 label_issue_category_plural: 任务类别列表
216 217 label_issue_category_new: 新建任务类别
217 218 label_custom_field: 自定义字段
218 219 label_custom_field_plural: 自定义字段列表
219 220 label_custom_field_new: 新建自定义字段
220 221 label_enumerations: 枚举列表
221 222 label_enumeration_new: 新建枚举值
222 223 label_information: 信息
223 224 label_information_plural: 信息
224 225 label_please_login: 请登录
225 226 label_register: 注册
226 227 label_password_lost: 忘记口令
227 228 label_home: 主页
228 229 label_my_page: 我的工作台
229 230 label_my_account: 我的帐号
230 231 label_my_projects: 我的项目列表
231 232 label_administration: 管理
232 233 label_login: 登录
233 234 label_logout: 退出
234 235 label_help: 帮助
235 236 label_reported_issues: 已报告的问题
236 237 label_assigned_to_me_issues: 分配给我的任务
237 238 label_last_login: 最后登录
238 239 label_last_updates: 最后更新
239 240 label_last_updates_plural: %d 最后更新
240 241 label_registered_on: 注册于
241 242 label_activity: 活动
242 243 label_new: 新建
243 244 label_logged_as: 登录为
244 245 label_environment: 环境
245 246 label_authentication: 认证
246 247 label_auth_source: 认证模式
247 248 label_auth_source_new: 新建认证模式
248 249 label_auth_source_plural: 认证模式列表
249 250 label_subproject_plural: 子项目列表
250 251 label_min_max_length: 最小 - 最大 长度
251 252 label_list: list
252 253 label_date: Date
253 254 label_integer: Integer
254 255 label_boolean: Boolean
255 256 label_string: Text
256 257 label_text: Long text
257 258 label_attribute: 属性
258 259 label_attribute_plural: 属性
259 260 label_download: %d 个下载次数
260 261 label_download_plural: %d 个下载次数
261 262 label_no_data: 没有数据用于显示
262 263 label_change_status: 改变状态
263 264 label_history: 历史记录
264 265 label_attachment: 文件
265 266 label_attachment_new: 新建文件
266 267 label_attachment_delete: 删除文件
267 268 label_attachment_plural: 文件列表
268 269 label_report: 报表
269 270 label_report_plural: 报表列表
270 271 label_news: 新闻
271 272 label_news_new: 增加新闻
272 273 label_news_plural: 新闻列表
273 274 label_news_latest: 最近的新闻
274 275 label_news_view_all: 查看所有新闻
275 276 label_change_log: 更新日志
276 277 label_settings: 配置
277 278 label_overview: 概述
278 279 label_version: 版本
279 280 label_version_new: 新建版本
280 281 label_version_plural: 版本列表
281 282 label_confirmation: 确认
282 283 label_export_to: 导出
283 284 label_read: 读取...
284 285 label_public_projects: 公开的项目列表
285 286 label_open_issues: 打开
286 287 label_open_issues_plural: 打开
287 288 label_closed_issues: 已关闭
288 289 label_closed_issues_plural: 已关闭
289 290 label_total: 合计
290 291 label_permissions: 权限列表
291 292 label_current_status: 当前状态
292 293 label_new_statuses_allowed: New statuses allowed
293 294 label_all: 全部
294 295 label_none:
295 296 label_next: 下一个
296 297 label_previous: 上一个
297 298 label_used_by: 使用中
298 299 label_details: 详情
299 300 label_add_note: 添加说明
300 301 label_per_page: 每面
301 302 label_calendar: 日历
302 303 label_months_from: months from
303 304 label_gantt: 甘特图(Gantt)
304 305 label_internal: 内部
305 306 label_last_changes: 最近的 %d 次更改
306 307 label_change_view_all: 查看所有更改
307 308 label_personalize_page: 个性化定制本页
308 309 label_comment: 注释
309 310 label_comment_plural: 注释列表
310 311 label_comment_add: 添加注释
311 312 label_comment_added: 已加入注释
312 313 label_comment_delete: 删除注释
313 314 label_query: 自定义查询
314 315 label_query_plural: 自定义查询列表
315 316 label_query_new: 新建查询
316 317 label_filter_add: 增加过滤器
317 318 label_filter_plural: 过滤器列表
318 319 label_equals: 等于
319 320 label_not_equals: 不等于
320 321 label_in_less_than: 剩余天数小于
321 322 label_in_more_than: 剩余天数大于
322 323 label_in: 剩余天数
323 324 label_today: 今天
324 325 label_this_week: this week
325 326 label_less_than_ago: 之前天数少于
326 327 label_more_than_ago: 之前天数大于
327 328 label_ago: 之前天数
328 329 label_contains: 包含
329 330 label_not_contains: 不包含
330 331 label_day_plural: 天数
331 332 label_repository: 版本库
332 333 label_browse: 浏览
333 334 label_modification: %d 个更新
334 335 label_modification_plural: %d 个更新
335 336 label_revision: 修订
336 337 label_revision_plural: 修订
337 338 label_added: 已增加
338 339 label_modified: 已修改
339 340 label_deleted: 已删除
340 341 label_latest_revision: 最近的版本
341 342 label_latest_revision_plural: 最近的版本列表
342 343 label_view_revisions: 查看修订列表
343 344 label_max_size: 最大尺寸
344 345 label_on: 'on'
345 346 label_sort_highest: 置顶
346 347 label_sort_higher: 上移
347 348 label_sort_lower: 下移
348 349 label_sort_lowest: 置底
349 350 label_roadmap: 路线图
350 351 label_roadmap_due_in: Due in
351 352 label_roadmap_overdue: %s late
352 353 label_roadmap_no_issues: 该版本没有任务
353 354 label_search: 查找
354 355 label_result: %d 个结果
355 356 label_result_plural: %d 个结果
356 357 label_all_words: 所有单词
357 358 label_wiki: Wiki
358 359 label_wiki_edit: Wiki edit
359 360 label_wiki_edit_plural: Wiki edits
360 361 label_wiki_page_plural: Wiki pages
361 362 label_page_index: 索引
362 363 label_current_version: 当前版本
363 364 label_preview: 预览
364 365 label_feed_plural: Feeds
365 366 label_changes_details: 所有更改的详情
366 367 label_issue_tracking: 任务跟踪
367 368 label_spent_time: 耗时
368 369 label_f_hour: %.2f 小时
369 370 label_f_hour_plural: %.2f 小时
370 371 label_time_tracking: 时间跟踪
371 372 label_change_plural: 更改列表
372 373 label_statistics: 统计
373 374 label_commits_per_month: Commits per month
374 375 label_commits_per_author: Commits per author
375 376 label_view_diff: View differences
376 377 label_diff_inline: inline
377 378 label_diff_side_by_side: side by side
378 379 label_options: Options
379 380 label_copy_workflow_from: Copy workflow from
380 381 label_permissions_report: Permissions report
381 382 label_watched_issues: Watched issues
382 383 label_related_issues: Related issues
383 384 label_applied_status: Applied status
384 385 label_loading: Loading...
385 386 label_relation_new: New relation
386 387 label_relation_delete: Delete relation
387 388 label_relates_to: related to
388 389 label_duplicates: duplicates
389 390 label_blocks: blocks
390 391 label_blocked_by: blocked by
391 392 label_precedes: precedes
392 393 label_follows: follows
393 394 label_end_to_start: start to end
394 395 label_end_to_end: end to end
395 396 label_start_to_start: start to start
396 397 label_start_to_end: start to end
397 398 label_stay_logged_in: Stay logged in
398 399 label_disabled: disabled
399 400 label_show_completed_versions: Show completed versions
400 401 label_me: me
401 402 label_board: Forum
402 403 label_board_new: New forum
403 404 label_board_plural: Forums
404 405 label_topic_plural: Topics
405 406 label_message_plural: Messages
406 407 label_message_last: Last message
407 408 label_message_new: New message
408 409 label_reply_plural: Replies
409 410 label_send_information: Send account information to the user
410 411 label_year: Year
411 412 label_month: Month
412 413 label_week: Week
413 414 label_date_from: From
414 415 label_date_to: To
415 416 label_language_based: Language based
416 417 label_sort_by: Sort by "%s"
417 418 label_send_test_email: Send a test email
418 419 label_feeds_access_key_created_on: RSS access key created %s ago
419 420
420 421 button_login: 登录
421 422 button_submit: 提交
422 423 button_save: 保存
423 424 button_check_all: 全选
424 425 button_uncheck_all: 清除
425 426 button_delete: 删除
426 427 button_create: 创建
427 428 button_test: 测试
428 429 button_edit: 编辑
429 430 button_add: 新增
430 431 button_change: 修改
431 432 button_apply: 应用
432 433 button_clear: 清除
433 434 button_lock: 锁定
434 435 button_unlock: 解锁
435 436 button_download: 下载
436 437 button_list: 列表
437 438 button_view: 查看
438 439 button_move: 移动
439 440 button_back: 返回
440 441 button_cancel: 取消
441 442 button_activate: 激活
442 443 button_sort: 排序
443 444 button_log_time: 登记工时
444 445 button_rollback: Rollback to this version
445 446 button_watch: Watch
446 447 button_unwatch: Unwatch
447 448 button_reply: Reply
448 449 button_archive: Archive
449 450 button_unarchive: Unarchive
450 451 button_reset: Reset
452 button_rename: Rename
451 453
452 454 status_active: 激活
453 455 status_registered: 已注册
454 456 status_locked: 已锁定
455 457
456 458 text_select_mail_notifications: 选择需要发送邮件通知的动作。
457 459 text_regexp_info: eg. ^[A-Z0-9]+$
458 460 text_min_max_length_info: 0 表示没有限制
459 461 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
460 462 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
461 463 text_are_you_sure: 您确定?
462 464 text_journal_changed: 从 %s 更改为 %s
463 465 text_journal_set_to: 设置为 %s
464 466 text_journal_deleted: 已删除
465 467 text_tip_task_begin_day: 开始于此
466 468 text_tip_task_end_day: 在此结束
467 469 text_tip_task_begin_end_day: 开始并结束于此
468 470 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
469 471 text_caracters_maximum: %d characters maximum.
470 472 text_length_between: Length between %d and %d characters.
471 473 text_tracker_no_workflow: No workflow defined for this tracker
472 474 text_unallowed_characters: Unallowed characters
473 475 text_comma_separated: Multiple values allowed (comma separated).
474 476 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
475 477
476 478 default_role_manager: 管理员
477 479 default_role_developper: 开发人员
478 480 default_role_reporter: 报告人员
479 481 default_tracker_bug: 问题
480 482 default_tracker_feature: 功能
481 483 default_tracker_support: 支持
482 484 default_issue_status_new: 新建
483 485 default_issue_status_assigned: 已分配
484 486 default_issue_status_resolved: 已解决
485 487 default_issue_status_feedback: 回复
486 488 default_issue_status_closed: 已关闭
487 489 default_issue_status_rejected: 已打回
488 490 default_doc_category_user: 用户文档
489 491 default_doc_category_tech: 技术文档
490 492 default_priority_low:
491 493 default_priority_normal: 普通
492 494 default_priority_high:
493 495 default_priority_urgent: 紧急
494 496 default_priority_immediate: 立刻
495 497 default_activity_design: 设计
496 498 default_activity_development: 开发
497 499
498 500 enumeration_issue_priorities: 任务优先级
499 501 enumeration_doc_categories: 文档类别
500 502 enumeration_activities: Activities (time tracking)
@@ -1,87 +1,88
1 1 require 'redmine/access_control'
2 2 require 'redmine/menu_manager'
3 3 require 'redmine/mime_type'
4 4 require 'redmine/acts_as_watchable/init'
5 5 require 'redmine/acts_as_event/init'
6 6
7 7 begin
8 8 require_library_or_gem 'rmagick' unless Object.const_defined?(:Magick)
9 9 rescue LoadError
10 10 # RMagick is not available
11 11 end
12 12
13 13 REDMINE_SUPPORTED_SCM = %w( Subversion Darcs Mercurial Cvs )
14 14
15 15 # Permissions
16 16 Redmine::AccessControl.map do |map|
17 17 # Project
18 18 map.permission :view_project, {:projects => [:show, :activity, :changelog, :roadmap, :feeds]}, :public => true
19 19 map.permission :search_project, {:search => :index}, :public => true
20 20 map.permission :edit_project, {:projects => [:settings, :edit]}, :require => :member
21 21 map.permission :manage_members, {:projects => [:settings, :add_member], :members => [:edit, :destroy]}, :require => :member
22 22 map.permission :manage_versions, {:projects => [:settings, :add_version], :versions => [:edit, :destroy]}, :require => :member
23 23 map.permission :manage_categories, {:projects => [:settings, :add_issue_category], :issue_categories => [:edit, :destroy]}, :require => :member
24 24
25 25 # Issues
26 26 map.permission :view_issues, {:projects => [:list_issues, :export_issues_csv, :export_issues_pdf],
27 27 :issues => [:show, :export_pdf],
28 28 :queries => :index,
29 29 :reports => :issue_report}, :public => true
30 30 map.permission :add_issues, {:projects => :add_issue}, :require => :loggedin
31 31 map.permission :edit_issues, {:issues => [:edit, :destroy_attachment]}, :require => :loggedin
32 32 map.permission :manage_issue_relations, {:issue_relations => [:new, :destroy]}, :require => :loggedin
33 33 map.permission :add_issue_notes, {:issues => :add_note}, :require => :loggedin
34 34 map.permission :change_issue_status, {:issues => :change_status}, :require => :loggedin
35 35 map.permission :move_issues, {:projects => :move_issues}, :require => :loggedin
36 36 map.permission :delete_issues, {:issues => :destroy}, :require => :member
37 37 # Queries
38 38 map.permission :manage_pulic_queries, {:queries => [:new, :edit, :destroy]}, :require => :member
39 39 map.permission :save_queries, {:queries => [:new, :edit, :destroy]}, :require => :loggedin
40 40 # Gantt & calendar
41 41 map.permission :view_gantt, :projects => :gantt
42 42 map.permission :view_calendar, :projects => :calendar
43 43 # Time tracking
44 44 map.permission :log_time, {:timelog => :edit}, :require => :loggedin
45 45 map.permission :view_time_entries, :timelog => [:details, :report]
46 46 # News
47 47 map.permission :view_news, {:projects => :list_news, :news => :show}, :public => true
48 48 map.permission :manage_news, {:projects => :add_news, :news => [:edit, :destroy, :destroy_comment]}, :require => :member
49 49 map.permission :comment_news, {:news => :add_comment}, :require => :loggedin
50 50 # Documents
51 51 map.permission :view_documents, :projects => :list_documents, :documents => [:show, :download]
52 52 map.permission :manage_documents, {:projects => :add_document, :documents => [:edit, :destroy, :add_attachment, :destroy_attachment]}, :require => :loggedin
53 53 # Wiki
54 54 map.permission :view_wiki_pages, :wiki => [:index, :history, :diff, :special]
55 55 map.permission :edit_wiki_pages, :wiki => [:edit, :preview, :add_attachment, :destroy_attachment]
56 map.permission :rename_wiki_pages, {:wiki => :rename}, :require => :member
56 57 map.permission :delete_wiki_pages, {:wiki => :destroy}, :require => :member
57 58 # Message boards
58 59 map.permission :view_messages, {:boards => [:index, :show], :messages => [:show]}, :public => true
59 60 map.permission :add_messages, {:messages => [:new, :reply]}, :require => :loggedin
60 61 map.permission :manage_boards, {:boards => [:new, :edit, :destroy]}, :require => :member
61 62 # Files
62 63 map.permission :view_files, :projects => :list_files, :versions => :download
63 64 map.permission :manage_files, {:projects => :add_file, :versions => :destroy_file}, :require => :loggedin
64 65 # Repository
65 66 map.permission :browse_repository, :repositories => [:show, :browse, :entry, :changes, :diff, :stats, :graph]
66 67 map.permission :view_changesets, :repositories => [:show, :revisions, :revision]
67 68 end
68 69
69 70 # Project menu configuration
70 71 Redmine::MenuManager.map :project_menu do |menu|
71 72 menu.push :label_overview, :controller => 'projects', :action => 'show'
72 73 menu.push :label_calendar, :controller => 'projects', :action => 'calendar'
73 74 menu.push :label_gantt, :controller => 'projects', :action => 'gantt'
74 75 menu.push :label_issue_plural, :controller => 'projects', :action => 'list_issues'
75 76 menu.push :label_report_plural, :controller => 'reports', :action => 'issue_report'
76 77 menu.push :label_activity, :controller => 'projects', :action => 'activity'
77 78 menu.push :label_news_plural, :controller => 'projects', :action => 'list_news'
78 79 menu.push :label_change_log, :controller => 'projects', :action => 'changelog'
79 80 menu.push :label_roadmap, :controller => 'projects', :action => 'roadmap'
80 81 menu.push :label_document_plural, :controller => 'projects', :action => 'list_documents'
81 82 menu.push :label_wiki, { :controller => 'wiki', :action => 'index', :page => nil }, :if => Proc.new { |p| p.wiki && !p.wiki.new_record? }
82 83 menu.push :label_board_plural, { :controller => 'boards', :action => 'index', :id => nil }, :param => :project_id, :if => Proc.new { |p| p.boards.any? }
83 84 menu.push :label_attachment_plural, :controller => 'projects', :action => 'list_files'
84 85 menu.push :label_search, :controller => 'search', :action => 'index'
85 86 menu.push :label_repository, { :controller => 'repositories', :action => 'show' }, :if => Proc.new { |p| p.repository && !p.repository.new_record? }
86 87 menu.push :label_settings, :controller => 'projects', :action => 'settings'
87 88 end
General Comments 0
You need to be logged in to leave comments. Login now