##// END OF EJS Templates
More flexible mail notifications settings at user level. A user has now 3 options:...
Jean-Philippe Lang -
r842:90d33c3e518f
parent child
Show More
@@ -0,0 +1,8
1 <h3><%=l(:label_my_account)%></h3>
2
3 <p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
4 <%=l(:field_created_on)%>: <%= format_time(@user.created_on) %></p>
5 <% if @user.rss_token %>
6 <p><%= l(:label_feeds_access_key_created_on, distance_of_time_in_words(Time.now, @user.rss_token.created_on)) %>
7 (<%= link_to l(:button_reset), {:action => 'reset_rss_key'}, :method => :post %>)</p>
8 <% end %>
@@ -0,0 +1,22
1 <h2><%=l(:button_change_password)%></h2>
2
3 <%= error_messages_for 'user' %>
4
5 <% form_tag({}, :class => "tabular") do %>
6 <div class="box">
7 <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
8 <%= password_field_tag 'password', nil, :size => 25 %></p>
9
10 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
11 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
12 <em><%= l(:text_length_between, 4, 12) %></em></p>
13
14 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
15 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
16 </div>
17 <%= submit_tag l(:button_apply) %>
18 <% end %>
19
20 <% content_for :sidebar do %>
21 <%= render :partial => 'sidebar' %>
22 <% end %>
@@ -0,0 +1,9
1 class AddMembersMailNotification < ActiveRecord::Migration
2 def self.up
3 add_column :members, :mail_notification, :boolean, :default => false, :null => false
4 end
5
6 def self.down
7 remove_column :members, :mail_notification
8 end
9 end
@@ -1,147 +1,159
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class MyController < ApplicationController
18 class MyController < ApplicationController
19 helper :issues
19 helper :issues
20
20
21 layout 'base'
21 layout 'base'
22 before_filter :require_login
22 before_filter :require_login
23
23
24 BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues,
24 BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues,
25 'issuesreportedbyme' => :label_reported_issues,
25 'issuesreportedbyme' => :label_reported_issues,
26 'issueswatched' => :label_watched_issues,
26 'issueswatched' => :label_watched_issues,
27 'news' => :label_news_latest,
27 'news' => :label_news_latest,
28 'calendar' => :label_calendar,
28 'calendar' => :label_calendar,
29 'documents' => :label_document_plural
29 'documents' => :label_document_plural
30 }.freeze
30 }.freeze
31
31
32 DEFAULT_LAYOUT = { 'left' => ['issuesassignedtome'],
32 DEFAULT_LAYOUT = { 'left' => ['issuesassignedtome'],
33 'right' => ['issuesreportedbyme']
33 'right' => ['issuesreportedbyme']
34 }.freeze
34 }.freeze
35
35
36 verify :xhr => true,
36 verify :xhr => true,
37 :session => :page_layout,
37 :session => :page_layout,
38 :only => [:add_block, :remove_block, :order_blocks]
38 :only => [:add_block, :remove_block, :order_blocks]
39
39
40 def index
40 def index
41 page
41 page
42 render :action => 'page'
42 render :action => 'page'
43 end
43 end
44
44
45 # Show user's page
45 # Show user's page
46 def page
46 def page
47 @user = self.logged_in_user
47 @user = self.logged_in_user
48 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT
48 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT
49 end
49 end
50
50
51 # Edit user's account
51 # Edit user's account
52 def account
52 def account
53 @user = self.logged_in_user
53 @user = User.current
54 @pref = @user.pref
54 @pref = @user.pref
55 @user.attributes = params[:user]
55 if request.post?
56 @user.pref.attributes = params[:pref]
56 @user.attributes = params[:user]
57 if request.post? && @user.save && @user.pref.save
57 @user.mail_notification = (params[:notification_option] == 'all')
58 flash[:notice] = l(:notice_account_updated)
58 @user.pref.attributes = params[:pref]
59 redirect_to :action => 'account'
59 if @user.save
60 @user.pref.save
61 @user.notified_project_ids = (params[:notification_option] == 'selected' ? params[:notified_project_ids] : [])
62 set_language_if_valid @user.language
63 flash[:notice] = l(:notice_account_updated)
64 redirect_to :action => 'account'
65 return
66 end
60 end
67 end
68 @notification_options = [[l(:label_user_mail_option_all), 'all'],
69 [l(:label_user_mail_option_none), 'none']]
70 # Only users that belong to more than 1 project can select projects for which they are notified
71 # Note that @user.membership.size would fail since AR ignores :include association option when doing a count
72 @notification_options.insert 1, [l(:label_user_mail_option_selected), 'selected'] if @user.memberships.length > 1
73 @notification_option = @user.mail_notification? ? 'all' : (@user.notified_projects_ids.empty? ? 'none' : 'selected')
61 end
74 end
62
75
63 # Change user's password
76 # Manage user's password
64 def change_password
77 def password
65 @user = self.logged_in_user
78 @user = self.logged_in_user
66 flash[:error] = l(:notice_can_t_change_password) and redirect_to :action => 'account' and return if @user.auth_source_id
79 flash[:error] = l(:notice_can_t_change_password) and redirect_to :action => 'account' and return if @user.auth_source_id
67 if @user.check_password?(params[:password])
80 if request.post?
68 @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation]
81 if @user.check_password?(params[:password])
69 if @user.save
82 @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation]
70 flash[:notice] = l(:notice_account_password_updated)
83 if @user.save
84 flash[:notice] = l(:notice_account_password_updated)
85 redirect_to :action => 'account'
86 end
71 else
87 else
72 render :action => 'account'
88 flash[:error] = l(:notice_account_wrong_password)
73 return
74 end
89 end
75 else
76 flash[:error] = l(:notice_account_wrong_password)
77 end
90 end
78 redirect_to :action => 'account'
79 end
91 end
80
92
81 # Create a new feeds key
93 # Create a new feeds key
82 def reset_rss_key
94 def reset_rss_key
83 if request.post? && User.current.rss_token
95 if request.post? && User.current.rss_token
84 User.current.rss_token.destroy
96 User.current.rss_token.destroy
85 flash[:notice] = l(:notice_feeds_access_key_reseted)
97 flash[:notice] = l(:notice_feeds_access_key_reseted)
86 end
98 end
87 redirect_to :action => 'account'
99 redirect_to :action => 'account'
88 end
100 end
89
101
90 # User's page layout configuration
102 # User's page layout configuration
91 def page_layout
103 def page_layout
92 @user = self.logged_in_user
104 @user = self.logged_in_user
93 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
105 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
94 session[:page_layout] = @blocks
106 session[:page_layout] = @blocks
95 %w(top left right).each {|f| session[:page_layout][f] ||= [] }
107 %w(top left right).each {|f| session[:page_layout][f] ||= [] }
96 @block_options = []
108 @block_options = []
97 BLOCKS.each {|k, v| @block_options << [l(v), k]}
109 BLOCKS.each {|k, v| @block_options << [l(v), k]}
98 end
110 end
99
111
100 # Add a block to user's page
112 # Add a block to user's page
101 # The block is added on top of the page
113 # The block is added on top of the page
102 # params[:block] : id of the block to add
114 # params[:block] : id of the block to add
103 def add_block
115 def add_block
104 block = params[:block]
116 block = params[:block]
105 render(:nothing => true) and return unless block && (BLOCKS.keys.include? block)
117 render(:nothing => true) and return unless block && (BLOCKS.keys.include? block)
106 @user = self.logged_in_user
118 @user = self.logged_in_user
107 # remove if already present in a group
119 # remove if already present in a group
108 %w(top left right).each {|f| (session[:page_layout][f] ||= []).delete block }
120 %w(top left right).each {|f| (session[:page_layout][f] ||= []).delete block }
109 # add it on top
121 # add it on top
110 session[:page_layout]['top'].unshift block
122 session[:page_layout]['top'].unshift block
111 render :partial => "block", :locals => {:user => @user, :block_name => block}
123 render :partial => "block", :locals => {:user => @user, :block_name => block}
112 end
124 end
113
125
114 # Remove a block to user's page
126 # Remove a block to user's page
115 # params[:block] : id of the block to remove
127 # params[:block] : id of the block to remove
116 def remove_block
128 def remove_block
117 block = params[:block]
129 block = params[:block]
118 # remove block in all groups
130 # remove block in all groups
119 %w(top left right).each {|f| (session[:page_layout][f] ||= []).delete block }
131 %w(top left right).each {|f| (session[:page_layout][f] ||= []).delete block }
120 render :nothing => true
132 render :nothing => true
121 end
133 end
122
134
123 # Change blocks order on user's page
135 # Change blocks order on user's page
124 # params[:group] : group to order (top, left or right)
136 # params[:group] : group to order (top, left or right)
125 # params[:list-(top|left|right)] : array of block ids of the group
137 # params[:list-(top|left|right)] : array of block ids of the group
126 def order_blocks
138 def order_blocks
127 group = params[:group]
139 group = params[:group]
128 group_items = params["list-#{group}"]
140 group_items = params["list-#{group}"]
129 if group_items and group_items.is_a? Array
141 if group_items and group_items.is_a? Array
130 # remove group blocks if they are presents in other groups
142 # remove group blocks if they are presents in other groups
131 %w(top left right).each {|f|
143 %w(top left right).each {|f|
132 session[:page_layout][f] = (session[:page_layout][f] || []) - group_items
144 session[:page_layout][f] = (session[:page_layout][f] || []) - group_items
133 }
145 }
134 session[:page_layout][group] = group_items
146 session[:page_layout][group] = group_items
135 end
147 end
136 render :nothing => true
148 render :nothing => true
137 end
149 end
138
150
139 # Save user's page layout
151 # Save user's page layout
140 def page_layout_save
152 def page_layout_save
141 @user = self.logged_in_user
153 @user = self.logged_in_user
142 @user.pref[:my_page_layout] = session[:page_layout] if session[:page_layout]
154 @user.pref[:my_page_layout] = session[:page_layout] if session[:page_layout]
143 @user.pref.save
155 @user.pref.save
144 session[:page_layout] = nil
156 session[:page_layout] = nil
145 redirect_to :action => 'page'
157 redirect_to :action => 'page'
146 end
158 end
147 end
159 end
@@ -1,175 +1,184
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Issue < ActiveRecord::Base
18 class Issue < ActiveRecord::Base
19 belongs_to :project
19 belongs_to :project
20 belongs_to :tracker
20 belongs_to :tracker
21 belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id'
21 belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id'
22 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
22 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
23 belongs_to :assigned_to, :class_name => 'User', :foreign_key => 'assigned_to_id'
23 belongs_to :assigned_to, :class_name => 'User', :foreign_key => 'assigned_to_id'
24 belongs_to :fixed_version, :class_name => 'Version', :foreign_key => 'fixed_version_id'
24 belongs_to :fixed_version, :class_name => 'Version', :foreign_key => 'fixed_version_id'
25 belongs_to :priority, :class_name => 'Enumeration', :foreign_key => 'priority_id'
25 belongs_to :priority, :class_name => 'Enumeration', :foreign_key => 'priority_id'
26 belongs_to :category, :class_name => 'IssueCategory', :foreign_key => 'category_id'
26 belongs_to :category, :class_name => 'IssueCategory', :foreign_key => 'category_id'
27
27
28 has_many :journals, :as => :journalized, :dependent => :destroy
28 has_many :journals, :as => :journalized, :dependent => :destroy
29 has_many :attachments, :as => :container, :dependent => :destroy
29 has_many :attachments, :as => :container, :dependent => :destroy
30 has_many :time_entries, :dependent => :nullify
30 has_many :time_entries, :dependent => :nullify
31 has_many :custom_values, :dependent => :delete_all, :as => :customized
31 has_many :custom_values, :dependent => :delete_all, :as => :customized
32 has_many :custom_fields, :through => :custom_values
32 has_many :custom_fields, :through => :custom_values
33 has_and_belongs_to_many :changesets, :order => "revision ASC"
33 has_and_belongs_to_many :changesets, :order => "revision ASC"
34
34
35 has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all
35 has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all
36 has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all
36 has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all
37
37
38 acts_as_watchable
38 acts_as_watchable
39 acts_as_searchable :columns => ['subject', 'description'], :with => {:journal => :issue}
39 acts_as_searchable :columns => ['subject', 'description'], :with => {:journal => :issue}
40 acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id}: #{o.subject}"},
40 acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id}: #{o.subject}"},
41 :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}}
41 :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}}
42
42
43 validates_presence_of :subject, :description, :priority, :tracker, :author, :status
43 validates_presence_of :subject, :description, :priority, :tracker, :author, :status
44 validates_length_of :subject, :maximum => 255
44 validates_length_of :subject, :maximum => 255
45 validates_inclusion_of :done_ratio, :in => 0..100
45 validates_inclusion_of :done_ratio, :in => 0..100
46 validates_numericality_of :estimated_hours, :allow_nil => true
46 validates_numericality_of :estimated_hours, :allow_nil => true
47 validates_associated :custom_values, :on => :update
47 validates_associated :custom_values, :on => :update
48
48
49 def after_initialize
49 def after_initialize
50 if new_record?
50 if new_record?
51 # set default values for new records only
51 # set default values for new records only
52 self.status ||= IssueStatus.default
52 self.status ||= IssueStatus.default
53 self.priority ||= Enumeration.default('IPRI')
53 self.priority ||= Enumeration.default('IPRI')
54 end
54 end
55 end
55 end
56
56
57 def priority_id=(pid)
57 def priority_id=(pid)
58 self.priority = nil
58 self.priority = nil
59 write_attribute(:priority_id, pid)
59 write_attribute(:priority_id, pid)
60 end
60 end
61
61
62 def validate
62 def validate
63 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
63 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
64 errors.add :due_date, :activerecord_error_not_a_date
64 errors.add :due_date, :activerecord_error_not_a_date
65 end
65 end
66
66
67 if self.due_date and self.start_date and self.due_date < self.start_date
67 if self.due_date and self.start_date and self.due_date < self.start_date
68 errors.add :due_date, :activerecord_error_greater_than_start_date
68 errors.add :due_date, :activerecord_error_greater_than_start_date
69 end
69 end
70
70
71 if start_date && soonest_start && start_date < soonest_start
71 if start_date && soonest_start && start_date < soonest_start
72 errors.add :start_date, :activerecord_error_invalid
72 errors.add :start_date, :activerecord_error_invalid
73 end
73 end
74 end
74 end
75
75
76 def before_create
76 def before_create
77 # default assignment based on category
77 # default assignment based on category
78 if assigned_to.nil? && category && category.assigned_to
78 if assigned_to.nil? && category && category.assigned_to
79 self.assigned_to = category.assigned_to
79 self.assigned_to = category.assigned_to
80 end
80 end
81 end
81 end
82
82
83 def before_save
83 def before_save
84 if @current_journal
84 if @current_journal
85 # attributes changes
85 # attributes changes
86 (Issue.column_names - %w(id description)).each {|c|
86 (Issue.column_names - %w(id description)).each {|c|
87 @current_journal.details << JournalDetail.new(:property => 'attr',
87 @current_journal.details << JournalDetail.new(:property => 'attr',
88 :prop_key => c,
88 :prop_key => c,
89 :old_value => @issue_before_change.send(c),
89 :old_value => @issue_before_change.send(c),
90 :value => send(c)) unless send(c)==@issue_before_change.send(c)
90 :value => send(c)) unless send(c)==@issue_before_change.send(c)
91 }
91 }
92 # custom fields changes
92 # custom fields changes
93 custom_values.each {|c|
93 custom_values.each {|c|
94 next if (@custom_values_before_change[c.custom_field_id]==c.value ||
94 next if (@custom_values_before_change[c.custom_field_id]==c.value ||
95 (@custom_values_before_change[c.custom_field_id].blank? && c.value.blank?))
95 (@custom_values_before_change[c.custom_field_id].blank? && c.value.blank?))
96 @current_journal.details << JournalDetail.new(:property => 'cf',
96 @current_journal.details << JournalDetail.new(:property => 'cf',
97 :prop_key => c.custom_field_id,
97 :prop_key => c.custom_field_id,
98 :old_value => @custom_values_before_change[c.custom_field_id],
98 :old_value => @custom_values_before_change[c.custom_field_id],
99 :value => c.value)
99 :value => c.value)
100 }
100 }
101 @current_journal.save
101 @current_journal.save
102 end
102 end
103 # Save the issue even if the journal is not saved (because empty)
103 # Save the issue even if the journal is not saved (because empty)
104 true
104 true
105 end
105 end
106
106
107 def after_save
107 def after_save
108 # Update start/due dates of following issues
108 # Update start/due dates of following issues
109 relations_from.each(&:set_issue_to_dates)
109 relations_from.each(&:set_issue_to_dates)
110
110
111 # Close duplicates if the issue was closed
111 # Close duplicates if the issue was closed
112 if @issue_before_change && !@issue_before_change.closed? && self.closed?
112 if @issue_before_change && !@issue_before_change.closed? && self.closed?
113 duplicates.each do |duplicate|
113 duplicates.each do |duplicate|
114 # Don't re-close it if it's already closed
114 # Don't re-close it if it's already closed
115 next if duplicate.closed?
115 next if duplicate.closed?
116 # Same user and notes
116 # Same user and notes
117 duplicate.init_journal(@current_journal.user, @current_journal.notes)
117 duplicate.init_journal(@current_journal.user, @current_journal.notes)
118 duplicate.update_attribute :status, self.status
118 duplicate.update_attribute :status, self.status
119 end
119 end
120 end
120 end
121 end
121 end
122
122
123 def custom_value_for(custom_field)
123 def custom_value_for(custom_field)
124 self.custom_values.each {|v| return v if v.custom_field_id == custom_field.id }
124 self.custom_values.each {|v| return v if v.custom_field_id == custom_field.id }
125 return nil
125 return nil
126 end
126 end
127
127
128 def init_journal(user, notes = "")
128 def init_journal(user, notes = "")
129 @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
129 @current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
130 @issue_before_change = self.clone
130 @issue_before_change = self.clone
131 @custom_values_before_change = {}
131 @custom_values_before_change = {}
132 self.custom_values.each {|c| @custom_values_before_change.store c.custom_field_id, c.value }
132 self.custom_values.each {|c| @custom_values_before_change.store c.custom_field_id, c.value }
133 @current_journal
133 @current_journal
134 end
134 end
135
135
136 # Return true if the issue is closed, otherwise false
136 # Return true if the issue is closed, otherwise false
137 def closed?
137 def closed?
138 self.status.is_closed?
138 self.status.is_closed?
139 end
139 end
140
140
141 # Users the issue can be assigned to
141 # Users the issue can be assigned to
142 def assignable_users
142 def assignable_users
143 project.assignable_users
143 project.assignable_users
144 end
144 end
145
145
146 # Returns the mail adresses of users that should be notified for the issue
147 def recipients
148 recipients = project.recipients
149 # Author and assignee are always notified
150 recipients << author.mail if author
151 recipients << assigned_to.mail if assigned_to
152 recipients.compact.uniq
153 end
154
146 def spent_hours
155 def spent_hours
147 @spent_hours ||= time_entries.sum(:hours) || 0
156 @spent_hours ||= time_entries.sum(:hours) || 0
148 end
157 end
149
158
150 def relations
159 def relations
151 (relations_from + relations_to).sort
160 (relations_from + relations_to).sort
152 end
161 end
153
162
154 def all_dependent_issues
163 def all_dependent_issues
155 dependencies = []
164 dependencies = []
156 relations_from.each do |relation|
165 relations_from.each do |relation|
157 dependencies << relation.issue_to
166 dependencies << relation.issue_to
158 dependencies += relation.issue_to.all_dependent_issues
167 dependencies += relation.issue_to.all_dependent_issues
159 end
168 end
160 dependencies
169 dependencies
161 end
170 end
162
171
163 # Returns an array of the duplicate issues
172 # Returns an array of the duplicate issues
164 def duplicates
173 def duplicates
165 relations.select {|r| r.relation_type == IssueRelation::TYPE_DUPLICATES}.collect {|r| r.other_issue(self)}
174 relations.select {|r| r.relation_type == IssueRelation::TYPE_DUPLICATES}.collect {|r| r.other_issue(self)}
166 end
175 end
167
176
168 def duration
177 def duration
169 (start_date && due_date) ? due_date - start_date : 0
178 (start_date && due_date) ? due_date - start_date : 0
170 end
179 end
171
180
172 def soonest_start
181 def soonest_start
173 @soonest_start ||= relations_to.collect{|relation| relation.successor_soonest_start}.compact.min
182 @soonest_start ||= relations_to.collect{|relation| relation.successor_soonest_start}.compact.min
174 end
183 end
175 end
184 end
@@ -1,130 +1,118
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Mailer < ActionMailer::Base
18 class Mailer < ActionMailer::Base
19 helper ApplicationHelper
19 helper ApplicationHelper
20 helper IssuesHelper
20 helper IssuesHelper
21 helper CustomFieldsHelper
21 helper CustomFieldsHelper
22
22
23 def account_information(user, password)
23 def account_information(user, password)
24 set_language_if_valid user.language
24 set_language_if_valid user.language
25 recipients user.mail
25 recipients user.mail
26 from Setting.mail_from
26 from Setting.mail_from
27 subject l(:mail_subject_register)
27 subject l(:mail_subject_register)
28 body :user => user, :password => password
28 body :user => user, :password => password
29 end
29 end
30
30
31 def issue_add(issue)
31 def issue_add(issue)
32 set_language_if_valid(Setting.default_language)
32 set_language_if_valid(Setting.default_language)
33 # Sends to all project members
33 @recipients = issue.recipients
34 @recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
35 # Sends to author and assignee (even if they turned off mail notification)
36 @recipients << issue.author.mail if issue.author
37 @recipients << issue.assigned_to.mail if issue.assigned_to
38 @recipients.compact!
39 @recipients.uniq!
40 @from = Setting.mail_from
34 @from = Setting.mail_from
41 @subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
35 @subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
42 @body['issue'] = issue
36 @body['issue'] = issue
43 end
37 end
44
38
45 def issue_edit(journal)
39 def issue_edit(journal)
46 set_language_if_valid(Setting.default_language)
40 set_language_if_valid(Setting.default_language)
47 # Sends to all project members
48 issue = journal.journalized
41 issue = journal.journalized
49 @recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
42 @recipients = issue.recipients
50 # Sends to author and assignee (even if they turned off mail notification)
51 @recipients << issue.author.mail if issue.author
52 @recipients << issue.assigned_to.mail if issue.assigned_to
53 @recipients.compact!
54 @recipients.uniq!
55 # Watchers in cc
43 # Watchers in cc
56 @cc = issue.watcher_recipients - @recipients
44 @cc = issue.watcher_recipients - @recipients
57 @from = Setting.mail_from
45 @from = Setting.mail_from
58 @subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
46 @subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
59 @body['issue'] = issue
47 @body['issue'] = issue
60 @body['journal']= journal
48 @body['journal']= journal
61 end
49 end
62
50
63 def document_added(document)
51 def document_added(document)
64 set_language_if_valid(Setting.default_language)
52 set_language_if_valid(Setting.default_language)
65 @recipients = document.project.users.collect { |u| u.mail if u.mail_notification }.compact
53 @recipients = document.project.recipients
66 @from = Setting.mail_from
54 @from = Setting.mail_from
67 @subject = "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}"
55 @subject = "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}"
68 @body['document'] = document
56 @body['document'] = document
69 end
57 end
70
58
71 def attachments_added(attachments)
59 def attachments_added(attachments)
72 set_language_if_valid(Setting.default_language)
60 set_language_if_valid(Setting.default_language)
73 container = attachments.first.container
61 container = attachments.first.container
74 url = ''
62 url = ''
75 added_to = ''
63 added_to = ''
76 case container.class.name
64 case container.class.name
77 when 'Version'
65 when 'Version'
78 url = {:only_path => false, :host => Setting.host_name, :controller => 'projects', :action => 'list_files', :id => container.project_id}
66 url = {:only_path => false, :host => Setting.host_name, :controller => 'projects', :action => 'list_files', :id => container.project_id}
79 added_to = "#{l(:label_version)}: #{container.name}"
67 added_to = "#{l(:label_version)}: #{container.name}"
80 when 'Document'
68 when 'Document'
81 url = {:only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => container.id}
69 url = {:only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => container.id}
82 added_to = "#{l(:label_document)}: #{container.title}"
70 added_to = "#{l(:label_document)}: #{container.title}"
83 end
71 end
84 @recipients = container.project.users.collect { |u| u.mail if u.mail_notification }.compact
72 @recipients = container.project.recipients
85 @from = Setting.mail_from
73 @from = Setting.mail_from
86 @subject = "[#{container.project.name}] #{l(:label_attachment_new)}"
74 @subject = "[#{container.project.name}] #{l(:label_attachment_new)}"
87 @body['attachments'] = attachments
75 @body['attachments'] = attachments
88 @body['url'] = url
76 @body['url'] = url
89 @body['added_to'] = added_to
77 @body['added_to'] = added_to
90 end
78 end
91
79
92 def news_added(news)
80 def news_added(news)
93 set_language_if_valid(Setting.default_language)
81 set_language_if_valid(Setting.default_language)
94 @recipients = news.project.users.collect { |u| u.mail if u.mail_notification }.compact
82 @recipients = news.project.recipients
95 @from = Setting.mail_from
83 @from = Setting.mail_from
96 @subject = "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
84 @subject = "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
97 @body['news'] = news
85 @body['news'] = news
98 end
86 end
99
87
100 def lost_password(token)
88 def lost_password(token)
101 set_language_if_valid(token.user.language)
89 set_language_if_valid(token.user.language)
102 @recipients = token.user.mail
90 @recipients = token.user.mail
103 @from = Setting.mail_from
91 @from = Setting.mail_from
104 @subject = l(:mail_subject_lost_password)
92 @subject = l(:mail_subject_lost_password)
105 @body['token'] = token
93 @body['token'] = token
106 end
94 end
107
95
108 def register(token)
96 def register(token)
109 set_language_if_valid(token.user.language)
97 set_language_if_valid(token.user.language)
110 @recipients = token.user.mail
98 @recipients = token.user.mail
111 @from = Setting.mail_from
99 @from = Setting.mail_from
112 @subject = l(:mail_subject_register)
100 @subject = l(:mail_subject_register)
113 @body['token'] = token
101 @body['token'] = token
114 end
102 end
115
103
116 def message_posted(message, recipients)
104 def message_posted(message, recipients)
117 set_language_if_valid(Setting.default_language)
105 set_language_if_valid(Setting.default_language)
118 @recipients = recipients
106 @recipients = recipients
119 @from = Setting.mail_from
107 @from = Setting.mail_from
120 @subject = "[#{message.board.project.name} - #{message.board.name}] #{message.subject}"
108 @subject = "[#{message.board.project.name} - #{message.board.name}] #{message.subject}"
121 @body['message'] = message
109 @body['message'] = message
122 end
110 end
123
111
124 def test(user)
112 def test(user)
125 set_language_if_valid(user.language)
113 set_language_if_valid(user.language)
126 @recipients = user.mail
114 @recipients = user.mail
127 @from = Setting.mail_from
115 @from = Setting.mail_from
128 @subject = 'Redmine'
116 @subject = 'Redmine'
129 end
117 end
130 end
118 end
@@ -1,173 +1,178
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Project < ActiveRecord::Base
18 class Project < ActiveRecord::Base
19 # Project statuses
19 # Project statuses
20 STATUS_ACTIVE = 1
20 STATUS_ACTIVE = 1
21 STATUS_ARCHIVED = 9
21 STATUS_ARCHIVED = 9
22
22
23 has_many :members, :dependent => :delete_all, :include => :user, :conditions => "#{User.table_name}.status=#{User::STATUS_ACTIVE}"
23 has_many :members, :dependent => :delete_all, :include => :user, :conditions => "#{User.table_name}.status=#{User::STATUS_ACTIVE}"
24 has_many :users, :through => :members
24 has_many :users, :through => :members
25 has_many :custom_values, :dependent => :delete_all, :as => :customized
25 has_many :custom_values, :dependent => :delete_all, :as => :customized
26 has_many :enabled_modules, :dependent => :delete_all
26 has_many :enabled_modules, :dependent => :delete_all
27 has_many :issues, :dependent => :destroy, :order => "#{Issue.table_name}.created_on DESC", :include => [:status, :tracker]
27 has_many :issues, :dependent => :destroy, :order => "#{Issue.table_name}.created_on DESC", :include => [:status, :tracker]
28 has_many :issue_changes, :through => :issues, :source => :journals
28 has_many :issue_changes, :through => :issues, :source => :journals
29 has_many :versions, :dependent => :destroy, :order => "#{Version.table_name}.effective_date DESC, #{Version.table_name}.name DESC"
29 has_many :versions, :dependent => :destroy, :order => "#{Version.table_name}.effective_date DESC, #{Version.table_name}.name DESC"
30 has_many :time_entries, :dependent => :delete_all
30 has_many :time_entries, :dependent => :delete_all
31 has_many :queries, :dependent => :delete_all
31 has_many :queries, :dependent => :delete_all
32 has_many :documents, :dependent => :destroy
32 has_many :documents, :dependent => :destroy
33 has_many :news, :dependent => :delete_all, :include => :author
33 has_many :news, :dependent => :delete_all, :include => :author
34 has_many :issue_categories, :dependent => :delete_all, :order => "#{IssueCategory.table_name}.name"
34 has_many :issue_categories, :dependent => :delete_all, :order => "#{IssueCategory.table_name}.name"
35 has_many :boards, :order => "position ASC"
35 has_many :boards, :order => "position ASC"
36 has_one :repository, :dependent => :destroy
36 has_one :repository, :dependent => :destroy
37 has_many :changesets, :through => :repository
37 has_many :changesets, :through => :repository
38 has_one :wiki, :dependent => :destroy
38 has_one :wiki, :dependent => :destroy
39 has_and_belongs_to_many :custom_fields, :class_name => 'IssueCustomField', :join_table => "#{table_name_prefix}custom_fields_projects#{table_name_suffix}", :association_foreign_key => 'custom_field_id'
39 has_and_belongs_to_many :custom_fields, :class_name => 'IssueCustomField', :join_table => "#{table_name_prefix}custom_fields_projects#{table_name_suffix}", :association_foreign_key => 'custom_field_id'
40 acts_as_tree :order => "name", :counter_cache => true
40 acts_as_tree :order => "name", :counter_cache => true
41
41
42 acts_as_searchable :columns => ['name', 'description'], :project_key => 'id'
42 acts_as_searchable :columns => ['name', 'description'], :project_key => 'id'
43 acts_as_event :title => Proc.new {|o| "#{l(:label_project)}: #{o.name}"},
43 acts_as_event :title => Proc.new {|o| "#{l(:label_project)}: #{o.name}"},
44 :url => Proc.new {|o| {:controller => 'projects', :action => 'show', :id => o.id}}
44 :url => Proc.new {|o| {:controller => 'projects', :action => 'show', :id => o.id}}
45
45
46 attr_protected :status, :enabled_module_names
46 attr_protected :status, :enabled_module_names
47
47
48 validates_presence_of :name, :description, :identifier
48 validates_presence_of :name, :description, :identifier
49 validates_uniqueness_of :name, :identifier
49 validates_uniqueness_of :name, :identifier
50 validates_associated :custom_values, :on => :update
50 validates_associated :custom_values, :on => :update
51 validates_associated :repository, :wiki
51 validates_associated :repository, :wiki
52 validates_length_of :name, :maximum => 30
52 validates_length_of :name, :maximum => 30
53 validates_format_of :name, :with => /^[\w\s\'\-]*$/i
53 validates_format_of :name, :with => /^[\w\s\'\-]*$/i
54 validates_length_of :description, :maximum => 255
54 validates_length_of :description, :maximum => 255
55 validates_length_of :homepage, :maximum => 60
55 validates_length_of :homepage, :maximum => 60
56 validates_length_of :identifier, :in => 3..12
56 validates_length_of :identifier, :in => 3..12
57 validates_format_of :identifier, :with => /^[a-z0-9\-]*$/
57 validates_format_of :identifier, :with => /^[a-z0-9\-]*$/
58
58
59 def identifier=(identifier)
59 def identifier=(identifier)
60 super unless identifier_frozen?
60 super unless identifier_frozen?
61 end
61 end
62
62
63 def identifier_frozen?
63 def identifier_frozen?
64 errors[:identifier].nil? && !(new_record? || identifier.blank?)
64 errors[:identifier].nil? && !(new_record? || identifier.blank?)
65 end
65 end
66
66
67 def issues_with_subprojects(include_subprojects=false)
67 def issues_with_subprojects(include_subprojects=false)
68 conditions = nil
68 conditions = nil
69 if include_subprojects && !active_children.empty?
69 if include_subprojects && !active_children.empty?
70 ids = [id] + active_children.collect {|c| c.id}
70 ids = [id] + active_children.collect {|c| c.id}
71 conditions = ["#{Issue.table_name}.project_id IN (#{ids.join(',')})"]
71 conditions = ["#{Issue.table_name}.project_id IN (#{ids.join(',')})"]
72 end
72 end
73 conditions ||= ["#{Issue.table_name}.project_id = ?", id]
73 conditions ||= ["#{Issue.table_name}.project_id = ?", id]
74 Issue.with_scope :find => { :conditions => conditions } do
74 Issue.with_scope :find => { :conditions => conditions } do
75 yield
75 yield
76 end
76 end
77 end
77 end
78
78
79 # returns latest created projects
79 # returns latest created projects
80 # non public projects will be returned only if user is a member of those
80 # non public projects will be returned only if user is a member of those
81 def self.latest(user=nil, count=5)
81 def self.latest(user=nil, count=5)
82 find(:all, :limit => count, :conditions => visible_by(user), :order => "created_on DESC")
82 find(:all, :limit => count, :conditions => visible_by(user), :order => "created_on DESC")
83 end
83 end
84
84
85 def self.visible_by(user=nil)
85 def self.visible_by(user=nil)
86 if user && user.admin?
86 if user && user.admin?
87 return "#{Project.table_name}.status=#{Project::STATUS_ACTIVE}"
87 return "#{Project.table_name}.status=#{Project::STATUS_ACTIVE}"
88 elsif user && user.memberships.any?
88 elsif user && user.memberships.any?
89 return "#{Project.table_name}.status=#{Project::STATUS_ACTIVE} AND (#{Project.table_name}.is_public = #{connection.quoted_true} or #{Project.table_name}.id IN (#{user.memberships.collect{|m| m.project_id}.join(',')}))"
89 return "#{Project.table_name}.status=#{Project::STATUS_ACTIVE} AND (#{Project.table_name}.is_public = #{connection.quoted_true} or #{Project.table_name}.id IN (#{user.memberships.collect{|m| m.project_id}.join(',')}))"
90 else
90 else
91 return "#{Project.table_name}.status=#{Project::STATUS_ACTIVE} AND #{Project.table_name}.is_public = #{connection.quoted_true}"
91 return "#{Project.table_name}.status=#{Project::STATUS_ACTIVE} AND #{Project.table_name}.is_public = #{connection.quoted_true}"
92 end
92 end
93 end
93 end
94
94
95 def active?
95 def active?
96 self.status == STATUS_ACTIVE
96 self.status == STATUS_ACTIVE
97 end
97 end
98
98
99 def archive
99 def archive
100 # Archive subprojects if any
100 # Archive subprojects if any
101 children.each do |subproject|
101 children.each do |subproject|
102 subproject.archive
102 subproject.archive
103 end
103 end
104 update_attribute :status, STATUS_ARCHIVED
104 update_attribute :status, STATUS_ARCHIVED
105 end
105 end
106
106
107 def unarchive
107 def unarchive
108 return false if parent && !parent.active?
108 return false if parent && !parent.active?
109 update_attribute :status, STATUS_ACTIVE
109 update_attribute :status, STATUS_ACTIVE
110 end
110 end
111
111
112 def active_children
112 def active_children
113 children.select {|child| child.active?}
113 children.select {|child| child.active?}
114 end
114 end
115
115
116 # Users issues can be assigned to
116 # Users issues can be assigned to
117 def assignable_users
117 def assignable_users
118 members.select {|m| m.role.assignable?}.collect {|m| m.user}
118 members.select {|m| m.role.assignable?}.collect {|m| m.user}
119 end
119 end
120
120
121 # Returns the mail adresses of users that should be always notified on project events
122 def recipients
123 members.select {|m| m.mail_notification? || m.user.mail_notification?}.collect {|m| m.user.mail}
124 end
125
121 # Returns an array of all custom fields enabled for project issues
126 # Returns an array of all custom fields enabled for project issues
122 # (explictly associated custom fields and custom fields enabled for all projects)
127 # (explictly associated custom fields and custom fields enabled for all projects)
123 def custom_fields_for_issues(tracker)
128 def custom_fields_for_issues(tracker)
124 all_custom_fields.select {|c| tracker.custom_fields.include? c }
129 all_custom_fields.select {|c| tracker.custom_fields.include? c }
125 end
130 end
126
131
127 def all_custom_fields
132 def all_custom_fields
128 @all_custom_fields ||= (IssueCustomField.for_all + custom_fields).uniq
133 @all_custom_fields ||= (IssueCustomField.for_all + custom_fields).uniq
129 end
134 end
130
135
131 def <=>(project)
136 def <=>(project)
132 name <=> project.name
137 name <=> project.name
133 end
138 end
134
139
135 def allows_to?(action)
140 def allows_to?(action)
136 if action.is_a? Hash
141 if action.is_a? Hash
137 allowed_actions.include? "#{action[:controller]}/#{action[:action]}"
142 allowed_actions.include? "#{action[:controller]}/#{action[:action]}"
138 else
143 else
139 allowed_permissions.include? action
144 allowed_permissions.include? action
140 end
145 end
141 end
146 end
142
147
143 def module_enabled?(module_name)
148 def module_enabled?(module_name)
144 module_name = module_name.to_s
149 module_name = module_name.to_s
145 enabled_modules.detect {|m| m.name == module_name}
150 enabled_modules.detect {|m| m.name == module_name}
146 end
151 end
147
152
148 def enabled_module_names=(module_names)
153 def enabled_module_names=(module_names)
149 enabled_modules.clear
154 enabled_modules.clear
150 module_names = [] unless module_names && module_names.is_a?(Array)
155 module_names = [] unless module_names && module_names.is_a?(Array)
151 module_names.each do |name|
156 module_names.each do |name|
152 enabled_modules << EnabledModule.new(:name => name.to_s)
157 enabled_modules << EnabledModule.new(:name => name.to_s)
153 end
158 end
154 end
159 end
155
160
156 protected
161 protected
157 def validate
162 def validate
158 errors.add(parent_id, " must be a root project") if parent and parent.parent
163 errors.add(parent_id, " must be a root project") if parent and parent.parent
159 errors.add_to_base("A project with subprojects can't be a subproject") if parent and children.size > 0
164 errors.add_to_base("A project with subprojects can't be a subproject") if parent and children.size > 0
160 end
165 end
161
166
162 private
167 private
163 def allowed_permissions
168 def allowed_permissions
164 @allowed_permissions ||= begin
169 @allowed_permissions ||= begin
165 module_names = enabled_modules.collect {|m| m.name}
170 module_names = enabled_modules.collect {|m| m.name}
166 Redmine::AccessControl.modules_permissions(module_names).collect {|p| p.name}
171 Redmine::AccessControl.modules_permissions(module_names).collect {|p| p.name}
167 end
172 end
168 end
173 end
169
174
170 def allowed_actions
175 def allowed_actions
171 @actions_allowed ||= allowed_permissions.inject([]) { |actions, permission| actions += Redmine::AccessControl.allowed_actions(permission) }.flatten
176 @actions_allowed ||= allowed_permissions.inject([]) { |actions, permission| actions += Redmine::AccessControl.allowed_actions(permission) }.flatten
172 end
177 end
173 end
178 end
@@ -1,221 +1,238
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 require "digest/sha1"
18 require "digest/sha1"
19
19
20 class User < ActiveRecord::Base
20 class User < ActiveRecord::Base
21 # Account statuses
21 # Account statuses
22 STATUS_ACTIVE = 1
22 STATUS_ACTIVE = 1
23 STATUS_REGISTERED = 2
23 STATUS_REGISTERED = 2
24 STATUS_LOCKED = 3
24 STATUS_LOCKED = 3
25
25
26 has_many :memberships, :class_name => 'Member', :include => [ :project, :role ], :conditions => "#{Project.table_name}.status=#{Project::STATUS_ACTIVE}", :order => "#{Project.table_name}.name", :dependent => :delete_all
26 has_many :memberships, :class_name => 'Member', :include => [ :project, :role ], :conditions => "#{Project.table_name}.status=#{Project::STATUS_ACTIVE}", :order => "#{Project.table_name}.name", :dependent => :delete_all
27 has_many :projects, :through => :memberships
27 has_many :projects, :through => :memberships
28 has_many :custom_values, :dependent => :delete_all, :as => :customized
28 has_many :custom_values, :dependent => :delete_all, :as => :customized
29 has_many :issue_categories, :foreign_key => 'assigned_to_id', :dependent => :nullify
29 has_many :issue_categories, :foreign_key => 'assigned_to_id', :dependent => :nullify
30 has_one :preference, :dependent => :destroy, :class_name => 'UserPreference'
30 has_one :preference, :dependent => :destroy, :class_name => 'UserPreference'
31 has_one :rss_token, :dependent => :destroy, :class_name => 'Token', :conditions => "action='feeds'"
31 has_one :rss_token, :dependent => :destroy, :class_name => 'Token', :conditions => "action='feeds'"
32 belongs_to :auth_source
32 belongs_to :auth_source
33
33
34 attr_accessor :password, :password_confirmation
34 attr_accessor :password, :password_confirmation
35 attr_accessor :last_before_login_on
35 attr_accessor :last_before_login_on
36 # Prevents unauthorized assignments
36 # Prevents unauthorized assignments
37 attr_protected :login, :admin, :password, :password_confirmation, :hashed_password
37 attr_protected :login, :admin, :password, :password_confirmation, :hashed_password
38
38
39 validates_presence_of :login, :firstname, :lastname, :mail
39 validates_presence_of :login, :firstname, :lastname, :mail
40 validates_uniqueness_of :login, :mail
40 validates_uniqueness_of :login, :mail
41 # Login must contain lettres, numbers, underscores only
41 # Login must contain lettres, numbers, underscores only
42 validates_format_of :login, :with => /^[a-z0-9_\-@\.]+$/i
42 validates_format_of :login, :with => /^[a-z0-9_\-@\.]+$/i
43 validates_length_of :login, :maximum => 30
43 validates_length_of :login, :maximum => 30
44 validates_format_of :firstname, :lastname, :with => /^[\w\s\'\-]*$/i
44 validates_format_of :firstname, :lastname, :with => /^[\w\s\'\-]*$/i
45 validates_length_of :firstname, :lastname, :maximum => 30
45 validates_length_of :firstname, :lastname, :maximum => 30
46 validates_format_of :mail, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
46 validates_format_of :mail, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
47 validates_length_of :mail, :maximum => 60
47 validates_length_of :mail, :maximum => 60
48 # Password length between 4 and 12
48 # Password length between 4 and 12
49 validates_length_of :password, :in => 4..12, :allow_nil => true
49 validates_length_of :password, :in => 4..12, :allow_nil => true
50 validates_confirmation_of :password, :allow_nil => true
50 validates_confirmation_of :password, :allow_nil => true
51 validates_associated :custom_values, :on => :update
51 validates_associated :custom_values, :on => :update
52
52
53 def before_create
54 self.mail_notification = false
55 true
56 end
57
53 def before_save
58 def before_save
54 # update hashed_password if password was set
59 # update hashed_password if password was set
55 self.hashed_password = User.hash_password(self.password) if self.password
60 self.hashed_password = User.hash_password(self.password) if self.password
56 end
61 end
57
62
58 def self.active
63 def self.active
59 with_scope :find => { :conditions => [ "status = ?", STATUS_ACTIVE ] } do
64 with_scope :find => { :conditions => [ "status = ?", STATUS_ACTIVE ] } do
60 yield
65 yield
61 end
66 end
62 end
67 end
63
68
64 def self.find_active(*args)
69 def self.find_active(*args)
65 active do
70 active do
66 find(*args)
71 find(*args)
67 end
72 end
68 end
73 end
69
74
70 # Returns the user that matches provided login and password, or nil
75 # Returns the user that matches provided login and password, or nil
71 def self.try_to_login(login, password)
76 def self.try_to_login(login, password)
72 user = find(:first, :conditions => ["login=?", login])
77 user = find(:first, :conditions => ["login=?", login])
73 if user
78 if user
74 # user is already in local database
79 # user is already in local database
75 return nil if !user.active?
80 return nil if !user.active?
76 if user.auth_source
81 if user.auth_source
77 # user has an external authentication method
82 # user has an external authentication method
78 return nil unless user.auth_source.authenticate(login, password)
83 return nil unless user.auth_source.authenticate(login, password)
79 else
84 else
80 # authentication with local password
85 # authentication with local password
81 return nil unless User.hash_password(password) == user.hashed_password
86 return nil unless User.hash_password(password) == user.hashed_password
82 end
87 end
83 else
88 else
84 # user is not yet registered, try to authenticate with available sources
89 # user is not yet registered, try to authenticate with available sources
85 attrs = AuthSource.authenticate(login, password)
90 attrs = AuthSource.authenticate(login, password)
86 if attrs
91 if attrs
87 onthefly = new(*attrs)
92 onthefly = new(*attrs)
88 onthefly.login = login
93 onthefly.login = login
89 onthefly.language = Setting.default_language
94 onthefly.language = Setting.default_language
90 if onthefly.save
95 if onthefly.save
91 user = find(:first, :conditions => ["login=?", login])
96 user = find(:first, :conditions => ["login=?", login])
92 logger.info("User '#{user.login}' created on the fly.") if logger
97 logger.info("User '#{user.login}' created on the fly.") if logger
93 end
98 end
94 end
99 end
95 end
100 end
96 user.update_attribute(:last_login_on, Time.now) if user
101 user.update_attribute(:last_login_on, Time.now) if user
97 user
102 user
98
103
99 rescue => text
104 rescue => text
100 raise text
105 raise text
101 end
106 end
102
107
103 # Return user's full name for display
108 # Return user's full name for display
104 def name
109 def name
105 "#{firstname} #{lastname}"
110 "#{firstname} #{lastname}"
106 end
111 end
107
112
108 def active?
113 def active?
109 self.status == STATUS_ACTIVE
114 self.status == STATUS_ACTIVE
110 end
115 end
111
116
112 def registered?
117 def registered?
113 self.status == STATUS_REGISTERED
118 self.status == STATUS_REGISTERED
114 end
119 end
115
120
116 def locked?
121 def locked?
117 self.status == STATUS_LOCKED
122 self.status == STATUS_LOCKED
118 end
123 end
119
124
120 def check_password?(clear_password)
125 def check_password?(clear_password)
121 User.hash_password(clear_password) == self.hashed_password
126 User.hash_password(clear_password) == self.hashed_password
122 end
127 end
123
128
124 def pref
129 def pref
125 self.preference ||= UserPreference.new(:user => self)
130 self.preference ||= UserPreference.new(:user => self)
126 end
131 end
127
132
128 # Return user's RSS key (a 40 chars long string), used to access feeds
133 # Return user's RSS key (a 40 chars long string), used to access feeds
129 def rss_key
134 def rss_key
130 token = self.rss_token || Token.create(:user => self, :action => 'feeds')
135 token = self.rss_token || Token.create(:user => self, :action => 'feeds')
131 token.value
136 token.value
132 end
137 end
133
138
139 # Return an array of project ids for which the user has explicitly turned mail notifications on
140 def notified_projects_ids
141 @notified_projects_ids ||= memberships.select {|m| m.mail_notification?}.collect(&:project_id)
142 end
143
144 def notified_project_ids=(ids)
145 Member.update_all("mail_notification = #{connection.quoted_false}", ['user_id = ?', id])
146 Member.update_all("mail_notification = #{connection.quoted_true}", ['user_id = ? AND project_id IN (?)', id, ids]) if ids && !ids.empty?
147 @notified_projects_ids = nil
148 notified_projects_ids
149 end
150
134 def self.find_by_rss_key(key)
151 def self.find_by_rss_key(key)
135 token = Token.find_by_value(key)
152 token = Token.find_by_value(key)
136 token && token.user.active? ? token.user : nil
153 token && token.user.active? ? token.user : nil
137 end
154 end
138
155
139 def self.find_by_autologin_key(key)
156 def self.find_by_autologin_key(key)
140 token = Token.find_by_action_and_value('autologin', key)
157 token = Token.find_by_action_and_value('autologin', key)
141 token && (token.created_on > Setting.autologin.to_i.day.ago) && token.user.active? ? token.user : nil
158 token && (token.created_on > Setting.autologin.to_i.day.ago) && token.user.active? ? token.user : nil
142 end
159 end
143
160
144 def <=>(user)
161 def <=>(user)
145 lastname == user.lastname ? firstname <=> user.firstname : lastname <=> user.lastname
162 lastname == user.lastname ? firstname <=> user.firstname : lastname <=> user.lastname
146 end
163 end
147
164
148 def to_s
165 def to_s
149 name
166 name
150 end
167 end
151
168
152 def logged?
169 def logged?
153 true
170 true
154 end
171 end
155
172
156 # Return user's role for project
173 # Return user's role for project
157 def role_for_project(project)
174 def role_for_project(project)
158 # No role on archived projects
175 # No role on archived projects
159 return nil unless project && project.active?
176 return nil unless project && project.active?
160 # Find project membership
177 # Find project membership
161 membership = memberships.detect {|m| m.project_id == project.id}
178 membership = memberships.detect {|m| m.project_id == project.id}
162 if membership
179 if membership
163 membership.role
180 membership.role
164 elsif logged?
181 elsif logged?
165 Role.non_member
182 Role.non_member
166 else
183 else
167 Role.anonymous
184 Role.anonymous
168 end
185 end
169 end
186 end
170
187
171 # Return true if the user is a member of project
188 # Return true if the user is a member of project
172 def member_of?(project)
189 def member_of?(project)
173 role_for_project(project).member?
190 role_for_project(project).member?
174 end
191 end
175
192
176 # Return true if the user is allowed to do the specified action on project
193 # Return true if the user is allowed to do the specified action on project
177 # action can be:
194 # action can be:
178 # * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit')
195 # * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit')
179 # * a permission Symbol (eg. :edit_project)
196 # * a permission Symbol (eg. :edit_project)
180 def allowed_to?(action, project)
197 def allowed_to?(action, project)
181 # No action allowed on archived projects
198 # No action allowed on archived projects
182 return false unless project.active?
199 return false unless project.active?
183 # No action allowed on disabled modules
200 # No action allowed on disabled modules
184 return false unless project.allows_to?(action)
201 return false unless project.allows_to?(action)
185 # Admin users are authorized for anything else
202 # Admin users are authorized for anything else
186 return true if admin?
203 return true if admin?
187
204
188 role = role_for_project(project)
205 role = role_for_project(project)
189 return false unless role
206 return false unless role
190 role.allowed_to?(action) && (project.is_public? || role.member?)
207 role.allowed_to?(action) && (project.is_public? || role.member?)
191 end
208 end
192
209
193 def self.current=(user)
210 def self.current=(user)
194 @current_user = user
211 @current_user = user
195 end
212 end
196
213
197 def self.current
214 def self.current
198 @current_user ||= AnonymousUser.new
215 @current_user ||= AnonymousUser.new
199 end
216 end
200
217
201 def self.anonymous
218 def self.anonymous
202 AnonymousUser.new
219 AnonymousUser.new
203 end
220 end
204
221
205 private
222 private
206 # Return password digest
223 # Return password digest
207 def self.hash_password(clear_password)
224 def self.hash_password(clear_password)
208 Digest::SHA1.hexdigest(clear_password || "")
225 Digest::SHA1.hexdigest(clear_password || "")
209 end
226 end
210 end
227 end
211
228
212 class AnonymousUser < User
229 class AnonymousUser < User
213 def logged?
230 def logged?
214 false
231 false
215 end
232 end
216
233
217 # Anonymous user has no RSS key
234 # Anonymous user has no RSS key
218 def rss_key
235 def rss_key
219 nil
236 nil
220 end
237 end
221 end
238 end
@@ -1,55 +1,41
1 <div class="contextual">
2 <%= link_to(l(:button_change_password), :action => 'password') unless @user.auth_source_id %>
3 </div>
1 <h2><%=l(:label_my_account)%></h2>
4 <h2><%=l(:label_my_account)%></h2>
2
3 <%= error_messages_for 'user' %>
5 <%= error_messages_for 'user' %>
4
6
5 <div class="box">
7 <% form_for :user, @user, :url => { :action => "account" }, :builder => TabularFormBuilder, :lang => current_language do |f| %>
8 <div class="splitcontentleft">
6 <h3><%=l(:label_information_plural)%></h3>
9 <h3><%=l(:label_information_plural)%></h3>
7
10 <div class="box tabular">
8 <% labelled_tabular_form_for :user, @user, :url => { :action => "account" } do |f| %>
9
10 <p><%= f.text_field :firstname, :required => true %></p>
11 <p><%= f.text_field :firstname, :required => true %></p>
11 <p><%= f.text_field :lastname, :required => true %></p>
12 <p><%= f.text_field :lastname, :required => true %></p>
12 <p><%= f.text_field :mail, :required => true, :size => 40 %></p>
13 <p><%= f.text_field :mail, :required => true %></p>
13 <p><%= f.select :language, lang_options_for_select %></p>
14 <p><%= f.select :language, lang_options_for_select %></p>
14 <p><%= f.check_box :mail_notification %></p>
15
15
16 <% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
16 <% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
17 <p><%= pref_fields.check_box :hide_mail %></p>
17 <p><%= pref_fields.check_box :hide_mail %></p>
18 <% end %>
18 <% end %>
19
20 <center><%= submit_tag l(:button_save) %></center>
21 <% end %>
22 </div>
19 </div>
23
20
21 <%= submit_tag l(:button_save) %>
22 </div>
24
23
25 <% unless @user.auth_source_id %>
24 <div class="splitcontentright">
26 <div class="box">
25 <h3><%=l(:field_mail_notification)%></h3>
27 <h3><%=l(:field_password)%></h3>
26 <div class="box">
28
27 <%= select_tag 'notification_option', options_for_select(@notification_options, @notification_option),
29 <% form_tag({:action => 'change_password'}, :class => "tabular") do %>
28 :onchange => 'if ($("notification_option").value == "selected") {Element.show("notified-projects")} else {Element.hide("notified-projects")}' %>
30
29 <% content_tag 'div', :id => 'notified-projects', :style => (@notification_option == 'selected' ? '' : 'display:none;') do %>
31 <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
30 <p><% User.current.projects.each do |project| %>
32 <%= password_field_tag 'password', nil, :size => 25 %></p>
31 <label><%= check_box_tag 'notified_project_ids[]', project.id, @user.notified_projects_ids.include?(project.id) %> <%= project.name %></label><br />
33
32 <% end %></p>
34 <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
33 <p><em><%= l(:text_user_mail_option) %></em></p>
35 <%= password_field_tag 'new_password', nil, :size => 25 %><br />
34 <% end %>
36 <em><%= l(:text_length_between, 4, 12) %></em></p>
35 </div>
37
36 </div>
38 <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
39 <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
40
41 <center><%= submit_tag l(:button_save) %></center>
42 <% end %>
43 </div>
44 <% end %>
37 <% end %>
45
38
46 <% content_for :sidebar do %>
39 <% content_for :sidebar do %>
47 <h3><%=l(:label_my_account)%></h3>
40 <%= render :partial => 'sidebar' %>
48
49 <p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
50 <%=l(:field_created_on)%>: <%= format_time(@user.created_on) %></p>
51 <% if @user.rss_token %>
52 <p><%= l(:label_feeds_access_key_created_on, distance_of_time_in_words(Time.now, @user.rss_token.created_on)) %>
53 (<%= link_to l(:button_reset), {:action => 'reset_rss_key'}, :method => :post %>)</p>
54 <% end %>
55 <% end %>
41 <% end %>
@@ -1,40 +1,39
1 <%= error_messages_for 'user' %>
1 <%= error_messages_for 'user' %>
2
2
3 <!--[form:user]-->
3 <!--[form:user]-->
4 <div class="box">
4 <div class="box">
5 <h3><%=l(:label_information_plural)%></h3>
5 <h3><%=l(:label_information_plural)%></h3>
6 <p><%= f.text_field :login, :required => true, :size => 25 %></p>
6 <p><%= f.text_field :login, :required => true, :size => 25 %></p>
7 <p><%= f.text_field :firstname, :required => true %></p>
7 <p><%= f.text_field :firstname, :required => true %></p>
8 <p><%= f.text_field :lastname, :required => true %></p>
8 <p><%= f.text_field :lastname, :required => true %></p>
9 <p><%= f.text_field :mail, :required => true %></p>
9 <p><%= f.text_field :mail, :required => true %></p>
10 <p><%= f.select :language, lang_options_for_select %></p>
10 <p><%= f.select :language, lang_options_for_select %></p>
11
11
12 <% for @custom_value in @custom_values %>
12 <% for @custom_value in @custom_values %>
13 <p><%= custom_field_tag_with_label @custom_value %></p>
13 <p><%= custom_field_tag_with_label @custom_value %></p>
14 <% end if @custom_values%>
14 <% end if @custom_values%>
15
15
16 <p><%= f.check_box :admin %></p>
16 <p><%= f.check_box :admin %></p>
17 <p><%= f.check_box :mail_notification %></p>
18 </div>
17 </div>
19
18
20 <div class="box">
19 <div class="box">
21 <h3><%=l(:label_authentication)%></h3>
20 <h3><%=l(:label_authentication)%></h3>
22 <% unless @auth_sources.empty? %>
21 <% unless @auth_sources.empty? %>
23 <p><%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {Element.show('password_fields');} else {Element.hide('password_fields');}" %></p>
22 <p><%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {Element.show('password_fields');} else {Element.hide('password_fields');}" %></p>
24 <% end %>
23 <% end %>
25 <div id="password_fields" style="<%= 'display:none;' if @user.auth_source %>">
24 <div id="password_fields" style="<%= 'display:none;' if @user.auth_source %>">
26 <p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
25 <p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
27 <%= password_field_tag 'password', nil, :size => 25 %><br />
26 <%= password_field_tag 'password', nil, :size => 25 %><br />
28 <em><%= l(:text_length_between, 4, 12) %></em></p>
27 <em><%= l(:text_length_between, 4, 12) %></em></p>
29 <p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
28 <p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
30 <%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
29 <%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
31 </div>
30 </div>
32 </div>
31 </div>
33 <!--[eoform:user]-->
32 <!--[eoform:user]-->
34
33
35 <% content_for :header_tags do %>
34 <% content_for :header_tags do %>
36 <%= javascript_include_tag 'calendar/calendar' %>
35 <%= javascript_include_tag 'calendar/calendar' %>
37 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
36 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
38 <%= javascript_include_tag 'calendar/calendar-setup' %>
37 <%= javascript_include_tag 'calendar/calendar-setup' %>
39 <%= stylesheet_link_tag 'calendar' %>
38 <%= stylesheet_link_tag 'calendar' %>
40 <% end %> No newline at end of file
39 <% end %>
@@ -1,321 +1,321
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class Setup < ActiveRecord::Migration
18 class Setup < ActiveRecord::Migration
19
19
20 # model removed
20 # model removed
21 class Permission < ActiveRecord::Base; end
21 class Permission < ActiveRecord::Base; end
22
22
23 def self.up
23 def self.up
24 create_table "attachments", :force => true do |t|
24 create_table "attachments", :force => true do |t|
25 t.column "container_id", :integer, :default => 0, :null => false
25 t.column "container_id", :integer, :default => 0, :null => false
26 t.column "container_type", :string, :limit => 30, :default => "", :null => false
26 t.column "container_type", :string, :limit => 30, :default => "", :null => false
27 t.column "filename", :string, :default => "", :null => false
27 t.column "filename", :string, :default => "", :null => false
28 t.column "disk_filename", :string, :default => "", :null => false
28 t.column "disk_filename", :string, :default => "", :null => false
29 t.column "filesize", :integer, :default => 0, :null => false
29 t.column "filesize", :integer, :default => 0, :null => false
30 t.column "content_type", :string, :limit => 60, :default => ""
30 t.column "content_type", :string, :limit => 60, :default => ""
31 t.column "digest", :string, :limit => 40, :default => "", :null => false
31 t.column "digest", :string, :limit => 40, :default => "", :null => false
32 t.column "downloads", :integer, :default => 0, :null => false
32 t.column "downloads", :integer, :default => 0, :null => false
33 t.column "author_id", :integer, :default => 0, :null => false
33 t.column "author_id", :integer, :default => 0, :null => false
34 t.column "created_on", :timestamp
34 t.column "created_on", :timestamp
35 end
35 end
36
36
37 create_table "auth_sources", :force => true do |t|
37 create_table "auth_sources", :force => true do |t|
38 t.column "type", :string, :limit => 30, :default => "", :null => false
38 t.column "type", :string, :limit => 30, :default => "", :null => false
39 t.column "name", :string, :limit => 60, :default => "", :null => false
39 t.column "name", :string, :limit => 60, :default => "", :null => false
40 t.column "host", :string, :limit => 60
40 t.column "host", :string, :limit => 60
41 t.column "port", :integer
41 t.column "port", :integer
42 t.column "account", :string, :limit => 60
42 t.column "account", :string, :limit => 60
43 t.column "account_password", :string, :limit => 60
43 t.column "account_password", :string, :limit => 60
44 t.column "base_dn", :string, :limit => 255
44 t.column "base_dn", :string, :limit => 255
45 t.column "attr_login", :string, :limit => 30
45 t.column "attr_login", :string, :limit => 30
46 t.column "attr_firstname", :string, :limit => 30
46 t.column "attr_firstname", :string, :limit => 30
47 t.column "attr_lastname", :string, :limit => 30
47 t.column "attr_lastname", :string, :limit => 30
48 t.column "attr_mail", :string, :limit => 30
48 t.column "attr_mail", :string, :limit => 30
49 t.column "onthefly_register", :boolean, :default => false, :null => false
49 t.column "onthefly_register", :boolean, :default => false, :null => false
50 end
50 end
51
51
52 create_table "custom_fields", :force => true do |t|
52 create_table "custom_fields", :force => true do |t|
53 t.column "type", :string, :limit => 30, :default => "", :null => false
53 t.column "type", :string, :limit => 30, :default => "", :null => false
54 t.column "name", :string, :limit => 30, :default => "", :null => false
54 t.column "name", :string, :limit => 30, :default => "", :null => false
55 t.column "field_format", :string, :limit => 30, :default => "", :null => false
55 t.column "field_format", :string, :limit => 30, :default => "", :null => false
56 t.column "possible_values", :text
56 t.column "possible_values", :text
57 t.column "regexp", :string, :default => ""
57 t.column "regexp", :string, :default => ""
58 t.column "min_length", :integer, :default => 0, :null => false
58 t.column "min_length", :integer, :default => 0, :null => false
59 t.column "max_length", :integer, :default => 0, :null => false
59 t.column "max_length", :integer, :default => 0, :null => false
60 t.column "is_required", :boolean, :default => false, :null => false
60 t.column "is_required", :boolean, :default => false, :null => false
61 t.column "is_for_all", :boolean, :default => false, :null => false
61 t.column "is_for_all", :boolean, :default => false, :null => false
62 end
62 end
63
63
64 create_table "custom_fields_projects", :id => false, :force => true do |t|
64 create_table "custom_fields_projects", :id => false, :force => true do |t|
65 t.column "custom_field_id", :integer, :default => 0, :null => false
65 t.column "custom_field_id", :integer, :default => 0, :null => false
66 t.column "project_id", :integer, :default => 0, :null => false
66 t.column "project_id", :integer, :default => 0, :null => false
67 end
67 end
68
68
69 create_table "custom_fields_trackers", :id => false, :force => true do |t|
69 create_table "custom_fields_trackers", :id => false, :force => true do |t|
70 t.column "custom_field_id", :integer, :default => 0, :null => false
70 t.column "custom_field_id", :integer, :default => 0, :null => false
71 t.column "tracker_id", :integer, :default => 0, :null => false
71 t.column "tracker_id", :integer, :default => 0, :null => false
72 end
72 end
73
73
74 create_table "custom_values", :force => true do |t|
74 create_table "custom_values", :force => true do |t|
75 t.column "customized_type", :string, :limit => 30, :default => "", :null => false
75 t.column "customized_type", :string, :limit => 30, :default => "", :null => false
76 t.column "customized_id", :integer, :default => 0, :null => false
76 t.column "customized_id", :integer, :default => 0, :null => false
77 t.column "custom_field_id", :integer, :default => 0, :null => false
77 t.column "custom_field_id", :integer, :default => 0, :null => false
78 t.column "value", :text
78 t.column "value", :text
79 end
79 end
80
80
81 create_table "documents", :force => true do |t|
81 create_table "documents", :force => true do |t|
82 t.column "project_id", :integer, :default => 0, :null => false
82 t.column "project_id", :integer, :default => 0, :null => false
83 t.column "category_id", :integer, :default => 0, :null => false
83 t.column "category_id", :integer, :default => 0, :null => false
84 t.column "title", :string, :limit => 60, :default => "", :null => false
84 t.column "title", :string, :limit => 60, :default => "", :null => false
85 t.column "description", :text
85 t.column "description", :text
86 t.column "created_on", :timestamp
86 t.column "created_on", :timestamp
87 end
87 end
88
88
89 add_index "documents", ["project_id"], :name => "documents_project_id"
89 add_index "documents", ["project_id"], :name => "documents_project_id"
90
90
91 create_table "enumerations", :force => true do |t|
91 create_table "enumerations", :force => true do |t|
92 t.column "opt", :string, :limit => 4, :default => "", :null => false
92 t.column "opt", :string, :limit => 4, :default => "", :null => false
93 t.column "name", :string, :limit => 30, :default => "", :null => false
93 t.column "name", :string, :limit => 30, :default => "", :null => false
94 end
94 end
95
95
96 create_table "issue_categories", :force => true do |t|
96 create_table "issue_categories", :force => true do |t|
97 t.column "project_id", :integer, :default => 0, :null => false
97 t.column "project_id", :integer, :default => 0, :null => false
98 t.column "name", :string, :limit => 30, :default => "", :null => false
98 t.column "name", :string, :limit => 30, :default => "", :null => false
99 end
99 end
100
100
101 add_index "issue_categories", ["project_id"], :name => "issue_categories_project_id"
101 add_index "issue_categories", ["project_id"], :name => "issue_categories_project_id"
102
102
103 create_table "issue_histories", :force => true do |t|
103 create_table "issue_histories", :force => true do |t|
104 t.column "issue_id", :integer, :default => 0, :null => false
104 t.column "issue_id", :integer, :default => 0, :null => false
105 t.column "status_id", :integer, :default => 0, :null => false
105 t.column "status_id", :integer, :default => 0, :null => false
106 t.column "author_id", :integer, :default => 0, :null => false
106 t.column "author_id", :integer, :default => 0, :null => false
107 t.column "notes", :text
107 t.column "notes", :text
108 t.column "created_on", :timestamp
108 t.column "created_on", :timestamp
109 end
109 end
110
110
111 add_index "issue_histories", ["issue_id"], :name => "issue_histories_issue_id"
111 add_index "issue_histories", ["issue_id"], :name => "issue_histories_issue_id"
112
112
113 create_table "issue_statuses", :force => true do |t|
113 create_table "issue_statuses", :force => true do |t|
114 t.column "name", :string, :limit => 30, :default => "", :null => false
114 t.column "name", :string, :limit => 30, :default => "", :null => false
115 t.column "is_closed", :boolean, :default => false, :null => false
115 t.column "is_closed", :boolean, :default => false, :null => false
116 t.column "is_default", :boolean, :default => false, :null => false
116 t.column "is_default", :boolean, :default => false, :null => false
117 t.column "html_color", :string, :limit => 6, :default => "FFFFFF", :null => false
117 t.column "html_color", :string, :limit => 6, :default => "FFFFFF", :null => false
118 end
118 end
119
119
120 create_table "issues", :force => true do |t|
120 create_table "issues", :force => true do |t|
121 t.column "tracker_id", :integer, :default => 0, :null => false
121 t.column "tracker_id", :integer, :default => 0, :null => false
122 t.column "project_id", :integer, :default => 0, :null => false
122 t.column "project_id", :integer, :default => 0, :null => false
123 t.column "subject", :string, :default => "", :null => false
123 t.column "subject", :string, :default => "", :null => false
124 t.column "description", :text
124 t.column "description", :text
125 t.column "due_date", :date
125 t.column "due_date", :date
126 t.column "category_id", :integer
126 t.column "category_id", :integer
127 t.column "status_id", :integer, :default => 0, :null => false
127 t.column "status_id", :integer, :default => 0, :null => false
128 t.column "assigned_to_id", :integer
128 t.column "assigned_to_id", :integer
129 t.column "priority_id", :integer, :default => 0, :null => false
129 t.column "priority_id", :integer, :default => 0, :null => false
130 t.column "fixed_version_id", :integer
130 t.column "fixed_version_id", :integer
131 t.column "author_id", :integer, :default => 0, :null => false
131 t.column "author_id", :integer, :default => 0, :null => false
132 t.column "lock_version", :integer, :default => 0, :null => false
132 t.column "lock_version", :integer, :default => 0, :null => false
133 t.column "created_on", :timestamp
133 t.column "created_on", :timestamp
134 t.column "updated_on", :timestamp
134 t.column "updated_on", :timestamp
135 end
135 end
136
136
137 add_index "issues", ["project_id"], :name => "issues_project_id"
137 add_index "issues", ["project_id"], :name => "issues_project_id"
138
138
139 create_table "members", :force => true do |t|
139 create_table "members", :force => true do |t|
140 t.column "user_id", :integer, :default => 0, :null => false
140 t.column "user_id", :integer, :default => 0, :null => false
141 t.column "project_id", :integer, :default => 0, :null => false
141 t.column "project_id", :integer, :default => 0, :null => false
142 t.column "role_id", :integer, :default => 0, :null => false
142 t.column "role_id", :integer, :default => 0, :null => false
143 t.column "created_on", :timestamp
143 t.column "created_on", :timestamp
144 end
144 end
145
145
146 create_table "news", :force => true do |t|
146 create_table "news", :force => true do |t|
147 t.column "project_id", :integer
147 t.column "project_id", :integer
148 t.column "title", :string, :limit => 60, :default => "", :null => false
148 t.column "title", :string, :limit => 60, :default => "", :null => false
149 t.column "summary", :string, :limit => 255, :default => ""
149 t.column "summary", :string, :limit => 255, :default => ""
150 t.column "description", :text
150 t.column "description", :text
151 t.column "author_id", :integer, :default => 0, :null => false
151 t.column "author_id", :integer, :default => 0, :null => false
152 t.column "created_on", :timestamp
152 t.column "created_on", :timestamp
153 end
153 end
154
154
155 add_index "news", ["project_id"], :name => "news_project_id"
155 add_index "news", ["project_id"], :name => "news_project_id"
156
156
157 create_table "permissions", :force => true do |t|
157 create_table "permissions", :force => true do |t|
158 t.column "controller", :string, :limit => 30, :default => "", :null => false
158 t.column "controller", :string, :limit => 30, :default => "", :null => false
159 t.column "action", :string, :limit => 30, :default => "", :null => false
159 t.column "action", :string, :limit => 30, :default => "", :null => false
160 t.column "description", :string, :limit => 60, :default => "", :null => false
160 t.column "description", :string, :limit => 60, :default => "", :null => false
161 t.column "is_public", :boolean, :default => false, :null => false
161 t.column "is_public", :boolean, :default => false, :null => false
162 t.column "sort", :integer, :default => 0, :null => false
162 t.column "sort", :integer, :default => 0, :null => false
163 t.column "mail_option", :boolean, :default => false, :null => false
163 t.column "mail_option", :boolean, :default => false, :null => false
164 t.column "mail_enabled", :boolean, :default => false, :null => false
164 t.column "mail_enabled", :boolean, :default => false, :null => false
165 end
165 end
166
166
167 create_table "permissions_roles", :id => false, :force => true do |t|
167 create_table "permissions_roles", :id => false, :force => true do |t|
168 t.column "permission_id", :integer, :default => 0, :null => false
168 t.column "permission_id", :integer, :default => 0, :null => false
169 t.column "role_id", :integer, :default => 0, :null => false
169 t.column "role_id", :integer, :default => 0, :null => false
170 end
170 end
171
171
172 add_index "permissions_roles", ["role_id"], :name => "permissions_roles_role_id"
172 add_index "permissions_roles", ["role_id"], :name => "permissions_roles_role_id"
173
173
174 create_table "projects", :force => true do |t|
174 create_table "projects", :force => true do |t|
175 t.column "name", :string, :limit => 30, :default => "", :null => false
175 t.column "name", :string, :limit => 30, :default => "", :null => false
176 t.column "description", :string, :default => "", :null => false
176 t.column "description", :string, :default => "", :null => false
177 t.column "homepage", :string, :limit => 60, :default => ""
177 t.column "homepage", :string, :limit => 60, :default => ""
178 t.column "is_public", :boolean, :default => true, :null => false
178 t.column "is_public", :boolean, :default => true, :null => false
179 t.column "parent_id", :integer
179 t.column "parent_id", :integer
180 t.column "projects_count", :integer, :default => 0
180 t.column "projects_count", :integer, :default => 0
181 t.column "created_on", :timestamp
181 t.column "created_on", :timestamp
182 t.column "updated_on", :timestamp
182 t.column "updated_on", :timestamp
183 end
183 end
184
184
185 create_table "roles", :force => true do |t|
185 create_table "roles", :force => true do |t|
186 t.column "name", :string, :limit => 30, :default => "", :null => false
186 t.column "name", :string, :limit => 30, :default => "", :null => false
187 end
187 end
188
188
189 create_table "tokens", :force => true do |t|
189 create_table "tokens", :force => true do |t|
190 t.column "user_id", :integer, :default => 0, :null => false
190 t.column "user_id", :integer, :default => 0, :null => false
191 t.column "action", :string, :limit => 30, :default => "", :null => false
191 t.column "action", :string, :limit => 30, :default => "", :null => false
192 t.column "value", :string, :limit => 40, :default => "", :null => false
192 t.column "value", :string, :limit => 40, :default => "", :null => false
193 t.column "created_on", :datetime, :null => false
193 t.column "created_on", :datetime, :null => false
194 end
194 end
195
195
196 create_table "trackers", :force => true do |t|
196 create_table "trackers", :force => true do |t|
197 t.column "name", :string, :limit => 30, :default => "", :null => false
197 t.column "name", :string, :limit => 30, :default => "", :null => false
198 t.column "is_in_chlog", :boolean, :default => false, :null => false
198 t.column "is_in_chlog", :boolean, :default => false, :null => false
199 end
199 end
200
200
201 create_table "users", :force => true do |t|
201 create_table "users", :force => true do |t|
202 t.column "login", :string, :limit => 30, :default => "", :null => false
202 t.column "login", :string, :limit => 30, :default => "", :null => false
203 t.column "hashed_password", :string, :limit => 40, :default => "", :null => false
203 t.column "hashed_password", :string, :limit => 40, :default => "", :null => false
204 t.column "firstname", :string, :limit => 30, :default => "", :null => false
204 t.column "firstname", :string, :limit => 30, :default => "", :null => false
205 t.column "lastname", :string, :limit => 30, :default => "", :null => false
205 t.column "lastname", :string, :limit => 30, :default => "", :null => false
206 t.column "mail", :string, :limit => 60, :default => "", :null => false
206 t.column "mail", :string, :limit => 60, :default => "", :null => false
207 t.column "mail_notification", :boolean, :default => true, :null => false
207 t.column "mail_notification", :boolean, :default => true, :null => false
208 t.column "admin", :boolean, :default => false, :null => false
208 t.column "admin", :boolean, :default => false, :null => false
209 t.column "status", :integer, :default => 1, :null => false
209 t.column "status", :integer, :default => 1, :null => false
210 t.column "last_login_on", :datetime
210 t.column "last_login_on", :datetime
211 t.column "language", :string, :limit => 2, :default => ""
211 t.column "language", :string, :limit => 2, :default => ""
212 t.column "auth_source_id", :integer
212 t.column "auth_source_id", :integer
213 t.column "created_on", :timestamp
213 t.column "created_on", :timestamp
214 t.column "updated_on", :timestamp
214 t.column "updated_on", :timestamp
215 end
215 end
216
216
217 create_table "versions", :force => true do |t|
217 create_table "versions", :force => true do |t|
218 t.column "project_id", :integer, :default => 0, :null => false
218 t.column "project_id", :integer, :default => 0, :null => false
219 t.column "name", :string, :limit => 30, :default => "", :null => false
219 t.column "name", :string, :limit => 30, :default => "", :null => false
220 t.column "description", :string, :default => ""
220 t.column "description", :string, :default => ""
221 t.column "effective_date", :date
221 t.column "effective_date", :date
222 t.column "created_on", :timestamp
222 t.column "created_on", :timestamp
223 t.column "updated_on", :timestamp
223 t.column "updated_on", :timestamp
224 end
224 end
225
225
226 add_index "versions", ["project_id"], :name => "versions_project_id"
226 add_index "versions", ["project_id"], :name => "versions_project_id"
227
227
228 create_table "workflows", :force => true do |t|
228 create_table "workflows", :force => true do |t|
229 t.column "tracker_id", :integer, :default => 0, :null => false
229 t.column "tracker_id", :integer, :default => 0, :null => false
230 t.column "old_status_id", :integer, :default => 0, :null => false
230 t.column "old_status_id", :integer, :default => 0, :null => false
231 t.column "new_status_id", :integer, :default => 0, :null => false
231 t.column "new_status_id", :integer, :default => 0, :null => false
232 t.column "role_id", :integer, :default => 0, :null => false
232 t.column "role_id", :integer, :default => 0, :null => false
233 end
233 end
234
234
235 # project
235 # project
236 Permission.create :controller => "projects", :action => "show", :description => "label_overview", :sort => 100, :is_public => true
236 Permission.create :controller => "projects", :action => "show", :description => "label_overview", :sort => 100, :is_public => true
237 Permission.create :controller => "projects", :action => "changelog", :description => "label_change_log", :sort => 105, :is_public => true
237 Permission.create :controller => "projects", :action => "changelog", :description => "label_change_log", :sort => 105, :is_public => true
238 Permission.create :controller => "reports", :action => "issue_report", :description => "label_report_plural", :sort => 110, :is_public => true
238 Permission.create :controller => "reports", :action => "issue_report", :description => "label_report_plural", :sort => 110, :is_public => true
239 Permission.create :controller => "projects", :action => "settings", :description => "label_settings", :sort => 150
239 Permission.create :controller => "projects", :action => "settings", :description => "label_settings", :sort => 150
240 Permission.create :controller => "projects", :action => "edit", :description => "button_edit", :sort => 151
240 Permission.create :controller => "projects", :action => "edit", :description => "button_edit", :sort => 151
241 # members
241 # members
242 Permission.create :controller => "projects", :action => "list_members", :description => "button_list", :sort => 200, :is_public => true
242 Permission.create :controller => "projects", :action => "list_members", :description => "button_list", :sort => 200, :is_public => true
243 Permission.create :controller => "projects", :action => "add_member", :description => "button_add", :sort => 220
243 Permission.create :controller => "projects", :action => "add_member", :description => "button_add", :sort => 220
244 Permission.create :controller => "members", :action => "edit", :description => "button_edit", :sort => 221
244 Permission.create :controller => "members", :action => "edit", :description => "button_edit", :sort => 221
245 Permission.create :controller => "members", :action => "destroy", :description => "button_delete", :sort => 222
245 Permission.create :controller => "members", :action => "destroy", :description => "button_delete", :sort => 222
246 # versions
246 # versions
247 Permission.create :controller => "projects", :action => "add_version", :description => "button_add", :sort => 320
247 Permission.create :controller => "projects", :action => "add_version", :description => "button_add", :sort => 320
248 Permission.create :controller => "versions", :action => "edit", :description => "button_edit", :sort => 321
248 Permission.create :controller => "versions", :action => "edit", :description => "button_edit", :sort => 321
249 Permission.create :controller => "versions", :action => "destroy", :description => "button_delete", :sort => 322
249 Permission.create :controller => "versions", :action => "destroy", :description => "button_delete", :sort => 322
250 # issue categories
250 # issue categories
251 Permission.create :controller => "projects", :action => "add_issue_category", :description => "button_add", :sort => 420
251 Permission.create :controller => "projects", :action => "add_issue_category", :description => "button_add", :sort => 420
252 Permission.create :controller => "issue_categories", :action => "edit", :description => "button_edit", :sort => 421
252 Permission.create :controller => "issue_categories", :action => "edit", :description => "button_edit", :sort => 421
253 Permission.create :controller => "issue_categories", :action => "destroy", :description => "button_delete", :sort => 422
253 Permission.create :controller => "issue_categories", :action => "destroy", :description => "button_delete", :sort => 422
254 # issues
254 # issues
255 Permission.create :controller => "projects", :action => "list_issues", :description => "button_list", :sort => 1000, :is_public => true
255 Permission.create :controller => "projects", :action => "list_issues", :description => "button_list", :sort => 1000, :is_public => true
256 Permission.create :controller => "projects", :action => "export_issues_csv", :description => "label_export_csv", :sort => 1001, :is_public => true
256 Permission.create :controller => "projects", :action => "export_issues_csv", :description => "label_export_csv", :sort => 1001, :is_public => true
257 Permission.create :controller => "issues", :action => "show", :description => "button_view", :sort => 1005, :is_public => true
257 Permission.create :controller => "issues", :action => "show", :description => "button_view", :sort => 1005, :is_public => true
258 Permission.create :controller => "issues", :action => "download", :description => "button_download", :sort => 1010, :is_public => true
258 Permission.create :controller => "issues", :action => "download", :description => "button_download", :sort => 1010, :is_public => true
259 Permission.create :controller => "projects", :action => "add_issue", :description => "button_add", :sort => 1050, :mail_option => 1, :mail_enabled => 1
259 Permission.create :controller => "projects", :action => "add_issue", :description => "button_add", :sort => 1050, :mail_option => 1, :mail_enabled => 1
260 Permission.create :controller => "issues", :action => "edit", :description => "button_edit", :sort => 1055
260 Permission.create :controller => "issues", :action => "edit", :description => "button_edit", :sort => 1055
261 Permission.create :controller => "issues", :action => "change_status", :description => "label_change_status", :sort => 1060, :mail_option => 1, :mail_enabled => 1
261 Permission.create :controller => "issues", :action => "change_status", :description => "label_change_status", :sort => 1060, :mail_option => 1, :mail_enabled => 1
262 Permission.create :controller => "issues", :action => "destroy", :description => "button_delete", :sort => 1065
262 Permission.create :controller => "issues", :action => "destroy", :description => "button_delete", :sort => 1065
263 Permission.create :controller => "issues", :action => "add_attachment", :description => "label_attachment_new", :sort => 1070
263 Permission.create :controller => "issues", :action => "add_attachment", :description => "label_attachment_new", :sort => 1070
264 Permission.create :controller => "issues", :action => "destroy_attachment", :description => "label_attachment_delete", :sort => 1075
264 Permission.create :controller => "issues", :action => "destroy_attachment", :description => "label_attachment_delete", :sort => 1075
265 # news
265 # news
266 Permission.create :controller => "projects", :action => "list_news", :description => "button_list", :sort => 1100, :is_public => true
266 Permission.create :controller => "projects", :action => "list_news", :description => "button_list", :sort => 1100, :is_public => true
267 Permission.create :controller => "news", :action => "show", :description => "button_view", :sort => 1101, :is_public => true
267 Permission.create :controller => "news", :action => "show", :description => "button_view", :sort => 1101, :is_public => true
268 Permission.create :controller => "projects", :action => "add_news", :description => "button_add", :sort => 1120
268 Permission.create :controller => "projects", :action => "add_news", :description => "button_add", :sort => 1120
269 Permission.create :controller => "news", :action => "edit", :description => "button_edit", :sort => 1121
269 Permission.create :controller => "news", :action => "edit", :description => "button_edit", :sort => 1121
270 Permission.create :controller => "news", :action => "destroy", :description => "button_delete", :sort => 1122
270 Permission.create :controller => "news", :action => "destroy", :description => "button_delete", :sort => 1122
271 # documents
271 # documents
272 Permission.create :controller => "projects", :action => "list_documents", :description => "button_list", :sort => 1200, :is_public => true
272 Permission.create :controller => "projects", :action => "list_documents", :description => "button_list", :sort => 1200, :is_public => true
273 Permission.create :controller => "documents", :action => "show", :description => "button_view", :sort => 1201, :is_public => true
273 Permission.create :controller => "documents", :action => "show", :description => "button_view", :sort => 1201, :is_public => true
274 Permission.create :controller => "documents", :action => "download", :description => "button_download", :sort => 1202, :is_public => true
274 Permission.create :controller => "documents", :action => "download", :description => "button_download", :sort => 1202, :is_public => true
275 Permission.create :controller => "projects", :action => "add_document", :description => "button_add", :sort => 1220
275 Permission.create :controller => "projects", :action => "add_document", :description => "button_add", :sort => 1220
276 Permission.create :controller => "documents", :action => "edit", :description => "button_edit", :sort => 1221
276 Permission.create :controller => "documents", :action => "edit", :description => "button_edit", :sort => 1221
277 Permission.create :controller => "documents", :action => "destroy", :description => "button_delete", :sort => 1222
277 Permission.create :controller => "documents", :action => "destroy", :description => "button_delete", :sort => 1222
278 Permission.create :controller => "documents", :action => "add_attachment", :description => "label_attachment_new", :sort => 1223
278 Permission.create :controller => "documents", :action => "add_attachment", :description => "label_attachment_new", :sort => 1223
279 Permission.create :controller => "documents", :action => "destroy_attachment", :description => "label_attachment_delete", :sort => 1224
279 Permission.create :controller => "documents", :action => "destroy_attachment", :description => "label_attachment_delete", :sort => 1224
280 # files
280 # files
281 Permission.create :controller => "projects", :action => "list_files", :description => "button_list", :sort => 1300, :is_public => true
281 Permission.create :controller => "projects", :action => "list_files", :description => "button_list", :sort => 1300, :is_public => true
282 Permission.create :controller => "versions", :action => "download", :description => "button_download", :sort => 1301, :is_public => true
282 Permission.create :controller => "versions", :action => "download", :description => "button_download", :sort => 1301, :is_public => true
283 Permission.create :controller => "projects", :action => "add_file", :description => "button_add", :sort => 1320
283 Permission.create :controller => "projects", :action => "add_file", :description => "button_add", :sort => 1320
284 Permission.create :controller => "versions", :action => "destroy_file", :description => "button_delete", :sort => 1322
284 Permission.create :controller => "versions", :action => "destroy_file", :description => "button_delete", :sort => 1322
285
285
286 # create default administrator account
286 # create default administrator account
287 user = User.create :firstname => "redMine", :lastname => "Admin", :mail => "admin@somenet.foo", :mail_notification => true, :language => "en"
287 user = User.create :firstname => "Redmine", :lastname => "Admin", :mail => "admin@somenet.foo", :mail_notification => true, :language => "en"
288 user.login = "admin"
288 user.login = "admin"
289 user.password = "admin"
289 user.password = "admin"
290 user.admin = true
290 user.admin = true
291 user.save
291 user.save
292
292
293
293
294 end
294 end
295
295
296 def self.down
296 def self.down
297 drop_table :attachments
297 drop_table :attachments
298 drop_table :auth_sources
298 drop_table :auth_sources
299 drop_table :custom_fields
299 drop_table :custom_fields
300 drop_table :custom_fields_projects
300 drop_table :custom_fields_projects
301 drop_table :custom_fields_trackers
301 drop_table :custom_fields_trackers
302 drop_table :custom_values
302 drop_table :custom_values
303 drop_table :documents
303 drop_table :documents
304 drop_table :enumerations
304 drop_table :enumerations
305 drop_table :issue_categories
305 drop_table :issue_categories
306 drop_table :issue_histories
306 drop_table :issue_histories
307 drop_table :issue_statuses
307 drop_table :issue_statuses
308 drop_table :issues
308 drop_table :issues
309 drop_table :members
309 drop_table :members
310 drop_table :news
310 drop_table :news
311 drop_table :permissions
311 drop_table :permissions
312 drop_table :permissions_roles
312 drop_table :permissions_roles
313 drop_table :projects
313 drop_table :projects
314 drop_table :roles
314 drop_table :roles
315 drop_table :trackers
315 drop_table :trackers
316 drop_table :tokens
316 drop_table :tokens
317 drop_table :users
317 drop_table :users
318 drop_table :versions
318 drop_table :versions
319 drop_table :workflows
319 drop_table :workflows
320 end
320 end
321 end
321 end
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 ден
8 actionview_datehelper_time_in_words_day: 1 ден
9 actionview_datehelper_time_in_words_day_plural: %d дни
9 actionview_datehelper_time_in_words_day_plural: %d дни
10 actionview_datehelper_time_in_words_hour_about: около час
10 actionview_datehelper_time_in_words_hour_about: около час
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 actionview_datehelper_time_in_words_hour_about_single: около час
12 actionview_datehelper_time_in_words_hour_about_single: около час
13 actionview_datehelper_time_in_words_minute: 1 минута
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 actionview_datehelper_time_in_words_minute_plural: %d минути
16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 actionview_datehelper_time_in_words_minute_single: 1 минута
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 actionview_instancetag_blank_option: Изберете
20 actionview_instancetag_blank_option: Изберете
21
21
22 activerecord_error_inclusion: не съществува в списъка
22 activerecord_error_inclusion: не съществува в списъка
23 activerecord_error_exclusion: е запазено
23 activerecord_error_exclusion: е запазено
24 activerecord_error_invalid: е невалидно
24 activerecord_error_invalid: е невалидно
25 activerecord_error_confirmation: липсва одобрение
25 activerecord_error_confirmation: липсва одобрение
26 activerecord_error_accepted: трябва да се приеме
26 activerecord_error_accepted: трябва да се приеме
27 activerecord_error_empty: не може да е празно
27 activerecord_error_empty: не може да е празно
28 activerecord_error_blank: не може да е празно
28 activerecord_error_blank: не може да е празно
29 activerecord_error_too_long: е прекалено дълго
29 activerecord_error_too_long: е прекалено дълго
30 activerecord_error_too_short: е прекалено късо
30 activerecord_error_too_short: е прекалено късо
31 activerecord_error_wrong_length: е с грешна дължина
31 activerecord_error_wrong_length: е с грешна дължина
32 activerecord_error_taken: вече съществува
32 activerecord_error_taken: вече съществува
33 activerecord_error_not_a_number: не е число
33 activerecord_error_not_a_number: не е число
34 activerecord_error_not_a_date: е невалидна дата
34 activerecord_error_not_a_date: е невалидна дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 activerecord_error_not_same_project: не е от същия проект
36 activerecord_error_not_same_project: не е от същия проект
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d.%%m.%%Y
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Не'
45 general_text_No: 'Не'
46 general_text_Yes: 'Да'
46 general_text_Yes: 'Да'
47 general_text_no: 'не'
47 general_text_no: 'не'
48 general_text_yes: 'да'
48 general_text_yes: 'да'
49 general_lang_name: 'Bulgarian'
49 general_lang_name: 'Bulgarian'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: cp1251
51 general_csv_encoding: cp1251
52 general_pdf_encoding: cp1251
52 general_pdf_encoding: cp1251
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
53 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Профилът е обновен успешно.
56 notice_account_updated: Профилът е обновен успешно.
57 notice_account_invalid_creditentials: Невалиден потребител или парола.
57 notice_account_invalid_creditentials: Невалиден потребител или парола.
58 notice_account_password_updated: Паролата е успешно променена.
58 notice_account_password_updated: Паролата е успешно променена.
59 notice_account_wrong_password: Грешна парола
59 notice_account_wrong_password: Грешна парола
60 notice_account_register_done: Акаунтът е създаден успешно.
60 notice_account_register_done: Акаунтът е създаден успешно.
61 notice_account_unknown_email: Непознат потребител.
61 notice_account_unknown_email: Непознат потребител.
62 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
62 notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата.
63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
63 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
64 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
64 notice_account_activated: Акаунтът ви е активиран. Вече може да влезете.
65 notice_successful_create: Успешно създаване.
65 notice_successful_create: Успешно създаване.
66 notice_successful_update: Успешно обновяване.
66 notice_successful_update: Успешно обновяване.
67 notice_successful_delete: Успешно изтриване.
67 notice_successful_delete: Успешно изтриване.
68 notice_successful_connection: Успешно свързване.
68 notice_successful_connection: Успешно свързване.
69 notice_file_not_found: Несъществуваща или преместена страница.
69 notice_file_not_found: Несъществуваща или преместена страница.
70 notice_locking_conflict: Друг потребител променя тези данни в момента.
70 notice_locking_conflict: Друг потребител променя тези данни в момента.
71 notice_scm_error: Несъществуващ обект в склада.
71 notice_scm_error: Несъществуващ обект в склада.
72 notice_not_authorized: Нямате право на достъп до тази страница.
72 notice_not_authorized: Нямате право на достъп до тази страница.
73 notice_email_sent: Изпратен e-mail на %s
73 notice_email_sent: Изпратен e-mail на %s
74 notice_email_error: Грешка при изпращане на e-mail (%s)
74 notice_email_error: Грешка при изпращане на e-mail (%s)
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
76
76
77 mail_subject_lost_password: Вашата парола
77 mail_subject_lost_password: Вашата парола
78 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
78 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
79 mail_subject_register: Активация на акаунт
79 mail_subject_register: Активация на акаунт
80 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
80 mail_body_register: 'За да активирате акаунта си използвайте следния линк:'
81
81
82 gui_validation_error: 1 грешка
82 gui_validation_error: 1 грешка
83 gui_validation_error_plural: %d грешки
83 gui_validation_error_plural: %d грешки
84
84
85 field_name: Име
85 field_name: Име
86 field_description: Описание
86 field_description: Описание
87 field_summary: Групиран изглед
87 field_summary: Групиран изглед
88 field_is_required: Задължително
88 field_is_required: Задължително
89 field_firstname: Име
89 field_firstname: Име
90 field_lastname: Фамилия
90 field_lastname: Фамилия
91 field_mail: Email
91 field_mail: Email
92 field_filename: Файл
92 field_filename: Файл
93 field_filesize: Големина
93 field_filesize: Големина
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Автор
95 field_author: Автор
96 field_created_on: Създадена
96 field_created_on: Създадена
97 field_updated_on: Обновена
97 field_updated_on: Обновена
98 field_field_format: Формат
98 field_field_format: Формат
99 field_is_for_all: За всички проекти
99 field_is_for_all: За всички проекти
100 field_possible_values: Възможни стойности
100 field_possible_values: Възможни стойности
101 field_regexp: Регулярен израз
101 field_regexp: Регулярен израз
102 field_min_length: Мин. дължина
102 field_min_length: Мин. дължина
103 field_max_length: Макс. дължина
103 field_max_length: Макс. дължина
104 field_value: Стойност
104 field_value: Стойност
105 field_category: Категория
105 field_category: Категория
106 field_title: Заглавие
106 field_title: Заглавие
107 field_project: Проект
107 field_project: Проект
108 field_issue: Задача
108 field_issue: Задача
109 field_status: Статус
109 field_status: Статус
110 field_notes: Бележка
110 field_notes: Бележка
111 field_is_closed: Затворена задача
111 field_is_closed: Затворена задача
112 field_is_default: Статус по подразбиране
112 field_is_default: Статус по подразбиране
113 field_html_color: Цвят
113 field_html_color: Цвят
114 field_tracker: Тракер
114 field_tracker: Тракер
115 field_subject: Тема
115 field_subject: Тема
116 field_due_date: Крайна дата
116 field_due_date: Крайна дата
117 field_assigned_to: Възложена на
117 field_assigned_to: Възложена на
118 field_priority: Приоритет
118 field_priority: Приоритет
119 field_fixed_version: Версия
119 field_fixed_version: Версия
120 field_user: Потребител
120 field_user: Потребител
121 field_role: Роля
121 field_role: Роля
122 field_homepage: Начална страница
122 field_homepage: Начална страница
123 field_is_public: Публичен
123 field_is_public: Публичен
124 field_parent: Подпроект на
124 field_parent: Подпроект на
125 field_is_in_chlog: Да се вижда ли в Изменения
125 field_is_in_chlog: Да се вижда ли в Изменения
126 field_is_in_roadmap: Да се вижда ли в Пътна карта
126 field_is_in_roadmap: Да се вижда ли в Пътна карта
127 field_login: Потребител
127 field_login: Потребител
128 field_mail_notification: Известия по пощата
128 field_mail_notification: Известия по пощата
129 field_admin: Администратор
129 field_admin: Администратор
130 field_last_login_on: Последно свързване
130 field_last_login_on: Последно свързване
131 field_language: Език
131 field_language: Език
132 field_effective_date: Дата
132 field_effective_date: Дата
133 field_password: Парола
133 field_password: Парола
134 field_new_password: Нова парола
134 field_new_password: Нова парола
135 field_password_confirmation: Потвърждение
135 field_password_confirmation: Потвърждение
136 field_version: Версия
136 field_version: Версия
137 field_type: Тип
137 field_type: Тип
138 field_host: Хост
138 field_host: Хост
139 field_port: Порт
139 field_port: Порт
140 field_account: Акаунт
140 field_account: Акаунт
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Login attribute
142 field_attr_login: Login attribute
143 field_attr_firstname: Firstname attribute
143 field_attr_firstname: Firstname attribute
144 field_attr_lastname: Lastname attribute
144 field_attr_lastname: Lastname attribute
145 field_attr_mail: Email attribute
145 field_attr_mail: Email attribute
146 field_onthefly: Динамично създаване на потребител
146 field_onthefly: Динамично създаване на потребител
147 field_start_date: Начална дата
147 field_start_date: Начална дата
148 field_done_ratio: %% Прогрес
148 field_done_ratio: %% Прогрес
149 field_auth_source: Начин на оторизация
149 field_auth_source: Начин на оторизация
150 field_hide_mail: Скрий e-mail адреса ми
150 field_hide_mail: Скрий e-mail адреса ми
151 field_comments: Коментар
151 field_comments: Коментар
152 field_url: Адрес
152 field_url: Адрес
153 field_start_page: Начална страница
153 field_start_page: Начална страница
154 field_subproject: Подпроект
154 field_subproject: Подпроект
155 field_hours: Часове
155 field_hours: Часове
156 field_activity: Дейност
156 field_activity: Дейност
157 field_spent_on: Дата
157 field_spent_on: Дата
158 field_identifier: Идентификатор
158 field_identifier: Идентификатор
159 field_is_filter: Използва се за филтър
159 field_is_filter: Използва се за филтър
160 field_issue_to_id: Свързана задача
160 field_issue_to_id: Свързана задача
161 field_delay: Отместване
161 field_delay: Отместване
162 field_assignable: Възможно е възлагане на задачи за тази роля
162 field_assignable: Възможно е възлагане на задачи за тази роля
163 field_redirect_existing_links: Пренасочване на съществуващи линкове
163 field_redirect_existing_links: Пренасочване на съществуващи линкове
164 field_estimated_hours: Изчислено време
164 field_estimated_hours: Изчислено време
165
165
166 setting_app_title: Заглавие
166 setting_app_title: Заглавие
167 setting_app_subtitle: Описание
167 setting_app_subtitle: Описание
168 setting_welcome_text: Допълнителен текст
168 setting_welcome_text: Допълнителен текст
169 setting_default_language: Език по подразбиране
169 setting_default_language: Език по подразбиране
170 setting_login_required: Изискване за вход в системата
170 setting_login_required: Изискване за вход в системата
171 setting_self_registration: Регистрация от потребители
171 setting_self_registration: Регистрация от потребители
172 setting_attachment_max_size: Максимално голям приложен файл
172 setting_attachment_max_size: Максимално голям приложен файл
173 setting_issues_export_limit: Лимит за експорт на задачи
173 setting_issues_export_limit: Лимит за експорт на задачи
174 setting_mail_from: E-mail адрес за емисии
174 setting_mail_from: E-mail адрес за емисии
175 setting_host_name: Хост
175 setting_host_name: Хост
176 setting_text_formatting: Форматиране на текста
176 setting_text_formatting: Форматиране на текста
177 setting_wiki_compression: Wiki компресиране на историята
177 setting_wiki_compression: Wiki компресиране на историята
178 setting_feeds_limit: Лимит на Feeds
178 setting_feeds_limit: Лимит на Feeds
179 setting_autofetch_changesets: Автоматично обработване на commits в склада
179 setting_autofetch_changesets: Автоматично обработване на commits в склада
180 setting_sys_api_enabled: Разрешаване на WS за управление на склада
180 setting_sys_api_enabled: Разрешаване на WS за управление на склада
181 setting_commit_ref_keywords: Отбелязващи ключови думи
181 setting_commit_ref_keywords: Отбелязващи ключови думи
182 setting_commit_fix_keywords: Приключващи ключови думи
182 setting_commit_fix_keywords: Приключващи ключови думи
183 setting_autologin: Автоматичен вход
183 setting_autologin: Автоматичен вход
184 setting_date_format: Формат на датата
184 setting_date_format: Формат на датата
185 setting_cross_project_issue_relations: Релации на задачи между проекти
185 setting_cross_project_issue_relations: Релации на задачи между проекти
186
186
187 label_user: Потребител
187 label_user: Потребител
188 label_user_plural: Потребители
188 label_user_plural: Потребители
189 label_user_new: Нов потребител
189 label_user_new: Нов потребител
190 label_project: Проект
190 label_project: Проект
191 label_project_new: Нов проект
191 label_project_new: Нов проект
192 label_project_plural: Проекти
192 label_project_plural: Проекти
193 label_project_all: Всички проекти
193 label_project_all: Всички проекти
194 label_project_latest: Последни проекти
194 label_project_latest: Последни проекти
195 label_issue: Задача
195 label_issue: Задача
196 label_issue_new: Нова задача
196 label_issue_new: Нова задача
197 label_issue_plural: Задачи
197 label_issue_plural: Задачи
198 label_issue_view_all: Всички задачи
198 label_issue_view_all: Всички задачи
199 label_document: Документ
199 label_document: Документ
200 label_document_new: Нов документ
200 label_document_new: Нов документ
201 label_document_plural: Документи
201 label_document_plural: Документи
202 label_role: Роля
202 label_role: Роля
203 label_role_plural: Роли
203 label_role_plural: Роли
204 label_role_new: Нова роля
204 label_role_new: Нова роля
205 label_role_and_permissions: Роли и права
205 label_role_and_permissions: Роли и права
206 label_member: Член
206 label_member: Член
207 label_member_new: Нов член
207 label_member_new: Нов член
208 label_member_plural: Членове
208 label_member_plural: Членове
209 label_tracker: Тракер
209 label_tracker: Тракер
210 label_tracker_plural: Тракери
210 label_tracker_plural: Тракери
211 label_tracker_new: Нов тракер
211 label_tracker_new: Нов тракер
212 label_workflow: Работен процес
212 label_workflow: Работен процес
213 label_issue_status: Статус на задача
213 label_issue_status: Статус на задача
214 label_issue_status_plural: Статуси на задачи
214 label_issue_status_plural: Статуси на задачи
215 label_issue_status_new: Нов статус
215 label_issue_status_new: Нов статус
216 label_issue_category: Категория задача
216 label_issue_category: Категория задача
217 label_issue_category_plural: Категории задачи
217 label_issue_category_plural: Категории задачи
218 label_issue_category_new: Нова категория
218 label_issue_category_new: Нова категория
219 label_custom_field: Потребителско поле
219 label_custom_field: Потребителско поле
220 label_custom_field_plural: Потребителски полета
220 label_custom_field_plural: Потребителски полета
221 label_custom_field_new: Ново потребителско поле
221 label_custom_field_new: Ново потребителско поле
222 label_enumerations: Списъци
222 label_enumerations: Списъци
223 label_enumeration_new: Нова стойност
223 label_enumeration_new: Нова стойност
224 label_information: Информация
224 label_information: Информация
225 label_information_plural: Информация
225 label_information_plural: Информация
226 label_please_login: Вход
226 label_please_login: Вход
227 label_register: Регистрация
227 label_register: Регистрация
228 label_password_lost: Забравена парола
228 label_password_lost: Забравена парола
229 label_home: Начало
229 label_home: Начало
230 label_my_page: Лична страница
230 label_my_page: Лична страница
231 label_my_account: Профил
231 label_my_account: Профил
232 label_my_projects: Моите проекти
232 label_my_projects: Моите проекти
233 label_administration: Администрация
233 label_administration: Администрация
234 label_login: Вход
234 label_login: Вход
235 label_logout: Изход
235 label_logout: Изход
236 label_help: Помощ
236 label_help: Помощ
237 label_reported_issues: Публикувани задачи
237 label_reported_issues: Публикувани задачи
238 label_assigned_to_me_issues: Възложени на мен
238 label_assigned_to_me_issues: Възложени на мен
239 label_last_login: Последно свързване
239 label_last_login: Последно свързване
240 label_last_updates: Последно обновена
240 label_last_updates: Последно обновена
241 label_last_updates_plural: %d последно обновени
241 label_last_updates_plural: %d последно обновени
242 label_registered_on: Регистрация
242 label_registered_on: Регистрация
243 label_activity: Дейност
243 label_activity: Дейност
244 label_new: Нов
244 label_new: Нов
245 label_logged_as: Логнат като
245 label_logged_as: Логнат като
246 label_environment: Среда
246 label_environment: Среда
247 label_authentication: Оторизация
247 label_authentication: Оторизация
248 label_auth_source: Начин на оторозация
248 label_auth_source: Начин на оторозация
249 label_auth_source_new: Нов начин на оторизация
249 label_auth_source_new: Нов начин на оторизация
250 label_auth_source_plural: Начини на оторизация
250 label_auth_source_plural: Начини на оторизация
251 label_subproject_plural: Подпроекти
251 label_subproject_plural: Подпроекти
252 label_min_max_length: Мин. - Макс. дължина
252 label_min_max_length: Мин. - Макс. дължина
253 label_list: Списък
253 label_list: Списък
254 label_date: Дата
254 label_date: Дата
255 label_integer: Число
255 label_integer: Число
256 label_boolean: Чекбокс
256 label_boolean: Чекбокс
257 label_string: Текст
257 label_string: Текст
258 label_text: Дълъг текст
258 label_text: Дълъг текст
259 label_attribute: Атрибут
259 label_attribute: Атрибут
260 label_attribute_plural: Атрибути
260 label_attribute_plural: Атрибути
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
263 label_no_data: Няма изходни данни
263 label_no_data: Няма изходни данни
264 label_change_status: Промяна на статуса
264 label_change_status: Промяна на статуса
265 label_history: История
265 label_history: История
266 label_attachment: Файл
266 label_attachment: Файл
267 label_attachment_new: Нов файл
267 label_attachment_new: Нов файл
268 label_attachment_delete: Изтриване
268 label_attachment_delete: Изтриване
269 label_attachment_plural: Файлове
269 label_attachment_plural: Файлове
270 label_report: Справка
270 label_report: Справка
271 label_report_plural: Справки
271 label_report_plural: Справки
272 label_news: Новини
272 label_news: Новини
273 label_news_new: Добави
273 label_news_new: Добави
274 label_news_plural: Новини
274 label_news_plural: Новини
275 label_news_latest: Последни новини
275 label_news_latest: Последни новини
276 label_news_view_all: Виж всички
276 label_news_view_all: Виж всички
277 label_change_log: Изменения
277 label_change_log: Изменения
278 label_settings: Настройки
278 label_settings: Настройки
279 label_overview: Общ изглед
279 label_overview: Общ изглед
280 label_version: Версия
280 label_version: Версия
281 label_version_new: Нова версия
281 label_version_new: Нова версия
282 label_version_plural: Версии
282 label_version_plural: Версии
283 label_confirmation: Одобрение
283 label_confirmation: Одобрение
284 label_export_to: Експорт към
284 label_export_to: Експорт към
285 label_read: Read...
285 label_read: Read...
286 label_public_projects: Публични проекти
286 label_public_projects: Публични проекти
287 label_open_issues: отворена
287 label_open_issues: отворена
288 label_open_issues_plural: отворени
288 label_open_issues_plural: отворени
289 label_closed_issues: затворена
289 label_closed_issues: затворена
290 label_closed_issues_plural: затворени
290 label_closed_issues_plural: затворени
291 label_total: Общо
291 label_total: Общо
292 label_permissions: Права
292 label_permissions: Права
293 label_current_status: Текущ статус
293 label_current_status: Текущ статус
294 label_new_statuses_allowed: Позволени статуси
294 label_new_statuses_allowed: Позволени статуси
295 label_all: всички
295 label_all: всички
296 label_none: никакви
296 label_none: никакви
297 label_next: Следващ
297 label_next: Следващ
298 label_previous: Предишен
298 label_previous: Предишен
299 label_used_by: Използва се от
299 label_used_by: Използва се от
300 label_details: Детайли
300 label_details: Детайли
301 label_add_note: Добавяне на бележка
301 label_add_note: Добавяне на бележка
302 label_per_page: На страница
302 label_per_page: На страница
303 label_calendar: Календар
303 label_calendar: Календар
304 label_months_from: месеца от
304 label_months_from: месеца от
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Вътрешен
306 label_internal: Вътрешен
307 label_last_changes: последни %d промени
307 label_last_changes: последни %d промени
308 label_change_view_all: Виж всички промени
308 label_change_view_all: Виж всички промени
309 label_personalize_page: Персонализиране
309 label_personalize_page: Персонализиране
310 label_comment: Коментар
310 label_comment: Коментар
311 label_comment_plural: Коментари
311 label_comment_plural: Коментари
312 label_comment_add: Добавяне на коментар
312 label_comment_add: Добавяне на коментар
313 label_comment_added: Добавен коментар
313 label_comment_added: Добавен коментар
314 label_comment_delete: Изтриване на коментари
314 label_comment_delete: Изтриване на коментари
315 label_query: Потребителска справка
315 label_query: Потребителска справка
316 label_query_plural: Потребителски справки
316 label_query_plural: Потребителски справки
317 label_query_new: Нова заявка
317 label_query_new: Нова заявка
318 label_filter_add: Добави филтър
318 label_filter_add: Добави филтър
319 label_filter_plural: Филтри
319 label_filter_plural: Филтри
320 label_equals: е
320 label_equals: е
321 label_not_equals: не е
321 label_not_equals: не е
322 label_in_less_than: след по-малко от
322 label_in_less_than: след по-малко от
323 label_in_more_than: след повече от
323 label_in_more_than: след повече от
324 label_in: в следващите
324 label_in: в следващите
325 label_today: днес
325 label_today: днес
326 label_this_week: тази седмица
326 label_this_week: тази седмица
327 label_less_than_ago: преди по-малко от
327 label_less_than_ago: преди по-малко от
328 label_more_than_ago: преди повече от
328 label_more_than_ago: преди повече от
329 label_ago: преди
329 label_ago: преди
330 label_contains: съдържа
330 label_contains: съдържа
331 label_not_contains: не съдържа
331 label_not_contains: не съдържа
332 label_day_plural: дни
332 label_day_plural: дни
333 label_repository: Склад
333 label_repository: Склад
334 label_browse: Разглеждане
334 label_browse: Разглеждане
335 label_modification: %d промяна
335 label_modification: %d промяна
336 label_modification_plural: %d промени
336 label_modification_plural: %d промени
337 label_revision: Ревизия
337 label_revision: Ревизия
338 label_revision_plural: Ревизии
338 label_revision_plural: Ревизии
339 label_added: добавено
339 label_added: добавено
340 label_modified: променено
340 label_modified: променено
341 label_deleted: изтрито
341 label_deleted: изтрито
342 label_latest_revision: Последна ревизия
342 label_latest_revision: Последна ревизия
343 label_latest_revision_plural: Последни ревизии
343 label_latest_revision_plural: Последни ревизии
344 label_view_revisions: Виж ревизиите
344 label_view_revisions: Виж ревизиите
345 label_max_size: Максимална големина
345 label_max_size: Максимална големина
346 label_on: 'от'
346 label_on: 'от'
347 label_sort_highest: Премести най-горе
347 label_sort_highest: Премести най-горе
348 label_sort_higher: Премести по-горе
348 label_sort_higher: Премести по-горе
349 label_sort_lower: Премести по-долу
349 label_sort_lower: Премести по-долу
350 label_sort_lowest: Премести най-долу
350 label_sort_lowest: Премести най-долу
351 label_roadmap: Пътна карта
351 label_roadmap: Пътна карта
352 label_roadmap_due_in: Излиза след
352 label_roadmap_due_in: Излиза след
353 label_roadmap_overdue: %s закъснение
353 label_roadmap_overdue: %s закъснение
354 label_roadmap_no_issues: Няма задачи за тази версия
354 label_roadmap_no_issues: Няма задачи за тази версия
355 label_search: Търсене
355 label_search: Търсене
356 label_result_plural: Pезултати
356 label_result_plural: Pезултати
357 label_all_words: Всички думи
357 label_all_words: Всички думи
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Wiki редакция
359 label_wiki_edit: Wiki редакция
360 label_wiki_edit_plural: Wiki редакции
360 label_wiki_edit_plural: Wiki редакции
361 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Индекс
363 label_index_by_title: Индекс
364 label_index_by_date: Индекс по дата
364 label_index_by_date: Индекс по дата
365 label_current_version: Текуща версия
365 label_current_version: Текуща версия
366 label_preview: Преглед
366 label_preview: Преглед
367 label_feed_plural: Feeds
367 label_feed_plural: Feeds
368 label_changes_details: Подробни промени
368 label_changes_details: Подробни промени
369 label_issue_tracking: Тракинг
369 label_issue_tracking: Тракинг
370 label_spent_time: Отделено време
370 label_spent_time: Отделено време
371 label_f_hour: %.2f час
371 label_f_hour: %.2f час
372 label_f_hour_plural: %.2f часа
372 label_f_hour_plural: %.2f часа
373 label_time_tracking: Отделяне на време
373 label_time_tracking: Отделяне на време
374 label_change_plural: Промени
374 label_change_plural: Промени
375 label_statistics: Статистики
375 label_statistics: Статистики
376 label_commits_per_month: Commits за месец
376 label_commits_per_month: Commits за месец
377 label_commits_per_author: Commits за автор
377 label_commits_per_author: Commits за автор
378 label_view_diff: Виж разликите
378 label_view_diff: Виж разликите
379 label_diff_inline: хоризонтално
379 label_diff_inline: хоризонтално
380 label_diff_side_by_side: вертикално
380 label_diff_side_by_side: вертикално
381 label_options: Опции
381 label_options: Опции
382 label_copy_workflow_from: Копирай работния процес от
382 label_copy_workflow_from: Копирай работния процес от
383 label_permissions_report: Справка за права
383 label_permissions_report: Справка за права
384 label_watched_issues: Наблюдавани задачи
384 label_watched_issues: Наблюдавани задачи
385 label_related_issues: Свързани задачи
385 label_related_issues: Свързани задачи
386 label_applied_status: Промени статуса на
386 label_applied_status: Промени статуса на
387 label_loading: Зареждане...
387 label_loading: Зареждане...
388 label_relation_new: Нова релация
388 label_relation_new: Нова релация
389 label_relation_delete: Изтриване на релация
389 label_relation_delete: Изтриване на релация
390 label_relates_to: Свързана със
390 label_relates_to: Свързана със
391 label_duplicates: дублира
391 label_duplicates: дублира
392 label_blocks: блокира
392 label_blocks: блокира
393 label_blocked_by: блокирана от
393 label_blocked_by: блокирана от
394 label_precedes: предшества
394 label_precedes: предшества
395 label_follows: изпълнява се след
395 label_follows: изпълнява се след
396 label_end_to_start: end to start
396 label_end_to_start: end to start
397 label_end_to_end: end to end
397 label_end_to_end: end to end
398 label_start_to_start: start to start
398 label_start_to_start: start to start
399 label_start_to_end: start to end
399 label_start_to_end: start to end
400 label_stay_logged_in: Запомни ме
400 label_stay_logged_in: Запомни ме
401 label_disabled: забранено
401 label_disabled: забранено
402 label_show_completed_versions: Показване на реализирани версии
402 label_show_completed_versions: Показване на реализирани версии
403 label_me: аз
403 label_me: аз
404 label_board: Форум
404 label_board: Форум
405 label_board_new: Нов форум
405 label_board_new: Нов форум
406 label_board_plural: Форуми
406 label_board_plural: Форуми
407 label_topic_plural: Теми
407 label_topic_plural: Теми
408 label_message_plural: Съобщения
408 label_message_plural: Съобщения
409 label_message_last: Последно съобщение
409 label_message_last: Последно съобщение
410 label_message_new: Нова тема
410 label_message_new: Нова тема
411 label_reply_plural: Отговори
411 label_reply_plural: Отговори
412 label_send_information: Изпращане на информацията до потребителя
412 label_send_information: Изпращане на информацията до потребителя
413 label_year: Година
413 label_year: Година
414 label_month: Месец
414 label_month: Месец
415 label_week: Седмица
415 label_week: Седмица
416 label_date_from: От
416 label_date_from: От
417 label_date_to: До
417 label_date_to: До
418 label_language_based: В зависимост от езика
418 label_language_based: В зависимост от езика
419 label_sort_by: Sort by "%s"
419 label_sort_by: Sort by "%s"
420 label_send_test_email: Изпращане на тестов e-mail
420 label_send_test_email: Изпращане на тестов e-mail
421 label_feeds_access_key_created_on: %s от създаването на RSS ключа
421 label_feeds_access_key_created_on: %s от създаването на RSS ключа
422 label_module_plural: Модули
422 label_module_plural: Модули
423 label_added_time_by: Публикувана от %s преди %s
423 label_added_time_by: Публикувана от %s преди %s
424 label_updated_time: Обновена преди %s
424 label_updated_time: Обновена преди %s
425 label_jump_to_a_project: Проект...
425 label_jump_to_a_project: Проект...
426
426
427 button_login: Вход
427 button_login: Вход
428 button_submit: Приложи
428 button_submit: Приложи
429 button_save: Запис
429 button_save: Запис
430 button_check_all: Маркирай всички
430 button_check_all: Маркирай всички
431 button_uncheck_all: Изчисти всички
431 button_uncheck_all: Изчисти всички
432 button_delete: Изтриване
432 button_delete: Изтриване
433 button_create: Създаване
433 button_create: Създаване
434 button_test: Тест
434 button_test: Тест
435 button_edit: Редакция
435 button_edit: Редакция
436 button_add: Добавяне
436 button_add: Добавяне
437 button_change: Промяна
437 button_change: Промяна
438 button_apply: Приложи
438 button_apply: Приложи
439 button_clear: Изчисти
439 button_clear: Изчисти
440 button_lock: Заключване
440 button_lock: Заключване
441 button_unlock: Отключване
441 button_unlock: Отключване
442 button_download: Download
442 button_download: Download
443 button_list: Списък
443 button_list: Списък
444 button_view: Преглед
444 button_view: Преглед
445 button_move: Преместване
445 button_move: Преместване
446 button_back: Назад
446 button_back: Назад
447 button_cancel: Отказ
447 button_cancel: Отказ
448 button_activate: Активация
448 button_activate: Активация
449 button_sort: Сортиране
449 button_sort: Сортиране
450 button_log_time: Отделяне на време
450 button_log_time: Отделяне на време
451 button_rollback: Върни се към тази ревизия
451 button_rollback: Върни се към тази ревизия
452 button_watch: Наблюдавай
452 button_watch: Наблюдавай
453 button_unwatch: Спри наблюдението
453 button_unwatch: Спри наблюдението
454 button_reply: Отговор
454 button_reply: Отговор
455 button_archive: Архивиране
455 button_archive: Архивиране
456 button_unarchive: Разархивиране
456 button_unarchive: Разархивиране
457 button_reset: Генериране наново
457 button_reset: Генериране наново
458 button_rename: Преименуване
458 button_rename: Преименуване
459
459
460 status_active: активен
460 status_active: активен
461 status_registered: регистриран
461 status_registered: регистриран
462 status_locked: заключен
462 status_locked: заключен
463
463
464 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
464 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
465 text_regexp_info: пр. ^[A-Z0-9]+$
465 text_regexp_info: пр. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 - без ограничения
466 text_min_max_length_info: 0 - без ограничения
467 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
467 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
468 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
468 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
469 text_are_you_sure: Сигурни ли сте?
469 text_are_you_sure: Сигурни ли сте?
470 text_journal_changed: промяна от %s на %s
470 text_journal_changed: промяна от %s на %s
471 text_journal_set_to: установено на %s
471 text_journal_set_to: установено на %s
472 text_journal_deleted: изтрито
472 text_journal_deleted: изтрито
473 text_tip_task_begin_day: задача започваща този ден
473 text_tip_task_begin_day: задача започваща този ден
474 text_tip_task_end_day: задача завършваща този ден
474 text_tip_task_end_day: задача завършваща този ден
475 text_tip_task_begin_end_day: задача започваща и завършваща този ден
475 text_tip_task_begin_end_day: задача започваща и завършваща този ден
476 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
476 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
477 text_caracters_maximum: До %d символа.
477 text_caracters_maximum: До %d символа.
478 text_length_between: От %d до %d символа.
478 text_length_between: От %d до %d символа.
479 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
479 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
480 text_unallowed_characters: Непозволени символи
480 text_unallowed_characters: Непозволени символи
481 text_comma_separated: Позволено е изброяване (с разделител запетая).
481 text_comma_separated: Позволено е изброяване (с разделител запетая).
482 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
482 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
483 text_issue_added: Публикувана е нова задача с номер %s.
483 text_issue_added: Публикувана е нова задача с номер %s.
484 text_issue_updated: Задача %s е обновена.
484 text_issue_updated: Задача %s е обновена.
485 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
485 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
486 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
486 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
487 text_issue_category_destroy_assignments: Премахване на връзките с категорията
487 text_issue_category_destroy_assignments: Премахване на връзките с категорията
488 text_issue_category_reassign_to: Преобвързване с категория
488 text_issue_category_reassign_to: Преобвързване с категория
489
489
490 default_role_manager: Мениджър
490 default_role_manager: Мениджър
491 default_role_developper: Разработчик
491 default_role_developper: Разработчик
492 default_role_reporter: Публикуващ
492 default_role_reporter: Публикуващ
493 default_tracker_bug: Бъг
493 default_tracker_bug: Бъг
494 default_tracker_feature: Функционалност
494 default_tracker_feature: Функционалност
495 default_tracker_support: Поддръжка
495 default_tracker_support: Поддръжка
496 default_issue_status_new: Нова
496 default_issue_status_new: Нова
497 default_issue_status_assigned: Възложена
497 default_issue_status_assigned: Възложена
498 default_issue_status_resolved: Приключена
498 default_issue_status_resolved: Приключена
499 default_issue_status_feedback: Обратна връзка
499 default_issue_status_feedback: Обратна връзка
500 default_issue_status_closed: Затворена
500 default_issue_status_closed: Затворена
501 default_issue_status_rejected: Отхвърлена
501 default_issue_status_rejected: Отхвърлена
502 default_doc_category_user: Документация за потребителя
502 default_doc_category_user: Документация за потребителя
503 default_doc_category_tech: Техническа документация
503 default_doc_category_tech: Техническа документация
504 default_priority_low: Нисък
504 default_priority_low: Нисък
505 default_priority_normal: Нормален
505 default_priority_normal: Нормален
506 default_priority_high: Висок
506 default_priority_high: Висок
507 default_priority_urgent: Спешен
507 default_priority_urgent: Спешен
508 default_priority_immediate: Веднага
508 default_priority_immediate: Веднага
509 default_activity_design: Дизайн
509 default_activity_design: Дизайн
510 default_activity_development: Разработка
510 default_activity_development: Разработка
511
511
512 enumeration_issue_priorities: Приоритети на задачи
512 enumeration_issue_priorities: Приоритети на задачи
513 enumeration_doc_categories: Категории документи
513 enumeration_doc_categories: Категории документи
514 enumeration_activities: Дейности (time tracking)
514 enumeration_activities: Дейности (time tracking)
515 label_file_plural: Files
515 label_file_plural: Files
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Колони
517 field_column_names: Колони
518 label_default_columns: По подразбиране
518 label_default_columns: По подразбиране
519 setting_issue_list_default_columns: Показвани колони по подразбиране
519 setting_issue_list_default_columns: Показвани колони по подразбиране
520 setting_repositories_encodings: Encodings на складовете
520 setting_repositories_encodings: Encodings на складовете
521 notice_no_issue_selected: "Няма избрани задачи."
521 notice_no_issue_selected: "Няма избрани задачи."
522 label_bulk_edit_selected_issues: Редактиране на задачи
522 label_bulk_edit_selected_issues: Редактиране на задачи
523 label_no_change_option: (Без промяна)
523 label_no_change_option: (Без промяна)
524 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
524 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
525 label_theme: Тема
525 label_theme: Тема
526 label_default: По подразбиране
526 label_default: По подразбиране
527 label_search_titles_only: Само в заглавията
527 label_search_titles_only: Само в заглавията
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
4 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
5 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 den
8 actionview_datehelper_time_in_words_day: 1 den
9 actionview_datehelper_time_in_words_day_plural: %d dny
9 actionview_datehelper_time_in_words_day_plural: %d dny
10 actionview_datehelper_time_in_words_hour_about: asi hodinu
10 actionview_datehelper_time_in_words_hour_about: asi hodinu
11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
11 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodin
12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
12 actionview_datehelper_time_in_words_hour_about_single: asi hodinu
13 actionview_datehelper_time_in_words_minute: 1 minuta
13 actionview_datehelper_time_in_words_minute: 1 minuta
14 actionview_datehelper_time_in_words_minute_half: půl minuty
14 actionview_datehelper_time_in_words_minute_half: půl minuty
15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
15 actionview_datehelper_time_in_words_minute_less_than: méně než minutu
16 actionview_datehelper_time_in_words_minute_plural: %d minut
16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
18 actionview_datehelper_time_in_words_second_less_than: méně než sekunda
19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekund
20 actionview_instancetag_blank_option: Prosím vyberte
20 actionview_instancetag_blank_option: Prosím vyberte
21
21
22 activerecord_error_inclusion: není zahrnuto v seznamu
22 activerecord_error_inclusion: není zahrnuto v seznamu
23 activerecord_error_exclusion: je rezervováno
23 activerecord_error_exclusion: je rezervováno
24 activerecord_error_invalid: je neplatné
24 activerecord_error_invalid: je neplatné
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: nemůže být prázdný
27 activerecord_error_empty: nemůže být prázdný
28 activerecord_error_blank: nemůže být prázdný
28 activerecord_error_blank: nemůže být prázdný
29 activerecord_error_too_long: je příliš dlouhý
29 activerecord_error_too_long: je příliš dlouhý
30 activerecord_error_too_short: je příliš krátký
30 activerecord_error_too_short: je příliš krátký
31 activerecord_error_wrong_length: má chybnou délku
31 activerecord_error_wrong_length: má chybnou délku
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: není číslo
33 activerecord_error_not_a_number: není číslo
34 activerecord_error_not_a_date: není platný datum
34 activerecord_error_not_a_date: není platný datum
35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
35 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
36 activerecord_error_not_same_project: nepatří stejnému projektu
36 activerecord_error_not_same_project: nepatří stejnému projektu
37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
37 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
38
38
39 general_fmt_age: %d rok
39 general_fmt_age: %d rok
40 general_fmt_age_plural: %d roků
40 general_fmt_age_plural: %d roků
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Ne'
45 general_text_No: 'Ne'
46 general_text_Yes: 'Ano'
46 general_text_Yes: 'Ano'
47 general_text_no: 'ne'
47 general_text_no: 'ne'
48 general_text_yes: 'Ano'
48 general_text_yes: 'Ano'
49 general_lang_name: 'Čeština'
49 general_lang_name: 'Čeština'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: UTF-8
51 general_csv_encoding: UTF-8
52 general_pdf_encoding: UTF-8
52 general_pdf_encoding: UTF-8
53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
53 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Účet byl úspěšně změněn.
56 notice_account_updated: Účet byl úspěšně změněn.
57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
57 notice_account_invalid_creditentials: Chybné jméno nebo heslo
58 notice_account_password_updated: Heslo bylo úspěšně změněno.
58 notice_account_password_updated: Heslo bylo úspěšně změněno.
59 notice_account_wrong_password: Chybné heslo
59 notice_account_wrong_password: Chybné heslo
60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
60 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
61 notice_account_unknown_email: Neznámý uživatel.
61 notice_account_unknown_email: Neznámý uživatel.
62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
62 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
63 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
64 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
65 notice_successful_create: Úspěšné vytvoření.
65 notice_successful_create: Úspěšné vytvoření.
66 notice_successful_update: Úspěšná aktualizace.
66 notice_successful_update: Úspěšná aktualizace.
67 notice_successful_delete: Úspěšné smazání.
67 notice_successful_delete: Úspěšné smazání.
68 notice_successful_connection: Úspěšné připojení.
68 notice_successful_connection: Úspěšné připojení.
69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
69 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
70 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
72 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
73 notice_email_sent: Na adresu %s byl odeslán email
73 notice_email_sent: Na adresu %s byl odeslán email
74 notice_email_error: Při odesílání emailu nastala chyba (%s)
74 notice_email_error: Při odesílání emailu nastala chyba (%s)
75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
75 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
76
76
77 mail_subject_lost_password: Vaše heslo
77 mail_subject_lost_password: Vaše heslo
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 mail_subject_register: aktivace účtu
79 mail_subject_register: aktivace účtu
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
81
81
82 gui_validation_error: 1 chyba
82 gui_validation_error: 1 chyba
83 gui_validation_error_plural: %d chyb(y)
83 gui_validation_error_plural: %d chyb(y)
84
84
85 field_name: Jméno
85 field_name: Jméno
86 field_description: Popis
86 field_description: Popis
87 field_summary: Shrnutí
87 field_summary: Shrnutí
88 field_is_required: Požadovaný
88 field_is_required: Požadovaný
89 field_firstname: Jméno
89 field_firstname: Jméno
90 field_lastname: Příjmení
90 field_lastname: Příjmení
91 field_mail: Email
91 field_mail: Email
92 field_filename: Soubor
92 field_filename: Soubor
93 field_filesize: Velikost
93 field_filesize: Velikost
94 field_downloads: Staženo
94 field_downloads: Staženo
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Vytvořeno
96 field_created_on: Vytvořeno
97 field_updated_on: Aktualizováno
97 field_updated_on: Aktualizováno
98 field_field_format: Formát
98 field_field_format: Formát
99 field_is_for_all: Pro všechny projekty
99 field_is_for_all: Pro všechny projekty
100 field_possible_values: Možné hodnoty
100 field_possible_values: Možné hodnoty
101 field_regexp: Regulární výraz
101 field_regexp: Regulární výraz
102 field_min_length: Minimální délka
102 field_min_length: Minimální délka
103 field_max_length: Maximální délka
103 field_max_length: Maximální délka
104 field_value: Hodnota
104 field_value: Hodnota
105 field_category: Kategorie
105 field_category: Kategorie
106 field_title: Titulek
106 field_title: Titulek
107 field_project: Projekt
107 field_project: Projekt
108 field_issue: Požadavek
108 field_issue: Požadavek
109 field_status: Stav
109 field_status: Stav
110 field_notes: Poznámka
110 field_notes: Poznámka
111 field_is_closed: Požadavek uzavřen
111 field_is_closed: Požadavek uzavřen
112 field_is_default: Výchozí stav
112 field_is_default: Výchozí stav
113 field_html_color: Barva
113 field_html_color: Barva
114 field_tracker: Fronta
114 field_tracker: Fronta
115 field_subject: Předmět
115 field_subject: Předmět
116 field_due_date: Po lhůtě
116 field_due_date: Po lhůtě
117 field_assigned_to: Přiřazeno
117 field_assigned_to: Přiřazeno
118 field_priority: Priorita
118 field_priority: Priorita
119 field_fixed_version: Pevná verze
119 field_fixed_version: Pevná verze
120 field_user: Uživatel
120 field_user: Uživatel
121 field_role: Role
121 field_role: Role
122 field_homepage: Úvodní
122 field_homepage: Úvodní
123 field_is_public: Veřejný
123 field_is_public: Veřejný
124 field_parent: Podprojekt
124 field_parent: Podprojekt
125 field_is_in_chlog: Požadavky zobrazené v změnovém logu
125 field_is_in_chlog: Požadavky zobrazené v změnovém logu
126 field_is_in_roadmap: Požadavky zobrazené v roadmapě
126 field_is_in_roadmap: Požadavky zobrazené v roadmapě
127 field_login: Přihlášení
127 field_login: Přihlášení
128 field_mail_notification: Emailové oznámení
128 field_mail_notification: Emailové oznámení
129 field_admin: Administrátor
129 field_admin: Administrátor
130 field_last_login_on: Poslední připojení
130 field_last_login_on: Poslední připojení
131 field_language: Jazyk
131 field_language: Jazyk
132 field_effective_date: Datum
132 field_effective_date: Datum
133 field_password: Heslo
133 field_password: Heslo
134 field_new_password: Nové heslo
134 field_new_password: Nové heslo
135 field_password_confirmation: Potvrzení
135 field_password_confirmation: Potvrzení
136 field_version: Verze
136 field_version: Verze
137 field_type: Typ
137 field_type: Typ
138 field_host: Host
138 field_host: Host
139 field_port: Port
139 field_port: Port
140 field_account: Účet
140 field_account: Účet
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Login attribute
142 field_attr_login: Login attribute
143 field_attr_firstname: Firstname attribute
143 field_attr_firstname: Firstname attribute
144 field_attr_lastname: Lastname attribute
144 field_attr_lastname: Lastname attribute
145 field_attr_mail: Email attribute
145 field_attr_mail: Email attribute
146 field_onthefly: Automatické vytváření uživatelů
146 field_onthefly: Automatické vytváření uživatelů
147 field_start_date: Start
147 field_start_date: Start
148 field_done_ratio: %% Hotovo
148 field_done_ratio: %% Hotovo
149 field_auth_source: Autentifikační mód
149 field_auth_source: Autentifikační mód
150 field_hide_mail: Nezobrazovat můj email
150 field_hide_mail: Nezobrazovat můj email
151 field_comments: Komentář
151 field_comments: Komentář
152 field_url: URL
152 field_url: URL
153 field_start_page: Výchozí stránka
153 field_start_page: Výchozí stránka
154 field_subproject: Podprojekt
154 field_subproject: Podprojekt
155 field_hours: Hodiny
155 field_hours: Hodiny
156 field_activity: Aktivita
156 field_activity: Aktivita
157 field_spent_on: Datum
157 field_spent_on: Datum
158 field_identifier: Identifikátor
158 field_identifier: Identifikátor
159 field_is_filter: Used as a filter
159 field_is_filter: Used as a filter
160 field_issue_to_id: Vztažený požadavek
160 field_issue_to_id: Vztažený požadavek
161 field_delay: Zpoždění
161 field_delay: Zpoždění
162 field_assignable: Požadavky mohou být přiřazeny této roli
162 field_assignable: Požadavky mohou být přiřazeny této roli
163
163
164 setting_app_title: Titulek aplikace
164 setting_app_title: Titulek aplikace
165 setting_app_subtitle: Podtitulek aplikace
165 setting_app_subtitle: Podtitulek aplikace
166 setting_welcome_text: Uvítací text
166 setting_welcome_text: Uvítací text
167 setting_default_language: Výchozí jazyk
167 setting_default_language: Výchozí jazyk
168 setting_login_required: Auten. vyžadována
168 setting_login_required: Auten. vyžadována
169 setting_self_registration: Povolena automatická registrace
169 setting_self_registration: Povolena automatická registrace
170 setting_attachment_max_size: Maximální velikost přílohy
170 setting_attachment_max_size: Maximální velikost přílohy
171 setting_issues_export_limit: Limit pro export požadavků
171 setting_issues_export_limit: Limit pro export požadavků
172 setting_mail_from: Emission mail adresa
172 setting_mail_from: Emission mail adresa
173 setting_host_name: Host name
173 setting_host_name: Host name
174 setting_text_formatting: Formátování textu
174 setting_text_formatting: Formátování textu
175 setting_wiki_compression: Komperese historie Wiki
175 setting_wiki_compression: Komperese historie Wiki
176 setting_feeds_limit: Feed content limit
176 setting_feeds_limit: Feed content limit
177 setting_autofetch_changesets: Autofetch commits
177 setting_autofetch_changesets: Autofetch commits
178 setting_sys_api_enabled: Povolit WS pro správu repozitory
178 setting_sys_api_enabled: Povolit WS pro správu repozitory
179 setting_commit_ref_keywords: Referencing keywords
179 setting_commit_ref_keywords: Referencing keywords
180 setting_commit_fix_keywords: Fixing keywords
180 setting_commit_fix_keywords: Fixing keywords
181 setting_autologin: Automatické přihlašování
181 setting_autologin: Automatické přihlašování
182 setting_date_format: Formát datumu
182 setting_date_format: Formát datumu
183 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
183 setting_cross_project_issue_relations: Povolit vztahy požadavků mezi projekty
184
184
185 label_user: Uživatel
185 label_user: Uživatel
186 label_user_plural: Uživatelé
186 label_user_plural: Uživatelé
187 label_user_new: Nový uživatel
187 label_user_new: Nový uživatel
188 label_project: Projekt
188 label_project: Projekt
189 label_project_new: Nový projekt
189 label_project_new: Nový projekt
190 label_project_plural: Projekty
190 label_project_plural: Projekty
191 label_project_all: Všechny projekty
191 label_project_all: Všechny projekty
192 label_project_latest: Poslední projekty
192 label_project_latest: Poslední projekty
193 label_issue: Požadavek
193 label_issue: Požadavek
194 label_issue_new: Nový požadavek
194 label_issue_new: Nový požadavek
195 label_issue_plural: Požadavky
195 label_issue_plural: Požadavky
196 label_issue_view_all: Všechny požadavky
196 label_issue_view_all: Všechny požadavky
197 label_document: Dokument
197 label_document: Dokument
198 label_document_new: Nový dokument
198 label_document_new: Nový dokument
199 label_document_plural: Dokumenty
199 label_document_plural: Dokumenty
200 label_role: Role
200 label_role: Role
201 label_role_plural: Role
201 label_role_plural: Role
202 label_role_new: Nová role
202 label_role_new: Nová role
203 label_role_and_permissions: Role a práva
203 label_role_and_permissions: Role a práva
204 label_member: Člen
204 label_member: Člen
205 label_member_new: Nový člen
205 label_member_new: Nový člen
206 label_member_plural: Členové
206 label_member_plural: Členové
207 label_tracker: Fronta
207 label_tracker: Fronta
208 label_tracker_plural: Fronty
208 label_tracker_plural: Fronty
209 label_tracker_new: Nová fronta
209 label_tracker_new: Nová fronta
210 label_workflow: Workflow
210 label_workflow: Workflow
211 label_issue_status: Stav požadavku
211 label_issue_status: Stav požadavku
212 label_issue_status_plural: Stavy požadavku
212 label_issue_status_plural: Stavy požadavku
213 label_issue_status_new: Nový stav
213 label_issue_status_new: Nový stav
214 label_issue_category: Kategorie požadavku
214 label_issue_category: Kategorie požadavku
215 label_issue_category_plural: Kategorie požadavku
215 label_issue_category_plural: Kategorie požadavku
216 label_issue_category_new: Nová kategorie
216 label_issue_category_new: Nová kategorie
217 label_custom_field: Uživatelské pole
217 label_custom_field: Uživatelské pole
218 label_custom_field_plural: Uživatelské pole
218 label_custom_field_plural: Uživatelské pole
219 label_custom_field_new: Nové uživatelské pole
219 label_custom_field_new: Nové uživatelské pole
220 label_enumerations: Číselníky
220 label_enumerations: Číselníky
221 label_enumeration_new: Nová hodnota
221 label_enumeration_new: Nová hodnota
222 label_information: Informace
222 label_information: Informace
223 label_information_plural: Informace
223 label_information_plural: Informace
224 label_please_login: Prosím přihlašte se
224 label_please_login: Prosím přihlašte se
225 label_register: Registrovat
225 label_register: Registrovat
226 label_password_lost: Zapomenuté heslo
226 label_password_lost: Zapomenuté heslo
227 label_home: Úvodní
227 label_home: Úvodní
228 label_my_page: Moje stránka
228 label_my_page: Moje stránka
229 label_my_account: Můj účet
229 label_my_account: Můj účet
230 label_my_projects: Moje projekty
230 label_my_projects: Moje projekty
231 label_administration: Administrace
231 label_administration: Administrace
232 label_login: Přihlášení
232 label_login: Přihlášení
233 label_logout: Odhlášení
233 label_logout: Odhlášení
234 label_help: Nápověda
234 label_help: Nápověda
235 label_reported_issues: Nahlášené požadavky
235 label_reported_issues: Nahlášené požadavky
236 label_assigned_to_me_issues: Moje požadavky
236 label_assigned_to_me_issues: Moje požadavky
237 label_last_login: Poslední přihlášení
237 label_last_login: Poslední přihlášení
238 label_last_updates: Poslední změna
238 label_last_updates: Poslední změna
239 label_last_updates_plural: %d poslední změny
239 label_last_updates_plural: %d poslední změny
240 label_registered_on: Registered on
240 label_registered_on: Registered on
241 label_activity: Aktivita
241 label_activity: Aktivita
242 label_new: Nový
242 label_new: Nový
243 label_logged_as: Přihlášen jako
243 label_logged_as: Přihlášen jako
244 label_environment: Prostředí
244 label_environment: Prostředí
245 label_authentication: Autentifikace
245 label_authentication: Autentifikace
246 label_auth_source: Mód autentifikace
246 label_auth_source: Mód autentifikace
247 label_auth_source_new: Nový mód autentifikace
247 label_auth_source_new: Nový mód autentifikace
248 label_auth_source_plural: Módy autentifikace
248 label_auth_source_plural: Módy autentifikace
249 label_subproject_plural: Podprojekty
249 label_subproject_plural: Podprojekty
250 label_min_max_length: Min - Max délka
250 label_min_max_length: Min - Max délka
251 label_list: Seznam
251 label_list: Seznam
252 label_date: Datum
252 label_date: Datum
253 label_integer: Integer
253 label_integer: Integer
254 label_boolean: Boolean
254 label_boolean: Boolean
255 label_string: Text
255 label_string: Text
256 label_text: Dlouhý text
256 label_text: Dlouhý text
257 label_attribute: Atribut
257 label_attribute: Atribut
258 label_attribute_plural: Atributy
258 label_attribute_plural: Atributy
259 label_download: %d Download
259 label_download: %d Download
260 label_download_plural: %d Downloads
260 label_download_plural: %d Downloads
261 label_no_data: Žádná data k zobrazení
261 label_no_data: Žádná data k zobrazení
262 label_change_status: Změnit stav
262 label_change_status: Změnit stav
263 label_history: Historie
263 label_history: Historie
264 label_attachment: Soubor
264 label_attachment: Soubor
265 label_attachment_new: Nový soubor
265 label_attachment_new: Nový soubor
266 label_attachment_delete: Smazat soubor
266 label_attachment_delete: Smazat soubor
267 label_attachment_plural: Soubory
267 label_attachment_plural: Soubory
268 label_report: Report
268 label_report: Report
269 label_report_plural: Reporty
269 label_report_plural: Reporty
270 label_news: Novinky
270 label_news: Novinky
271 label_news_new: Přidat novinku
271 label_news_new: Přidat novinku
272 label_news_plural: Novinky
272 label_news_plural: Novinky
273 label_news_latest: Poslední novinky
273 label_news_latest: Poslední novinky
274 label_news_view_all: Zobrazit všechny novinky
274 label_news_view_all: Zobrazit všechny novinky
275 label_change_log: Change log
275 label_change_log: Change log
276 label_settings: Nastavení
276 label_settings: Nastavení
277 label_overview: Přehled
277 label_overview: Přehled
278 label_version: Verze
278 label_version: Verze
279 label_version_new: Nová verze
279 label_version_new: Nová verze
280 label_version_plural: Verze
280 label_version_plural: Verze
281 label_confirmation: Potvrzení
281 label_confirmation: Potvrzení
282 label_export_to: Exportovat do
282 label_export_to: Exportovat do
283 label_read: Načítá se...
283 label_read: Načítá se...
284 label_public_projects: Veřejné projekty
284 label_public_projects: Veřejné projekty
285 label_open_issues: otevřený
285 label_open_issues: otevřený
286 label_open_issues_plural: otevřené
286 label_open_issues_plural: otevřené
287 label_closed_issues: uzavřený
287 label_closed_issues: uzavřený
288 label_closed_issues_plural: uzavřené
288 label_closed_issues_plural: uzavřené
289 label_total: Celkem
289 label_total: Celkem
290 label_permissions: Práva
290 label_permissions: Práva
291 label_current_status: Aktuální stav
291 label_current_status: Aktuální stav
292 label_new_statuses_allowed: Nové povolené stavy
292 label_new_statuses_allowed: Nové povolené stavy
293 label_all: vše
293 label_all: vše
294 label_none: nic
294 label_none: nic
295 label_next: Další
295 label_next: Další
296 label_previous: Předchozí
296 label_previous: Předchozí
297 label_used_by: Použito
297 label_used_by: Použito
298 label_details: Detaily
298 label_details: Detaily
299 label_add_note: Přidat poznánku
299 label_add_note: Přidat poznánku
300 label_per_page: Na stránku
300 label_per_page: Na stránku
301 label_calendar: Kalendář
301 label_calendar: Kalendář
302 label_months_from: měsíců od
302 label_months_from: měsíců od
303 label_gantt: Gantův graf
303 label_gantt: Gantův graf
304 label_internal: Interní
304 label_internal: Interní
305 label_last_changes: posledních %d změn
305 label_last_changes: posledních %d změn
306 label_change_view_all: Zobrazit všechny změny
306 label_change_view_all: Zobrazit všechny změny
307 label_personalize_page: Přizpůsobit tuto stránku
307 label_personalize_page: Přizpůsobit tuto stránku
308 label_comment: Komentář
308 label_comment: Komentář
309 label_comment_plural: Komentáře
309 label_comment_plural: Komentáře
310 label_comment_add: Přidat komentáře
310 label_comment_add: Přidat komentáře
311 label_comment_added: Komentář přidán
311 label_comment_added: Komentář přidán
312 label_comment_delete: Smazat komentář
312 label_comment_delete: Smazat komentář
313 label_query: Uživatelský dotaz
313 label_query: Uživatelský dotaz
314 label_query_plural: Uživatelské dotazy
314 label_query_plural: Uživatelské dotazy
315 label_query_new: Nový dotaz
315 label_query_new: Nový dotaz
316 label_filter_add: Přidat filtr
316 label_filter_add: Přidat filtr
317 label_filter_plural: Filtry
317 label_filter_plural: Filtry
318 label_equals: je
318 label_equals: je
319 label_not_equals: není
319 label_not_equals: není
320 label_in_less_than: je měší než
320 label_in_less_than: je měší než
321 label_in_more_than: je větší než
321 label_in_more_than: je větší než
322 label_in: v
322 label_in: v
323 label_today: dnes
323 label_today: dnes
324 label_this_week: tento týden
324 label_this_week: tento týden
325 label_less_than_ago: před méně jak (dny)
325 label_less_than_ago: před méně jak (dny)
326 label_more_than_ago: před více jak (dny)
326 label_more_than_ago: před více jak (dny)
327 label_ago: před (dny)
327 label_ago: před (dny)
328 label_contains: obsahuje
328 label_contains: obsahuje
329 label_not_contains: neobsahuje
329 label_not_contains: neobsahuje
330 label_day_plural: dny
330 label_day_plural: dny
331 label_repository: Repository
331 label_repository: Repository
332 label_browse: Procházet
332 label_browse: Procházet
333 label_modification: %d změna
333 label_modification: %d změna
334 label_modification_plural: %d změn
334 label_modification_plural: %d změn
335 label_revision: Revize
335 label_revision: Revize
336 label_revision_plural: Revizí
336 label_revision_plural: Revizí
337 label_added: přidáno
337 label_added: přidáno
338 label_modified: změněno
338 label_modified: změněno
339 label_deleted: smazáno
339 label_deleted: smazáno
340 label_latest_revision: Poslední revize
340 label_latest_revision: Poslední revize
341 label_latest_revision_plural: Poslední revize
341 label_latest_revision_plural: Poslední revize
342 label_view_revisions: Zobrazit revize
342 label_view_revisions: Zobrazit revize
343 label_max_size: Maximální velikost
343 label_max_size: Maximální velikost
344 label_on: 'on'
344 label_on: 'on'
345 label_sort_highest: Posunout na vrchol
345 label_sort_highest: Posunout na vrchol
346 label_sort_higher: Posunout nahoru
346 label_sort_higher: Posunout nahoru
347 label_sort_lower: Posunout dolů
347 label_sort_lower: Posunout dolů
348 label_sort_lowest: Posunout dospod
348 label_sort_lowest: Posunout dospod
349 label_roadmap: Plán
349 label_roadmap: Plán
350 label_roadmap_due_in: Due in
350 label_roadmap_due_in: Due in
351 label_roadmap_overdue: %s pozdě
351 label_roadmap_overdue: %s pozdě
352 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
352 label_roadmap_no_issues: Pro tuto verzi nejsou žádné požadavky
353 label_search: Hledej
353 label_search: Hledej
354 label_result_plural: Výsledky
354 label_result_plural: Výsledky
355 label_all_words: Všechna slova
355 label_all_words: Všechna slova
356 label_wiki: Wiki
356 label_wiki: Wiki
357 label_wiki_edit: Wiki úprava
357 label_wiki_edit: Wiki úprava
358 label_wiki_edit_plural: Wiki úpravy
358 label_wiki_edit_plural: Wiki úpravy
359 label_wiki_page: Wiki stránka
359 label_wiki_page: Wiki stránka
360 label_wiki_page_plural: Wiki stránky
360 label_wiki_page_plural: Wiki stránky
361 label_index_by_title: Rejstřík
361 label_index_by_title: Rejstřík
362 label_index_by_date: Index by date
362 label_index_by_date: Index by date
363 label_current_version: Aktuální verze
363 label_current_version: Aktuální verze
364 label_preview: Náhled
364 label_preview: Náhled
365 label_feed_plural: Feeds
365 label_feed_plural: Feeds
366 label_changes_details: Detail všech změn
366 label_changes_details: Detail všech změn
367 label_issue_tracking: Sledování požadavků
367 label_issue_tracking: Sledování požadavků
368 label_spent_time: Strávený čas
368 label_spent_time: Strávený čas
369 label_f_hour: %.2f hodina
369 label_f_hour: %.2f hodina
370 label_f_hour_plural: %.2f hodin
370 label_f_hour_plural: %.2f hodin
371 label_time_tracking: Sledování času
371 label_time_tracking: Sledování času
372 label_change_plural: Změny
372 label_change_plural: Změny
373 label_statistics: Statistika
373 label_statistics: Statistika
374 label_commits_per_month: Pořízení za měsíc
374 label_commits_per_month: Pořízení za měsíc
375 label_commits_per_author: Pořízení za autora
375 label_commits_per_author: Pořízení za autora
376 label_view_diff: Zobrazit rozdíly
376 label_view_diff: Zobrazit rozdíly
377 label_diff_inline: uvnitř
377 label_diff_inline: uvnitř
378 label_diff_side_by_side: vedle sebe
378 label_diff_side_by_side: vedle sebe
379 label_options: Nastavení
379 label_options: Nastavení
380 label_copy_workflow_from: Kopírovat workflow z
380 label_copy_workflow_from: Kopírovat workflow z
381 label_permissions_report: Opis práv
381 label_permissions_report: Opis práv
382 label_watched_issues: Prohlédnuté požadavky
382 label_watched_issues: Prohlédnuté požadavky
383 label_related_issues: Vztažené požadavky
383 label_related_issues: Vztažené požadavky
384 label_applied_status: Použitý stav
384 label_applied_status: Použitý stav
385 label_loading: Nahrávám...
385 label_loading: Nahrávám...
386 label_relation_new: Nový vztah
386 label_relation_new: Nový vztah
387 label_relation_delete: Smazat vztah
387 label_relation_delete: Smazat vztah
388 label_relates_to: vztažený k
388 label_relates_to: vztažený k
389 label_duplicates: duplicity
389 label_duplicates: duplicity
390 label_blocks: zámků
390 label_blocks: zámků
391 label_blocked_by: zamčeno
391 label_blocked_by: zamčeno
392 label_precedes: předchází
392 label_precedes: předchází
393 label_follows: následuje
393 label_follows: následuje
394 label_end_to_start: od konce do začátku
394 label_end_to_start: od konce do začátku
395 label_end_to_end: od konce do konce
395 label_end_to_end: od konce do konce
396 label_start_to_start: od začátku do začátku
396 label_start_to_start: od začátku do začátku
397 label_start_to_end: od začátku do konce
397 label_start_to_end: od začátku do konce
398 label_stay_logged_in: Zůstat přihlášený
398 label_stay_logged_in: Zůstat přihlášený
399 label_disabled: zakázáno
399 label_disabled: zakázáno
400 label_show_completed_versions: Ukaž dokončené verze
400 label_show_completed_versions: Ukaž dokončené verze
401 label_me:
401 label_me:
402 label_board: Fórum
402 label_board: Fórum
403 label_board_new: Nové fórum
403 label_board_new: Nové fórum
404 label_board_plural: Fora
404 label_board_plural: Fora
405 label_topic_plural: Témata
405 label_topic_plural: Témata
406 label_message_plural: Zprávy
406 label_message_plural: Zprávy
407 label_message_last: Poslední zpráva
407 label_message_last: Poslední zpráva
408 label_message_new: Nové zprávy
408 label_message_new: Nové zprávy
409 label_reply_plural: Odpovědi
409 label_reply_plural: Odpovědi
410 label_send_information: Zaslat informace o účtu uživateli
410 label_send_information: Zaslat informace o účtu uživateli
411 label_year: Rok
411 label_year: Rok
412 label_month: Měsíc
412 label_month: Měsíc
413 label_week: Týden
413 label_week: Týden
414 label_date_from: Od
414 label_date_from: Od
415 label_date_to: Do
415 label_date_to: Do
416 label_language_based: Language based
416 label_language_based: Language based
417 label_sort_by: Seřadit podle "%s"
417 label_sort_by: Seřadit podle "%s"
418 label_send_test_email: Poslat testovací email
418 label_send_test_email: Poslat testovací email
419 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
419 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
420
420
421 button_login: Přihlásit
421 button_login: Přihlásit
422 button_submit: Potvrdit
422 button_submit: Potvrdit
423 button_save: Uložit
423 button_save: Uložit
424 button_check_all: Zašrtnout vše
424 button_check_all: Zašrtnout vše
425 button_uncheck_all: Odšrtnout vše
425 button_uncheck_all: Odšrtnout vše
426 button_delete: Smazat
426 button_delete: Smazat
427 button_create: Vytvořit
427 button_create: Vytvořit
428 button_test: Test
428 button_test: Test
429 button_edit: Upravit
429 button_edit: Upravit
430 button_add: Přidat
430 button_add: Přidat
431 button_change: Změnit
431 button_change: Změnit
432 button_apply: Použít
432 button_apply: Použít
433 button_clear: Odstranit
433 button_clear: Odstranit
434 button_lock: Zamknout
434 button_lock: Zamknout
435 button_unlock: Odemknout
435 button_unlock: Odemknout
436 button_download: Stáhnout
436 button_download: Stáhnout
437 button_list: Vypsat
437 button_list: Vypsat
438 button_view: Zobrazit
438 button_view: Zobrazit
439 button_move: Přesunout
439 button_move: Přesunout
440 button_back: Zpět
440 button_back: Zpět
441 button_cancel: Storno
441 button_cancel: Storno
442 button_activate: Activovat
442 button_activate: Activovat
443 button_sort: Seřadit
443 button_sort: Seřadit
444 button_log_time: Čas přihlášení
444 button_log_time: Čas přihlášení
445 button_rollback: Zpět k této verzi
445 button_rollback: Zpět k této verzi
446 button_watch: Sledovat
446 button_watch: Sledovat
447 button_unwatch: Unwatch
447 button_unwatch: Unwatch
448 button_reply: Odpovědět
448 button_reply: Odpovědět
449 button_archive: Archivovat
449 button_archive: Archivovat
450 button_unarchive: Odarchivovat
450 button_unarchive: Odarchivovat
451 button_reset: Reset
451 button_reset: Reset
452
452
453 status_active: aktivní
453 status_active: aktivní
454 status_registered: registrovaný
454 status_registered: registrovaný
455 status_locked: uzamčený
455 status_locked: uzamčený
456
456
457 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
457 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
458 text_regexp_info: např. ^[A-Z0-9]+$
458 text_regexp_info: např. ^[A-Z0-9]+$
459 text_min_max_length_info: 0 znamená bez limitu
459 text_min_max_length_info: 0 znamená bez limitu
460 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
460 text_project_destroy_confirmation: Jste si jistí, že chcete smazat tento projekt a všechna související data ?
461 text_workflow_edit: Vyberte roli a frontu k editaci workflow
461 text_workflow_edit: Vyberte roli a frontu k editaci workflow
462 text_are_you_sure: Jste si jist ?
462 text_are_you_sure: Jste si jist ?
463 text_journal_changed: změněno z %s na %s
463 text_journal_changed: změněno z %s na %s
464 text_journal_set_to: nastaveno na %s
464 text_journal_set_to: nastaveno na %s
465 text_journal_deleted: smazáno
465 text_journal_deleted: smazáno
466 text_tip_task_begin_day: úkol začíná v tento den
466 text_tip_task_begin_day: úkol začíná v tento den
467 text_tip_task_end_day: úkol končí v tento den
467 text_tip_task_end_day: úkol končí v tento den
468 text_tip_task_begin_end_day: úkol začíná a končí v tento den
468 text_tip_task_begin_end_day: úkol začíná a končí v tento den
469 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
469 text_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
470 text_caracters_maximum: %d znaků maximálně.
470 text_caracters_maximum: %d znaků maximálně.
471 text_length_between: Délka mezi %d a %d znaky.
471 text_length_between: Délka mezi %d a %d znaky.
472 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
472 text_tracker_no_workflow: Pro tuto frontu není definováno žádné workflow
473 text_unallowed_characters: Nepovolené znaky
473 text_unallowed_characters: Nepovolené znaky
474 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
474 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
475 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
475 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
476
476
477 default_role_manager: Manažer
477 default_role_manager: Manažer
478 default_role_developper: Agent
478 default_role_developper: Agent
479 default_role_reporter: Reporter
479 default_role_reporter: Reporter
480 default_tracker_bug: Reklamace
480 default_tracker_bug: Reklamace
481 default_tracker_feature: Vlastnost
481 default_tracker_feature: Vlastnost
482 default_tracker_support: Požadavek
482 default_tracker_support: Požadavek
483 default_issue_status_new: Nový
483 default_issue_status_new: Nový
484 default_issue_status_assigned: Přiřazený
484 default_issue_status_assigned: Přiřazený
485 default_issue_status_resolved: Vyřešený
485 default_issue_status_resolved: Vyřešený
486 default_issue_status_feedback: Čeká se
486 default_issue_status_feedback: Čeká se
487 default_issue_status_closed: Uzavřený
487 default_issue_status_closed: Uzavřený
488 default_issue_status_rejected: Odmítnutý
488 default_issue_status_rejected: Odmítnutý
489 default_doc_category_user: Uživatelská dokumentace
489 default_doc_category_user: Uživatelská dokumentace
490 default_doc_category_tech: Technická dokumentace
490 default_doc_category_tech: Technická dokumentace
491 default_priority_low: Nízká
491 default_priority_low: Nízká
492 default_priority_normal: Normální
492 default_priority_normal: Normální
493 default_priority_high: Vysoká
493 default_priority_high: Vysoká
494 default_priority_urgent: Urgentní
494 default_priority_urgent: Urgentní
495 default_priority_immediate: Bezodkladné
495 default_priority_immediate: Bezodkladné
496 default_activity_design: Návrh
496 default_activity_design: Návrh
497 default_activity_development: Vývoj
497 default_activity_development: Vývoj
498
498
499 enumeration_issue_priorities: Priority požadavků
499 enumeration_issue_priorities: Priority požadavků
500 enumeration_doc_categories: Kategorie dokumentů
500 enumeration_doc_categories: Kategorie dokumentů
501 enumeration_activities: Aktivity (sledování času)
501 enumeration_activities: Aktivity (sledování času)
502 button_rename: Rename
502 button_rename: Rename
503 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
503 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
504 label_module_plural: Modules
504 label_module_plural: Modules
505 label_jump_to_a_project: Jump to a project...
505 label_jump_to_a_project: Jump to a project...
506 text_issue_updated: Issue %s has been updated.
506 text_issue_updated: Issue %s has been updated.
507 field_redirect_existing_links: Redirect existing links
507 field_redirect_existing_links: Redirect existing links
508 text_issue_category_reassign_to: Reassing issues to this category
508 text_issue_category_reassign_to: Reassing issues to this category
509 text_issue_added: Issue %s has been reported.
509 text_issue_added: Issue %s has been reported.
510 label_file_plural: Files
510 label_file_plural: Files
511 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
511 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
512 label_updated_time: Updated %s ago
512 label_updated_time: Updated %s ago
513 text_issue_category_destroy_assignments: Remove category assignments
513 text_issue_category_destroy_assignments: Remove category assignments
514 label_added_time_by: Added by %s %s ago
514 label_added_time_by: Added by %s %s ago
515 field_estimated_hours: Estimated time
515 field_estimated_hours: Estimated time
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Columns
517 field_column_names: Columns
518 label_default_columns: Default columns
518 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
523 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
525 label_theme: Theme
526 label_default: Default
526 label_default: Default
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 Tag
8 actionview_datehelper_time_in_words_day: 1 Tag
9 actionview_datehelper_time_in_words_day_plural: %d Tage
9 actionview_datehelper_time_in_words_day_plural: %d Tage
10 actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde
10 actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde
13 actionview_datehelper_time_in_words_minute: 1 Minute
13 actionview_datehelper_time_in_words_minute: 1 Minute
14 actionview_datehelper_time_in_words_minute_half: halbe Minute
14 actionview_datehelper_time_in_words_minute_half: halbe Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde
18 actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 actionview_instancetag_blank_option: Bitte auswählen
20 actionview_instancetag_blank_option: Bitte auswählen
21
21
22 activerecord_error_inclusion: ist nicht inbegriffen
22 activerecord_error_inclusion: ist nicht inbegriffen
23 activerecord_error_exclusion: ist reserviert
23 activerecord_error_exclusion: ist reserviert
24 activerecord_error_invalid: ist unzulässig
24 activerecord_error_invalid: ist unzulässig
25 activerecord_error_confirmation: Bestätigung nötig
25 activerecord_error_confirmation: Bestätigung nötig
26 activerecord_error_accepted: muss angenommen werden
26 activerecord_error_accepted: muss angenommen werden
27 activerecord_error_empty: darf nicht leer sein
27 activerecord_error_empty: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
29 activerecord_error_too_long: ist zu lang
29 activerecord_error_too_long: ist zu lang
30 activerecord_error_too_short: ist zu kurz
30 activerecord_error_too_short: ist zu kurz
31 activerecord_error_wrong_length: hat die falsche Länge
31 activerecord_error_wrong_length: hat die falsche Länge
32 activerecord_error_taken: ist bereits vergeben
32 activerecord_error_taken: ist bereits vergeben
33 activerecord_error_not_a_number: ist keine Zahl
33 activerecord_error_not_a_number: ist keine Zahl
34 activerecord_error_not_a_date: ist kein gültiges Datum
34 activerecord_error_not_a_date: ist kein gültiges Datum
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
38
38
39 general_fmt_age: %d Jahr
39 general_fmt_age: %d Jahr
40 general_fmt_age_plural: %d Jahre
40 general_fmt_age_plural: %d Jahre
41 general_fmt_date: %%d.%%m.%%y
41 general_fmt_date: %%d.%%m.%%y
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nein'
45 general_text_No: 'Nein'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nein'
47 general_text_no: 'nein'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Deutsch'
49 general_lang_name: 'Deutsch'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
53 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
56 notice_account_updated: Konto wurde erfolgreich aktualisiert.
57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
57 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
58 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
59 notice_account_wrong_password: Falsches Kennwort
59 notice_account_wrong_password: Falsches Kennwort
60 notice_account_register_done: Konto wurde erfolgreich angelegt.
60 notice_account_register_done: Konto wurde erfolgreich angelegt.
61 notice_account_unknown_email: Unbekannter Benutzer.
61 notice_account_unknown_email: Unbekannter Benutzer.
62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
62 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
63 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
64 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
65 notice_successful_create: Erfolgreich angelegt
65 notice_successful_create: Erfolgreich angelegt
66 notice_successful_update: Erfolgreich aktualisiert.
66 notice_successful_update: Erfolgreich aktualisiert.
67 notice_successful_delete: Erfolgreich gelöscht.
67 notice_successful_delete: Erfolgreich gelöscht.
68 notice_successful_connection: Verbindung erfolgreich.
68 notice_successful_connection: Verbindung erfolgreich.
69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
69 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
70 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
71 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
71 notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv.
72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
74 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
74 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
75 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
75 notice_feeds_access_key_reseted: Ihr RSS-Zugriffsschlüssel wurde zurückgesetzt.
76
76
77 mail_subject_lost_password: Ihr Redmine Kennwort
77 mail_subject_lost_password: Ihr Redmine Kennwort
78 mail_body_lost_password: 'Benutzen Sie folgenden Link, um das Password zu Ãndern:'
78 mail_body_lost_password: 'Benutzen Sie folgenden Link, um das Password zu Ãndern:'
79 mail_subject_register: Redmine Kontoaktivierung
79 mail_subject_register: Redmine Kontoaktivierung
80 mail_body_register: 'Um Ihren Account zu aktivieren, benutzen Sie folgenden Link:'
80 mail_body_register: 'Um Ihren Account zu aktivieren, benutzen Sie folgenden Link:'
81
81
82 gui_validation_error: 1 Fehler
82 gui_validation_error: 1 Fehler
83 gui_validation_error_plural: %d Fehler
83 gui_validation_error_plural: %d Fehler
84
84
85 field_name: Name
85 field_name: Name
86 field_description: Beschreibung
86 field_description: Beschreibung
87 field_summary: Zusammenfassung
87 field_summary: Zusammenfassung
88 field_is_required: Erforderlich
88 field_is_required: Erforderlich
89 field_firstname: Vorname
89 field_firstname: Vorname
90 field_lastname: Nachname
90 field_lastname: Nachname
91 field_mail: Email
91 field_mail: Email
92 field_filename: Datei
92 field_filename: Datei
93 field_filesize: Größe
93 field_filesize: Größe
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Angelegt
96 field_created_on: Angelegt
97 field_updated_on: Aktualisiert
97 field_updated_on: Aktualisiert
98 field_field_format: Format
98 field_field_format: Format
99 field_is_for_all: Für alle Projekte
99 field_is_for_all: Für alle Projekte
100 field_possible_values: Mögliche Werte
100 field_possible_values: Mögliche Werte
101 field_regexp: Regulärer Ausdruck
101 field_regexp: Regulärer Ausdruck
102 field_min_length: Minimale Länge
102 field_min_length: Minimale Länge
103 field_max_length: Maximale Länge
103 field_max_length: Maximale Länge
104 field_value: Wert
104 field_value: Wert
105 field_category: Kategorie
105 field_category: Kategorie
106 field_title: Titel
106 field_title: Titel
107 field_project: Projekt
107 field_project: Projekt
108 field_issue: Ticket
108 field_issue: Ticket
109 field_status: Status
109 field_status: Status
110 field_notes: Kommentare
110 field_notes: Kommentare
111 field_is_closed: Problem erledigt
111 field_is_closed: Problem erledigt
112 field_is_default: Default
112 field_is_default: Default
113 field_html_color: Farbe
113 field_html_color: Farbe
114 field_tracker: Tracker
114 field_tracker: Tracker
115 field_subject: Thema
115 field_subject: Thema
116 field_due_date: Abgabedatum
116 field_due_date: Abgabedatum
117 field_assigned_to: Zugewiesen an
117 field_assigned_to: Zugewiesen an
118 field_priority: Priorität
118 field_priority: Priorität
119 field_fixed_version: Erledigt in Version
119 field_fixed_version: Erledigt in Version
120 field_user: Benutzer
120 field_user: Benutzer
121 field_role: Rolle
121 field_role: Rolle
122 field_homepage: Startseite
122 field_homepage: Startseite
123 field_is_public: Öffentlich
123 field_is_public: Öffentlich
124 field_parent: Unterprojekt von
124 field_parent: Unterprojekt von
125 field_is_in_chlog: Ansicht im Change-Log
125 field_is_in_chlog: Ansicht im Change-Log
126 field_is_in_roadmap: Ansicht in der Roadmap
126 field_is_in_roadmap: Ansicht in der Roadmap
127 field_login: Mitgliedsname
127 field_login: Mitgliedsname
128 field_mail_notification: Mailbenachrichtigung
128 field_mail_notification: Mailbenachrichtigung
129 field_admin: Administrator
129 field_admin: Administrator
130 field_last_login_on: Letzte Anmeldung
130 field_last_login_on: Letzte Anmeldung
131 field_language: Sprache
131 field_language: Sprache
132 field_effective_date: Datum
132 field_effective_date: Datum
133 field_password: Kennwort
133 field_password: Kennwort
134 field_new_password: Neues Kennwort
134 field_new_password: Neues Kennwort
135 field_password_confirmation: Bestätigung
135 field_password_confirmation: Bestätigung
136 field_version: Version
136 field_version: Version
137 field_type: Typ
137 field_type: Typ
138 field_host: Host
138 field_host: Host
139 field_port: Port
139 field_port: Port
140 field_account: Konto
140 field_account: Konto
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Mitgliedsname-Attribut
142 field_attr_login: Mitgliedsname-Attribut
143 field_attr_firstname: Vorname-Attribut
143 field_attr_firstname: Vorname-Attribut
144 field_attr_lastname: Name-Attribut
144 field_attr_lastname: Name-Attribut
145 field_attr_mail: E-Mail-Attribut
145 field_attr_mail: E-Mail-Attribut
146 field_onthefly: On-the-fly-Benutzererstellung
146 field_onthefly: On-the-fly-Benutzererstellung
147 field_start_date: Beginn
147 field_start_date: Beginn
148 field_done_ratio: %% erledigt
148 field_done_ratio: %% erledigt
149 field_auth_source: Authentifizierungs-Modus
149 field_auth_source: Authentifizierungs-Modus
150 field_hide_mail: Email-Adresse nicht anzeigen
150 field_hide_mail: Email-Adresse nicht anzeigen
151 field_comments: Kommentar
151 field_comments: Kommentar
152 field_url: URL
152 field_url: URL
153 field_start_page: Hauptseite
153 field_start_page: Hauptseite
154 field_subproject: Subprojekt von
154 field_subproject: Subprojekt von
155 field_hours: Stunden
155 field_hours: Stunden
156 field_activity: Aktivität
156 field_activity: Aktivität
157 field_spent_on: Datum
157 field_spent_on: Datum
158 field_identifier: Kennung
158 field_identifier: Kennung
159 field_is_filter: Als Fiter benutzen
159 field_is_filter: Als Fiter benutzen
160 field_issue_to_id: Zugehöriges Ticket
160 field_issue_to_id: Zugehöriges Ticket
161 field_delay: Pufferzeit
161 field_delay: Pufferzeit
162 field_assignable: Tickets können dieser Rolle zugewiesen werden
162 field_assignable: Tickets können dieser Rolle zugewiesen werden
163 field_redirect_existing_links: Existierende Links umleiten
163 field_redirect_existing_links: Existierende Links umleiten
164 field_estimated_hours: Geschätzter Aufwand
164 field_estimated_hours: Geschätzter Aufwand
165
165
166 setting_app_title: Applikations-Titel
166 setting_app_title: Applikations-Titel
167 setting_app_subtitle: Applikations-Untertitel
167 setting_app_subtitle: Applikations-Untertitel
168 setting_welcome_text: Willkommenstext
168 setting_welcome_text: Willkommenstext
169 setting_default_language: Default-Sprache
169 setting_default_language: Default-Sprache
170 setting_login_required: Authentisierung erforderlich
170 setting_login_required: Authentisierung erforderlich
171 setting_self_registration: Anmeldung ermöglicht
171 setting_self_registration: Anmeldung ermöglicht
172 setting_attachment_max_size: Max. Dateigröße
172 setting_attachment_max_size: Max. Dateigröße
173 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
173 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
174 setting_mail_from: E-Mail-Absender
174 setting_mail_from: E-Mail-Absender
175 setting_host_name: Hostname
175 setting_host_name: Hostname
176 setting_text_formatting: Textformatierung
176 setting_text_formatting: Textformatierung
177 setting_wiki_compression: Wiki-Historie komprimieren
177 setting_wiki_compression: Wiki-Historie komprimieren
178 setting_feeds_limit: Feed-Inhalt begrenzen
178 setting_feeds_limit: Feed-Inhalt begrenzen
179 setting_autofetch_changesets: Commits automatisch abrufen
179 setting_autofetch_changesets: Commits automatisch abrufen
180 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
180 setting_sys_api_enabled: Webservice für Repository-Verwaltung benutzen
181 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
181 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
182 setting_commit_fix_keywords: Schlüsselwörter (Status)
182 setting_commit_fix_keywords: Schlüsselwörter (Status)
183 setting_autologin: Automatische Anmeldung
183 setting_autologin: Automatische Anmeldung
184 setting_date_format: Datumsformat
184 setting_date_format: Datumsformat
185 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
185 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
186
186
187 label_user: Benutzer
187 label_user: Benutzer
188 label_user_plural: Benutzer
188 label_user_plural: Benutzer
189 label_user_new: Neuer Benutzer
189 label_user_new: Neuer Benutzer
190 label_project: Projekt
190 label_project: Projekt
191 label_project_new: Neues Projekt
191 label_project_new: Neues Projekt
192 label_project_plural: Projekte
192 label_project_plural: Projekte
193 label_project_all: Alle Projekte
193 label_project_all: Alle Projekte
194 label_project_latest: Neueste Projekte
194 label_project_latest: Neueste Projekte
195 label_issue: Ticket
195 label_issue: Ticket
196 label_issue_new: Neues Ticket
196 label_issue_new: Neues Ticket
197 label_issue_plural: Tickets
197 label_issue_plural: Tickets
198 label_issue_view_all: Alle Tickets ansehen
198 label_issue_view_all: Alle Tickets ansehen
199 label_document: Dokument
199 label_document: Dokument
200 label_document_new: Neues Dokument
200 label_document_new: Neues Dokument
201 label_document_plural: Dokumente
201 label_document_plural: Dokumente
202 label_role: Rolle
202 label_role: Rolle
203 label_role_plural: Rollen
203 label_role_plural: Rollen
204 label_role_new: Neue Rolle
204 label_role_new: Neue Rolle
205 label_role_and_permissions: Rollen und Rechte
205 label_role_and_permissions: Rollen und Rechte
206 label_member: Mitglied
206 label_member: Mitglied
207 label_member_new: Neues Mitglied
207 label_member_new: Neues Mitglied
208 label_member_plural: Mitglieder
208 label_member_plural: Mitglieder
209 label_tracker: Tracker
209 label_tracker: Tracker
210 label_tracker_plural: Tracker
210 label_tracker_plural: Tracker
211 label_tracker_new: Neuer Tracker
211 label_tracker_new: Neuer Tracker
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Ticket-Status
213 label_issue_status: Ticket-Status
214 label_issue_status_plural: Ticket-Status
214 label_issue_status_plural: Ticket-Status
215 label_issue_status_new: Neuer Status
215 label_issue_status_new: Neuer Status
216 label_issue_category: Ticket-Kategorie
216 label_issue_category: Ticket-Kategorie
217 label_issue_category_plural: Ticket-Kategorien
217 label_issue_category_plural: Ticket-Kategorien
218 label_issue_category_new: Neue Kategorie
218 label_issue_category_new: Neue Kategorie
219 label_custom_field: Benutzerdefiniertes Feld
219 label_custom_field: Benutzerdefiniertes Feld
220 label_custom_field_plural: Benutzerdefinierte Felder
220 label_custom_field_plural: Benutzerdefinierte Felder
221 label_custom_field_new: Neues Feld
221 label_custom_field_new: Neues Feld
222 label_enumerations: Aufzählungen
222 label_enumerations: Aufzählungen
223 label_enumeration_new: Neuer Wert
223 label_enumeration_new: Neuer Wert
224 label_information: Information
224 label_information: Information
225 label_information_plural: Informationen
225 label_information_plural: Informationen
226 label_please_login: Anmelden
226 label_please_login: Anmelden
227 label_register: Registrieren
227 label_register: Registrieren
228 label_password_lost: Kennwort vergessen
228 label_password_lost: Kennwort vergessen
229 label_home: Hauptseite
229 label_home: Hauptseite
230 label_my_page: Meine Seite
230 label_my_page: Meine Seite
231 label_my_account: Mein Konto
231 label_my_account: Mein Konto
232 label_my_projects: Meine Projekte
232 label_my_projects: Meine Projekte
233 label_administration: Administration
233 label_administration: Administration
234 label_login: Anmelden
234 label_login: Anmelden
235 label_logout: Abmelden
235 label_logout: Abmelden
236 label_help: Hilfe
236 label_help: Hilfe
237 label_reported_issues: Gemeldete Tickets
237 label_reported_issues: Gemeldete Tickets
238 label_assigned_to_me_issues: Mir zugewiesen
238 label_assigned_to_me_issues: Mir zugewiesen
239 label_last_login: Letzte Anmeldung
239 label_last_login: Letzte Anmeldung
240 label_last_updates: zuletzt aktualisiert
240 label_last_updates: zuletzt aktualisiert
241 label_last_updates_plural: %d zuletzt aktualisierten
241 label_last_updates_plural: %d zuletzt aktualisierten
242 label_registered_on: Angemeldet am
242 label_registered_on: Angemeldet am
243 label_activity: Aktivität
243 label_activity: Aktivität
244 label_new: Neu
244 label_new: Neu
245 label_logged_as: Angemeldet als
245 label_logged_as: Angemeldet als
246 label_environment: Environment
246 label_environment: Environment
247 label_authentication: Authentifizierung
247 label_authentication: Authentifizierung
248 label_auth_source: Authentifizierungs-Modus
248 label_auth_source: Authentifizierungs-Modus
249 label_auth_source_new: Neuer Authentifizierungs-Modus
249 label_auth_source_new: Neuer Authentifizierungs-Modus
250 label_auth_source_plural: Authentifizierungs-Arten
250 label_auth_source_plural: Authentifizierungs-Arten
251 label_subproject_plural: Unterprojekte
251 label_subproject_plural: Unterprojekte
252 label_min_max_length: Länge (Min. - Max.)
252 label_min_max_length: Länge (Min. - Max.)
253 label_list: Liste
253 label_list: Liste
254 label_date: Datum
254 label_date: Datum
255 label_integer: Zahl
255 label_integer: Zahl
256 label_boolean: Boolean
256 label_boolean: Boolean
257 label_string: Text
257 label_string: Text
258 label_text: Langer Text
258 label_text: Langer Text
259 label_attribute: Attribut
259 label_attribute: Attribut
260 label_attribute_plural: Attribute
260 label_attribute_plural: Attribute
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
263 label_no_data: Nichts anzuzeigen
263 label_no_data: Nichts anzuzeigen
264 label_change_status: Statuswechsel
264 label_change_status: Statuswechsel
265 label_history: Historie
265 label_history: Historie
266 label_attachment: Datei
266 label_attachment: Datei
267 label_attachment_new: Neue Datei
267 label_attachment_new: Neue Datei
268 label_attachment_delete: Anhang löschen
268 label_attachment_delete: Anhang löschen
269 label_attachment_plural: Dateien
269 label_attachment_plural: Dateien
270 label_report: Bericht
270 label_report: Bericht
271 label_report_plural: Berichte
271 label_report_plural: Berichte
272 label_news: News
272 label_news: News
273 label_news_new: News hinzufügen
273 label_news_new: News hinzufügen
274 label_news_plural: News
274 label_news_plural: News
275 label_news_latest: Letzte News
275 label_news_latest: Letzte News
276 label_news_view_all: Alle News anzeigen
276 label_news_view_all: Alle News anzeigen
277 label_change_log: Change-Log
277 label_change_log: Change-Log
278 label_settings: Konfiguration
278 label_settings: Konfiguration
279 label_overview: Übersicht
279 label_overview: Übersicht
280 label_version: Version
280 label_version: Version
281 label_version_new: Neue Version
281 label_version_new: Neue Version
282 label_version_plural: Versionen
282 label_version_plural: Versionen
283 label_confirmation: Bestätigung
283 label_confirmation: Bestätigung
284 label_export_to: Export zu
284 label_export_to: Export zu
285 label_read: Lesen...
285 label_read: Lesen...
286 label_public_projects: Öffentliche Projekte
286 label_public_projects: Öffentliche Projekte
287 label_open_issues: offen
287 label_open_issues: offen
288 label_open_issues_plural: offen
288 label_open_issues_plural: offen
289 label_closed_issues: geschlossen
289 label_closed_issues: geschlossen
290 label_closed_issues_plural: geschlossen
290 label_closed_issues_plural: geschlossen
291 label_total: Gesamtzahl
291 label_total: Gesamtzahl
292 label_permissions: Berechtigungen
292 label_permissions: Berechtigungen
293 label_current_status: Gegenwärtiger Status
293 label_current_status: Gegenwärtiger Status
294 label_new_statuses_allowed: Neue Berechtigungen
294 label_new_statuses_allowed: Neue Berechtigungen
295 label_all: alle
295 label_all: alle
296 label_none: kein
296 label_none: kein
297 label_next: Weiter
297 label_next: Weiter
298 label_previous: Zurück
298 label_previous: Zurück
299 label_used_by: Benutzt von
299 label_used_by: Benutzt von
300 label_details: Details
300 label_details: Details
301 label_add_note: Kommentar hinzufügen
301 label_add_note: Kommentar hinzufügen
302 label_per_page: Pro Seite
302 label_per_page: Pro Seite
303 label_calendar: Kalender
303 label_calendar: Kalender
304 label_months_from: Monate ab
304 label_months_from: Monate ab
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Intern
306 label_internal: Intern
307 label_last_changes: %d letzte Änderungen
307 label_last_changes: %d letzte Änderungen
308 label_change_view_all: Alle Änderungen ansehen
308 label_change_view_all: Alle Änderungen ansehen
309 label_personalize_page: Diese Seite anpassen
309 label_personalize_page: Diese Seite anpassen
310 label_comment: Kommentar
310 label_comment: Kommentar
311 label_comment_plural: Kommentare
311 label_comment_plural: Kommentare
312 label_comment_add: Kommentar hinzufügen
312 label_comment_add: Kommentar hinzufügen
313 label_comment_added: Kommentar hinzugefügt
313 label_comment_added: Kommentar hinzugefügt
314 label_comment_delete: Kommentar löschen
314 label_comment_delete: Kommentar löschen
315 label_query: Benutzerdefinierte Abfrage
315 label_query: Benutzerdefinierte Abfrage
316 label_query_plural: Benutzerdefinierte Berichte
316 label_query_plural: Benutzerdefinierte Berichte
317 label_query_new: Neuer Bericht
317 label_query_new: Neuer Bericht
318 label_filter_add: Filter hinzufügen
318 label_filter_add: Filter hinzufügen
319 label_filter_plural: Filter
319 label_filter_plural: Filter
320 label_equals: ist
320 label_equals: ist
321 label_not_equals: ist nicht
321 label_not_equals: ist nicht
322 label_in_less_than: in weniger als
322 label_in_less_than: in weniger als
323 label_in_more_than: in mehr als
323 label_in_more_than: in mehr als
324 label_in: an
324 label_in: an
325 label_today: heute
325 label_today: heute
326 label_this_week: diese Woche
326 label_this_week: diese Woche
327 label_less_than_ago: vor weniger als
327 label_less_than_ago: vor weniger als
328 label_more_than_ago: vor mehr als
328 label_more_than_ago: vor mehr als
329 label_ago: vor
329 label_ago: vor
330 label_contains: enthält
330 label_contains: enthält
331 label_not_contains: enthält nicht
331 label_not_contains: enthält nicht
332 label_day_plural: Tage
332 label_day_plural: Tage
333 label_repository: Projektarchiv
333 label_repository: Projektarchiv
334 label_browse: Codebrowser
334 label_browse: Codebrowser
335 label_modification: %d Änderung
335 label_modification: %d Änderung
336 label_modification_plural: %d Änderungen
336 label_modification_plural: %d Änderungen
337 label_revision: Revision
337 label_revision: Revision
338 label_revision_plural: Revisionen
338 label_revision_plural: Revisionen
339 label_added: hinzugefügt
339 label_added: hinzugefügt
340 label_modified: geändert
340 label_modified: geändert
341 label_deleted: gelöscht
341 label_deleted: gelöscht
342 label_latest_revision: Aktuellste Revision
342 label_latest_revision: Aktuellste Revision
343 label_latest_revision_plural: Aktuellste Revisionen
343 label_latest_revision_plural: Aktuellste Revisionen
344 label_view_revisions: Revisionen anzeigen
344 label_view_revisions: Revisionen anzeigen
345 label_max_size: Maximale Größe
345 label_max_size: Maximale Größe
346 label_on: von
346 label_on: von
347 label_sort_highest: Anfang
347 label_sort_highest: Anfang
348 label_sort_higher: eins höher
348 label_sort_higher: eins höher
349 label_sort_lower: eins tiefer
349 label_sort_lower: eins tiefer
350 label_sort_lowest: Ende
350 label_sort_lowest: Ende
351 label_roadmap: Roadmap
351 label_roadmap: Roadmap
352 label_roadmap_due_in: Fällig in
352 label_roadmap_due_in: Fällig in
353 label_roadmap_overdue: %s verspätet
353 label_roadmap_overdue: %s verspätet
354 label_roadmap_no_issues: Keine Tickets für diese Version
354 label_roadmap_no_issues: Keine Tickets für diese Version
355 label_search: Suche
355 label_search: Suche
356 label_result_plural: Resultate
356 label_result_plural: Resultate
357 label_all_words: Alle Wörter
357 label_all_words: Alle Wörter
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Wiki-Bearbeitung
359 label_wiki_edit: Wiki-Bearbeitung
360 label_wiki_edit_plural: Wiki-Bearbeitungen
360 label_wiki_edit_plural: Wiki-Bearbeitungen
361 label_wiki_page: Wiki-Seite
361 label_wiki_page: Wiki-Seite
362 label_wiki_page_plural: Wiki-Seiten
362 label_wiki_page_plural: Wiki-Seiten
363 label_index_by_title: Index by title
363 label_index_by_title: Index by title
364 label_index_by_date: Index by date
364 label_index_by_date: Index by date
365 label_current_version: Gegenwärtige Version
365 label_current_version: Gegenwärtige Version
366 label_preview: Vorschau
366 label_preview: Vorschau
367 label_feed_plural: Feeds
367 label_feed_plural: Feeds
368 label_changes_details: Details aller Änderungen
368 label_changes_details: Details aller Änderungen
369 label_issue_tracking: Tickets
369 label_issue_tracking: Tickets
370 label_spent_time: Aufgewendete Zeit
370 label_spent_time: Aufgewendete Zeit
371 label_f_hour: %.2f Stunde
371 label_f_hour: %.2f Stunde
372 label_f_hour_plural: %.2f Stunden
372 label_f_hour_plural: %.2f Stunden
373 label_time_tracking: Zeiterfassung
373 label_time_tracking: Zeiterfassung
374 label_change_plural: Änderungen
374 label_change_plural: Änderungen
375 label_statistics: Statistiken
375 label_statistics: Statistiken
376 label_commits_per_month: Übertragungen pro Monat
376 label_commits_per_month: Übertragungen pro Monat
377 label_commits_per_author: Übertragungen pro Autor
377 label_commits_per_author: Übertragungen pro Autor
378 label_view_diff: Unterschiede anzeigen
378 label_view_diff: Unterschiede anzeigen
379 label_diff_inline: inline
379 label_diff_inline: inline
380 label_diff_side_by_side: nebeneinander
380 label_diff_side_by_side: nebeneinander
381 label_options: Optionen
381 label_options: Optionen
382 label_copy_workflow_from: Workflow kopieren von
382 label_copy_workflow_from: Workflow kopieren von
383 label_permissions_report: Berechtigungsübersicht
383 label_permissions_report: Berechtigungsübersicht
384 label_watched_issues: Beobachtete Tickets
384 label_watched_issues: Beobachtete Tickets
385 label_related_issues: Zugehörige Tickets
385 label_related_issues: Zugehörige Tickets
386 label_applied_status: Zugewiesener Status
386 label_applied_status: Zugewiesener Status
387 label_loading: Lade...
387 label_loading: Lade...
388 label_relation_new: Neue Beziehung
388 label_relation_new: Neue Beziehung
389 label_relation_delete: Beziehung löschen
389 label_relation_delete: Beziehung löschen
390 label_relates_to: Beziehung mit
390 label_relates_to: Beziehung mit
391 label_duplicates: Duplikat von
391 label_duplicates: Duplikat von
392 label_blocks: Blockiert
392 label_blocks: Blockiert
393 label_blocked_by: Blockiert durch
393 label_blocked_by: Blockiert durch
394 label_precedes: Vorgänger von
394 label_precedes: Vorgänger von
395 label_follows: folgt
395 label_follows: folgt
396 label_end_to_start: Ende - Anfang
396 label_end_to_start: Ende - Anfang
397 label_end_to_end: Ende - Ende
397 label_end_to_end: Ende - Ende
398 label_start_to_start: Anfang - Anfang
398 label_start_to_start: Anfang - Anfang
399 label_start_to_end: Anfang - Ende
399 label_start_to_end: Anfang - Ende
400 label_stay_logged_in: Angemeldet bleiben
400 label_stay_logged_in: Angemeldet bleiben
401 label_disabled: gesperrt
401 label_disabled: gesperrt
402 label_show_completed_versions: Abgeschlossene Versionen anzeigen
402 label_show_completed_versions: Abgeschlossene Versionen anzeigen
403 label_me: ich
403 label_me: ich
404 label_board: Forum
404 label_board: Forum
405 label_board_new: Neues Forum
405 label_board_new: Neues Forum
406 label_board_plural: Foren
406 label_board_plural: Foren
407 label_topic_plural: Themen
407 label_topic_plural: Themen
408 label_message_plural: Nachrichten
408 label_message_plural: Nachrichten
409 label_message_last: Letzte Nachricht
409 label_message_last: Letzte Nachricht
410 label_message_new: Neue Nachricht
410 label_message_new: Neue Nachricht
411 label_reply_plural: Antworten
411 label_reply_plural: Antworten
412 label_send_information: Sende Kontoinformationen zum Benutzer
412 label_send_information: Sende Kontoinformationen zum Benutzer
413 label_year: Jahr
413 label_year: Jahr
414 label_month: Monat
414 label_month: Monat
415 label_week: Woche
415 label_week: Woche
416 label_date_from: Von
416 label_date_from: Von
417 label_date_to: Bis
417 label_date_to: Bis
418 label_language_based: Sprachabhängig
418 label_language_based: Sprachabhängig
419 label_sort_by: Sortiert nach "%s"
419 label_sort_by: Sortiert nach "%s"
420 label_send_test_email: Test-E-Mail senden
420 label_send_test_email: Test-E-Mail senden
421 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
421 label_feeds_access_key_created_on: RSS-Zugriffsschlüssel vor %s erstellt
422 label_module_plural: Module
422 label_module_plural: Module
423 label_added_time_by: Von %s vor %s hinzugefügt
423 label_added_time_by: Von %s vor %s hinzugefügt
424 label_updated_time: Vor %s aktualisiert
424 label_updated_time: Vor %s aktualisiert
425 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
426
426
427 button_login: Anmelden
427 button_login: Anmelden
428 button_submit: OK
428 button_submit: OK
429 button_save: Speichern
429 button_save: Speichern
430 button_check_all: Alles auswählen
430 button_check_all: Alles auswählen
431 button_uncheck_all: Alles abwählen
431 button_uncheck_all: Alles abwählen
432 button_delete: Löschen
432 button_delete: Löschen
433 button_create: Anlegen
433 button_create: Anlegen
434 button_test: Testen
434 button_test: Testen
435 button_edit: Bearbeiten
435 button_edit: Bearbeiten
436 button_add: Hinzufügen
436 button_add: Hinzufügen
437 button_change: Wechseln
437 button_change: Wechseln
438 button_apply: Anwenden
438 button_apply: Anwenden
439 button_clear: Zurücksetzen
439 button_clear: Zurücksetzen
440 button_lock: Sperren
440 button_lock: Sperren
441 button_unlock: Entsperren
441 button_unlock: Entsperren
442 button_download: Download
442 button_download: Download
443 button_list: Liste
443 button_list: Liste
444 button_view: Siehe
444 button_view: Siehe
445 button_move: Verschieben
445 button_move: Verschieben
446 button_back: Zurück
446 button_back: Zurück
447 button_cancel: Abbrechen
447 button_cancel: Abbrechen
448 button_activate: Aktivieren
448 button_activate: Aktivieren
449 button_sort: Sortieren
449 button_sort: Sortieren
450 button_log_time: Aufwand buchen
450 button_log_time: Aufwand buchen
451 button_rollback: Auf diese Version zurücksetzen
451 button_rollback: Auf diese Version zurücksetzen
452 button_watch: Beobachten
452 button_watch: Beobachten
453 button_unwatch: Nicht beobachten
453 button_unwatch: Nicht beobachten
454 button_reply: Antworten
454 button_reply: Antworten
455 button_archive: Archivieren
455 button_archive: Archivieren
456 button_unarchive: Entarchivieren
456 button_unarchive: Entarchivieren
457 button_reset: Zurücksetzen
457 button_reset: Zurücksetzen
458 button_rename: Umbenennen
458 button_rename: Umbenennen
459
459
460 status_active: aktiv
460 status_active: aktiv
461 status_registered: angemeldet
461 status_registered: angemeldet
462 status_locked: gesperrt
462 status_locked: gesperrt
463
463
464 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
464 text_select_mail_notifications: Aktionen, für die Mailbenachrichtigung aktiviert werden soll.
465 text_regexp_info: z. B. ^[A-Z0-9]+$
465 text_regexp_info: z. B. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 heißt keine Beschränkung
466 text_min_max_length_info: 0 heißt keine Beschränkung
467 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
467 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
468 text_workflow_edit: Workflow zum Bearbeiten auswählen
468 text_workflow_edit: Workflow zum Bearbeiten auswählen
469 text_are_you_sure: Sind Sie sicher?
469 text_are_you_sure: Sind Sie sicher?
470 text_journal_changed: geändert von %s zu %s
470 text_journal_changed: geändert von %s zu %s
471 text_journal_set_to: gestellt zu %s
471 text_journal_set_to: gestellt zu %s
472 text_journal_deleted: gelöscht
472 text_journal_deleted: gelöscht
473 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
473 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
474 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
474 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
475 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
475 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
476 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
476 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
477 text_caracters_maximum: Max. %d Zeichen.
477 text_caracters_maximum: Max. %d Zeichen.
478 text_length_between: Länge zwischen %d und %d Zeichen.
478 text_length_between: Länge zwischen %d und %d Zeichen.
479 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
479 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
480 text_unallowed_characters: Nicht erlaubte Zeichen
480 text_unallowed_characters: Nicht erlaubte Zeichen
481 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
481 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
482 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
482 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
483 text_issue_added: Ticket %s wurde erstellt.
483 text_issue_added: Ticket %s wurde erstellt.
484 text_issue_updated: Ticket %s wurde aktualisiert.
484 text_issue_updated: Ticket %s wurde aktualisiert.
485 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
485 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
489
489
490 default_role_manager: Manager
490 default_role_manager: Manager
491 default_role_developper: Developer
491 default_role_developper: Developer
492 default_role_reporter: Reporter
492 default_role_reporter: Reporter
493 default_tracker_bug: Fehler
493 default_tracker_bug: Fehler
494 default_tracker_feature: Feature
494 default_tracker_feature: Feature
495 default_tracker_support: Support
495 default_tracker_support: Support
496 default_issue_status_new: Neu
496 default_issue_status_new: Neu
497 default_issue_status_assigned: Zugewiesen
497 default_issue_status_assigned: Zugewiesen
498 default_issue_status_resolved: Gelöst
498 default_issue_status_resolved: Gelöst
499 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Erledigt
500 default_issue_status_closed: Erledigt
501 default_issue_status_rejected: Abgewiesen
501 default_issue_status_rejected: Abgewiesen
502 default_doc_category_user: Benutzerdokumentation
502 default_doc_category_user: Benutzerdokumentation
503 default_doc_category_tech: Technische Dokumentation
503 default_doc_category_tech: Technische Dokumentation
504 default_priority_low: Niedrig
504 default_priority_low: Niedrig
505 default_priority_normal: Normal
505 default_priority_normal: Normal
506 default_priority_high: Hoch
506 default_priority_high: Hoch
507 default_priority_urgent: Dringend
507 default_priority_urgent: Dringend
508 default_priority_immediate: Sofort
508 default_priority_immediate: Sofort
509 default_activity_design: Design
509 default_activity_design: Design
510 default_activity_development: Development
510 default_activity_development: Development
511
511
512 enumeration_issue_priorities: Ticket-Prioritäten
512 enumeration_issue_priorities: Ticket-Prioritäten
513 enumeration_doc_categories: Dokumentenkategorien
513 enumeration_doc_categories: Dokumentenkategorien
514 enumeration_activities: Aktivitäten (Zeiterfassung)
514 enumeration_activities: Aktivitäten (Zeiterfassung)
515 label_file_plural: Files
515 label_file_plural: Files
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Columns
517 field_column_names: Columns
518 label_default_columns: Default columns
518 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
523 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
525 label_theme: Theme
526 label_default: Default
526 label_default: Default
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
35 activerecord_error_greater_than_start_date: must be greater than start date
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Yes'
46 general_text_Yes: 'Yes'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'yes'
48 general_text_yes: 'yes'
49 general_lang_name: 'English'
49 general_lang_name: 'English'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
53 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Account was successfully updated.
56 notice_account_updated: Account was successfully updated.
57 notice_account_invalid_creditentials: Invalid user or password
57 notice_account_invalid_creditentials: Invalid user or password
58 notice_account_password_updated: Password was successfully updated.
58 notice_account_password_updated: Password was successfully updated.
59 notice_account_wrong_password: Wrong password
59 notice_account_wrong_password: Wrong password
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
60 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
61 notice_account_unknown_email: Unknown user.
61 notice_account_unknown_email: Unknown user.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
63 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
64 notice_account_activated: Your account has been activated. You can now log in.
64 notice_account_activated: Your account has been activated. You can now log in.
65 notice_successful_create: Successful creation.
65 notice_successful_create: Successful creation.
66 notice_successful_update: Successful update.
66 notice_successful_update: Successful update.
67 notice_successful_delete: Successful deletion.
67 notice_successful_delete: Successful deletion.
68 notice_successful_connection: Successful connection.
68 notice_successful_connection: Successful connection.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
69 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
70 notice_locking_conflict: Data have been updated by another user.
70 notice_locking_conflict: Data have been updated by another user.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
71 notice_scm_error: Entry and/or revision doesn't exist in the repository.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
78
78
79 mail_subject_lost_password: Your Redmine password
79 mail_subject_lost_password: Your Redmine password
80 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
80 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
81 mail_subject_register: Redmine account activation
81 mail_subject_register: Redmine account activation
82 mail_body_register: 'To activate your Redmine account, click on the following link:'
82 mail_body_register: 'To activate your Redmine account, click on the following link:'
83
83
84 gui_validation_error: 1 error
84 gui_validation_error: 1 error
85 gui_validation_error_plural: %d errors
85 gui_validation_error_plural: %d errors
86
86
87 field_name: Name
87 field_name: Name
88 field_description: Description
88 field_description: Description
89 field_summary: Summary
89 field_summary: Summary
90 field_is_required: Required
90 field_is_required: Required
91 field_firstname: Firstname
91 field_firstname: Firstname
92 field_lastname: Lastname
92 field_lastname: Lastname
93 field_mail: Email
93 field_mail: Email
94 field_filename: File
94 field_filename: File
95 field_filesize: Size
95 field_filesize: Size
96 field_downloads: Downloads
96 field_downloads: Downloads
97 field_author: Author
97 field_author: Author
98 field_created_on: Created
98 field_created_on: Created
99 field_updated_on: Updated
99 field_updated_on: Updated
100 field_field_format: Format
100 field_field_format: Format
101 field_is_for_all: For all projects
101 field_is_for_all: For all projects
102 field_possible_values: Possible values
102 field_possible_values: Possible values
103 field_regexp: Regular expression
103 field_regexp: Regular expression
104 field_min_length: Minimum length
104 field_min_length: Minimum length
105 field_max_length: Maximum length
105 field_max_length: Maximum length
106 field_value: Value
106 field_value: Value
107 field_category: Category
107 field_category: Category
108 field_title: Title
108 field_title: Title
109 field_project: Project
109 field_project: Project
110 field_issue: Issue
110 field_issue: Issue
111 field_status: Status
111 field_status: Status
112 field_notes: Notes
112 field_notes: Notes
113 field_is_closed: Issue closed
113 field_is_closed: Issue closed
114 field_is_default: Default value
114 field_is_default: Default value
115 field_html_color: Color
115 field_html_color: Color
116 field_tracker: Tracker
116 field_tracker: Tracker
117 field_subject: Subject
117 field_subject: Subject
118 field_due_date: Due date
118 field_due_date: Due date
119 field_assigned_to: Assigned to
119 field_assigned_to: Assigned to
120 field_priority: Priority
120 field_priority: Priority
121 field_fixed_version: Fixed version
121 field_fixed_version: Fixed version
122 field_user: User
122 field_user: User
123 field_role: Role
123 field_role: Role
124 field_homepage: Homepage
124 field_homepage: Homepage
125 field_is_public: Public
125 field_is_public: Public
126 field_parent: Subproject of
126 field_parent: Subproject of
127 field_is_in_chlog: Issues displayed in changelog
127 field_is_in_chlog: Issues displayed in changelog
128 field_is_in_roadmap: Issues displayed in roadmap
128 field_is_in_roadmap: Issues displayed in roadmap
129 field_login: Login
129 field_login: Login
130 field_mail_notification: Mail notifications
130 field_mail_notification: Email notifications
131 field_admin: Administrator
131 field_admin: Administrator
132 field_last_login_on: Last connection
132 field_last_login_on: Last connection
133 field_language: Language
133 field_language: Language
134 field_effective_date: Date
134 field_effective_date: Date
135 field_password: Password
135 field_password: Password
136 field_new_password: New password
136 field_new_password: New password
137 field_password_confirmation: Confirmation
137 field_password_confirmation: Confirmation
138 field_version: Version
138 field_version: Version
139 field_type: Type
139 field_type: Type
140 field_host: Host
140 field_host: Host
141 field_port: Port
141 field_port: Port
142 field_account: Account
142 field_account: Account
143 field_base_dn: Base DN
143 field_base_dn: Base DN
144 field_attr_login: Login attribute
144 field_attr_login: Login attribute
145 field_attr_firstname: Firstname attribute
145 field_attr_firstname: Firstname attribute
146 field_attr_lastname: Lastname attribute
146 field_attr_lastname: Lastname attribute
147 field_attr_mail: Email attribute
147 field_attr_mail: Email attribute
148 field_onthefly: On-the-fly user creation
148 field_onthefly: On-the-fly user creation
149 field_start_date: Start
149 field_start_date: Start
150 field_done_ratio: %% Done
150 field_done_ratio: %% Done
151 field_auth_source: Authentication mode
151 field_auth_source: Authentication mode
152 field_hide_mail: Hide my email address
152 field_hide_mail: Hide my email address
153 field_comments: Comment
153 field_comments: Comment
154 field_url: URL
154 field_url: URL
155 field_start_page: Start page
155 field_start_page: Start page
156 field_subproject: Subproject
156 field_subproject: Subproject
157 field_hours: Hours
157 field_hours: Hours
158 field_activity: Activity
158 field_activity: Activity
159 field_spent_on: Date
159 field_spent_on: Date
160 field_identifier: Identifier
160 field_identifier: Identifier
161 field_is_filter: Used as a filter
161 field_is_filter: Used as a filter
162 field_issue_to_id: Related issue
162 field_issue_to_id: Related issue
163 field_delay: Delay
163 field_delay: Delay
164 field_assignable: Issues can be assigned to this role
164 field_assignable: Issues can be assigned to this role
165 field_redirect_existing_links: Redirect existing links
165 field_redirect_existing_links: Redirect existing links
166 field_estimated_hours: Estimated time
166 field_estimated_hours: Estimated time
167 field_column_names: Columns
167 field_column_names: Columns
168
168
169 setting_app_title: Application title
169 setting_app_title: Application title
170 setting_app_subtitle: Application subtitle
170 setting_app_subtitle: Application subtitle
171 setting_welcome_text: Welcome text
171 setting_welcome_text: Welcome text
172 setting_default_language: Default language
172 setting_default_language: Default language
173 setting_login_required: Authent. required
173 setting_login_required: Authent. required
174 setting_self_registration: Self-registration enabled
174 setting_self_registration: Self-registration enabled
175 setting_attachment_max_size: Attachment max. size
175 setting_attachment_max_size: Attachment max. size
176 setting_issues_export_limit: Issues export limit
176 setting_issues_export_limit: Issues export limit
177 setting_mail_from: Emission mail address
177 setting_mail_from: Emission email address
178 setting_host_name: Host name
178 setting_host_name: Host name
179 setting_text_formatting: Text formatting
179 setting_text_formatting: Text formatting
180 setting_wiki_compression: Wiki history compression
180 setting_wiki_compression: Wiki history compression
181 setting_feeds_limit: Feed content limit
181 setting_feeds_limit: Feed content limit
182 setting_autofetch_changesets: Autofetch commits
182 setting_autofetch_changesets: Autofetch commits
183 setting_sys_api_enabled: Enable WS for repository management
183 setting_sys_api_enabled: Enable WS for repository management
184 setting_commit_ref_keywords: Referencing keywords
184 setting_commit_ref_keywords: Referencing keywords
185 setting_commit_fix_keywords: Fixing keywords
185 setting_commit_fix_keywords: Fixing keywords
186 setting_autologin: Autologin
186 setting_autologin: Autologin
187 setting_date_format: Date format
187 setting_date_format: Date format
188 setting_cross_project_issue_relations: Allow cross-project issue relations
188 setting_cross_project_issue_relations: Allow cross-project issue relations
189 setting_issue_list_default_columns: Default columns displayed on the issue list
189 setting_issue_list_default_columns: Default columns displayed on the issue list
190 setting_repositories_encodings: Repositories encodings
190 setting_repositories_encodings: Repositories encodings
191
191
192 label_user: User
192 label_user: User
193 label_user_plural: Users
193 label_user_plural: Users
194 label_user_new: New user
194 label_user_new: New user
195 label_project: Project
195 label_project: Project
196 label_project_new: New project
196 label_project_new: New project
197 label_project_plural: Projects
197 label_project_plural: Projects
198 label_project_all: All Projects
198 label_project_all: All Projects
199 label_project_latest: Latest projects
199 label_project_latest: Latest projects
200 label_issue: Issue
200 label_issue: Issue
201 label_issue_new: New issue
201 label_issue_new: New issue
202 label_issue_plural: Issues
202 label_issue_plural: Issues
203 label_issue_view_all: View all issues
203 label_issue_view_all: View all issues
204 label_document: Document
204 label_document: Document
205 label_document_new: New document
205 label_document_new: New document
206 label_document_plural: Documents
206 label_document_plural: Documents
207 label_role: Role
207 label_role: Role
208 label_role_plural: Roles
208 label_role_plural: Roles
209 label_role_new: New role
209 label_role_new: New role
210 label_role_and_permissions: Roles and permissions
210 label_role_and_permissions: Roles and permissions
211 label_member: Member
211 label_member: Member
212 label_member_new: New member
212 label_member_new: New member
213 label_member_plural: Members
213 label_member_plural: Members
214 label_tracker: Tracker
214 label_tracker: Tracker
215 label_tracker_plural: Trackers
215 label_tracker_plural: Trackers
216 label_tracker_new: New tracker
216 label_tracker_new: New tracker
217 label_workflow: Workflow
217 label_workflow: Workflow
218 label_issue_status: Issue status
218 label_issue_status: Issue status
219 label_issue_status_plural: Issue statuses
219 label_issue_status_plural: Issue statuses
220 label_issue_status_new: New status
220 label_issue_status_new: New status
221 label_issue_category: Issue category
221 label_issue_category: Issue category
222 label_issue_category_plural: Issue categories
222 label_issue_category_plural: Issue categories
223 label_issue_category_new: New category
223 label_issue_category_new: New category
224 label_custom_field: Custom field
224 label_custom_field: Custom field
225 label_custom_field_plural: Custom fields
225 label_custom_field_plural: Custom fields
226 label_custom_field_new: New custom field
226 label_custom_field_new: New custom field
227 label_enumerations: Enumerations
227 label_enumerations: Enumerations
228 label_enumeration_new: New value
228 label_enumeration_new: New value
229 label_information: Information
229 label_information: Information
230 label_information_plural: Information
230 label_information_plural: Information
231 label_please_login: Please login
231 label_please_login: Please login
232 label_register: Register
232 label_register: Register
233 label_password_lost: Lost password
233 label_password_lost: Lost password
234 label_home: Home
234 label_home: Home
235 label_my_page: My page
235 label_my_page: My page
236 label_my_account: My account
236 label_my_account: My account
237 label_my_projects: My projects
237 label_my_projects: My projects
238 label_administration: Administration
238 label_administration: Administration
239 label_login: Sign in
239 label_login: Sign in
240 label_logout: Sign out
240 label_logout: Sign out
241 label_help: Help
241 label_help: Help
242 label_reported_issues: Reported issues
242 label_reported_issues: Reported issues
243 label_assigned_to_me_issues: Issues assigned to me
243 label_assigned_to_me_issues: Issues assigned to me
244 label_last_login: Last connection
244 label_last_login: Last connection
245 label_last_updates: Last updated
245 label_last_updates: Last updated
246 label_last_updates_plural: %d last updated
246 label_last_updates_plural: %d last updated
247 label_registered_on: Registered on
247 label_registered_on: Registered on
248 label_activity: Activity
248 label_activity: Activity
249 label_new: New
249 label_new: New
250 label_logged_as: Logged as
250 label_logged_as: Logged as
251 label_environment: Environment
251 label_environment: Environment
252 label_authentication: Authentication
252 label_authentication: Authentication
253 label_auth_source: Authentication mode
253 label_auth_source: Authentication mode
254 label_auth_source_new: New authentication mode
254 label_auth_source_new: New authentication mode
255 label_auth_source_plural: Authentication modes
255 label_auth_source_plural: Authentication modes
256 label_subproject_plural: Subprojects
256 label_subproject_plural: Subprojects
257 label_min_max_length: Min - Max length
257 label_min_max_length: Min - Max length
258 label_list: List
258 label_list: List
259 label_date: Date
259 label_date: Date
260 label_integer: Integer
260 label_integer: Integer
261 label_boolean: Boolean
261 label_boolean: Boolean
262 label_string: Text
262 label_string: Text
263 label_text: Long text
263 label_text: Long text
264 label_attribute: Attribute
264 label_attribute: Attribute
265 label_attribute_plural: Attributes
265 label_attribute_plural: Attributes
266 label_download: %d Download
266 label_download: %d Download
267 label_download_plural: %d Downloads
267 label_download_plural: %d Downloads
268 label_no_data: No data to display
268 label_no_data: No data to display
269 label_change_status: Change status
269 label_change_status: Change status
270 label_history: History
270 label_history: History
271 label_attachment: File
271 label_attachment: File
272 label_attachment_new: New file
272 label_attachment_new: New file
273 label_attachment_delete: Delete file
273 label_attachment_delete: Delete file
274 label_attachment_plural: Files
274 label_attachment_plural: Files
275 label_report: Report
275 label_report: Report
276 label_report_plural: Reports
276 label_report_plural: Reports
277 label_news: News
277 label_news: News
278 label_news_new: Add news
278 label_news_new: Add news
279 label_news_plural: News
279 label_news_plural: News
280 label_news_latest: Latest news
280 label_news_latest: Latest news
281 label_news_view_all: View all news
281 label_news_view_all: View all news
282 label_change_log: Change log
282 label_change_log: Change log
283 label_settings: Settings
283 label_settings: Settings
284 label_overview: Overview
284 label_overview: Overview
285 label_version: Version
285 label_version: Version
286 label_version_new: New version
286 label_version_new: New version
287 label_version_plural: Versions
287 label_version_plural: Versions
288 label_confirmation: Confirmation
288 label_confirmation: Confirmation
289 label_export_to: Export to
289 label_export_to: Export to
290 label_read: Read...
290 label_read: Read...
291 label_public_projects: Public projects
291 label_public_projects: Public projects
292 label_open_issues: open
292 label_open_issues: open
293 label_open_issues_plural: open
293 label_open_issues_plural: open
294 label_closed_issues: closed
294 label_closed_issues: closed
295 label_closed_issues_plural: closed
295 label_closed_issues_plural: closed
296 label_total: Total
296 label_total: Total
297 label_permissions: Permissions
297 label_permissions: Permissions
298 label_current_status: Current status
298 label_current_status: Current status
299 label_new_statuses_allowed: New statuses allowed
299 label_new_statuses_allowed: New statuses allowed
300 label_all: all
300 label_all: all
301 label_none: none
301 label_none: none
302 label_nobody: nobody
302 label_nobody: nobody
303 label_next: Next
303 label_next: Next
304 label_previous: Previous
304 label_previous: Previous
305 label_used_by: Used by
305 label_used_by: Used by
306 label_details: Details
306 label_details: Details
307 label_add_note: Add a note
307 label_add_note: Add a note
308 label_per_page: Per page
308 label_per_page: Per page
309 label_calendar: Calendar
309 label_calendar: Calendar
310 label_months_from: months from
310 label_months_from: months from
311 label_gantt: Gantt
311 label_gantt: Gantt
312 label_internal: Internal
312 label_internal: Internal
313 label_last_changes: last %d changes
313 label_last_changes: last %d changes
314 label_change_view_all: View all changes
314 label_change_view_all: View all changes
315 label_personalize_page: Personalize this page
315 label_personalize_page: Personalize this page
316 label_comment: Comment
316 label_comment: Comment
317 label_comment_plural: Comments
317 label_comment_plural: Comments
318 label_comment_add: Add a comment
318 label_comment_add: Add a comment
319 label_comment_added: Comment added
319 label_comment_added: Comment added
320 label_comment_delete: Delete comments
320 label_comment_delete: Delete comments
321 label_query: Custom query
321 label_query: Custom query
322 label_query_plural: Custom queries
322 label_query_plural: Custom queries
323 label_query_new: New query
323 label_query_new: New query
324 label_filter_add: Add filter
324 label_filter_add: Add filter
325 label_filter_plural: Filters
325 label_filter_plural: Filters
326 label_equals: is
326 label_equals: is
327 label_not_equals: is not
327 label_not_equals: is not
328 label_in_less_than: in less than
328 label_in_less_than: in less than
329 label_in_more_than: in more than
329 label_in_more_than: in more than
330 label_in: in
330 label_in: in
331 label_today: today
331 label_today: today
332 label_this_week: this week
332 label_this_week: this week
333 label_less_than_ago: less than days ago
333 label_less_than_ago: less than days ago
334 label_more_than_ago: more than days ago
334 label_more_than_ago: more than days ago
335 label_ago: days ago
335 label_ago: days ago
336 label_contains: contains
336 label_contains: contains
337 label_not_contains: doesn't contain
337 label_not_contains: doesn't contain
338 label_day_plural: days
338 label_day_plural: days
339 label_repository: Repository
339 label_repository: Repository
340 label_browse: Browse
340 label_browse: Browse
341 label_modification: %d change
341 label_modification: %d change
342 label_modification_plural: %d changes
342 label_modification_plural: %d changes
343 label_revision: Revision
343 label_revision: Revision
344 label_revision_plural: Revisions
344 label_revision_plural: Revisions
345 label_added: added
345 label_added: added
346 label_modified: modified
346 label_modified: modified
347 label_deleted: deleted
347 label_deleted: deleted
348 label_latest_revision: Latest revision
348 label_latest_revision: Latest revision
349 label_latest_revision_plural: Latest revisions
349 label_latest_revision_plural: Latest revisions
350 label_view_revisions: View revisions
350 label_view_revisions: View revisions
351 label_max_size: Maximum size
351 label_max_size: Maximum size
352 label_on: 'on'
352 label_on: 'on'
353 label_sort_highest: Move to top
353 label_sort_highest: Move to top
354 label_sort_higher: Move up
354 label_sort_higher: Move up
355 label_sort_lower: Move down
355 label_sort_lower: Move down
356 label_sort_lowest: Move to bottom
356 label_sort_lowest: Move to bottom
357 label_roadmap: Roadmap
357 label_roadmap: Roadmap
358 label_roadmap_due_in: Due in
358 label_roadmap_due_in: Due in
359 label_roadmap_overdue: %s late
359 label_roadmap_overdue: %s late
360 label_roadmap_no_issues: No issues for this version
360 label_roadmap_no_issues: No issues for this version
361 label_search: Search
361 label_search: Search
362 label_result_plural: Results
362 label_result_plural: Results
363 label_all_words: All words
363 label_all_words: All words
364 label_wiki: Wiki
364 label_wiki: Wiki
365 label_wiki_edit: Wiki edit
365 label_wiki_edit: Wiki edit
366 label_wiki_edit_plural: Wiki edits
366 label_wiki_edit_plural: Wiki edits
367 label_wiki_page: Wiki page
367 label_wiki_page: Wiki page
368 label_wiki_page_plural: Wiki pages
368 label_wiki_page_plural: Wiki pages
369 label_index_by_title: Index by title
369 label_index_by_title: Index by title
370 label_index_by_date: Index by date
370 label_index_by_date: Index by date
371 label_current_version: Current version
371 label_current_version: Current version
372 label_preview: Preview
372 label_preview: Preview
373 label_feed_plural: Feeds
373 label_feed_plural: Feeds
374 label_changes_details: Details of all changes
374 label_changes_details: Details of all changes
375 label_issue_tracking: Issue tracking
375 label_issue_tracking: Issue tracking
376 label_spent_time: Spent time
376 label_spent_time: Spent time
377 label_f_hour: %.2f hour
377 label_f_hour: %.2f hour
378 label_f_hour_plural: %.2f hours
378 label_f_hour_plural: %.2f hours
379 label_time_tracking: Time tracking
379 label_time_tracking: Time tracking
380 label_change_plural: Changes
380 label_change_plural: Changes
381 label_statistics: Statistics
381 label_statistics: Statistics
382 label_commits_per_month: Commits per month
382 label_commits_per_month: Commits per month
383 label_commits_per_author: Commits per author
383 label_commits_per_author: Commits per author
384 label_view_diff: View differences
384 label_view_diff: View differences
385 label_diff_inline: inline
385 label_diff_inline: inline
386 label_diff_side_by_side: side by side
386 label_diff_side_by_side: side by side
387 label_options: Options
387 label_options: Options
388 label_copy_workflow_from: Copy workflow from
388 label_copy_workflow_from: Copy workflow from
389 label_permissions_report: Permissions report
389 label_permissions_report: Permissions report
390 label_watched_issues: Watched issues
390 label_watched_issues: Watched issues
391 label_related_issues: Related issues
391 label_related_issues: Related issues
392 label_applied_status: Applied status
392 label_applied_status: Applied status
393 label_loading: Loading...
393 label_loading: Loading...
394 label_relation_new: New relation
394 label_relation_new: New relation
395 label_relation_delete: Delete relation
395 label_relation_delete: Delete relation
396 label_relates_to: related to
396 label_relates_to: related to
397 label_duplicates: duplicates
397 label_duplicates: duplicates
398 label_blocks: blocks
398 label_blocks: blocks
399 label_blocked_by: blocked by
399 label_blocked_by: blocked by
400 label_precedes: precedes
400 label_precedes: precedes
401 label_follows: follows
401 label_follows: follows
402 label_end_to_start: end to start
402 label_end_to_start: end to start
403 label_end_to_end: end to end
403 label_end_to_end: end to end
404 label_start_to_start: start to start
404 label_start_to_start: start to start
405 label_start_to_end: start to end
405 label_start_to_end: start to end
406 label_stay_logged_in: Stay logged in
406 label_stay_logged_in: Stay logged in
407 label_disabled: disabled
407 label_disabled: disabled
408 label_show_completed_versions: Show completed versions
408 label_show_completed_versions: Show completed versions
409 label_me: me
409 label_me: me
410 label_board: Forum
410 label_board: Forum
411 label_board_new: New forum
411 label_board_new: New forum
412 label_board_plural: Forums
412 label_board_plural: Forums
413 label_topic_plural: Topics
413 label_topic_plural: Topics
414 label_message_plural: Messages
414 label_message_plural: Messages
415 label_message_last: Last message
415 label_message_last: Last message
416 label_message_new: New message
416 label_message_new: New message
417 label_reply_plural: Replies
417 label_reply_plural: Replies
418 label_send_information: Send account information to the user
418 label_send_information: Send account information to the user
419 label_year: Year
419 label_year: Year
420 label_month: Month
420 label_month: Month
421 label_week: Week
421 label_week: Week
422 label_date_from: From
422 label_date_from: From
423 label_date_to: To
423 label_date_to: To
424 label_language_based: Language based
424 label_language_based: Language based
425 label_sort_by: Sort by "%s"
425 label_sort_by: Sort by "%s"
426 label_send_test_email: Send a test email
426 label_send_test_email: Send a test email
427 label_feeds_access_key_created_on: RSS access key created %s ago
427 label_feeds_access_key_created_on: RSS access key created %s ago
428 label_module_plural: Modules
428 label_module_plural: Modules
429 label_added_time_by: Added by %s %s ago
429 label_added_time_by: Added by %s %s ago
430 label_updated_time: Updated %s ago
430 label_updated_time: Updated %s ago
431 label_jump_to_a_project: Jump to a project...
431 label_jump_to_a_project: Jump to a project...
432 label_file_plural: Files
432 label_file_plural: Files
433 label_changeset_plural: Changesets
433 label_changeset_plural: Changesets
434 label_default_columns: Default columns
434 label_default_columns: Default columns
435 label_no_change_option: (No change)
435 label_no_change_option: (No change)
436 label_bulk_edit_selected_issues: Bulk edit selected issues
436 label_bulk_edit_selected_issues: Bulk edit selected issues
437 label_theme: Theme
437 label_theme: Theme
438 label_default: Default
438 label_default: Default
439 label_search_titles_only: Search titles only
439 label_search_titles_only: Search titles only
440 label_user_mail_option_all: "For any event on all my projects"
441 label_user_mail_option_selected: "For any event on the selected projects only..."
442 label_user_mail_option_none: "Only for things I watch or I'm involved in"
440
443
441 button_login: Login
444 button_login: Login
442 button_submit: Submit
445 button_submit: Submit
443 button_save: Save
446 button_save: Save
444 button_check_all: Check all
447 button_check_all: Check all
445 button_uncheck_all: Uncheck all
448 button_uncheck_all: Uncheck all
446 button_delete: Delete
449 button_delete: Delete
447 button_create: Create
450 button_create: Create
448 button_test: Test
451 button_test: Test
449 button_edit: Edit
452 button_edit: Edit
450 button_add: Add
453 button_add: Add
451 button_change: Change
454 button_change: Change
452 button_apply: Apply
455 button_apply: Apply
453 button_clear: Clear
456 button_clear: Clear
454 button_lock: Lock
457 button_lock: Lock
455 button_unlock: Unlock
458 button_unlock: Unlock
456 button_download: Download
459 button_download: Download
457 button_list: List
460 button_list: List
458 button_view: View
461 button_view: View
459 button_move: Move
462 button_move: Move
460 button_back: Back
463 button_back: Back
461 button_cancel: Cancel
464 button_cancel: Cancel
462 button_activate: Activate
465 button_activate: Activate
463 button_sort: Sort
466 button_sort: Sort
464 button_log_time: Log time
467 button_log_time: Log time
465 button_rollback: Rollback to this version
468 button_rollback: Rollback to this version
466 button_watch: Watch
469 button_watch: Watch
467 button_unwatch: Unwatch
470 button_unwatch: Unwatch
468 button_reply: Reply
471 button_reply: Reply
469 button_archive: Archive
472 button_archive: Archive
470 button_unarchive: Unarchive
473 button_unarchive: Unarchive
471 button_reset: Reset
474 button_reset: Reset
472 button_rename: Rename
475 button_rename: Rename
476 button_change_password: Change password
473
477
474 status_active: active
478 status_active: active
475 status_registered: registered
479 status_registered: registered
476 status_locked: locked
480 status_locked: locked
477
481
478 text_select_mail_notifications: Select actions for which mail notifications should be sent.
482 text_select_mail_notifications: Select actions for which email notifications should be sent.
479 text_regexp_info: eg. ^[A-Z0-9]+$
483 text_regexp_info: eg. ^[A-Z0-9]+$
480 text_min_max_length_info: 0 means no restriction
484 text_min_max_length_info: 0 means no restriction
481 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
485 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
482 text_workflow_edit: Select a role and a tracker to edit the workflow
486 text_workflow_edit: Select a role and a tracker to edit the workflow
483 text_are_you_sure: Are you sure ?
487 text_are_you_sure: Are you sure ?
484 text_journal_changed: changed from %s to %s
488 text_journal_changed: changed from %s to %s
485 text_journal_set_to: set to %s
489 text_journal_set_to: set to %s
486 text_journal_deleted: deleted
490 text_journal_deleted: deleted
487 text_tip_task_begin_day: task beginning this day
491 text_tip_task_begin_day: task beginning this day
488 text_tip_task_end_day: task ending this day
492 text_tip_task_end_day: task ending this day
489 text_tip_task_begin_end_day: task beginning and ending this day
493 text_tip_task_begin_end_day: task beginning and ending this day
490 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
494 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
491 text_caracters_maximum: %d characters maximum.
495 text_caracters_maximum: %d characters maximum.
492 text_length_between: Length between %d and %d characters.
496 text_length_between: Length between %d and %d characters.
493 text_tracker_no_workflow: No workflow defined for this tracker
497 text_tracker_no_workflow: No workflow defined for this tracker
494 text_unallowed_characters: Unallowed characters
498 text_unallowed_characters: Unallowed characters
495 text_comma_separated: Multiple values allowed (comma separated).
499 text_comma_separated: Multiple values allowed (comma separated).
496 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
500 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
497 text_issue_added: Issue %s has been reported.
501 text_issue_added: Issue %s has been reported.
498 text_issue_updated: Issue %s has been updated.
502 text_issue_updated: Issue %s has been updated.
499 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
503 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
500 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
504 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
501 text_issue_category_destroy_assignments: Remove category assignments
505 text_issue_category_destroy_assignments: Remove category assignments
502 text_issue_category_reassign_to: Reassign issues to this category
506 text_issue_category_reassign_to: Reassign issues to this category
507 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
503
508
504 default_role_manager: Manager
509 default_role_manager: Manager
505 default_role_developper: Developer
510 default_role_developper: Developer
506 default_role_reporter: Reporter
511 default_role_reporter: Reporter
507 default_tracker_bug: Bug
512 default_tracker_bug: Bug
508 default_tracker_feature: Feature
513 default_tracker_feature: Feature
509 default_tracker_support: Support
514 default_tracker_support: Support
510 default_issue_status_new: New
515 default_issue_status_new: New
511 default_issue_status_assigned: Assigned
516 default_issue_status_assigned: Assigned
512 default_issue_status_resolved: Resolved
517 default_issue_status_resolved: Resolved
513 default_issue_status_feedback: Feedback
518 default_issue_status_feedback: Feedback
514 default_issue_status_closed: Closed
519 default_issue_status_closed: Closed
515 default_issue_status_rejected: Rejected
520 default_issue_status_rejected: Rejected
516 default_doc_category_user: User documentation
521 default_doc_category_user: User documentation
517 default_doc_category_tech: Technical documentation
522 default_doc_category_tech: Technical documentation
518 default_priority_low: Low
523 default_priority_low: Low
519 default_priority_normal: Normal
524 default_priority_normal: Normal
520 default_priority_high: High
525 default_priority_high: High
521 default_priority_urgent: Urgent
526 default_priority_urgent: Urgent
522 default_priority_immediate: Immediate
527 default_priority_immediate: Immediate
523 default_activity_design: Design
528 default_activity_design: Design
524 default_activity_development: Development
529 default_activity_development: Development
525
530
526 enumeration_issue_priorities: Issue priorities
531 enumeration_issue_priorities: Issue priorities
527 enumeration_doc_categories: Document categories
532 enumeration_doc_categories: Document categories
528 enumeration_activities: Activities (time tracking)
533 enumeration_activities: Activities (time tracking)
@@ -1,531 +1,536
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
10 actionview_datehelper_time_in_words_hour_about: una hora aproximadamente
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadamente %d horas
12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
12 actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: medio minuto
14 actionview_datehelper_time_in_words_minute_half: medio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de un segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Por favor selecciona
20 actionview_instancetag_blank_option: Por favor selecciona
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: es demasiado largo
29 activerecord_error_too_long: es demasiado largo
30 activerecord_error_too_short: es demasiado corto
30 activerecord_error_too_short: es demasiado corto
31 activerecord_error_wrong_length: la longitud es incorrecta
31 activerecord_error_wrong_length: la longitud es incorrecta
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: no es un número
33 activerecord_error_not_a_number: no es un número
34 activerecord_error_not_a_date: no es una fecha válida
34 activerecord_error_not_a_date: no es una fecha válida
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 activerecord_error_not_same_project: no pertenece al mismo proyecto
36 activerecord_error_not_same_project: no pertenece al mismo proyecto
37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
37 activerecord_error_circular_dependency: Esta relación podría crear una dependencia anidada
38
38
39 general_fmt_age: %d año
39 general_fmt_age: %d año
40 general_fmt_age_plural: %d años
40 general_fmt_age_plural: %d años
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Sí'
46 general_text_Yes: 'Sí'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'sí'
48 general_text_yes: 'sí'
49 general_lang_name: 'Español'
49 general_lang_name: 'Español'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-15
51 general_csv_encoding: ISO-8859-15
52 general_pdf_encoding: ISO-8859-15
52 general_pdf_encoding: ISO-8859-15
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
53 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Cuenta creada correctamente.
56 notice_account_updated: Cuenta creada correctamente.
57 notice_account_invalid_creditentials: Inválido usuario o contraseña
57 notice_account_invalid_creditentials: Inválido usuario o contraseña
58 notice_account_password_updated: Contraseña modificada correctamente.
58 notice_account_password_updated: Contraseña modificada correctamente.
59 notice_account_wrong_password: Contraseña incorrecta
59 notice_account_wrong_password: Contraseña incorrecta
60 notice_account_register_done: Cuenta creada correctamente.
60 notice_account_register_done: Cuenta creada correctamente.
61 notice_account_unknown_email: Usuario desconocido.
61 notice_account_unknown_email: Usuario desconocido.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
62 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
63 notice_account_lost_email_sent: Un correo con instrucciones para elegir una nueva contraseña le ha sido enviado.
63 notice_account_lost_email_sent: Un correo con instrucciones para elegir una nueva contraseña le ha sido enviado.
64 notice_account_activated: Tu cuenta ha sido activada. Ahora se encuentra conectado.
64 notice_account_activated: Tu cuenta ha sido activada. Ahora se encuentra conectado.
65 notice_successful_create: Creación correcta.
65 notice_successful_create: Creación correcta.
66 notice_successful_update: Modificación correcta.
66 notice_successful_update: Modificación correcta.
67 notice_successful_delete: Borrado correcto.
67 notice_successful_delete: Borrado correcto.
68 notice_successful_connection: Conexión correcta.
68 notice_successful_connection: Conexión correcta.
69 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
69 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
70 notice_locking_conflict: Los datos han sido modificados por otro usuario.
71 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
71 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
72 notice_not_authorized: No tiene autorización para acceder a esta página.
72 notice_not_authorized: No tiene autorización para acceder a esta página.
73
73
74 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
74 mail_subject_lost_password: Tu contraseña del CIYAT - Gestor de Solicitudes
75 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
75 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
76 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
76 mail_subject_register: Activación de la cuenta del CIYAT - Gestor de Solicitudes
77 mail_body_register: 'To activate your Redmine account, click on the following link:'
77 mail_body_register: 'To activate your Redmine account, click on the following link:'
78
78
79 gui_validation_error: 1 error
79 gui_validation_error: 1 error
80 gui_validation_error_plural: %d errores
80 gui_validation_error_plural: %d errores
81
81
82 field_name: Nombre
82 field_name: Nombre
83 field_description: Descripción
83 field_description: Descripción
84 field_summary: Resumen
84 field_summary: Resumen
85 field_is_required: Obligatorio
85 field_is_required: Obligatorio
86 field_firstname: Nombre
86 field_firstname: Nombre
87 field_lastname: Apellido
87 field_lastname: Apellido
88 field_mail: Email
88 field_mail: Email
89 field_filename: Fichero
89 field_filename: Fichero
90 field_filesize: Tamaño
90 field_filesize: Tamaño
91 field_downloads: Descargas
91 field_downloads: Descargas
92 field_author: Autor
92 field_author: Autor
93 field_created_on: Creado
93 field_created_on: Creado
94 field_updated_on: Actualizado
94 field_updated_on: Actualizado
95 field_field_format: Formato
95 field_field_format: Formato
96 field_is_for_all: Para todos los proyectos
96 field_is_for_all: Para todos los proyectos
97 field_possible_values: Valores posibles
97 field_possible_values: Valores posibles
98 field_regexp: Expresión regular
98 field_regexp: Expresión regular
99 field_min_length: Longitud mínima
99 field_min_length: Longitud mínima
100 field_max_length: Longitud máxima
100 field_max_length: Longitud máxima
101 field_value: Valor
101 field_value: Valor
102 field_category: Categoría
102 field_category: Categoría
103 field_title: Título
103 field_title: Título
104 field_project: Proyecto
104 field_project: Proyecto
105 field_issue: Petición
105 field_issue: Petición
106 field_status: Estado
106 field_status: Estado
107 field_notes: Notas
107 field_notes: Notas
108 field_is_closed: Petición resuelta
108 field_is_closed: Petición resuelta
109 field_is_default: Estado por defecto
109 field_is_default: Estado por defecto
110 field_html_color: Color
110 field_html_color: Color
111 field_tracker: Tracker
111 field_tracker: Tracker
112 field_subject: Tema
112 field_subject: Tema
113 field_due_date: Fecha debida
113 field_due_date: Fecha debida
114 field_assigned_to: Asignado a
114 field_assigned_to: Asignado a
115 field_priority: Prioridad
115 field_priority: Prioridad
116 field_fixed_version: Versión corregida
116 field_fixed_version: Versión corregida
117 field_user: Usuario
117 field_user: Usuario
118 field_role: Perfil
118 field_role: Perfil
119 field_homepage: Sitio web
119 field_homepage: Sitio web
120 field_is_public: Público
120 field_is_public: Público
121 field_parent: Proyecto secundario de
121 field_parent: Proyecto secundario de
122 field_is_in_chlog: Consultar las peticiones en el histórico
122 field_is_in_chlog: Consultar las peticiones en el histórico
123 field_is_in_roadmap: Consultar las peticiones en el roadmap
123 field_is_in_roadmap: Consultar las peticiones en el roadmap
124 field_login: Identificador
124 field_login: Identificador
125 field_mail_notification: Notificación por mail
125 field_mail_notification: Notificación por mail
126 field_admin: Administrador
126 field_admin: Administrador
127 field_last_login_on: Última conexión
127 field_last_login_on: Última conexión
128 field_language: Idioma
128 field_language: Idioma
129 field_effective_date: Fecha
129 field_effective_date: Fecha
130 field_password: Contraseña
130 field_password: Contraseña
131 field_new_password: Nueva contraseña
131 field_new_password: Nueva contraseña
132 field_password_confirmation: Confirmación
132 field_password_confirmation: Confirmación
133 field_version: Versión
133 field_version: Versión
134 field_type: Tipo
134 field_type: Tipo
135 field_host: Anfitrión
135 field_host: Anfitrión
136 field_port: Puerto
136 field_port: Puerto
137 field_account: Cuenta
137 field_account: Cuenta
138 field_base_dn: Base DN
138 field_base_dn: Base DN
139 field_attr_login: Cualidad del identificador
139 field_attr_login: Cualidad del identificador
140 field_attr_firstname: Cualidad del nombre
140 field_attr_firstname: Cualidad del nombre
141 field_attr_lastname: Cualidad del apellido
141 field_attr_lastname: Cualidad del apellido
142 field_attr_mail: Cualidad del Email
142 field_attr_mail: Cualidad del Email
143 field_onthefly: Creación del usuario On-the-fly
143 field_onthefly: Creación del usuario On-the-fly
144 field_start_date: Comienzo
144 field_start_date: Comienzo
145 field_done_ratio: %% Realizado
145 field_done_ratio: %% Realizado
146 field_auth_source: Modo de la autentificación
146 field_auth_source: Modo de la autentificación
147 field_hide_mail: Ocultar mi dirección de email
147 field_hide_mail: Ocultar mi dirección de email
148 field_comment: Comentario
148 field_comment: Comentario
149 field_url: URL
149 field_url: URL
150 field_start_page: Página principal
150 field_start_page: Página principal
151 field_subproject: Proyecto secundario
151 field_subproject: Proyecto secundario
152 field_hours: Horas
152 field_hours: Horas
153 field_activity: Actividad
153 field_activity: Actividad
154 field_spent_on: Fecha
154 field_spent_on: Fecha
155 field_identifier: Identificador
155 field_identifier: Identificador
156 field_is_filter: Usado como filtro
156 field_is_filter: Usado como filtro
157 field_issue_to_id: Petición Relacionada
157 field_issue_to_id: Petición Relacionada
158 field_delay: Retraso
158 field_delay: Retraso
159
159
160 setting_app_title: Título del aplicación
160 setting_app_title: Título del aplicación
161 setting_app_subtitle: Subtítulo del aplicación
161 setting_app_subtitle: Subtítulo del aplicación
162 setting_welcome_text: Texto bienvenida
162 setting_welcome_text: Texto bienvenida
163 setting_default_language: Idioma por defecto
163 setting_default_language: Idioma por defecto
164 setting_login_required: Autentif. requerida
164 setting_login_required: Autentif. requerida
165 setting_self_registration: Registro permitido
165 setting_self_registration: Registro permitido
166 setting_attachment_max_size: Tamaño máximo del fichero
166 setting_attachment_max_size: Tamaño máximo del fichero
167 setting_issues_export_limit: Issues export limit
167 setting_issues_export_limit: Issues export limit
168 setting_mail_from: Email de la emisión
168 setting_mail_from: Email de la emisión
169 setting_host_name: Nombre de anfitrión
169 setting_host_name: Nombre de anfitrión
170 setting_text_formatting: Formato de texto
170 setting_text_formatting: Formato de texto
171 setting_wiki_compression: Compresión de la historia de Wiki
171 setting_wiki_compression: Compresión de la historia de Wiki
172 setting_feeds_limit: Feed content limit
172 setting_feeds_limit: Feed content limit
173 setting_autofetch_changesets: Autofetch SVN commits
173 setting_autofetch_changesets: Autofetch SVN commits
174 setting_sys_api_enabled: Enable WS for repository management
174 setting_sys_api_enabled: Enable WS for repository management
175 setting_commit_ref_keywords: Referencing keywords
175 setting_commit_ref_keywords: Referencing keywords
176 setting_commit_fix_keywords: Fixing keywords
176 setting_commit_fix_keywords: Fixing keywords
177 setting_autologin: Autologin
177 setting_autologin: Autologin
178 setting_date_format: Formato de la fecha
178 setting_date_format: Formato de la fecha
179
179
180 label_user: Usuario
180 label_user: Usuario
181 label_user_plural: Usuarios
181 label_user_plural: Usuarios
182 label_user_new: Nuevo usuario
182 label_user_new: Nuevo usuario
183 label_project: Proyecto
183 label_project: Proyecto
184 label_project_new: Nuevo proyecto
184 label_project_new: Nuevo proyecto
185 label_project_plural: Proyectos
185 label_project_plural: Proyectos
186 label_project_all: Todos los proyectos
186 label_project_all: Todos los proyectos
187 label_project_latest: Los proyectos más últimos
187 label_project_latest: Los proyectos más últimos
188 label_issue: Petición
188 label_issue: Petición
189 label_issue_new: Nueva petición
189 label_issue_new: Nueva petición
190 label_issue_plural: Peticiones
190 label_issue_plural: Peticiones
191 label_issue_view_all: Ver todas las peticiones
191 label_issue_view_all: Ver todas las peticiones
192 label_document: Documento
192 label_document: Documento
193 label_document_new: Nuevo documento
193 label_document_new: Nuevo documento
194 label_document_plural: Documentos
194 label_document_plural: Documentos
195 label_role: Perfil
195 label_role: Perfil
196 label_role_plural: Perfiles
196 label_role_plural: Perfiles
197 label_role_new: Nuevo perfil
197 label_role_new: Nuevo perfil
198 label_role_and_permissions: Perfiles y permisos
198 label_role_and_permissions: Perfiles y permisos
199 label_member: Miembro
199 label_member: Miembro
200 label_member_new: Nuevo miembro
200 label_member_new: Nuevo miembro
201 label_member_plural: Miembros
201 label_member_plural: Miembros
202 label_tracker: Tracker
202 label_tracker: Tracker
203 label_tracker_plural: Trackers
203 label_tracker_plural: Trackers
204 label_tracker_new: Nuevo tracker
204 label_tracker_new: Nuevo tracker
205 label_workflow: Workflow
205 label_workflow: Workflow
206 label_issue_status: Estado de petición
206 label_issue_status: Estado de petición
207 label_issue_status_plural: Estados de las peticiones
207 label_issue_status_plural: Estados de las peticiones
208 label_issue_status_new: Nuevo estado
208 label_issue_status_new: Nuevo estado
209 label_issue_category: Categoría de las peticiones
209 label_issue_category: Categoría de las peticiones
210 label_issue_category_plural: Categorías de las peticiones
210 label_issue_category_plural: Categorías de las peticiones
211 label_issue_category_new: Nueva categoría
211 label_issue_category_new: Nueva categoría
212 label_custom_field: Campo personalizado
212 label_custom_field: Campo personalizado
213 label_custom_field_plural: Campos personalizados
213 label_custom_field_plural: Campos personalizados
214 label_custom_field_new: Nuevo campo personalizado
214 label_custom_field_new: Nuevo campo personalizado
215 label_enumerations: Listas de valores
215 label_enumerations: Listas de valores
216 label_enumeration_new: Nuevo valor
216 label_enumeration_new: Nuevo valor
217 label_information: Informacion
217 label_information: Informacion
218 label_information_plural: Informaciones
218 label_information_plural: Informaciones
219 label_please_login: Conexión
219 label_please_login: Conexión
220 label_register: Registrar
220 label_register: Registrar
221 label_password_lost: ¿Olvidaste la contraseña?
221 label_password_lost: ¿Olvidaste la contraseña?
222 label_home: Principal
222 label_home: Principal
223 label_my_page: Mi página
223 label_my_page: Mi página
224 label_my_account: Mi cuenta
224 label_my_account: Mi cuenta
225 label_my_projects: Mis proyectos
225 label_my_projects: Mis proyectos
226 label_administration: Administración
226 label_administration: Administración
227 label_login: Conexión
227 label_login: Conexión
228 label_logout: Desconexión
228 label_logout: Desconexión
229 label_help: Ayuda
229 label_help: Ayuda
230 label_reported_issues: Peticiones registradas
230 label_reported_issues: Peticiones registradas
231 label_assigned_to_me_issues: Peticiones que me están asignadas
231 label_assigned_to_me_issues: Peticiones que me están asignadas
232 label_last_login: Última conexión
232 label_last_login: Última conexión
233 label_last_updates: Actualizado
233 label_last_updates: Actualizado
234 label_last_updates_plural: %d Actualizados
234 label_last_updates_plural: %d Actualizados
235 label_registered_on: Inscrito el
235 label_registered_on: Inscrito el
236 label_activity: Actividad
236 label_activity: Actividad
237 label_new: Nuevo
237 label_new: Nuevo
238 label_logged_as: Conectado como
238 label_logged_as: Conectado como
239 label_environment: Entorno
239 label_environment: Entorno
240 label_authentication: Autentificación
240 label_authentication: Autentificación
241 label_auth_source: Modo de la autentificación
241 label_auth_source: Modo de la autentificación
242 label_auth_source_new: Nuevo modo de la autentificación
242 label_auth_source_new: Nuevo modo de la autentificación
243 label_auth_source_plural: Modos de la autentificación
243 label_auth_source_plural: Modos de la autentificación
244 label_subproject_plural: Proyectos secundarios
244 label_subproject_plural: Proyectos secundarios
245 label_min_max_length: Longitud mín - máx
245 label_min_max_length: Longitud mín - máx
246 label_list: Lista
246 label_list: Lista
247 label_date: Fecha
247 label_date: Fecha
248 label_integer: Número
248 label_integer: Número
249 label_boolean: Boleano
249 label_boolean: Boleano
250 label_string: Texto
250 label_string: Texto
251 label_text: Texto largo
251 label_text: Texto largo
252 label_attribute: Cualidad
252 label_attribute: Cualidad
253 label_attribute_plural: Cualidades
253 label_attribute_plural: Cualidades
254 label_download: %d Descarga
254 label_download: %d Descarga
255 label_download_plural: %d Descargas
255 label_download_plural: %d Descargas
256 label_no_data: Ningun dato a mostrar
256 label_no_data: Ningun dato a mostrar
257 label_change_status: Cambiar el estado
257 label_change_status: Cambiar el estado
258 label_history: Histórico
258 label_history: Histórico
259 label_attachment: Fichero
259 label_attachment: Fichero
260 label_attachment_new: Nuevo fichero
260 label_attachment_new: Nuevo fichero
261 label_attachment_delete: Suprimir el fichero
261 label_attachment_delete: Suprimir el fichero
262 label_attachment_plural: Ficheros
262 label_attachment_plural: Ficheros
263 label_report: Informe
263 label_report: Informe
264 label_report_plural: Informes
264 label_report_plural: Informes
265 label_news: Noticia
265 label_news: Noticia
266 label_news_new: Nueva noticia
266 label_news_new: Nueva noticia
267 label_news_plural: Noticias
267 label_news_plural: Noticias
268 label_news_latest: Últimas noticias
268 label_news_latest: Últimas noticias
269 label_news_view_all: Ver todas las noticias
269 label_news_view_all: Ver todas las noticias
270 label_change_log: Cambios
270 label_change_log: Cambios
271 label_settings: Configuración
271 label_settings: Configuración
272 label_overview: Vistazo
272 label_overview: Vistazo
273 label_version: Versión
273 label_version: Versión
274 label_version_new: Nueva versión
274 label_version_new: Nueva versión
275 label_version_plural: Versiones
275 label_version_plural: Versiones
276 label_confirmation: Confirmación
276 label_confirmation: Confirmación
277 label_export_to: Exportar a
277 label_export_to: Exportar a
278 label_read: Leer...
278 label_read: Leer...
279 label_public_projects: Proyectos públicos
279 label_public_projects: Proyectos públicos
280 label_open_issues: abierta
280 label_open_issues: abierta
281 label_open_issues_plural: abiertas
281 label_open_issues_plural: abiertas
282 label_closed_issues: cerrada
282 label_closed_issues: cerrada
283 label_closed_issues_plural: cerradas
283 label_closed_issues_plural: cerradas
284 label_total: Total
284 label_total: Total
285 label_permissions: Permisos
285 label_permissions: Permisos
286 label_current_status: Estado actual
286 label_current_status: Estado actual
287 label_new_statuses_allowed: Nuevos estados autorizados
287 label_new_statuses_allowed: Nuevos estados autorizados
288 label_all: todos
288 label_all: todos
289 label_none: ninguno
289 label_none: ninguno
290 label_next: Próximo
290 label_next: Próximo
291 label_previous: Anterior
291 label_previous: Anterior
292 label_used_by: Utilizado por
292 label_used_by: Utilizado por
293 label_details: Detalles
293 label_details: Detalles
294 label_add_note: Agregar una nota
294 label_add_note: Agregar una nota
295 label_per_page: Por la página
295 label_per_page: Por la página
296 label_calendar: Calendario
296 label_calendar: Calendario
297 label_months_from: meses de
297 label_months_from: meses de
298 label_gantt: Gantt
298 label_gantt: Gantt
299 label_internal: Interno
299 label_internal: Interno
300 label_last_changes: %d cambios del último
300 label_last_changes: %d cambios del último
301 label_change_view_all: Ver todos los cambios
301 label_change_view_all: Ver todos los cambios
302 label_personalize_page: Personalizar esta página
302 label_personalize_page: Personalizar esta página
303 label_comment: Comentario
303 label_comment: Comentario
304 label_comment_plural: Comentarios
304 label_comment_plural: Comentarios
305 label_comment_add: Añadir un comentario
305 label_comment_add: Añadir un comentario
306 label_comment_added: Comentario añadido
306 label_comment_added: Comentario añadido
307 label_comment_delete: Suprimir comentarios
307 label_comment_delete: Suprimir comentarios
308 label_query: Pregunta personalizada
308 label_query: Pregunta personalizada
309 label_query_plural: Preguntas personalizadas
309 label_query_plural: Preguntas personalizadas
310 label_query_new: Nueva pregunta
310 label_query_new: Nueva pregunta
311 label_filter_add: Agregar el filtro
311 label_filter_add: Agregar el filtro
312 label_filter_plural: Filtros
312 label_filter_plural: Filtros
313 label_equals: igual
313 label_equals: igual
314 label_not_equals: no igual
314 label_not_equals: no igual
315 label_in_less_than: en menos que
315 label_in_less_than: en menos que
316 label_in_more_than: en más que
316 label_in_more_than: en más que
317 label_in: en
317 label_in: en
318 label_today: hoy
318 label_today: hoy
319 label_less_than_ago: hace menos de
319 label_less_than_ago: hace menos de
320 label_more_than_ago: hace más de
320 label_more_than_ago: hace más de
321 label_ago: hace
321 label_ago: hace
322 label_contains: contiene
322 label_contains: contiene
323 label_not_contains: no contiene
323 label_not_contains: no contiene
324 label_day_plural: días
324 label_day_plural: días
325 label_repository: Depósito SVN
325 label_repository: Depósito SVN
326 label_browse: Hojear
326 label_browse: Hojear
327 label_modification: %d modificación
327 label_modification: %d modificación
328 label_modification_plural: %d modificaciones
328 label_modification_plural: %d modificaciones
329 label_revision: Revisión
329 label_revision: Revisión
330 label_revision_plural: Revisiones
330 label_revision_plural: Revisiones
331 label_added: añadido
331 label_added: añadido
332 label_modified: modificado
332 label_modified: modificado
333 label_deleted: suprimido
333 label_deleted: suprimido
334 label_latest_revision: La revisión más actual
334 label_latest_revision: La revisión más actual
335 label_latest_revision_plural: Las revisiones más actuales
335 label_latest_revision_plural: Las revisiones más actuales
336 label_view_revisions: Ver las revisiones
336 label_view_revisions: Ver las revisiones
337 label_max_size: Tamaño máximo
337 label_max_size: Tamaño máximo
338 label_on: en
338 label_on: en
339 label_sort_highest: Primero
339 label_sort_highest: Primero
340 label_sort_higher: Subir
340 label_sort_higher: Subir
341 label_sort_lower: Bajar
341 label_sort_lower: Bajar
342 label_sort_lowest: Último
342 label_sort_lowest: Último
343 label_roadmap: Roadmap
343 label_roadmap: Roadmap
344 label_roadmap_due_in: Realizado en
344 label_roadmap_due_in: Realizado en
345 label_roadmap_no_issues: No hay peticiones para esta versión
345 label_roadmap_no_issues: No hay peticiones para esta versión
346 label_search: Búsqueda
346 label_search: Búsqueda
347 label_result: %d resultado
347 label_result: %d resultado
348 label_result_plural: %d resultados
348 label_result_plural: %d resultados
349 label_all_words: Todas las palabras
349 label_all_words: Todas las palabras
350 label_wiki: Wiki
350 label_wiki: Wiki
351 label_wiki_edit: Wiki edicción
351 label_wiki_edit: Wiki edicción
352 label_wiki_edit_plural: Wiki edicciones
352 label_wiki_edit_plural: Wiki edicciones
353 label_wiki_page: Wiki página
353 label_wiki_page: Wiki página
354 label_wiki_page_plural: Wiki páginas
354 label_wiki_page_plural: Wiki páginas
355 label_page_index: Índice
355 label_page_index: Índice
356 label_current_version: Versión actual
356 label_current_version: Versión actual
357 label_preview: Previo
357 label_preview: Previo
358 label_feed_plural: Feeds
358 label_feed_plural: Feeds
359 label_changes_details: Detalles de todos los cambios
359 label_changes_details: Detalles de todos los cambios
360 label_issue_tracking: Petición tracking
360 label_issue_tracking: Petición tracking
361 label_spent_time: Tiempo dedicado
361 label_spent_time: Tiempo dedicado
362 label_f_hour: %.2f hora
362 label_f_hour: %.2f hora
363 label_f_hour_plural: %.2f horas
363 label_f_hour_plural: %.2f horas
364 label_time_tracking: Tiempo tracking
364 label_time_tracking: Tiempo tracking
365 label_change_plural: Cambios
365 label_change_plural: Cambios
366 label_statistics: Estadísticas
366 label_statistics: Estadísticas
367 label_commits_per_month: Commits por mes
367 label_commits_per_month: Commits por mes
368 label_commits_per_author: Commits por autor
368 label_commits_per_author: Commits por autor
369 label_view_diff: Ver diferencias
369 label_view_diff: Ver diferencias
370 label_diff_inline: inline
370 label_diff_inline: inline
371 label_diff_side_by_side: side by side
371 label_diff_side_by_side: side by side
372 label_options: Opciones
372 label_options: Opciones
373 label_copy_workflow_from: Copiar workflow desde
373 label_copy_workflow_from: Copiar workflow desde
374 label_permissions_report: Informe de permisos
374 label_permissions_report: Informe de permisos
375 label_watched_issues: Peticiones monitorizadas
375 label_watched_issues: Peticiones monitorizadas
376 label_related_issues: Peticiones relacionadas
376 label_related_issues: Peticiones relacionadas
377 label_applied_status: Aplicar estado
377 label_applied_status: Aplicar estado
378 label_loading: Cargando...
378 label_loading: Cargando...
379 label_relation_new: Nueva relación
379 label_relation_new: Nueva relación
380 label_relation_delete: Eliminar relación
380 label_relation_delete: Eliminar relación
381 label_relates_to: relacionado a
381 label_relates_to: relacionado a
382 label_duplicates: duplicados
382 label_duplicates: duplicados
383 label_blocks: bloques
383 label_blocks: bloques
384 label_blocked_by: bloqueado por
384 label_blocked_by: bloqueado por
385 label_precedes: anteriores
385 label_precedes: anteriores
386 label_follows: siguientes
386 label_follows: siguientes
387 label_end_to_start: fin a principio
387 label_end_to_start: fin a principio
388 label_end_to_end: fin a fin
388 label_end_to_end: fin a fin
389 label_start_to_start: principio a principio
389 label_start_to_start: principio a principio
390 label_start_to_end: principio a fin
390 label_start_to_end: principio a fin
391 label_stay_logged_in: Stay logged in
391 label_stay_logged_in: Stay logged in
392 label_disabled: deshabilitado
392 label_disabled: deshabilitado
393 label_show_completed_versions: Muestra las versiones completas
393 label_show_completed_versions: Muestra las versiones completas
394 label_me: me
394 label_me: me
395 label_board: Forum
395 label_board: Forum
396 label_board_new: Nuevo forum
396 label_board_new: Nuevo forum
397 label_board_plural: Forums
397 label_board_plural: Forums
398 label_topic_plural: Topics
398 label_topic_plural: Topics
399 label_message_plural: Mensajes
399 label_message_plural: Mensajes
400 label_message_last: Último mensaje
400 label_message_last: Último mensaje
401 label_message_new: Nuevo mensaje
401 label_message_new: Nuevo mensaje
402 label_reply_plural: Respuestas
402 label_reply_plural: Respuestas
403 label_send_information: Enviada información de la cuenta al usuario
403 label_send_information: Enviada información de la cuenta al usuario
404 label_year: Año
404 label_year: Año
405 label_month: Mes
405 label_month: Mes
406 label_week: Semana
406 label_week: Semana
407 label_date_from: Desde
407 label_date_from: Desde
408 label_date_to: Hasta
408 label_date_to: Hasta
409 label_language_based: Idioma basado
409 label_language_based: Idioma basado
410
410
411 button_login: Conexión
411 button_login: Conexión
412 button_submit: Aceptar
412 button_submit: Aceptar
413 button_save: Validar
413 button_save: Validar
414 button_check_all: Seleccionar todo
414 button_check_all: Seleccionar todo
415 button_uncheck_all: No seleccionar nada
415 button_uncheck_all: No seleccionar nada
416 button_delete: Suprimir
416 button_delete: Suprimir
417 button_create: Crear
417 button_create: Crear
418 button_test: Testar
418 button_test: Testar
419 button_edit: Modificar
419 button_edit: Modificar
420 button_add: Añadir
420 button_add: Añadir
421 button_change: Cambiar
421 button_change: Cambiar
422 button_apply: Aceptar
422 button_apply: Aceptar
423 button_clear: Anular
423 button_clear: Anular
424 button_lock: Bloquear
424 button_lock: Bloquear
425 button_unlock: Desbloquear
425 button_unlock: Desbloquear
426 button_download: Descargar
426 button_download: Descargar
427 button_list: Listar
427 button_list: Listar
428 button_view: Ver
428 button_view: Ver
429 button_move: Mover
429 button_move: Mover
430 button_back: Atrás
430 button_back: Atrás
431 button_cancel: Cancelar
431 button_cancel: Cancelar
432 button_activate: Activar
432 button_activate: Activar
433 button_sort: Clasificar
433 button_sort: Clasificar
434 button_log_time: Tiempo dedicado
434 button_log_time: Tiempo dedicado
435 button_rollback: Volver a esta versión
435 button_rollback: Volver a esta versión
436 button_watch: Monitorizar
436 button_watch: Monitorizar
437 button_unwatch: No monitorizar
437 button_unwatch: No monitorizar
438 button_reply: Responder
438 button_reply: Responder
439 button_archive: Archivar
439 button_archive: Archivar
440 button_unarchive: Desarchivar
440 button_unarchive: Desarchivar
441
441
442 status_active: activo
442 status_active: activo
443 status_registered: registrado
443 status_registered: registrado
444 status_locked: bloqueado
444 status_locked: bloqueado
445
445
446 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
446 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
447 text_regexp_info: eg. ^[A-Z0-9]+$
447 text_regexp_info: eg. ^[A-Z0-9]+$
448 text_min_max_length_info: 0 para ninguna restricción
448 text_min_max_length_info: 0 para ninguna restricción
449 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
449 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
450 text_workflow_edit: Seleccionar un workflow para actualizar
450 text_workflow_edit: Seleccionar un workflow para actualizar
451 text_are_you_sure: ¿ Estás seguro ?
451 text_are_you_sure: ¿ Estás seguro ?
452 text_journal_changed: cambiado de %s a %s
452 text_journal_changed: cambiado de %s a %s
453 text_journal_set_to: fijado a %s
453 text_journal_set_to: fijado a %s
454 text_journal_deleted: suprimido
454 text_journal_deleted: suprimido
455 text_tip_task_begin_day: tarea que comienza este día
455 text_tip_task_begin_day: tarea que comienza este día
456 text_tip_task_end_day: tarea que termina este día
456 text_tip_task_end_day: tarea que termina este día
457 text_tip_task_begin_end_day: tarea que comienza y termina este día
457 text_tip_task_begin_end_day: tarea que comienza y termina este día
458 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
458 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
459 text_caracters_maximum: %d caracteres máximo.
459 text_caracters_maximum: %d caracteres máximo.
460 text_length_between: Longitud entre %d y %d caracteres.
460 text_length_between: Longitud entre %d y %d caracteres.
461 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
461 text_tracker_no_workflow: No hay ningún workflow definido para este tracker
462 text_unallowed_characters: Caracteres no permitidos
462 text_unallowed_characters: Caracteres no permitidos
463 text_comma_separated: Múltiples valores permitidos (separados por coma).
463 text_comma_separated: Múltiples valores permitidos (separados por coma).
464 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
464 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
465
465
466 default_role_manager: Manager
466 default_role_manager: Manager
467 default_role_developper: Desarrollador
467 default_role_developper: Desarrollador
468 default_role_reporter: Informador
468 default_role_reporter: Informador
469 default_tracker_bug: Anomalía
469 default_tracker_bug: Anomalía
470 default_tracker_feature: Evolución
470 default_tracker_feature: Evolución
471 default_tracker_support: Asistencia
471 default_tracker_support: Asistencia
472 default_issue_status_new: Nuevo
472 default_issue_status_new: Nuevo
473 default_issue_status_assigned: Asignada
473 default_issue_status_assigned: Asignada
474 default_issue_status_resolved: Resuelta
474 default_issue_status_resolved: Resuelta
475 default_issue_status_feedback: Comentario
475 default_issue_status_feedback: Comentario
476 default_issue_status_closed: Cerrada
476 default_issue_status_closed: Cerrada
477 default_issue_status_rejected: Rechazada
477 default_issue_status_rejected: Rechazada
478 default_doc_category_user: Documentación del usuario
478 default_doc_category_user: Documentación del usuario
479 default_doc_category_tech: Documentación tecnica
479 default_doc_category_tech: Documentación tecnica
480 default_priority_low: Bajo
480 default_priority_low: Bajo
481 default_priority_normal: Normal
481 default_priority_normal: Normal
482 default_priority_high: Alto
482 default_priority_high: Alto
483 default_priority_urgent: Urgente
483 default_priority_urgent: Urgente
484 default_priority_immediate: Inmediata
484 default_priority_immediate: Inmediata
485 default_activity_design: Diseño
485 default_activity_design: Diseño
486 default_activity_development: Desarrollo
486 default_activity_development: Desarrollo
487
487
488 enumeration_issue_priorities: Prioridad de las peticiones
488 enumeration_issue_priorities: Prioridad de las peticiones
489 enumeration_doc_categories: Categorías del documento
489 enumeration_doc_categories: Categorías del documento
490 enumeration_activities: Actividades (tiempo dedicado)
490 enumeration_activities: Actividades (tiempo dedicado)
491 label_index_by_date: Index by date
491 label_index_by_date: Index by date
492 field_column_names: Columns
492 field_column_names: Columns
493 button_rename: Rename
493 button_rename: Rename
494 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
494 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
495 label_feeds_access_key_created_on: RSS access key created %s ago
495 label_feeds_access_key_created_on: RSS access key created %s ago
496 label_default_columns: Default columns
496 label_default_columns: Default columns
497 setting_cross_project_issue_relations: Allow cross-project issue relations
497 setting_cross_project_issue_relations: Allow cross-project issue relations
498 label_roadmap_overdue: %s late
498 label_roadmap_overdue: %s late
499 label_module_plural: Modules
499 label_module_plural: Modules
500 label_this_week: this week
500 label_this_week: this week
501 label_index_by_title: Index by title
501 label_index_by_title: Index by title
502 label_jump_to_a_project: Jump to a project...
502 label_jump_to_a_project: Jump to a project...
503 field_assignable: Issues can be assigned to this role
503 field_assignable: Issues can be assigned to this role
504 label_sort_by: Sort by "%s"
504 label_sort_by: Sort by "%s"
505 setting_issue_list_default_columns: Default columns displayed on the issue list
505 setting_issue_list_default_columns: Default columns displayed on the issue list
506 text_issue_updated: Issue %s has been updated.
506 text_issue_updated: Issue %s has been updated.
507 notice_feeds_access_key_reseted: Your RSS access key was reseted.
507 notice_feeds_access_key_reseted: Your RSS access key was reseted.
508 field_redirect_existing_links: Redirect existing links
508 field_redirect_existing_links: Redirect existing links
509 text_issue_category_reassign_to: Reassign issues to this category
509 text_issue_category_reassign_to: Reassign issues to this category
510 notice_email_sent: An email was sent to %s
510 notice_email_sent: An email was sent to %s
511 text_issue_added: Issue %s has been reported.
511 text_issue_added: Issue %s has been reported.
512 field_comments: Comment
512 field_comments: Comment
513 label_file_plural: Files
513 label_file_plural: Files
514 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
514 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
515 notice_email_error: An error occurred while sending mail (%s)
515 notice_email_error: An error occurred while sending mail (%s)
516 label_updated_time: Updated %s ago
516 label_updated_time: Updated %s ago
517 text_issue_category_destroy_assignments: Remove category assignments
517 text_issue_category_destroy_assignments: Remove category assignments
518 label_send_test_email: Send a test email
518 label_send_test_email: Send a test email
519 button_reset: Reset
519 button_reset: Reset
520 label_added_time_by: Added by %s %s ago
520 label_added_time_by: Added by %s %s ago
521 field_estimated_hours: Estimated time
521 field_estimated_hours: Estimated time
522 label_changeset_plural: Changesets
522 label_changeset_plural: Changesets
523 setting_repositories_encodings: Repositories encodings
523 setting_repositories_encodings: Repositories encodings
524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
525 label_bulk_edit_selected_issues: Bulk edit selected issues
525 label_bulk_edit_selected_issues: Bulk edit selected issues
526 label_no_change_option: (No change)
526 label_no_change_option: (No change)
527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
528 label_theme: Theme
528 label_theme: Theme
529 label_default: Default
529 label_default: Default
530 label_search_titles_only: Search titles only
530 label_search_titles_only: Search titles only
531 label_nobody: nobody
531 label_nobody: nobody
532 button_change_password: Change password
533 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
534 label_user_mail_option_selected: "For any event on the selected projects only..."
535 label_user_mail_option_all: "For any event on all my projects"
536 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: environ une heure
10 actionview_datehelper_time_in_words_hour_about: environ une heure
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
20 actionview_instancetag_blank_option: Choisir
21
21
22 activerecord_error_inclusion: n'est pas inclus dans la liste
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 activerecord_error_not_same_project: n'appartient pas au même projet
36 activerecord_error_not_same_project: n'appartient pas au même projet
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ans
40 general_fmt_age_plural: %d ans
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Non'
45 general_text_No: 'Non'
46 general_text_Yes: 'Oui'
46 general_text_Yes: 'Oui'
47 general_text_no: 'non'
47 general_text_no: 'non'
48 general_text_yes: 'oui'
48 general_text_yes: 'oui'
49 general_lang_name: 'Français'
49 general_lang_name: 'Français'
50 general_csv_separator: ';'
50 general_csv_separator: ';'
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
53 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Le compte a été mis à jour avec succès.
56 notice_account_updated: Le compte a été mis à jour avec succès.
57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
57 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
58 notice_account_password_updated: Mot de passe mis à jour avec succès.
58 notice_account_password_updated: Mot de passe mis à jour avec succès.
59 notice_account_wrong_password: Mot de passe incorrect
59 notice_account_wrong_password: Mot de passe incorrect
60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
60 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
61 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
62 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
63 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
64 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
65 notice_successful_create: Création effectuée avec succès.
65 notice_successful_create: Création effectuée avec succès.
66 notice_successful_update: Mise à jour effectuée avec succès.
66 notice_successful_update: Mise à jour effectuée avec succès.
67 notice_successful_delete: Suppression effectuée avec succès.
67 notice_successful_delete: Suppression effectuée avec succès.
68 notice_successful_connection: Connection réussie.
68 notice_successful_connection: Connection réussie.
69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
69 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
70 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
71 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
71 notice_scm_error: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
72 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
73 notice_email_sent: "Un email a été envoyé à %s"
73 notice_email_sent: "Un email a été envoyé à %s"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
75 notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée.
75 notice_feeds_access_key_reseted: Votre clé d'accès aux flux RSS a été réinitialisée.
76 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
76 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
77 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
78
78
79 mail_subject_lost_password: Votre mot de passe redMine
79 mail_subject_lost_password: Votre mot de passe redMine
80 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
80 mail_body_lost_password: 'Pour changer votre mot de passe Redmine, cliquez sur le lien suivant:'
81 mail_subject_register: Activation de votre compte redMine
81 mail_subject_register: Activation de votre compte redMine
82 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
82 mail_body_register: 'Pour activer votre compte Redmine, cliquez sur le lien suivant:'
83
83
84 gui_validation_error: 1 erreur
84 gui_validation_error: 1 erreur
85 gui_validation_error_plural: %d erreurs
85 gui_validation_error_plural: %d erreurs
86
86
87 field_name: Nom
87 field_name: Nom
88 field_description: Description
88 field_description: Description
89 field_summary: Résumé
89 field_summary: Résumé
90 field_is_required: Obligatoire
90 field_is_required: Obligatoire
91 field_firstname: Prénom
91 field_firstname: Prénom
92 field_lastname: Nom
92 field_lastname: Nom
93 field_mail: Email
93 field_mail: Email
94 field_filename: Fichier
94 field_filename: Fichier
95 field_filesize: Taille
95 field_filesize: Taille
96 field_downloads: Téléchargements
96 field_downloads: Téléchargements
97 field_author: Auteur
97 field_author: Auteur
98 field_created_on: Créé
98 field_created_on: Créé
99 field_updated_on: Mis à jour
99 field_updated_on: Mis à jour
100 field_field_format: Format
100 field_field_format: Format
101 field_is_for_all: Pour tous les projets
101 field_is_for_all: Pour tous les projets
102 field_possible_values: Valeurs possibles
102 field_possible_values: Valeurs possibles
103 field_regexp: Expression régulière
103 field_regexp: Expression régulière
104 field_min_length: Longueur minimum
104 field_min_length: Longueur minimum
105 field_max_length: Longueur maximum
105 field_max_length: Longueur maximum
106 field_value: Valeur
106 field_value: Valeur
107 field_category: Catégorie
107 field_category: Catégorie
108 field_title: Titre
108 field_title: Titre
109 field_project: Projet
109 field_project: Projet
110 field_issue: Demande
110 field_issue: Demande
111 field_status: Statut
111 field_status: Statut
112 field_notes: Notes
112 field_notes: Notes
113 field_is_closed: Demande fermée
113 field_is_closed: Demande fermée
114 field_is_default: Valeur par défaut
114 field_is_default: Valeur par défaut
115 field_html_color: Couleur
115 field_html_color: Couleur
116 field_tracker: Tracker
116 field_tracker: Tracker
117 field_subject: Sujet
117 field_subject: Sujet
118 field_due_date: Date d'échéance
118 field_due_date: Date d'échéance
119 field_assigned_to: Assigné à
119 field_assigned_to: Assigné à
120 field_priority: Priorité
120 field_priority: Priorité
121 field_fixed_version: Version corrigée
121 field_fixed_version: Version corrigée
122 field_user: Utilisateur
122 field_user: Utilisateur
123 field_role: Rôle
123 field_role: Rôle
124 field_homepage: Site web
124 field_homepage: Site web
125 field_is_public: Public
125 field_is_public: Public
126 field_parent: Sous-projet de
126 field_parent: Sous-projet de
127 field_is_in_chlog: Demandes affichées dans l'historique
127 field_is_in_chlog: Demandes affichées dans l'historique
128 field_is_in_roadmap: Demandes affichées dans la roadmap
128 field_is_in_roadmap: Demandes affichées dans la roadmap
129 field_login: Identifiant
129 field_login: Identifiant
130 field_mail_notification: Notifications par mail
130 field_mail_notification: Notifications par mail
131 field_admin: Administrateur
131 field_admin: Administrateur
132 field_last_login_on: Dernière connexion
132 field_last_login_on: Dernière connexion
133 field_language: Langue
133 field_language: Langue
134 field_effective_date: Date
134 field_effective_date: Date
135 field_password: Mot de passe
135 field_password: Mot de passe
136 field_new_password: Nouveau mot de passe
136 field_new_password: Nouveau mot de passe
137 field_password_confirmation: Confirmation
137 field_password_confirmation: Confirmation
138 field_version: Version
138 field_version: Version
139 field_type: Type
139 field_type: Type
140 field_host: Hôte
140 field_host: Hôte
141 field_port: Port
141 field_port: Port
142 field_account: Compte
142 field_account: Compte
143 field_base_dn: Base DN
143 field_base_dn: Base DN
144 field_attr_login: Attribut Identifiant
144 field_attr_login: Attribut Identifiant
145 field_attr_firstname: Attribut Prénom
145 field_attr_firstname: Attribut Prénom
146 field_attr_lastname: Attribut Nom
146 field_attr_lastname: Attribut Nom
147 field_attr_mail: Attribut Email
147 field_attr_mail: Attribut Email
148 field_onthefly: Création des utilisateurs à la volée
148 field_onthefly: Création des utilisateurs à la volée
149 field_start_date: Début
149 field_start_date: Début
150 field_done_ratio: %% Réalisé
150 field_done_ratio: %% Réalisé
151 field_auth_source: Mode d'authentification
151 field_auth_source: Mode d'authentification
152 field_hide_mail: Cacher mon adresse mail
152 field_hide_mail: Cacher mon adresse mail
153 field_comments: Commentaire
153 field_comments: Commentaire
154 field_url: URL
154 field_url: URL
155 field_start_page: Page de démarrage
155 field_start_page: Page de démarrage
156 field_subproject: Sous-projet
156 field_subproject: Sous-projet
157 field_hours: Heures
157 field_hours: Heures
158 field_activity: Activité
158 field_activity: Activité
159 field_spent_on: Date
159 field_spent_on: Date
160 field_identifier: Identifiant
160 field_identifier: Identifiant
161 field_is_filter: Utilisé comme filtre
161 field_is_filter: Utilisé comme filtre
162 field_issue_to_id: Demande liée
162 field_issue_to_id: Demande liée
163 field_delay: Retard
163 field_delay: Retard
164 field_assignable: Demandes assignables à ce rôle
164 field_assignable: Demandes assignables à ce rôle
165 field_redirect_existing_links: Rediriger les liens existants
165 field_redirect_existing_links: Rediriger les liens existants
166 field_estimated_hours: Temps estimé
166 field_estimated_hours: Temps estimé
167 field_column_names: Colonnes
167 field_column_names: Colonnes
168
168
169 setting_app_title: Titre de l'application
169 setting_app_title: Titre de l'application
170 setting_app_subtitle: Sous-titre de l'application
170 setting_app_subtitle: Sous-titre de l'application
171 setting_welcome_text: Texte d'accueil
171 setting_welcome_text: Texte d'accueil
172 setting_default_language: Langue par défaut
172 setting_default_language: Langue par défaut
173 setting_login_required: Authentif. obligatoire
173 setting_login_required: Authentif. obligatoire
174 setting_self_registration: Enregistrement autorisé
174 setting_self_registration: Enregistrement autorisé
175 setting_attachment_max_size: Taille max des fichiers
175 setting_attachment_max_size: Taille max des fichiers
176 setting_issues_export_limit: Limite export demandes
176 setting_issues_export_limit: Limite export demandes
177 setting_mail_from: Adresse d'émission
177 setting_mail_from: Adresse d'émission
178 setting_host_name: Nom d'hôte
178 setting_host_name: Nom d'hôte
179 setting_text_formatting: Formatage du texte
179 setting_text_formatting: Formatage du texte
180 setting_wiki_compression: Compression historique wiki
180 setting_wiki_compression: Compression historique wiki
181 setting_feeds_limit: Limite du contenu des flux RSS
181 setting_feeds_limit: Limite du contenu des flux RSS
182 setting_autofetch_changesets: Récupération auto. des commits
182 setting_autofetch_changesets: Récupération auto. des commits
183 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
183 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
184 setting_commit_ref_keywords: Mot-clés de référencement
184 setting_commit_ref_keywords: Mot-clés de référencement
185 setting_commit_fix_keywords: Mot-clés de résolution
185 setting_commit_fix_keywords: Mot-clés de résolution
186 setting_autologin: Autologin
186 setting_autologin: Autologin
187 setting_date_format: Format de date
187 setting_date_format: Format de date
188 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
188 setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets
189 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
189 setting_issue_list_default_columns: Colonnes affichées par défaut sur la liste des demandes
190 setting_repositories_encodings: Encodages des dépôts
190 setting_repositories_encodings: Encodages des dépôts
191
191
192 label_user: Utilisateur
192 label_user: Utilisateur
193 label_user_plural: Utilisateurs
193 label_user_plural: Utilisateurs
194 label_user_new: Nouvel utilisateur
194 label_user_new: Nouvel utilisateur
195 label_project: Projet
195 label_project: Projet
196 label_project_new: Nouveau projet
196 label_project_new: Nouveau projet
197 label_project_plural: Projets
197 label_project_plural: Projets
198 label_project_all: Tous les projets
198 label_project_all: Tous les projets
199 label_project_latest: Derniers projets
199 label_project_latest: Derniers projets
200 label_issue: Demande
200 label_issue: Demande
201 label_issue_new: Nouvelle demande
201 label_issue_new: Nouvelle demande
202 label_issue_plural: Demandes
202 label_issue_plural: Demandes
203 label_issue_view_all: Voir toutes les demandes
203 label_issue_view_all: Voir toutes les demandes
204 label_document: Document
204 label_document: Document
205 label_document_new: Nouveau document
205 label_document_new: Nouveau document
206 label_document_plural: Documents
206 label_document_plural: Documents
207 label_role: Rôle
207 label_role: Rôle
208 label_role_plural: Rôles
208 label_role_plural: Rôles
209 label_role_new: Nouveau rôle
209 label_role_new: Nouveau rôle
210 label_role_and_permissions: Rôles et permissions
210 label_role_and_permissions: Rôles et permissions
211 label_member: Membre
211 label_member: Membre
212 label_member_new: Nouveau membre
212 label_member_new: Nouveau membre
213 label_member_plural: Membres
213 label_member_plural: Membres
214 label_tracker: Tracker
214 label_tracker: Tracker
215 label_tracker_plural: Trackers
215 label_tracker_plural: Trackers
216 label_tracker_new: Nouveau tracker
216 label_tracker_new: Nouveau tracker
217 label_workflow: Workflow
217 label_workflow: Workflow
218 label_issue_status: Statut de demandes
218 label_issue_status: Statut de demandes
219 label_issue_status_plural: Statuts de demandes
219 label_issue_status_plural: Statuts de demandes
220 label_issue_status_new: Nouveau statut
220 label_issue_status_new: Nouveau statut
221 label_issue_category: Catégorie de demandes
221 label_issue_category: Catégorie de demandes
222 label_issue_category_plural: Catégories de demandes
222 label_issue_category_plural: Catégories de demandes
223 label_issue_category_new: Nouvelle catégorie
223 label_issue_category_new: Nouvelle catégorie
224 label_custom_field: Champ personnalisé
224 label_custom_field: Champ personnalisé
225 label_custom_field_plural: Champs personnalisés
225 label_custom_field_plural: Champs personnalisés
226 label_custom_field_new: Nouveau champ personnalisé
226 label_custom_field_new: Nouveau champ personnalisé
227 label_enumerations: Listes de valeurs
227 label_enumerations: Listes de valeurs
228 label_enumeration_new: Nouvelle valeur
228 label_enumeration_new: Nouvelle valeur
229 label_information: Information
229 label_information: Information
230 label_information_plural: Informations
230 label_information_plural: Informations
231 label_please_login: Identification
231 label_please_login: Identification
232 label_register: S'enregistrer
232 label_register: S'enregistrer
233 label_password_lost: Mot de passe perdu
233 label_password_lost: Mot de passe perdu
234 label_home: Accueil
234 label_home: Accueil
235 label_my_page: Ma page
235 label_my_page: Ma page
236 label_my_account: Mon compte
236 label_my_account: Mon compte
237 label_my_projects: Mes projets
237 label_my_projects: Mes projets
238 label_administration: Administration
238 label_administration: Administration
239 label_login: Connexion
239 label_login: Connexion
240 label_logout: Déconnexion
240 label_logout: Déconnexion
241 label_help: Aide
241 label_help: Aide
242 label_reported_issues: Demandes soumises
242 label_reported_issues: Demandes soumises
243 label_assigned_to_me_issues: Demandes qui me sont assignées
243 label_assigned_to_me_issues: Demandes qui me sont assignées
244 label_last_login: Dernière connexion
244 label_last_login: Dernière connexion
245 label_last_updates: Dernière mise à jour
245 label_last_updates: Dernière mise à jour
246 label_last_updates_plural: %d dernières mises à jour
246 label_last_updates_plural: %d dernières mises à jour
247 label_registered_on: Inscrit le
247 label_registered_on: Inscrit le
248 label_activity: Activité
248 label_activity: Activité
249 label_new: Nouveau
249 label_new: Nouveau
250 label_logged_as: Connecté en tant que
250 label_logged_as: Connecté en tant que
251 label_environment: Environnement
251 label_environment: Environnement
252 label_authentication: Authentification
252 label_authentication: Authentification
253 label_auth_source: Mode d'authentification
253 label_auth_source: Mode d'authentification
254 label_auth_source_new: Nouveau mode d'authentification
254 label_auth_source_new: Nouveau mode d'authentification
255 label_auth_source_plural: Modes d'authentification
255 label_auth_source_plural: Modes d'authentification
256 label_subproject_plural: Sous-projets
256 label_subproject_plural: Sous-projets
257 label_min_max_length: Longueurs mini - maxi
257 label_min_max_length: Longueurs mini - maxi
258 label_list: Liste
258 label_list: Liste
259 label_date: Date
259 label_date: Date
260 label_integer: Entier
260 label_integer: Entier
261 label_boolean: Booléen
261 label_boolean: Booléen
262 label_string: Texte
262 label_string: Texte
263 label_text: Texte long
263 label_text: Texte long
264 label_attribute: Attribut
264 label_attribute: Attribut
265 label_attribute_plural: Attributs
265 label_attribute_plural: Attributs
266 label_download: %d Téléchargement
266 label_download: %d Téléchargement
267 label_download_plural: %d Téléchargements
267 label_download_plural: %d Téléchargements
268 label_no_data: Aucune donnée à afficher
268 label_no_data: Aucune donnée à afficher
269 label_change_status: Changer le statut
269 label_change_status: Changer le statut
270 label_history: Historique
270 label_history: Historique
271 label_attachment: Fichier
271 label_attachment: Fichier
272 label_attachment_new: Nouveau fichier
272 label_attachment_new: Nouveau fichier
273 label_attachment_delete: Supprimer le fichier
273 label_attachment_delete: Supprimer le fichier
274 label_attachment_plural: Fichiers
274 label_attachment_plural: Fichiers
275 label_report: Rapport
275 label_report: Rapport
276 label_report_plural: Rapports
276 label_report_plural: Rapports
277 label_news: Annonce
277 label_news: Annonce
278 label_news_new: Nouvelle annonce
278 label_news_new: Nouvelle annonce
279 label_news_plural: Annonces
279 label_news_plural: Annonces
280 label_news_latest: Dernières annonces
280 label_news_latest: Dernières annonces
281 label_news_view_all: Voir toutes les annonces
281 label_news_view_all: Voir toutes les annonces
282 label_change_log: Historique
282 label_change_log: Historique
283 label_settings: Configuration
283 label_settings: Configuration
284 label_overview: Aperçu
284 label_overview: Aperçu
285 label_version: Version
285 label_version: Version
286 label_version_new: Nouvelle version
286 label_version_new: Nouvelle version
287 label_version_plural: Versions
287 label_version_plural: Versions
288 label_confirmation: Confirmation
288 label_confirmation: Confirmation
289 label_export_to: Exporter en
289 label_export_to: Exporter en
290 label_read: Lire...
290 label_read: Lire...
291 label_public_projects: Projets publics
291 label_public_projects: Projets publics
292 label_open_issues: ouvert
292 label_open_issues: ouvert
293 label_open_issues_plural: ouverts
293 label_open_issues_plural: ouverts
294 label_closed_issues: fermé
294 label_closed_issues: fermé
295 label_closed_issues_plural: fermés
295 label_closed_issues_plural: fermés
296 label_total: Total
296 label_total: Total
297 label_permissions: Permissions
297 label_permissions: Permissions
298 label_current_status: Statut actuel
298 label_current_status: Statut actuel
299 label_new_statuses_allowed: Nouveaux statuts autorisés
299 label_new_statuses_allowed: Nouveaux statuts autorisés
300 label_all: tous
300 label_all: tous
301 label_none: aucun
301 label_none: aucun
302 label_nobody: personne
302 label_nobody: personne
303 label_next: Suivant
303 label_next: Suivant
304 label_previous: Précédent
304 label_previous: Précédent
305 label_used_by: Utilisé par
305 label_used_by: Utilisé par
306 label_details: Détails
306 label_details: Détails
307 label_add_note: Ajouter une note
307 label_add_note: Ajouter une note
308 label_per_page: Par page
308 label_per_page: Par page
309 label_calendar: Calendrier
309 label_calendar: Calendrier
310 label_months_from: mois depuis
310 label_months_from: mois depuis
311 label_gantt: Gantt
311 label_gantt: Gantt
312 label_internal: Interne
312 label_internal: Interne
313 label_last_changes: %d derniers changements
313 label_last_changes: %d derniers changements
314 label_change_view_all: Voir tous les changements
314 label_change_view_all: Voir tous les changements
315 label_personalize_page: Personnaliser cette page
315 label_personalize_page: Personnaliser cette page
316 label_comment: Commentaire
316 label_comment: Commentaire
317 label_comment_plural: Commentaires
317 label_comment_plural: Commentaires
318 label_comment_add: Ajouter un commentaire
318 label_comment_add: Ajouter un commentaire
319 label_comment_added: Commentaire ajouté
319 label_comment_added: Commentaire ajouté
320 label_comment_delete: Supprimer les commentaires
320 label_comment_delete: Supprimer les commentaires
321 label_query: Rapport personnalisé
321 label_query: Rapport personnalisé
322 label_query_plural: Rapports personnalisés
322 label_query_plural: Rapports personnalisés
323 label_query_new: Nouveau rapport
323 label_query_new: Nouveau rapport
324 label_filter_add: Ajouter le filtre
324 label_filter_add: Ajouter le filtre
325 label_filter_plural: Filtres
325 label_filter_plural: Filtres
326 label_equals: égal
326 label_equals: égal
327 label_not_equals: différent
327 label_not_equals: différent
328 label_in_less_than: dans moins de
328 label_in_less_than: dans moins de
329 label_in_more_than: dans plus de
329 label_in_more_than: dans plus de
330 label_in: dans
330 label_in: dans
331 label_today: aujourd'hui
331 label_today: aujourd'hui
332 label_this_week: cette semaine
332 label_this_week: cette semaine
333 label_less_than_ago: il y a moins de
333 label_less_than_ago: il y a moins de
334 label_more_than_ago: il y a plus de
334 label_more_than_ago: il y a plus de
335 label_ago: il y a
335 label_ago: il y a
336 label_contains: contient
336 label_contains: contient
337 label_not_contains: ne contient pas
337 label_not_contains: ne contient pas
338 label_day_plural: jours
338 label_day_plural: jours
339 label_repository: Dépôt
339 label_repository: Dépôt
340 label_browse: Parcourir
340 label_browse: Parcourir
341 label_modification: %d modification
341 label_modification: %d modification
342 label_modification_plural: %d modifications
342 label_modification_plural: %d modifications
343 label_revision: Révision
343 label_revision: Révision
344 label_revision_plural: Révisions
344 label_revision_plural: Révisions
345 label_added: ajouté
345 label_added: ajouté
346 label_modified: modifié
346 label_modified: modifié
347 label_deleted: supprimé
347 label_deleted: supprimé
348 label_latest_revision: Dernière révision
348 label_latest_revision: Dernière révision
349 label_latest_revision_plural: Dernières révisions
349 label_latest_revision_plural: Dernières révisions
350 label_view_revisions: Voir les révisions
350 label_view_revisions: Voir les révisions
351 label_max_size: Taille maximale
351 label_max_size: Taille maximale
352 label_on: sur
352 label_on: sur
353 label_sort_highest: Remonter en premier
353 label_sort_highest: Remonter en premier
354 label_sort_higher: Remonter
354 label_sort_higher: Remonter
355 label_sort_lower: Descendre
355 label_sort_lower: Descendre
356 label_sort_lowest: Descendre en dernier
356 label_sort_lowest: Descendre en dernier
357 label_roadmap: Roadmap
357 label_roadmap: Roadmap
358 label_roadmap_due_in: Echéance dans
358 label_roadmap_due_in: Echéance dans
359 label_roadmap_overdue: En retard de %s
359 label_roadmap_overdue: En retard de %s
360 label_roadmap_no_issues: Aucune demande pour cette version
360 label_roadmap_no_issues: Aucune demande pour cette version
361 label_search: Recherche
361 label_search: Recherche
362 label_result_plural: Résultats
362 label_result_plural: Résultats
363 label_all_words: Tous les mots
363 label_all_words: Tous les mots
364 label_wiki: Wiki
364 label_wiki: Wiki
365 label_wiki_edit: Révision wiki
365 label_wiki_edit: Révision wiki
366 label_wiki_edit_plural: Révisions wiki
366 label_wiki_edit_plural: Révisions wiki
367 label_wiki_page: Page wiki
367 label_wiki_page: Page wiki
368 label_wiki_page_plural: Pages wiki
368 label_wiki_page_plural: Pages wiki
369 label_index_by_title: Index par titre
369 label_index_by_title: Index par titre
370 label_index_by_date: Index par date
370 label_index_by_date: Index par date
371 label_current_version: Version actuelle
371 label_current_version: Version actuelle
372 label_preview: Prévisualisation
372 label_preview: Prévisualisation
373 label_feed_plural: Flux RSS
373 label_feed_plural: Flux RSS
374 label_changes_details: Détails de tous les changements
374 label_changes_details: Détails de tous les changements
375 label_issue_tracking: Suivi des demandes
375 label_issue_tracking: Suivi des demandes
376 label_spent_time: Temps passé
376 label_spent_time: Temps passé
377 label_f_hour: %.2f heure
377 label_f_hour: %.2f heure
378 label_f_hour_plural: %.2f heures
378 label_f_hour_plural: %.2f heures
379 label_time_tracking: Suivi du temps
379 label_time_tracking: Suivi du temps
380 label_change_plural: Changements
380 label_change_plural: Changements
381 label_statistics: Statistiques
381 label_statistics: Statistiques
382 label_commits_per_month: Commits par mois
382 label_commits_per_month: Commits par mois
383 label_commits_per_author: Commits par auteur
383 label_commits_per_author: Commits par auteur
384 label_view_diff: Voir les différences
384 label_view_diff: Voir les différences
385 label_diff_inline: en ligne
385 label_diff_inline: en ligne
386 label_diff_side_by_side: côte à côte
386 label_diff_side_by_side: côte à côte
387 label_options: Options
387 label_options: Options
388 label_copy_workflow_from: Copier le workflow de
388 label_copy_workflow_from: Copier le workflow de
389 label_permissions_report: Synthèse des permissions
389 label_permissions_report: Synthèse des permissions
390 label_watched_issues: Demandes surveillées
390 label_watched_issues: Demandes surveillées
391 label_related_issues: Demandes liées
391 label_related_issues: Demandes liées
392 label_applied_status: Statut appliqué
392 label_applied_status: Statut appliqué
393 label_loading: Chargement...
393 label_loading: Chargement...
394 label_relation_new: Nouvelle relation
394 label_relation_new: Nouvelle relation
395 label_relation_delete: Supprimer la relation
395 label_relation_delete: Supprimer la relation
396 label_relates_to: lié à
396 label_relates_to: lié à
397 label_duplicates: doublon de
397 label_duplicates: doublon de
398 label_blocks: bloque
398 label_blocks: bloque
399 label_blocked_by: bloqué par
399 label_blocked_by: bloqué par
400 label_precedes: précède
400 label_precedes: précède
401 label_follows: suit
401 label_follows: suit
402 label_end_to_start: fin à début
402 label_end_to_start: fin à début
403 label_end_to_end: fin à fin
403 label_end_to_end: fin à fin
404 label_start_to_start: début à début
404 label_start_to_start: début à début
405 label_start_to_end: début à fin
405 label_start_to_end: début à fin
406 label_stay_logged_in: Rester connecté
406 label_stay_logged_in: Rester connecté
407 label_disabled: désactivé
407 label_disabled: désactivé
408 label_show_completed_versions: Voire les versions passées
408 label_show_completed_versions: Voire les versions passées
409 label_me: moi
409 label_me: moi
410 label_board: Forum
410 label_board: Forum
411 label_board_new: Nouveau forum
411 label_board_new: Nouveau forum
412 label_board_plural: Forums
412 label_board_plural: Forums
413 label_topic_plural: Discussions
413 label_topic_plural: Discussions
414 label_message_plural: Messages
414 label_message_plural: Messages
415 label_message_last: Dernier message
415 label_message_last: Dernier message
416 label_message_new: Nouveau message
416 label_message_new: Nouveau message
417 label_reply_plural: Réponses
417 label_reply_plural: Réponses
418 label_send_information: Envoyer les informations à l'utilisateur
418 label_send_information: Envoyer les informations à l'utilisateur
419 label_year: Année
419 label_year: Année
420 label_month: Mois
420 label_month: Mois
421 label_week: Semaine
421 label_week: Semaine
422 label_date_from: Du
422 label_date_from: Du
423 label_date_to: Au
423 label_date_to: Au
424 label_language_based: Basé sur la langue
424 label_language_based: Basé sur la langue
425 label_sort_by: Trier par "%s"
425 label_sort_by: Trier par "%s"
426 label_send_test_email: Envoyer un email de test
426 label_send_test_email: Envoyer un email de test
427 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
427 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
428 label_module_plural: Modules
428 label_module_plural: Modules
429 label_added_time_by: Ajouté par %s il y a %s
429 label_added_time_by: Ajouté par %s il y a %s
430 label_updated_time: Mis à jour il y a %s
430 label_updated_time: Mis à jour il y a %s
431 label_jump_to_a_project: Aller à un projet...
431 label_jump_to_a_project: Aller à un projet...
432 label_file_plural: Fichiers
432 label_file_plural: Fichiers
433 label_changeset_plural: Révisions
433 label_changeset_plural: Révisions
434 label_default_columns: Colonnes par défaut
434 label_default_columns: Colonnes par défaut
435 label_no_change_option: (Pas de changement)
435 label_no_change_option: (Pas de changement)
436 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
436 label_bulk_edit_selected_issues: Modifier les demandes sélectionnées
437 label_theme: Thème
437 label_theme: Thème
438 label_default: Défaut
438 label_default: Défaut
439 label_search_titles_only: Uniquement dans les titres
439 label_search_titles_only: Uniquement dans les titres
440 label_user_mail_option_all: "Pour tous les événements de tous mes projets"
441 label_user_mail_option_selected: "Pour tous les événements des projets sélectionnés..."
442 label_user_mail_option_none: "Seulement pour ce que je surveille ou à quoi je participe"
440
443
441 button_login: Connexion
444 button_login: Connexion
442 button_submit: Soumettre
445 button_submit: Soumettre
443 button_save: Sauvegarder
446 button_save: Sauvegarder
444 button_check_all: Tout cocher
447 button_check_all: Tout cocher
445 button_uncheck_all: Tout décocher
448 button_uncheck_all: Tout décocher
446 button_delete: Supprimer
449 button_delete: Supprimer
447 button_create: Créer
450 button_create: Créer
448 button_test: Tester
451 button_test: Tester
449 button_edit: Modifier
452 button_edit: Modifier
450 button_add: Ajouter
453 button_add: Ajouter
451 button_change: Changer
454 button_change: Changer
452 button_apply: Appliquer
455 button_apply: Appliquer
453 button_clear: Effacer
456 button_clear: Effacer
454 button_lock: Verrouiller
457 button_lock: Verrouiller
455 button_unlock: Déverrouiller
458 button_unlock: Déverrouiller
456 button_download: Télécharger
459 button_download: Télécharger
457 button_list: Lister
460 button_list: Lister
458 button_view: Voir
461 button_view: Voir
459 button_move: Déplacer
462 button_move: Déplacer
460 button_back: Retour
463 button_back: Retour
461 button_cancel: Annuler
464 button_cancel: Annuler
462 button_activate: Activer
465 button_activate: Activer
463 button_sort: Trier
466 button_sort: Trier
464 button_log_time: Saisir temps
467 button_log_time: Saisir temps
465 button_rollback: Revenir à cette version
468 button_rollback: Revenir à cette version
466 button_watch: Surveiller
469 button_watch: Surveiller
467 button_unwatch: Ne plus surveiller
470 button_unwatch: Ne plus surveiller
468 button_reply: Répondre
471 button_reply: Répondre
469 button_archive: Archiver
472 button_archive: Archiver
470 button_unarchive: Désarchiver
473 button_unarchive: Désarchiver
471 button_reset: Réinitialiser
474 button_reset: Réinitialiser
472 button_rename: Renommer
475 button_rename: Renommer
476 button_change_password: Changer de mot de passe
473
477
474 status_active: actif
478 status_active: actif
475 status_registered: enregistré
479 status_registered: enregistré
476 status_locked: vérouillé
480 status_locked: vérouillé
477
481
478 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
482 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
479 text_regexp_info: ex. ^[A-Z0-9]+$
483 text_regexp_info: ex. ^[A-Z0-9]+$
480 text_min_max_length_info: 0 pour aucune restriction
484 text_min_max_length_info: 0 pour aucune restriction
481 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
485 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
482 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
486 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
483 text_are_you_sure: Etes-vous sûr ?
487 text_are_you_sure: Etes-vous sûr ?
484 text_journal_changed: changé de %s à %s
488 text_journal_changed: changé de %s à %s
485 text_journal_set_to: mis à %s
489 text_journal_set_to: mis à %s
486 text_journal_deleted: supprimé
490 text_journal_deleted: supprimé
487 text_tip_task_begin_day: tâche commençant ce jour
491 text_tip_task_begin_day: tâche commençant ce jour
488 text_tip_task_end_day: tâche finissant ce jour
492 text_tip_task_end_day: tâche finissant ce jour
489 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
493 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
490 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
494 text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
491 text_caracters_maximum: %d caractères maximum.
495 text_caracters_maximum: %d caractères maximum.
492 text_length_between: Longueur comprise entre %d et %d caractères.
496 text_length_between: Longueur comprise entre %d et %d caractères.
493 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
497 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
494 text_unallowed_characters: Caractères non autorisés
498 text_unallowed_characters: Caractères non autorisés
495 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
499 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
496 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
500 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
497 text_issue_added: La demande %s a été soumise.
501 text_issue_added: La demande %s a été soumise.
498 text_issue_updated: La demande %s a été mise à jour.
502 text_issue_updated: La demande %s a été mise à jour.
499 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
503 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
500 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
504 text_issue_category_destroy_question: Des demandes (%d) sont affectées à cette catégories. Que voulez-vous faire ?
501 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
505 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
502 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
506 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
507 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
503
508
504 default_role_manager: Manager
509 default_role_manager: Manager
505 default_role_developper: Développeur
510 default_role_developper: Développeur
506 default_role_reporter: Rapporteur
511 default_role_reporter: Rapporteur
507 default_tracker_bug: Anomalie
512 default_tracker_bug: Anomalie
508 default_tracker_feature: Evolution
513 default_tracker_feature: Evolution
509 default_tracker_support: Assistance
514 default_tracker_support: Assistance
510 default_issue_status_new: Nouveau
515 default_issue_status_new: Nouveau
511 default_issue_status_assigned: Assigné
516 default_issue_status_assigned: Assigné
512 default_issue_status_resolved: Résolu
517 default_issue_status_resolved: Résolu
513 default_issue_status_feedback: Commentaire
518 default_issue_status_feedback: Commentaire
514 default_issue_status_closed: Fermé
519 default_issue_status_closed: Fermé
515 default_issue_status_rejected: Rejeté
520 default_issue_status_rejected: Rejeté
516 default_doc_category_user: Documentation utilisateur
521 default_doc_category_user: Documentation utilisateur
517 default_doc_category_tech: Documentation technique
522 default_doc_category_tech: Documentation technique
518 default_priority_low: Bas
523 default_priority_low: Bas
519 default_priority_normal: Normal
524 default_priority_normal: Normal
520 default_priority_high: Haut
525 default_priority_high: Haut
521 default_priority_urgent: Urgent
526 default_priority_urgent: Urgent
522 default_priority_immediate: Immédiat
527 default_priority_immediate: Immédiat
523 default_activity_design: Conception
528 default_activity_design: Conception
524 default_activity_development: Développement
529 default_activity_development: Développement
525
530
526 enumeration_issue_priorities: Priorités des demandes
531 enumeration_issue_priorities: Priorités des demandes
527 enumeration_doc_categories: Catégories des documents
532 enumeration_doc_categories: Catégories des documents
528 enumeration_activities: Activités (suivi du temps)
533 enumeration_activities: Activités (suivi du temps)
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: יום 1
8 actionview_datehelper_time_in_words_day: יום 1
9 actionview_datehelper_time_in_words_day_plural: %d ימים
9 actionview_datehelper_time_in_words_day_plural: %d ימים
10 actionview_datehelper_time_in_words_hour_about: כשעה
10 actionview_datehelper_time_in_words_hour_about: כשעה
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
13 actionview_datehelper_time_in_words_minute: דקה 1
13 actionview_datehelper_time_in_words_minute: דקה 1
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
17 actionview_datehelper_time_in_words_minute_single: דקה 1
17 actionview_datehelper_time_in_words_minute_single: דקה 1
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
20 actionview_instancetag_blank_option: בחר בבקשה
20 actionview_instancetag_blank_option: בחר בבקשה
21
21
22 activerecord_error_inclusion: לא כלול ברשימה
22 activerecord_error_inclusion: לא כלול ברשימה
23 activerecord_error_exclusion: שמור
23 activerecord_error_exclusion: שמור
24 activerecord_error_invalid: לא קביל
24 activerecord_error_invalid: לא קביל
25 activerecord_error_confirmation: לא מתאים לאישור
25 activerecord_error_confirmation: לא מתאים לאישור
26 activerecord_error_accepted: חייב להסכים
26 activerecord_error_accepted: חייב להסכים
27 activerecord_error_empty: לא יכול להיות ריק
27 activerecord_error_empty: לא יכול להיות ריק
28 activerecord_error_blank: לא יכול להיות חסר
28 activerecord_error_blank: לא יכול להיות חסר
29 activerecord_error_too_long: ארוך מדי
29 activerecord_error_too_long: ארוך מדי
30 activerecord_error_too_short: קצר מדי
30 activerecord_error_too_short: קצר מדי
31 activerecord_error_wrong_length: בארוך שגוי
31 activerecord_error_wrong_length: בארוך שגוי
32 activerecord_error_taken: כבר נלקח
32 activerecord_error_taken: כבר נלקח
33 activerecord_error_not_a_number: אינו מספר
33 activerecord_error_not_a_number: אינו מספר
34 activerecord_error_not_a_date: אינו תאריך קביל
34 activerecord_error_not_a_date: אינו תאריך קביל
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
38
38
39 general_fmt_age: שנה %d
39 general_fmt_age: שנה %d
40 general_fmt_age_plural: %d שנים
40 general_fmt_age_plural: %d שנים
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'לא'
45 general_text_No: 'לא'
46 general_text_Yes: 'כן'
46 general_text_Yes: 'כן'
47 general_text_no: 'לא'
47 general_text_no: 'לא'
48 general_text_yes: 'כן'
48 general_text_yes: 'כן'
49 general_lang_name: 'Hebrew (עברית)'
49 general_lang_name: 'Hebrew (עברית)'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-8-I
51 general_csv_encoding: ISO-8859-8-I
52 general_pdf_encoding: ISO-8859-8-I
52 general_pdf_encoding: ISO-8859-8-I
53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
53 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: החשבון עודכן בהצלחה!
56 notice_account_updated: החשבון עודכן בהצלחה!
57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
57 notice_account_invalid_creditentials: שם משתמש או סיסמה שגויים
58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
58 notice_account_password_updated: הסיסמה עודכנה בהצלחה!
59 notice_account_wrong_password: סיסמה שגויה
59 notice_account_wrong_password: סיסמה שגויה
60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
60 notice_account_register_done: החשבון נוצר בהצלחה. להפעלת החשבון לחץ על הקישור שנשלח לדוא"ל שלך.
61 notice_account_unknown_email: משתמש לא מוכר.
61 notice_account_unknown_email: משתמש לא מוכר.
62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
62 notice_can_t_change_password: החשבון הזה משתמש במקור אימות חיצוני. שינוי סיסמה הינו בילתי אפשר
63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
63 notice_account_lost_email_sent: דוא"ל עם הוראות לבחירת סיסמה חדשה נשלח אליך.
64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
64 notice_account_activated: חשבונך הופעל. אתה יכול להתחבר כעת.
65 notice_successful_create: יצירה מוצלחת.
65 notice_successful_create: יצירה מוצלחת.
66 notice_successful_update: עידכון מוצלח.
66 notice_successful_update: עידכון מוצלח.
67 notice_successful_delete: מחיקה מוצלחת.
67 notice_successful_delete: מחיקה מוצלחת.
68 notice_successful_connection: חיבור מוצלח.
68 notice_successful_connection: חיבור מוצלח.
69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
69 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
70 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
71 notice_scm_error: כניסה ו\או גירסא אינם קיימים במאגר.
71 notice_scm_error: כניסה ו\או גירסא אינם קיימים במאגר.
72 notice_not_authorized: אינך מורשה לראות דף זה.
72 notice_not_authorized: אינך מורשה לראות דף זה.
73 notice_email_sent: דוא"ל נשלח לכתובת %s
73 notice_email_sent: דוא"ל נשלח לכתובת %s
74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
75 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
75 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
77 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
77 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
78
78
79 mail_subject_lost_password: סיסמת ה-Redmine שלך
79 mail_subject_lost_password: סיסמת ה-Redmine שלך
80 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
80 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
81 mail_subject_register: הפעלת חשבון Redmine
81 mail_subject_register: הפעלת חשבון Redmine
82 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
82 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
83
83
84 gui_validation_error: שגיאה 1
84 gui_validation_error: שגיאה 1
85 gui_validation_error_plural: %d שגיאות
85 gui_validation_error_plural: %d שגיאות
86
86
87 field_name: שם
87 field_name: שם
88 field_description: תיאור
88 field_description: תיאור
89 field_summary: תקציר
89 field_summary: תקציר
90 field_is_required: נדרש
90 field_is_required: נדרש
91 field_firstname: שם פרטי
91 field_firstname: שם פרטי
92 field_lastname: שם משפחה
92 field_lastname: שם משפחה
93 field_mail: דוא"ל
93 field_mail: דוא"ל
94 field_filename: קובץ
94 field_filename: קובץ
95 field_filesize: גודל
95 field_filesize: גודל
96 field_downloads: הורדות
96 field_downloads: הורדות
97 field_author: כותב
97 field_author: כותב
98 field_created_on: נוצר
98 field_created_on: נוצר
99 field_updated_on: עודגן
99 field_updated_on: עודגן
100 field_field_format: פורמט
100 field_field_format: פורמט
101 field_is_for_all: לכל הפרויקטים
101 field_is_for_all: לכל הפרויקטים
102 field_possible_values: ערכים אפשריים
102 field_possible_values: ערכים אפשריים
103 field_regexp: ביטוי רגיל
103 field_regexp: ביטוי רגיל
104 field_min_length: אורך מינימאלי
104 field_min_length: אורך מינימאלי
105 field_max_length: אורך מקסימאלי
105 field_max_length: אורך מקסימאלי
106 field_value: ערך
106 field_value: ערך
107 field_category: קטגוריה
107 field_category: קטגוריה
108 field_title: כותרת
108 field_title: כותרת
109 field_project: פרויקט
109 field_project: פרויקט
110 field_issue: נושא
110 field_issue: נושא
111 field_status: מצב
111 field_status: מצב
112 field_notes: הערות
112 field_notes: הערות
113 field_is_closed: נושא סגור
113 field_is_closed: נושא סגור
114 field_is_default: ערך ברירת מחדל
114 field_is_default: ערך ברירת מחדל
115 field_html_color: צבע
115 field_html_color: צבע
116 field_tracker: עוקב
116 field_tracker: עוקב
117 field_subject: שם נושא
117 field_subject: שם נושא
118 field_due_date: תאריך סיום
118 field_due_date: תאריך סיום
119 field_assigned_to: מוצב ל
119 field_assigned_to: מוצב ל
120 field_priority: עדיפות
120 field_priority: עדיפות
121 field_fixed_version: גירסא מקובעת
121 field_fixed_version: גירסא מקובעת
122 field_user: מתשמש
122 field_user: מתשמש
123 field_role: תפקיד
123 field_role: תפקיד
124 field_homepage: דף הבית
124 field_homepage: דף הבית
125 field_is_public: פומבי
125 field_is_public: פומבי
126 field_parent: תת פרויקט של
126 field_parent: תת פרויקט של
127 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
127 field_is_in_chlog: נושאים המוצגים בדו"ח השינויים
128 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
128 field_is_in_roadmap: נושאים המוצגים במפת הדרכים
129 field_login: שם משתמש
129 field_login: שם משתמש
130 field_mail_notification: הודעות דוא"ל
130 field_mail_notification: הודעות דוא"ל
131 field_admin: אדמיניסטרציה
131 field_admin: אדמיניסטרציה
132 field_last_login_on: חיבור אחרון
132 field_last_login_on: חיבור אחרון
133 field_language: שפה
133 field_language: שפה
134 field_effective_date: תאריך
134 field_effective_date: תאריך
135 field_password: סיסמה
135 field_password: סיסמה
136 field_new_password: סיסמה חדשה
136 field_new_password: סיסמה חדשה
137 field_password_confirmation: אישור
137 field_password_confirmation: אישור
138 field_version: גירסא
138 field_version: גירסא
139 field_type: סוג
139 field_type: סוג
140 field_host: שרת
140 field_host: שרת
141 field_port: פורט
141 field_port: פורט
142 field_account: חשבום
142 field_account: חשבום
143 field_base_dn: בסיס DN
143 field_base_dn: בסיס DN
144 field_attr_login: תכונת התחברות
144 field_attr_login: תכונת התחברות
145 field_attr_firstname: תכונת שם פרטים
145 field_attr_firstname: תכונת שם פרטים
146 field_attr_lastname: תכונת שם משפחה
146 field_attr_lastname: תכונת שם משפחה
147 field_attr_mail: תכונת דוא"ל
147 field_attr_mail: תכונת דוא"ל
148 field_onthefly: יצירת משתמשים זריזה
148 field_onthefly: יצירת משתמשים זריזה
149 field_start_date: התחל
149 field_start_date: התחל
150 field_done_ratio: %% גמור
150 field_done_ratio: %% גמור
151 field_auth_source: מצב אימות
151 field_auth_source: מצב אימות
152 field_hide_mail: החבא את כתובת הדוא"ל שלי
152 field_hide_mail: החבא את כתובת הדוא"ל שלי
153 field_comments: הערות
153 field_comments: הערות
154 field_url: URL
154 field_url: URL
155 field_start_page: דף התחלתי
155 field_start_page: דף התחלתי
156 field_subproject: תת פרויקט
156 field_subproject: תת פרויקט
157 field_hours: שעות
157 field_hours: שעות
158 field_activity: פעילות
158 field_activity: פעילות
159 field_spent_on: תאריך
159 field_spent_on: תאריך
160 field_identifier: מזהה
160 field_identifier: מזהה
161 field_is_filter: משמש כמסנן
161 field_is_filter: משמש כמסנן
162 field_issue_to_id: נושאים קשורים
162 field_issue_to_id: נושאים קשורים
163 field_delay: עיקוב
163 field_delay: עיקוב
164 field_assignable: ניתן להקצות נושאים לתפקיד זה
164 field_assignable: ניתן להקצות נושאים לתפקיד זה
165 field_redirect_existing_links: העבר קישורים קיימים
165 field_redirect_existing_links: העבר קישורים קיימים
166 field_estimated_hours: זמן משוער
166 field_estimated_hours: זמן משוער
167 field_column_names: עמודות
167 field_column_names: עמודות
168
168
169 setting_app_title: כותרת ישום
169 setting_app_title: כותרת ישום
170 setting_app_subtitle: תת-כותרת ישום
170 setting_app_subtitle: תת-כותרת ישום
171 setting_welcome_text: טקסט "ברוך הבא"
171 setting_welcome_text: טקסט "ברוך הבא"
172 setting_default_language: שפת ברירת מחדל
172 setting_default_language: שפת ברירת מחדל
173 setting_login_required: דרוש אימות
173 setting_login_required: דרוש אימות
174 setting_self_registration: אפשר הרשמות עצמית
174 setting_self_registration: אפשר הרשמות עצמית
175 setting_attachment_max_size: גודל דבוקה מקסימאלי
175 setting_attachment_max_size: גודל דבוקה מקסימאלי
176 setting_issues_export_limit: גבול יצוא נושאים
176 setting_issues_export_limit: גבול יצוא נושאים
177 setting_mail_from: כתובת שליחת דוא"ל
177 setting_mail_from: כתובת שליחת דוא"ל
178 setting_host_name: שם שרת
178 setting_host_name: שם שרת
179 setting_text_formatting: עיצוב טקסט
179 setting_text_formatting: עיצוב טקסט
180 setting_wiki_compression: כיווץ היסטורית WIKI
180 setting_wiki_compression: כיווץ היסטורית WIKI
181 setting_feeds_limit: גבול תוכן הזנות
181 setting_feeds_limit: גבול תוכן הזנות
182 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
182 setting_autofetch_changesets: משיכה אוטומתי של עידכונים
183 setting_sys_api_enabled: Enable WS for repository management
183 setting_sys_api_enabled: Enable WS for repository management
184 setting_commit_ref_keywords: מילות מפתח מקשרות
184 setting_commit_ref_keywords: מילות מפתח מקשרות
185 setting_commit_fix_keywords: מילות מפתח מתקנות
185 setting_commit_fix_keywords: מילות מפתח מתקנות
186 setting_autologin: חיבור אוטומטי
186 setting_autologin: חיבור אוטומטי
187 setting_date_format: פורמט תאריך
187 setting_date_format: פורמט תאריך
188 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
188 setting_cross_project_issue_relations: הרשה קישור נושאים בין פרויקטים
189 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
189 setting_issue_list_default_columns: עמודות ברירת מחדל המוצגות ברשימת הנושאים
190 setting_repositories_encodings: קידוד המאגרים
190 setting_repositories_encodings: קידוד המאגרים
191
191
192 label_user: משתמש
192 label_user: משתמש
193 label_user_plural: משתמשים
193 label_user_plural: משתמשים
194 label_user_new: משתמש חדש
194 label_user_new: משתמש חדש
195 label_project: פרויקט
195 label_project: פרויקט
196 label_project_new: פרויקט חדש
196 label_project_new: פרויקט חדש
197 label_project_plural: פרויקטים
197 label_project_plural: פרויקטים
198 label_project_all: כל הפרויקטים
198 label_project_all: כל הפרויקטים
199 label_project_latest: הפרויקטים החדשים ביותר
199 label_project_latest: הפרויקטים החדשים ביותר
200 label_issue: נושא
200 label_issue: נושא
201 label_issue_new: נושא חדש
201 label_issue_new: נושא חדש
202 label_issue_plural: נושאים
202 label_issue_plural: נושאים
203 label_issue_view_all: צפה בכל הנושאים
203 label_issue_view_all: צפה בכל הנושאים
204 label_document: מסמך
204 label_document: מסמך
205 label_document_new: מסמך חדש
205 label_document_new: מסמך חדש
206 label_document_plural: מסמכים
206 label_document_plural: מסמכים
207 label_role: תפקיד
207 label_role: תפקיד
208 label_role_plural: תפקידים
208 label_role_plural: תפקידים
209 label_role_new: תפקיד חדש
209 label_role_new: תפקיד חדש
210 label_role_and_permissions: תפקידים והרשאות
210 label_role_and_permissions: תפקידים והרשאות
211 label_member: חבר
211 label_member: חבר
212 label_member_new: חבר חדש
212 label_member_new: חבר חדש
213 label_member_plural: חברים
213 label_member_plural: חברים
214 label_tracker: עוקב
214 label_tracker: עוקב
215 label_tracker_plural: עוקבים
215 label_tracker_plural: עוקבים
216 label_tracker_new: עוקב חדש
216 label_tracker_new: עוקב חדש
217 label_workflow: זרימת עבודה
217 label_workflow: זרימת עבודה
218 label_issue_status: מצב נושא
218 label_issue_status: מצב נושא
219 label_issue_status_plural: מצבי נושא
219 label_issue_status_plural: מצבי נושא
220 label_issue_status_new: מצב חדש
220 label_issue_status_new: מצב חדש
221 label_issue_category: קטגורית נושא
221 label_issue_category: קטגורית נושא
222 label_issue_category_plural: קטגוריות נושא
222 label_issue_category_plural: קטגוריות נושא
223 label_issue_category_new: קטגוריה חדשה
223 label_issue_category_new: קטגוריה חדשה
224 label_custom_field: שדה אישי
224 label_custom_field: שדה אישי
225 label_custom_field_plural: שדות אישיים
225 label_custom_field_plural: שדות אישיים
226 label_custom_field_new: שדה אישי חדש
226 label_custom_field_new: שדה אישי חדש
227 label_enumerations: אינומרציות
227 label_enumerations: אינומרציות
228 label_enumeration_new: ערך חדש
228 label_enumeration_new: ערך חדש
229 label_information: מידע
229 label_information: מידע
230 label_information_plural: מידע
230 label_information_plural: מידע
231 label_please_login: התחבר בבקשה
231 label_please_login: התחבר בבקשה
232 label_register: הרשמה
232 label_register: הרשמה
233 label_password_lost: אבדה הסיסמה?
233 label_password_lost: אבדה הסיסמה?
234 label_home: דך הבית
234 label_home: דך הבית
235 label_my_page: הדף שלי
235 label_my_page: הדף שלי
236 label_my_account: השבון שלי
236 label_my_account: השבון שלי
237 label_my_projects: הפרויקטים שלי
237 label_my_projects: הפרויקטים שלי
238 label_administration: אדמיניסטרציה
238 label_administration: אדמיניסטרציה
239 label_login: התחבר
239 label_login: התחבר
240 label_logout: התנתק
240 label_logout: התנתק
241 label_help: עזרה
241 label_help: עזרה
242 label_reported_issues: נושאים שדווחו
242 label_reported_issues: נושאים שדווחו
243 label_assigned_to_me_issues: נושאים שהוצבו לי
243 label_assigned_to_me_issues: נושאים שהוצבו לי
244 label_last_login: חיבור אחרון
244 label_last_login: חיבור אחרון
245 label_last_updates: עידכון אחרון
245 label_last_updates: עידכון אחרון
246 label_last_updates_plural: %d עידכונים אחרונים
246 label_last_updates_plural: %d עידכונים אחרונים
247 label_registered_on: נרשם בתאריך
247 label_registered_on: נרשם בתאריך
248 label_activity: פעילות
248 label_activity: פעילות
249 label_new: חדש
249 label_new: חדש
250 label_logged_as: מחובר כ
250 label_logged_as: מחובר כ
251 label_environment: סביבה
251 label_environment: סביבה
252 label_authentication: אישור
252 label_authentication: אישור
253 label_auth_source: מצב אישור
253 label_auth_source: מצב אישור
254 label_auth_source_new: מצב אישור חדש
254 label_auth_source_new: מצב אישור חדש
255 label_auth_source_plural: מצבי אישור
255 label_auth_source_plural: מצבי אישור
256 label_subproject_plural: תת-פרויקטים
256 label_subproject_plural: תת-פרויקטים
257 label_min_max_length: אורך מינימאלי - מקסימאלי
257 label_min_max_length: אורך מינימאלי - מקסימאלי
258 label_list: רשימה
258 label_list: רשימה
259 label_date: תאריך
259 label_date: תאריך
260 label_integer: מספר שלים
260 label_integer: מספר שלים
261 label_boolean: ערך בוליאני
261 label_boolean: ערך בוליאני
262 label_string: טקסט
262 label_string: טקסט
263 label_text: טקסט ארוך
263 label_text: טקסט ארוך
264 label_attribute: תכונה
264 label_attribute: תכונה
265 label_attribute_plural: תכונות
265 label_attribute_plural: תכונות
266 label_download: הורדה %d
266 label_download: הורדה %d
267 label_download_plural: %d הורדות
267 label_download_plural: %d הורדות
268 label_no_data: אין מידע להציג
268 label_no_data: אין מידע להציג
269 label_change_status: שנה מצב
269 label_change_status: שנה מצב
270 label_history: הידטוריה
270 label_history: הידטוריה
271 label_attachment: קובץ
271 label_attachment: קובץ
272 label_attachment_new: קובץ חדש
272 label_attachment_new: קובץ חדש
273 label_attachment_delete: מחק קובץ
273 label_attachment_delete: מחק קובץ
274 label_attachment_plural: קבצים
274 label_attachment_plural: קבצים
275 label_report: דו"ח
275 label_report: דו"ח
276 label_report_plural: דו"חות
276 label_report_plural: דו"חות
277 label_news: חדשות
277 label_news: חדשות
278 label_news_new: הוסף חדשות
278 label_news_new: הוסף חדשות
279 label_news_plural: חדשות
279 label_news_plural: חדשות
280 label_news_latest: חדשות חדשות
280 label_news_latest: חדשות חדשות
281 label_news_view_all: צפה בכל החדשות
281 label_news_view_all: צפה בכל החדשות
282 label_change_log: דו"ח שינויים
282 label_change_log: דו"ח שינויים
283 label_settings: הגדרות
283 label_settings: הגדרות
284 label_overview: מבט רחב
284 label_overview: מבט רחב
285 label_version: גירסא
285 label_version: גירסא
286 label_version_new: גירסא חדשה
286 label_version_new: גירסא חדשה
287 label_version_plural: גירסאות
287 label_version_plural: גירסאות
288 label_confirmation: אישור
288 label_confirmation: אישור
289 label_export_to: יצא ל
289 label_export_to: יצא ל
290 label_read: קרא...
290 label_read: קרא...
291 label_public_projects: פרויקטים פומביים
291 label_public_projects: פרויקטים פומביים
292 label_open_issues: פותח
292 label_open_issues: פותח
293 label_open_issues_plural: פתוחים
293 label_open_issues_plural: פתוחים
294 label_closed_issues: סגור
294 label_closed_issues: סגור
295 label_closed_issues_plural: סגורים
295 label_closed_issues_plural: סגורים
296 label_total: סה"כ
296 label_total: סה"כ
297 label_permissions: הרשאות
297 label_permissions: הרשאות
298 label_current_status: מצב נוכחי
298 label_current_status: מצב נוכחי
299 label_new_statuses_allowed: מצבים חדשים אפשריים
299 label_new_statuses_allowed: מצבים חדשים אפשריים
300 label_all: הכל
300 label_all: הכל
301 label_none: כלום
301 label_none: כלום
302 label_next: הבא
302 label_next: הבא
303 label_previous: הקודם
303 label_previous: הקודם
304 label_used_by: בשימוש ע"י
304 label_used_by: בשימוש ע"י
305 label_details: פרטים
305 label_details: פרטים
306 label_add_note: הוסף הערה
306 label_add_note: הוסף הערה
307 label_per_page: לכל דף
307 label_per_page: לכל דף
308 label_calendar: לו"ח שנה
308 label_calendar: לו"ח שנה
309 label_months_from: חודשים מ
309 label_months_from: חודשים מ
310 label_gantt: גאנט
310 label_gantt: גאנט
311 label_internal: פנימי
311 label_internal: פנימי
312 label_last_changes: %d שינוים אחרונים
312 label_last_changes: %d שינוים אחרונים
313 label_change_view_all: צפה בכל השינוים
313 label_change_view_all: צפה בכל השינוים
314 label_personalize_page: הפוך דף זה לשלך
314 label_personalize_page: הפוך דף זה לשלך
315 label_comment: תגובה
315 label_comment: תגובה
316 label_comment_plural: תגובות
316 label_comment_plural: תגובות
317 label_comment_add: הוסף תגובה
317 label_comment_add: הוסף תגובה
318 label_comment_added: תגובה הוספה
318 label_comment_added: תגובה הוספה
319 label_comment_delete: מחק תגובות
319 label_comment_delete: מחק תגובות
320 label_query: שאילתה אישית
320 label_query: שאילתה אישית
321 label_query_plural: שאילתות אישיות
321 label_query_plural: שאילתות אישיות
322 label_query_new: שאילתה חדשה
322 label_query_new: שאילתה חדשה
323 label_filter_add: הוסף מסנן
323 label_filter_add: הוסף מסנן
324 label_filter_plural: מסננים
324 label_filter_plural: מסננים
325 label_equals: הוא
325 label_equals: הוא
326 label_not_equals: הוא לא
326 label_not_equals: הוא לא
327 label_in_less_than: בפחות מ
327 label_in_less_than: בפחות מ
328 label_in_more_than: ביותר מ
328 label_in_more_than: ביותר מ
329 label_in: ב
329 label_in: ב
330 label_today: היום
330 label_today: היום
331 label_this_week: השבוע
331 label_this_week: השבוע
332 label_less_than_ago: פחות ממספר ימים
332 label_less_than_ago: פחות ממספר ימים
333 label_more_than_ago: יותר ממספר ימים
333 label_more_than_ago: יותר ממספר ימים
334 label_ago: מספר ימים
334 label_ago: מספר ימים
335 label_contains: מכיל
335 label_contains: מכיל
336 label_not_contains: לא מכיל
336 label_not_contains: לא מכיל
337 label_day_plural: ימים
337 label_day_plural: ימים
338 label_repository: מאגר
338 label_repository: מאגר
339 label_browse: סייר
339 label_browse: סייר
340 label_modification: שינוי %d
340 label_modification: שינוי %d
341 label_modification_plural: %d שינויים
341 label_modification_plural: %d שינויים
342 label_revision: גירסא
342 label_revision: גירסא
343 label_revision_plural: גירסאות
343 label_revision_plural: גירסאות
344 label_added: הוסף
344 label_added: הוסף
345 label_modified: שונה
345 label_modified: שונה
346 label_deleted: נמחק
346 label_deleted: נמחק
347 label_latest_revision: גירסא אחרונה
347 label_latest_revision: גירסא אחרונה
348 label_latest_revision_plural: גירסאות אחרונות
348 label_latest_revision_plural: גירסאות אחרונות
349 label_view_revisions: צפה בגירסאות
349 label_view_revisions: צפה בגירסאות
350 label_max_size: גודל מקסימאלי
350 label_max_size: גודל מקסימאלי
351 label_on: 'ב'
351 label_on: 'ב'
352 label_sort_highest: הזז לראשית
352 label_sort_highest: הזז לראשית
353 label_sort_higher: הזז למעלה
353 label_sort_higher: הזז למעלה
354 label_sort_lower: הזז למטה
354 label_sort_lower: הזז למטה
355 label_sort_lowest: הזז לתחתית
355 label_sort_lowest: הזז לתחתית
356 label_roadmap: מפת הדרכים
356 label_roadmap: מפת הדרכים
357 label_roadmap_due_in: נגמר בעוד
357 label_roadmap_due_in: נגמר בעוד
358 label_roadmap_overdue: %s מאחר
358 label_roadmap_overdue: %s מאחר
359 label_roadmap_no_issues: אין נושאים לגירסא זו
359 label_roadmap_no_issues: אין נושאים לגירסא זו
360 label_search: חפש
360 label_search: חפש
361 label_result_plural: תוצאות
361 label_result_plural: תוצאות
362 label_all_words: כל המילים
362 label_all_words: כל המילים
363 label_wiki: Wiki
363 label_wiki: Wiki
364 label_wiki_edit: ערוך Wiki
364 label_wiki_edit: ערוך Wiki
365 label_wiki_edit_plural: עריכות Wiki
365 label_wiki_edit_plural: עריכות Wiki
366 label_wiki_page: דף Wiki
366 label_wiki_page: דף Wiki
367 label_wiki_page_plural: דפי Wiki
367 label_wiki_page_plural: דפי Wiki
368 label_index_by_title: סדר עך פי כותרת
368 label_index_by_title: סדר עך פי כותרת
369 label_index_by_date: סדר על פי תאריך
369 label_index_by_date: סדר על פי תאריך
370 label_current_version: גירסא נוכאית
370 label_current_version: גירסא נוכאית
371 label_preview: תצוגה מקדימה
371 label_preview: תצוגה מקדימה
372 label_feed_plural: הזנות
372 label_feed_plural: הזנות
373 label_changes_details: פירוט כל השינויים
373 label_changes_details: פירוט כל השינויים
374 label_issue_tracking: מעקב אחר נושאים
374 label_issue_tracking: מעקב אחר נושאים
375 label_spent_time: זמן שבוזבז
375 label_spent_time: זמן שבוזבז
376 label_f_hour: %.2f שעה
376 label_f_hour: %.2f שעה
377 label_f_hour_plural: %.2f שעות
377 label_f_hour_plural: %.2f שעות
378 label_time_tracking: מעקב זמנים
378 label_time_tracking: מעקב זמנים
379 label_change_plural: שינויים
379 label_change_plural: שינויים
380 label_statistics: סטטיסטיקות
380 label_statistics: סטטיסטיקות
381 label_commits_per_month: הפקדות לפי חודש
381 label_commits_per_month: הפקדות לפי חודש
382 label_commits_per_author: הפקדות לפי כותב
382 label_commits_per_author: הפקדות לפי כותב
383 label_view_diff: צפה בהבדלים
383 label_view_diff: צפה בהבדלים
384 label_diff_inline: בתוך השורה
384 label_diff_inline: בתוך השורה
385 label_diff_side_by_side: צד לצד
385 label_diff_side_by_side: צד לצד
386 label_options: אפשרויות
386 label_options: אפשרויות
387 label_copy_workflow_from: העתק זירמת עבודה מ
387 label_copy_workflow_from: העתק זירמת עבודה מ
388 label_permissions_report: דו"ח הרשאות
388 label_permissions_report: דו"ח הרשאות
389 label_watched_issues: נושאים שנצפו
389 label_watched_issues: נושאים שנצפו
390 label_related_issues: נושאים קשורים
390 label_related_issues: נושאים קשורים
391 label_applied_status: מוצב מוחל
391 label_applied_status: מוצב מוחל
392 label_loading: טוען...
392 label_loading: טוען...
393 label_relation_new: קשר חדש
393 label_relation_new: קשר חדש
394 label_relation_delete: מחק קשר
394 label_relation_delete: מחק קשר
395 label_relates_to: קשור ל
395 label_relates_to: קשור ל
396 label_duplicates: מכפיל את
396 label_duplicates: מכפיל את
397 label_blocks: חוסם את
397 label_blocks: חוסם את
398 label_blocked_by: חסום ע"י
398 label_blocked_by: חסום ע"י
399 label_precedes: מקדים את
399 label_precedes: מקדים את
400 label_follows: עוקב אחרי
400 label_follows: עוקב אחרי
401 label_end_to_start: מהתחלה לסוף
401 label_end_to_start: מהתחלה לסוף
402 label_end_to_end: מהסוף לסוף
402 label_end_to_end: מהסוף לסוף
403 label_start_to_start: מהתחלה להתחלה
403 label_start_to_start: מהתחלה להתחלה
404 label_start_to_end: מהתחלה לסוף
404 label_start_to_end: מהתחלה לסוף
405 label_stay_logged_in: השאר מחובר
405 label_stay_logged_in: השאר מחובר
406 label_disabled: מבוטל
406 label_disabled: מבוטל
407 label_show_completed_versions: הצג גירזאות גמורות
407 label_show_completed_versions: הצג גירזאות גמורות
408 label_me: אני
408 label_me: אני
409 label_board: פורום
409 label_board: פורום
410 label_board_new: פורום חדש
410 label_board_new: פורום חדש
411 label_board_plural: פורומים
411 label_board_plural: פורומים
412 label_topic_plural: נושאים
412 label_topic_plural: נושאים
413 label_message_plural: הודעות
413 label_message_plural: הודעות
414 label_message_last: הודעה אחרונה
414 label_message_last: הודעה אחרונה
415 label_message_new: הודעה חדשה
415 label_message_new: הודעה חדשה
416 label_reply_plural: השבות
416 label_reply_plural: השבות
417 label_send_information: שלח מידע על חשבון למשתמש
417 label_send_information: שלח מידע על חשבון למשתמש
418 label_year: שנה
418 label_year: שנה
419 label_month: חודש
419 label_month: חודש
420 label_week: שבו
420 label_week: שבו
421 label_date_from: מאת
421 label_date_from: מאת
422 label_date_to: אל
422 label_date_to: אל
423 label_language_based: מבוסס שפה
423 label_language_based: מבוסס שפה
424 label_sort_by: מין לפי "%s"
424 label_sort_by: מין לפי "%s"
425 label_send_test_email: שלח דו"ל בדיקה
425 label_send_test_email: שלח דו"ל בדיקה
426 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
426 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
427 label_module_plural: מודולים
427 label_module_plural: מודולים
428 label_added_time_by: הוסף על ידי %s לפני %s
428 label_added_time_by: הוסף על ידי %s לפני %s
429 label_updated_time: עודכן לפני %s
429 label_updated_time: עודכן לפני %s
430 label_jump_to_a_project: קפוץ לפרויקט...
430 label_jump_to_a_project: קפוץ לפרויקט...
431 label_file_plural: קבצים
431 label_file_plural: קבצים
432 label_changeset_plural: אוסף שינוים
432 label_changeset_plural: אוסף שינוים
433 label_default_columns: עמודת ברירת מחדל
433 label_default_columns: עמודת ברירת מחדל
434 label_no_change_option: (אין שינוים)
434 label_no_change_option: (אין שינוים)
435 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
435 label_bulk_edit_selected_issues: ערוך את הנושאים המסומנים
436 label_theme: ערכת נושא
436 label_theme: ערכת נושא
437 label_default: ברירת מחדש
437 label_default: ברירת מחדש
438
438
439 button_login: התחבר
439 button_login: התחבר
440 button_submit: הגש
440 button_submit: הגש
441 button_save: שמור
441 button_save: שמור
442 button_check_all: בחר הכל
442 button_check_all: בחר הכל
443 button_uncheck_all: בחר כלום
443 button_uncheck_all: בחר כלום
444 button_delete: מחק
444 button_delete: מחק
445 button_create: צוק
445 button_create: צוק
446 button_test: בדוק
446 button_test: בדוק
447 button_edit: ערוך
447 button_edit: ערוך
448 button_add: הוסף
448 button_add: הוסף
449 button_change: שנה
449 button_change: שנה
450 button_apply: הוצא לפועל
450 button_apply: הוצא לפועל
451 button_clear: נקה
451 button_clear: נקה
452 button_lock: נעל
452 button_lock: נעל
453 button_unlock: בטל נעילה
453 button_unlock: בטל נעילה
454 button_download: הורד
454 button_download: הורד
455 button_list: קשימה
455 button_list: קשימה
456 button_view: צפה
456 button_view: צפה
457 button_move: הזז
457 button_move: הזז
458 button_back: הקודם
458 button_back: הקודם
459 button_cancel: בטח
459 button_cancel: בטח
460 button_activate: הפעל
460 button_activate: הפעל
461 button_sort: מין
461 button_sort: מין
462 button_log_time: זמן לוג
462 button_log_time: זמן לוג
463 button_rollback: חזור לגירסא זו
463 button_rollback: חזור לגירסא זו
464 button_watch: צפה
464 button_watch: צפה
465 button_unwatch: בטל צפיה
465 button_unwatch: בטל צפיה
466 button_reply: השב
466 button_reply: השב
467 button_archive: ארכיון
467 button_archive: ארכיון
468 button_unarchive: הוצא מהארכיון
468 button_unarchive: הוצא מהארכיון
469 button_reset: אפס
469 button_reset: אפס
470 button_rename: שנה שם
470 button_rename: שנה שם
471
471
472 status_active: פעיל
472 status_active: פעיל
473 status_registered: רשום
473 status_registered: רשום
474 status_locked: נעול
474 status_locked: נעול
475
475
476 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
476 text_select_mail_notifications: בחר פעולת שבגללן ישלח דוא"ל.
477 text_regexp_info: כגון. ^[A-Z0-9]+$
477 text_regexp_info: כגון. ^[A-Z0-9]+$
478 text_min_max_length_info: 0 משמעו ללא הגבלות
478 text_min_max_length_info: 0 משמעו ללא הגבלות
479 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
479 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
480 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
480 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
481 text_are_you_sure: האם אתה בטוח ?
481 text_are_you_sure: האם אתה בטוח ?
482 text_journal_changed: שונה מ %s ל %s
482 text_journal_changed: שונה מ %s ל %s
483 text_journal_set_to: שונה ל %s
483 text_journal_set_to: שונה ל %s
484 text_journal_deleted: נמחק
484 text_journal_deleted: נמחק
485 text_tip_task_begin_day: מטלה המתחילה היום
485 text_tip_task_begin_day: מטלה המתחילה היום
486 text_tip_task_end_day: מטלה המסתיימת היום
486 text_tip_task_end_day: מטלה המסתיימת היום
487 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
487 text_tip_task_begin_end_day: מתלה המתחילה ומסתיימת היום
488 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
488 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
489 text_caracters_maximum: מקסימום %d תווים.
489 text_caracters_maximum: מקסימום %d תווים.
490 text_length_between: אורך בין %d ל %d תווים.
490 text_length_between: אורך בין %d ל %d תווים.
491 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
491 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
492 text_unallowed_characters: תווים לא מורשים
492 text_unallowed_characters: תווים לא מורשים
493 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
493 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
494 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
494 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
495 text_issue_added: הנושא %s דווח.
495 text_issue_added: הנושא %s דווח.
496 text_issue_updated: הנושא %s עודכן.
496 text_issue_updated: הנושא %s עודכן.
497 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
497 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
498 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
498 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
499 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
499 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
500 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
500 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
501
501
502 default_role_manager: מנהל
502 default_role_manager: מנהל
503 default_role_developper: מפתח
503 default_role_developper: מפתח
504 default_role_reporter: מדווח
504 default_role_reporter: מדווח
505 default_tracker_bug: באג
505 default_tracker_bug: באג
506 default_tracker_feature: פיצ'ר
506 default_tracker_feature: פיצ'ר
507 default_tracker_support: תמיכה
507 default_tracker_support: תמיכה
508 default_issue_status_new: חדש
508 default_issue_status_new: חדש
509 default_issue_status_assigned: מוצב
509 default_issue_status_assigned: מוצב
510 default_issue_status_resolved: פתור
510 default_issue_status_resolved: פתור
511 default_issue_status_feedback: משוב
511 default_issue_status_feedback: משוב
512 default_issue_status_closed: סגור
512 default_issue_status_closed: סגור
513 default_issue_status_rejected: דחוי
513 default_issue_status_rejected: דחוי
514 default_doc_category_user: תיעוד משתמש
514 default_doc_category_user: תיעוד משתמש
515 default_doc_category_tech: תיעוד טכני
515 default_doc_category_tech: תיעוד טכני
516 default_priority_low: נמוכה
516 default_priority_low: נמוכה
517 default_priority_normal: רגילה
517 default_priority_normal: רגילה
518 default_priority_high: גהבוה
518 default_priority_high: גהבוה
519 default_priority_urgent: דחופה
519 default_priority_urgent: דחופה
520 default_priority_immediate: מידית
520 default_priority_immediate: מידית
521 default_activity_design: עיצוב
521 default_activity_design: עיצוב
522 default_activity_development: פיתוח
522 default_activity_development: פיתוח
523
523
524 enumeration_issue_priorities: עדיפות נושאים
524 enumeration_issue_priorities: עדיפות נושאים
525 enumeration_doc_categories: קטגוריות מסמכים
525 enumeration_doc_categories: קטגוריות מסמכים
526 enumeration_activities: פעילויות (מעקב אחר זמנים)
526 enumeration_activities: פעילויות (מעקב אחר זמנים)
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: non coincide con la conferma
25 activerecord_error_confirmation: non coincide con la conferma
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
45 general_text_No: 'No'
46 general_text_Yes: 'Si'
46 general_text_Yes: 'Si'
47 general_text_no: 'no'
47 general_text_no: 'no'
48 general_text_yes: 'si'
48 general_text_yes: 'si'
49 general_lang_name: 'Italiano'
49 general_lang_name: 'Italiano'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
53 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: L'utenza è stata aggiornata.
56 notice_account_updated: L'utenza è stata aggiornata.
57 notice_account_invalid_creditentials: Nome utente o password non validi.
57 notice_account_invalid_creditentials: Nome utente o password non validi.
58 notice_account_password_updated: La password è stata aggiornata.
58 notice_account_password_updated: La password è stata aggiornata.
59 notice_account_wrong_password: Password errata
59 notice_account_wrong_password: Password errata
60 notice_account_register_done: L'utenza è stata creata.
60 notice_account_register_done: L'utenza è stata creata.
61 notice_account_unknown_email: Utente sconosciuto.
61 notice_account_unknown_email: Utente sconosciuto.
62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
62 notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password.
63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
63 notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password.
64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
64 notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso.
65 notice_successful_create: Creazione effettuata.
65 notice_successful_create: Creazione effettuata.
66 notice_successful_update: Modifica effettuata.
66 notice_successful_update: Modifica effettuata.
67 notice_successful_delete: Eliminazione effettuata.
67 notice_successful_delete: Eliminazione effettuata.
68 notice_successful_connection: Connessione effettuata.
68 notice_successful_connection: Connessione effettuata.
69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
69 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
70 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
71 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
71 notice_scm_error: La risorsa e/o la versione non esistono nel repository.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Password redMine
77 mail_subject_lost_password: Password redMine
78 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
78 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
79 mail_subject_register: Attivazione utenza redMine
79 mail_subject_register: Attivazione utenza redMine
80 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
80 mail_body_register: 'Per attivare la vostra utenza Redmine, usate il seguente collegamento:'
81
81
82 gui_validation_error: 1 errore
82 gui_validation_error: 1 errore
83 gui_validation_error_plural: %d errori
83 gui_validation_error_plural: %d errori
84
84
85 field_name: Nome
85 field_name: Nome
86 field_description: Descrizione
86 field_description: Descrizione
87 field_summary: Sommario
87 field_summary: Sommario
88 field_is_required: Richiesto
88 field_is_required: Richiesto
89 field_firstname: Nome
89 field_firstname: Nome
90 field_lastname: Cognome
90 field_lastname: Cognome
91 field_mail: Email
91 field_mail: Email
92 field_filename: File
92 field_filename: File
93 field_filesize: Dimensione
93 field_filesize: Dimensione
94 field_downloads: Download
94 field_downloads: Download
95 field_author: Autore
95 field_author: Autore
96 field_created_on: Creato
96 field_created_on: Creato
97 field_updated_on: Aggiornato
97 field_updated_on: Aggiornato
98 field_field_format: Formato
98 field_field_format: Formato
99 field_is_for_all: Per tutti i progetti
99 field_is_for_all: Per tutti i progetti
100 field_possible_values: Valori possibili
100 field_possible_values: Valori possibili
101 field_regexp: Espressione regolare
101 field_regexp: Espressione regolare
102 field_min_length: Lunghezza minima
102 field_min_length: Lunghezza minima
103 field_max_length: Lunghezza massima
103 field_max_length: Lunghezza massima
104 field_value: Valore
104 field_value: Valore
105 field_category: Categoria
105 field_category: Categoria
106 field_title: Titolo
106 field_title: Titolo
107 field_project: Progetto
107 field_project: Progetto
108 field_issue: Issue
108 field_issue: Issue
109 field_status: Stato
109 field_status: Stato
110 field_notes: Note
110 field_notes: Note
111 field_is_closed: Chiude il contesto
111 field_is_closed: Chiude il contesto
112 field_is_default: Stato predefinito
112 field_is_default: Stato predefinito
113 field_html_color: Colore
113 field_html_color: Colore
114 field_tracker: Tracker
114 field_tracker: Tracker
115 field_subject: Oggetto
115 field_subject: Oggetto
116 field_due_date: Data ultima
116 field_due_date: Data ultima
117 field_assigned_to: Assegnato a
117 field_assigned_to: Assegnato a
118 field_priority: Priorita'
118 field_priority: Priorita'
119 field_fixed_version: Versione di fix
119 field_fixed_version: Versione di fix
120 field_user: Utente
120 field_user: Utente
121 field_role: Ruolo
121 field_role: Ruolo
122 field_homepage: Homepage
122 field_homepage: Homepage
123 field_is_public: Pubblico
123 field_is_public: Pubblico
124 field_parent: Sottoprogetto di
124 field_parent: Sottoprogetto di
125 field_is_in_chlog: Contesti mostrati nel changelog
125 field_is_in_chlog: Contesti mostrati nel changelog
126 field_is_in_roadmap: Contesti mostrati nel roadmap
126 field_is_in_roadmap: Contesti mostrati nel roadmap
127 field_login: Login
127 field_login: Login
128 field_mail_notification: Notifiche via e-mail
128 field_mail_notification: Notifiche via e-mail
129 field_admin: Amministratore
129 field_admin: Amministratore
130 field_last_login_on: Ultima connessione
130 field_last_login_on: Ultima connessione
131 field_language: Lingua
131 field_language: Lingua
132 field_effective_date: Data
132 field_effective_date: Data
133 field_password: Password
133 field_password: Password
134 field_new_password: Nuova password
134 field_new_password: Nuova password
135 field_password_confirmation: Conferma
135 field_password_confirmation: Conferma
136 field_version: Versione
136 field_version: Versione
137 field_type: Tipo
137 field_type: Tipo
138 field_host: Host
138 field_host: Host
139 field_port: Porta
139 field_port: Porta
140 field_account: Utenza
140 field_account: Utenza
141 field_base_dn: DN base
141 field_base_dn: DN base
142 field_attr_login: Attributo login
142 field_attr_login: Attributo login
143 field_attr_firstname: Attributo nome
143 field_attr_firstname: Attributo nome
144 field_attr_lastname: Attributo cognome
144 field_attr_lastname: Attributo cognome
145 field_attr_mail: Attributo e-mail
145 field_attr_mail: Attributo e-mail
146 field_onthefly: Creazione utenza "al volo"
146 field_onthefly: Creazione utenza "al volo"
147 field_start_date: Inizio
147 field_start_date: Inizio
148 field_done_ratio: %% completo
148 field_done_ratio: %% completo
149 field_auth_source: Modalità di autenticazione
149 field_auth_source: Modalità di autenticazione
150 field_hide_mail: Nascondi il mio indirizzo di e-mail
150 field_hide_mail: Nascondi il mio indirizzo di e-mail
151 field_comments: Commento
151 field_comments: Commento
152 field_url: URL
152 field_url: URL
153 field_start_page: Pagina principale
153 field_start_page: Pagina principale
154 field_subproject: Sottoprogetto
154 field_subproject: Sottoprogetto
155 field_hours: Hours
155 field_hours: Hours
156 field_activity: Activity
156 field_activity: Activity
157 field_spent_on: Data
157 field_spent_on: Data
158 field_identifier: Identifier
158 field_identifier: Identifier
159 field_is_filter: Used as a filter
159 field_is_filter: Used as a filter
160 field_issue_to_id: Related issue
160 field_issue_to_id: Related issue
161 field_delay: Delay
161 field_delay: Delay
162 field_assignable: Issues can be assigned to this role
162 field_assignable: Issues can be assigned to this role
163 field_redirect_existing_links: Redirect existing links
163 field_redirect_existing_links: Redirect existing links
164 field_estimated_hours: Estimated time
164 field_estimated_hours: Estimated time
165
165
166 setting_app_title: Titolo applicazione
166 setting_app_title: Titolo applicazione
167 setting_app_subtitle: Sottotitolo applicazione
167 setting_app_subtitle: Sottotitolo applicazione
168 setting_welcome_text: Testo di benvenuto
168 setting_welcome_text: Testo di benvenuto
169 setting_default_language: Lingua di default
169 setting_default_language: Lingua di default
170 setting_login_required: Autenticazione richiesta
170 setting_login_required: Autenticazione richiesta
171 setting_self_registration: Auto-registrazione abilitata
171 setting_self_registration: Auto-registrazione abilitata
172 setting_attachment_max_size: Massima dimensione allegati
172 setting_attachment_max_size: Massima dimensione allegati
173 setting_issues_export_limit: Limite esportazione contesti
173 setting_issues_export_limit: Limite esportazione contesti
174 setting_mail_from: Indirizzo sorgente e-mail
174 setting_mail_from: Indirizzo sorgente e-mail
175 setting_host_name: Nome host
175 setting_host_name: Nome host
176 setting_text_formatting: Formattazione testo
176 setting_text_formatting: Formattazione testo
177 setting_wiki_compression: Compressione di storia di Wiki
177 setting_wiki_compression: Compressione di storia di Wiki
178 setting_feeds_limit: Limite contenuti del feed
178 setting_feeds_limit: Limite contenuti del feed
179 setting_autofetch_changesets: Acquisisci automaticamente le commit
179 setting_autofetch_changesets: Acquisisci automaticamente le commit
180 setting_sys_api_enabled: Abilita WS per la gestione del repository
180 setting_sys_api_enabled: Abilita WS per la gestione del repository
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
183 setting_autologin: Autologin
184 setting_date_format: Date format
184 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
186
186
187 label_user: Utente
187 label_user: Utente
188 label_user_plural: Utenti
188 label_user_plural: Utenti
189 label_user_new: Nuovo utente
189 label_user_new: Nuovo utente
190 label_project: Progetto
190 label_project: Progetto
191 label_project_new: Nuovo progetto
191 label_project_new: Nuovo progetto
192 label_project_plural: Progetti
192 label_project_plural: Progetti
193 label_project_all: All Projects
193 label_project_all: All Projects
194 label_project_latest: Ultimi progetti registrati
194 label_project_latest: Ultimi progetti registrati
195 label_issue: Contesto
195 label_issue: Contesto
196 label_issue_new: Nuovo contesto
196 label_issue_new: Nuovo contesto
197 label_issue_plural: Contesti
197 label_issue_plural: Contesti
198 label_issue_view_all: Mostra tutti i contesti
198 label_issue_view_all: Mostra tutti i contesti
199 label_document: Documento
199 label_document: Documento
200 label_document_new: Nuovo documento
200 label_document_new: Nuovo documento
201 label_document_plural: Documenti
201 label_document_plural: Documenti
202 label_role: Ruolo
202 label_role: Ruolo
203 label_role_plural: Ruoli
203 label_role_plural: Ruoli
204 label_role_new: Nuovo ruolo
204 label_role_new: Nuovo ruolo
205 label_role_and_permissions: Ruoli e permessi
205 label_role_and_permissions: Ruoli e permessi
206 label_member: Membro
206 label_member: Membro
207 label_member_new: Nuovo membro
207 label_member_new: Nuovo membro
208 label_member_plural: Membri
208 label_member_plural: Membri
209 label_tracker: Tracker
209 label_tracker: Tracker
210 label_tracker_plural: Tracker
210 label_tracker_plural: Tracker
211 label_tracker_new: Nuovo tracker
211 label_tracker_new: Nuovo tracker
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Stato contesti
213 label_issue_status: Stato contesti
214 label_issue_status_plural: Stati contesto
214 label_issue_status_plural: Stati contesto
215 label_issue_status_new: Nuovo stato
215 label_issue_status_new: Nuovo stato
216 label_issue_category: Categorie contesti
216 label_issue_category: Categorie contesti
217 label_issue_category_plural: Categorie contesto
217 label_issue_category_plural: Categorie contesto
218 label_issue_category_new: Nuova categoria
218 label_issue_category_new: Nuova categoria
219 label_custom_field: Campo personalizzato
219 label_custom_field: Campo personalizzato
220 label_custom_field_plural: Campi personalizzati
220 label_custom_field_plural: Campi personalizzati
221 label_custom_field_new: Nuovo campo personalizzato
221 label_custom_field_new: Nuovo campo personalizzato
222 label_enumerations: Enumerazioni
222 label_enumerations: Enumerazioni
223 label_enumeration_new: Nuovo valore
223 label_enumeration_new: Nuovo valore
224 label_information: Informazione
224 label_information: Informazione
225 label_information_plural: Informazioni
225 label_information_plural: Informazioni
226 label_please_login: Autenticarsi
226 label_please_login: Autenticarsi
227 label_register: Registrati
227 label_register: Registrati
228 label_password_lost: Password dimenticata
228 label_password_lost: Password dimenticata
229 label_home: Home
229 label_home: Home
230 label_my_page: Pagina personale
230 label_my_page: Pagina personale
231 label_my_account: La mia utenza
231 label_my_account: La mia utenza
232 label_my_projects: I miei progetti
232 label_my_projects: I miei progetti
233 label_administration: Amministrazione
233 label_administration: Amministrazione
234 label_login: Login
234 label_login: Login
235 label_logout: Logout
235 label_logout: Logout
236 label_help: Aiuto
236 label_help: Aiuto
237 label_reported_issues: Contesti segnalati
237 label_reported_issues: Contesti segnalati
238 label_assigned_to_me_issues: I miei contesti
238 label_assigned_to_me_issues: I miei contesti
239 label_last_login: Ultimo collegamento
239 label_last_login: Ultimo collegamento
240 label_last_updates: Ultimo aggiornamento
240 label_last_updates: Ultimo aggiornamento
241 label_last_updates_plural: %d ultimo aggiornamento
241 label_last_updates_plural: %d ultimo aggiornamento
242 label_registered_on: Registrato il
242 label_registered_on: Registrato il
243 label_activity: Attività
243 label_activity: Attività
244 label_new: Nuovo
244 label_new: Nuovo
245 label_logged_as: Autenticato come
245 label_logged_as: Autenticato come
246 label_environment: Ambiente
246 label_environment: Ambiente
247 label_authentication: Autenticazione
247 label_authentication: Autenticazione
248 label_auth_source: Modalità di autenticazione
248 label_auth_source: Modalità di autenticazione
249 label_auth_source_new: Nuova modalità di autenticazione
249 label_auth_source_new: Nuova modalità di autenticazione
250 label_auth_source_plural: Modalità di autenticazione
250 label_auth_source_plural: Modalità di autenticazione
251 label_subproject_plural: Sottoprogetti
251 label_subproject_plural: Sottoprogetti
252 label_min_max_length: Lunghezza minima - massima
252 label_min_max_length: Lunghezza minima - massima
253 label_list: Elenco
253 label_list: Elenco
254 label_date: Data
254 label_date: Data
255 label_integer: Intero
255 label_integer: Intero
256 label_boolean: Booleano
256 label_boolean: Booleano
257 label_string: Testo
257 label_string: Testo
258 label_text: Testo esteso
258 label_text: Testo esteso
259 label_attribute: Attributo
259 label_attribute: Attributo
260 label_attribute_plural: Attributi
260 label_attribute_plural: Attributi
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Download
262 label_download_plural: %d Download
263 label_no_data: Nessun dato disponibile
263 label_no_data: Nessun dato disponibile
264 label_change_status: Cambia stato
264 label_change_status: Cambia stato
265 label_history: Cronologia
265 label_history: Cronologia
266 label_attachment: File
266 label_attachment: File
267 label_attachment_new: Nuovo file
267 label_attachment_new: Nuovo file
268 label_attachment_delete: Elimina file
268 label_attachment_delete: Elimina file
269 label_attachment_plural: File
269 label_attachment_plural: File
270 label_report: Report
270 label_report: Report
271 label_report_plural: Report
271 label_report_plural: Report
272 label_news: Notizia
272 label_news: Notizia
273 label_news_new: Aggiungi notizia
273 label_news_new: Aggiungi notizia
274 label_news_plural: Notizie
274 label_news_plural: Notizie
275 label_news_latest: Utime notizie
275 label_news_latest: Utime notizie
276 label_news_view_all: Tutte le notizie
276 label_news_view_all: Tutte le notizie
277 label_change_log: Change log
277 label_change_log: Change log
278 label_settings: Impostazioni
278 label_settings: Impostazioni
279 label_overview: Panoramica
279 label_overview: Panoramica
280 label_version: Versione
280 label_version: Versione
281 label_version_new: Nuova versione
281 label_version_new: Nuova versione
282 label_version_plural: Versioni
282 label_version_plural: Versioni
283 label_confirmation: Conferma
283 label_confirmation: Conferma
284 label_export_to: Esporta su
284 label_export_to: Esporta su
285 label_read: Leggi...
285 label_read: Leggi...
286 label_public_projects: Progetti pubblici
286 label_public_projects: Progetti pubblici
287 label_open_issues: aperta
287 label_open_issues: aperta
288 label_open_issues_plural: aperte
288 label_open_issues_plural: aperte
289 label_closed_issues: chiusa
289 label_closed_issues: chiusa
290 label_closed_issues_plural: chiuse
290 label_closed_issues_plural: chiuse
291 label_total: Totale
291 label_total: Totale
292 label_permissions: Permessi
292 label_permissions: Permessi
293 label_current_status: Stato attuale
293 label_current_status: Stato attuale
294 label_new_statuses_allowed: Nuovi stati possibili
294 label_new_statuses_allowed: Nuovi stati possibili
295 label_all: tutti
295 label_all: tutti
296 label_none: nessuno
296 label_none: nessuno
297 label_next: Successivo
297 label_next: Successivo
298 label_previous: Precedente
298 label_previous: Precedente
299 label_used_by: Usato da
299 label_used_by: Usato da
300 label_details: Dettagli
300 label_details: Dettagli
301 label_add_note: Aggiungi una nota
301 label_add_note: Aggiungi una nota
302 label_per_page: Per pagina
302 label_per_page: Per pagina
303 label_calendar: Calendario
303 label_calendar: Calendario
304 label_months_from: mesi da
304 label_months_from: mesi da
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Interno
306 label_internal: Interno
307 label_last_changes: ultime %d modifiche
307 label_last_changes: ultime %d modifiche
308 label_change_view_all: Tutte le modifiche
308 label_change_view_all: Tutte le modifiche
309 label_personalize_page: Personalizza la pagina
309 label_personalize_page: Personalizza la pagina
310 label_comment: Commento
310 label_comment: Commento
311 label_comment_plural: Commenti
311 label_comment_plural: Commenti
312 label_comment_add: Aggiungi un commento
312 label_comment_add: Aggiungi un commento
313 label_comment_added: Commento aggiunto
313 label_comment_added: Commento aggiunto
314 label_comment_delete: Elimina commenti
314 label_comment_delete: Elimina commenti
315 label_query: Custom query
315 label_query: Custom query
316 label_query_plural: Query personalizzate
316 label_query_plural: Query personalizzate
317 label_query_new: Nuova query
317 label_query_new: Nuova query
318 label_filter_add: Aggiungi filtro
318 label_filter_add: Aggiungi filtro
319 label_filter_plural: Filtri
319 label_filter_plural: Filtri
320 label_equals: è
320 label_equals: è
321 label_not_equals: non è
321 label_not_equals: non è
322 label_in_less_than: è minore di
322 label_in_less_than: è minore di
323 label_in_more_than: è maggiore di
323 label_in_more_than: è maggiore di
324 label_in: in
324 label_in: in
325 label_today: oggi
325 label_today: oggi
326 label_this_week: this week
326 label_this_week: this week
327 label_less_than_ago: meno di giorni fa
327 label_less_than_ago: meno di giorni fa
328 label_more_than_ago: più di giorni fa
328 label_more_than_ago: più di giorni fa
329 label_ago: giorni fa
329 label_ago: giorni fa
330 label_contains: contiene
330 label_contains: contiene
331 label_not_contains: non contiene
331 label_not_contains: non contiene
332 label_day_plural: giorni
332 label_day_plural: giorni
333 label_repository: Repository
333 label_repository: Repository
334 label_browse: Browse
334 label_browse: Browse
335 label_modification: %d modifica
335 label_modification: %d modifica
336 label_modification_plural: %d modifiche
336 label_modification_plural: %d modifiche
337 label_revision: Versione
337 label_revision: Versione
338 label_revision_plural: Versioni
338 label_revision_plural: Versioni
339 label_added: aggiunto
339 label_added: aggiunto
340 label_modified: modificato
340 label_modified: modificato
341 label_deleted: eliminato
341 label_deleted: eliminato
342 label_latest_revision: Ultima versione
342 label_latest_revision: Ultima versione
343 label_latest_revision_plural: Ultime versioni
343 label_latest_revision_plural: Ultime versioni
344 label_view_revisions: Mostra versioni
344 label_view_revisions: Mostra versioni
345 label_max_size: Dimensione massima
345 label_max_size: Dimensione massima
346 label_on: 'on'
346 label_on: 'on'
347 label_sort_highest: Sposta in cima
347 label_sort_highest: Sposta in cima
348 label_sort_higher: Su
348 label_sort_higher: Su
349 label_sort_lower: Giù
349 label_sort_lower: Giù
350 label_sort_lowest: Sposta in fondo
350 label_sort_lowest: Sposta in fondo
351 label_roadmap: Roadmap
351 label_roadmap: Roadmap
352 label_roadmap_due_in: Da ultimare in
352 label_roadmap_due_in: Da ultimare in
353 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Nessun contesto per questa versione
354 label_roadmap_no_issues: Nessun contesto per questa versione
355 label_search: Ricerca
355 label_search: Ricerca
356 label_result_plural: Risultati
356 label_result_plural: Risultati
357 label_all_words: Tutte le parole
357 label_all_words: Tutte le parole
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Modifica Wiki
359 label_wiki_edit: Modifica Wiki
360 label_wiki_edit_plural: Modfiche wiki
360 label_wiki_edit_plural: Modfiche wiki
361 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
363 label_index_by_title: Index by title
364 label_index_by_date: Index by date
364 label_index_by_date: Index by date
365 label_current_version: Versione corrente
365 label_current_version: Versione corrente
366 label_preview: Anteprima
366 label_preview: Anteprima
367 label_feed_plural: Feed
367 label_feed_plural: Feed
368 label_changes_details: Particolari di tutti i cambiamenti
368 label_changes_details: Particolari di tutti i cambiamenti
369 label_issue_tracking: tracking dei contesti
369 label_issue_tracking: tracking dei contesti
370 label_spent_time: Tempo impiegato
370 label_spent_time: Tempo impiegato
371 label_f_hour: %.2f ora
371 label_f_hour: %.2f ora
372 label_f_hour_plural: %.2f ore
372 label_f_hour_plural: %.2f ore
373 label_time_tracking: Tracking del tempo
373 label_time_tracking: Tracking del tempo
374 label_change_plural: Modifiche
374 label_change_plural: Modifiche
375 label_statistics: Statistiche
375 label_statistics: Statistiche
376 label_commits_per_month: Commit per mese
376 label_commits_per_month: Commit per mese
377 label_commits_per_author: Commit per autore
377 label_commits_per_author: Commit per autore
378 label_view_diff: mostra differenze
378 label_view_diff: mostra differenze
379 label_diff_inline: inline
379 label_diff_inline: inline
380 label_diff_side_by_side: side by side
380 label_diff_side_by_side: side by side
381 label_options: Opzioni
381 label_options: Opzioni
382 label_copy_workflow_from: Copia workflow da
382 label_copy_workflow_from: Copia workflow da
383 label_permissions_report: Report permessi
383 label_permissions_report: Report permessi
384 label_watched_issues: Watched issues
384 label_watched_issues: Watched issues
385 label_related_issues: Related issues
385 label_related_issues: Related issues
386 label_applied_status: Applied status
386 label_applied_status: Applied status
387 label_loading: Loading...
387 label_loading: Loading...
388 label_relation_new: New relation
388 label_relation_new: New relation
389 label_relation_delete: Delete relation
389 label_relation_delete: Delete relation
390 label_relates_to: related to
390 label_relates_to: related to
391 label_duplicates: duplicates
391 label_duplicates: duplicates
392 label_blocks: blocks
392 label_blocks: blocks
393 label_blocked_by: blocked by
393 label_blocked_by: blocked by
394 label_precedes: precedes
394 label_precedes: precedes
395 label_follows: follows
395 label_follows: follows
396 label_end_to_start: end to start
396 label_end_to_start: end to start
397 label_end_to_end: end to end
397 label_end_to_end: end to end
398 label_start_to_start: start to start
398 label_start_to_start: start to start
399 label_start_to_end: start to end
399 label_start_to_end: start to end
400 label_stay_logged_in: Stay logged in
400 label_stay_logged_in: Stay logged in
401 label_disabled: disabled
401 label_disabled: disabled
402 label_show_completed_versions: Show completed versions
402 label_show_completed_versions: Show completed versions
403 label_me: me
403 label_me: me
404 label_board: Forum
404 label_board: Forum
405 label_board_new: New forum
405 label_board_new: New forum
406 label_board_plural: Forums
406 label_board_plural: Forums
407 label_topic_plural: Topics
407 label_topic_plural: Topics
408 label_message_plural: Messages
408 label_message_plural: Messages
409 label_message_last: Last message
409 label_message_last: Last message
410 label_message_new: New message
410 label_message_new: New message
411 label_reply_plural: Replies
411 label_reply_plural: Replies
412 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
413 label_year: Year
413 label_year: Year
414 label_month: Month
414 label_month: Month
415 label_week: Week
415 label_week: Week
416 label_date_from: From
416 label_date_from: From
417 label_date_to: To
417 label_date_to: To
418 label_language_based: Language based
418 label_language_based: Language based
419 label_sort_by: Sort by "%s"
419 label_sort_by: Sort by "%s"
420 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
422 label_module_plural: Modules
422 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
426
426
427 button_login: Login
427 button_login: Login
428 button_submit: Invia
428 button_submit: Invia
429 button_save: Salva
429 button_save: Salva
430 button_check_all: Seleziona tutti
430 button_check_all: Seleziona tutti
431 button_uncheck_all: Deseleziona tutti
431 button_uncheck_all: Deseleziona tutti
432 button_delete: Elimina
432 button_delete: Elimina
433 button_create: Crea
433 button_create: Crea
434 button_test: Test
434 button_test: Test
435 button_edit: Modifica
435 button_edit: Modifica
436 button_add: Aggiungi
436 button_add: Aggiungi
437 button_change: Modifica
437 button_change: Modifica
438 button_apply: Applica
438 button_apply: Applica
439 button_clear: Pulisci
439 button_clear: Pulisci
440 button_lock: Blocca
440 button_lock: Blocca
441 button_unlock: Sblocca
441 button_unlock: Sblocca
442 button_download: Scarica
442 button_download: Scarica
443 button_list: Elenca
443 button_list: Elenca
444 button_view: Mostra
444 button_view: Mostra
445 button_move: Sposta
445 button_move: Sposta
446 button_back: Indietro
446 button_back: Indietro
447 button_cancel: Annulla
447 button_cancel: Annulla
448 button_activate: Attiva
448 button_activate: Attiva
449 button_sort: Ordina
449 button_sort: Ordina
450 button_log_time: Registra tempo
450 button_log_time: Registra tempo
451 button_rollback: Ripristina questa versione
451 button_rollback: Ripristina questa versione
452 button_watch: Watch
452 button_watch: Watch
453 button_unwatch: Unwatch
453 button_unwatch: Unwatch
454 button_reply: Reply
454 button_reply: Reply
455 button_archive: Archive
455 button_archive: Archive
456 button_unarchive: Unarchive
456 button_unarchive: Unarchive
457 button_reset: Reset
457 button_reset: Reset
458 button_rename: Rename
458 button_rename: Rename
459
459
460 status_active: attivo
460 status_active: attivo
461 status_registered: registrato
461 status_registered: registrato
462 status_locked: bloccato
462 status_locked: bloccato
463
463
464 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
464 text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica.
465 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_regexp_info: eg. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 significa nessuna restrizione
466 text_min_max_length_info: 0 significa nessuna restrizione
467 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
467 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
468 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
468 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
469 text_are_you_sure: Sei sicuro ?
469 text_are_you_sure: Sei sicuro ?
470 text_journal_changed: cambiato da %s a %s
470 text_journal_changed: cambiato da %s a %s
471 text_journal_set_to: impostato a %s
471 text_journal_set_to: impostato a %s
472 text_journal_deleted: cancellato
472 text_journal_deleted: cancellato
473 text_tip_task_begin_day: attività che iniziano in questa giornata
473 text_tip_task_begin_day: attività che iniziano in questa giornata
474 text_tip_task_end_day: attività che terminano in questa giornata
474 text_tip_task_end_day: attività che terminano in questa giornata
475 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
475 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
476 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
476 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
477 text_caracters_maximum: massimo %d caratteri.
477 text_caracters_maximum: massimo %d caratteri.
478 text_length_between: Lunghezza compresa tra %d e %d caratteri.
478 text_length_between: Lunghezza compresa tra %d e %d caratteri.
479 text_tracker_no_workflow: Nessun workflow definito per questo tracker
479 text_tracker_no_workflow: Nessun workflow definito per questo tracker
480 text_unallowed_characters: Unallowed characters
480 text_unallowed_characters: Unallowed characters
481 text_comma_separated: Multiple values allowed (comma separated).
481 text_comma_separated: Multiple values allowed (comma separated).
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 text_issue_added: "E' stata segnalata l'anomalia %s."
483 text_issue_added: "E' stata segnalata l'anomalia %s."
484 text_issue_updated: "L'anomalia %s e' stata aggiornata."
484 text_issue_updated: "L'anomalia %s e' stata aggiornata."
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
489
489
490 default_role_manager: Manager
490 default_role_manager: Manager
491 default_role_developper: Sviluppatore
491 default_role_developper: Sviluppatore
492 default_role_reporter: Reporter
492 default_role_reporter: Reporter
493 default_tracker_bug: Contesto
493 default_tracker_bug: Contesto
494 default_tracker_feature: Funzione
494 default_tracker_feature: Funzione
495 default_tracker_support: Supporto
495 default_tracker_support: Supporto
496 default_issue_status_new: Nuovo/a
496 default_issue_status_new: Nuovo/a
497 default_issue_status_assigned: Assegnato/a
497 default_issue_status_assigned: Assegnato/a
498 default_issue_status_resolved: Risolto/a
498 default_issue_status_resolved: Risolto/a
499 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Chiuso/a
500 default_issue_status_closed: Chiuso/a
501 default_issue_status_rejected: Rifiutato/a
501 default_issue_status_rejected: Rifiutato/a
502 default_doc_category_user: Documentazione utente
502 default_doc_category_user: Documentazione utente
503 default_doc_category_tech: Documentazione tecnica
503 default_doc_category_tech: Documentazione tecnica
504 default_priority_low: Bassa
504 default_priority_low: Bassa
505 default_priority_normal: Normale
505 default_priority_normal: Normale
506 default_priority_high: Alta
506 default_priority_high: Alta
507 default_priority_urgent: Urgente
507 default_priority_urgent: Urgente
508 default_priority_immediate: Immediata
508 default_priority_immediate: Immediata
509 default_activity_design: Design
509 default_activity_design: Design
510 default_activity_development: Development
510 default_activity_development: Development
511
511
512 enumeration_issue_priorities: Priorità contesti
512 enumeration_issue_priorities: Priorità contesti
513 enumeration_doc_categories: Categorie di documenti
513 enumeration_doc_categories: Categorie di documenti
514 enumeration_activities: Attività (time tracking)
514 enumeration_activities: Attività (time tracking)
515 label_file_plural: Files
515 label_file_plural: Files
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Columns
517 field_column_names: Columns
518 label_default_columns: Default columns
518 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
523 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
525 label_theme: Theme
526 label_default: Default
526 label_default: Default
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,529 +1,534
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_select_year_suffix:
8 actionview_datehelper_select_year_suffix:
9 actionview_datehelper_time_in_words_day: 1日
9 actionview_datehelper_time_in_words_day: 1日
10 actionview_datehelper_time_in_words_day_plural: %d日間
10 actionview_datehelper_time_in_words_day_plural: %d日間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 actionview_datehelper_time_in_words_minute: 1分
14 actionview_datehelper_time_in_words_minute: 1分
15 actionview_datehelper_time_in_words_minute_half: 約30秒
15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 actionview_datehelper_time_in_words_minute_plural: %d分
17 actionview_datehelper_time_in_words_minute_plural: %d分
18 actionview_datehelper_time_in_words_minute_single: 1分
18 actionview_datehelper_time_in_words_minute_single: 1分
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 actionview_instancetag_blank_option: 選んでください
21 actionview_instancetag_blank_option: 選んでください
22
22
23 activerecord_error_inclusion: がリストに含まれていません
23 activerecord_error_inclusion: がリストに含まれていません
24 activerecord_error_exclusion: が予約されています
24 activerecord_error_exclusion: が予約されています
25 activerecord_error_invalid: が無効です
25 activerecord_error_invalid: が無効です
26 activerecord_error_confirmation: 確認のパスワードと合っていません
26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 activerecord_error_accepted: を承諾してください
27 activerecord_error_accepted: を承諾してください
28 activerecord_error_empty: が空です
28 activerecord_error_empty: が空です
29 activerecord_error_blank: が空白です
29 activerecord_error_blank: が空白です
30 activerecord_error_too_long: が長すぎます
30 activerecord_error_too_long: が長すぎます
31 activerecord_error_too_short: が短かすぎます
31 activerecord_error_too_short: が短かすぎます
32 activerecord_error_wrong_length: の長さが間違っています
32 activerecord_error_wrong_length: の長さが間違っています
33 activerecord_error_taken: はすでに登録されています
33 activerecord_error_taken: はすでに登録されています
34 activerecord_error_not_a_number: が数字ではありません
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 activerecord_error_circular_dependency: この関係では、循環依存になります
38 activerecord_error_circular_dependency: この関係では、循環依存になります
39
39
40 general_fmt_age: %d歳
40 general_fmt_age: %d歳
41 general_fmt_age_plural: %d歳
41 general_fmt_age_plural: %d歳
42 general_fmt_date: %%Y年%%m月%%d日
42 general_fmt_date: %%Y年%%m月%%d日
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
46 general_text_No: 'いいえ'
46 general_text_No: 'いいえ'
47 general_text_Yes: 'はい'
47 general_text_Yes: 'はい'
48 general_text_no: 'いいえ'
48 general_text_no: 'いいえ'
49 general_text_yes: 'はい'
49 general_text_yes: 'はい'
50 general_lang_name: 'Japanese (日本語)'
50 general_lang_name: 'Japanese (日本語)'
51 general_csv_separator: ','
51 general_csv_separator: ','
52 general_csv_encoding: SJIS
52 general_csv_encoding: SJIS
53 general_pdf_encoding: SJIS
53 general_pdf_encoding: SJIS
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
54 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
55 general_first_day_of_week: '7'
55 general_first_day_of_week: '7'
56
56
57 notice_account_updated: アカウントが更新されました。
57 notice_account_updated: アカウントが更新されました。
58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
58 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
59 notice_account_password_updated: パスワードが更新されました。
59 notice_account_password_updated: パスワードが更新されました。
60 notice_account_wrong_password: パスワードが違います
60 notice_account_wrong_password: パスワードが違います
61 notice_account_register_done: アカウントが作成されました。
61 notice_account_register_done: アカウントが作成されました。
62 notice_account_unknown_email: ユーザが存在しません。
62 notice_account_unknown_email: ユーザが存在しません。
63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
63 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
64 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
65 notice_account_activated: アカウントが有効になりました。ログインできます。
65 notice_account_activated: アカウントが有効になりました。ログインできます。
66 notice_successful_create: 作成しました。
66 notice_successful_create: 作成しました。
67 notice_successful_update: 更新しました。
67 notice_successful_update: 更新しました。
68 notice_successful_delete: 削除しました。
68 notice_successful_delete: 削除しました。
69 notice_successful_connection: 接続しました。
69 notice_successful_connection: 接続しました。
70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
70 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
71 notice_locking_conflict: 別のユーザがデータを更新しています。
71 notice_locking_conflict: 別のユーザがデータを更新しています。
72 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
72 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
73 notice_not_authorized: このページにアクセスするには認証が必要です。
73 notice_not_authorized: このページにアクセスするには認証が必要です。
74 notice_email_sent: %s宛にメールを送信しました。
74 notice_email_sent: %s宛にメールを送信しました。
75 notice_email_error: メール送信中にエラーが発生しました (%s)
75 notice_email_error: メール送信中にエラーが発生しました (%s)
76 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
76 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
77
77
78 mail_subject_lost_password: redMineパスワード
78 mail_subject_lost_password: redMineパスワード
79 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
79 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
80 mail_subject_register: redMineアカウントが有効になりました
80 mail_subject_register: redMineアカウントが有効になりました
81 mail_body_register: 'Redmine アカウントをアクティブにするには、以下のリンクをたどってください:'
81 mail_body_register: 'Redmine アカウントをアクティブにするには、以下のリンクをたどってください:'
82
82
83 gui_validation_error: 1件のエラー
83 gui_validation_error: 1件のエラー
84 gui_validation_error_plural: %d件のエラー
84 gui_validation_error_plural: %d件のエラー
85
85
86 field_name: 名前
86 field_name: 名前
87 field_description: 説明
87 field_description: 説明
88 field_summary: サマリ
88 field_summary: サマリ
89 field_is_required: 必須
89 field_is_required: 必須
90 field_firstname: 名前
90 field_firstname: 名前
91 field_lastname: 苗字
91 field_lastname: 苗字
92 field_mail: メールアドレス
92 field_mail: メールアドレス
93 field_filename: ファイル
93 field_filename: ファイル
94 field_filesize: サイズ
94 field_filesize: サイズ
95 field_downloads: ダウンロード
95 field_downloads: ダウンロード
96 field_author: 起票者
96 field_author: 起票者
97 field_created_on: 作成日
97 field_created_on: 作成日
98 field_updated_on: 更新日
98 field_updated_on: 更新日
99 field_field_format: 書式
99 field_field_format: 書式
100 field_is_for_all: 全プロジェクト向け
100 field_is_for_all: 全プロジェクト向け
101 field_possible_values: 選択肢
101 field_possible_values: 選択肢
102 field_regexp: 正規表現
102 field_regexp: 正規表現
103 field_min_length: 最小値
103 field_min_length: 最小値
104 field_max_length: 最大値
104 field_max_length: 最大値
105 field_value:
105 field_value:
106 field_category: カテゴリ
106 field_category: カテゴリ
107 field_title: タイトル
107 field_title: タイトル
108 field_project: プロジェクト
108 field_project: プロジェクト
109 field_issue: 問題
109 field_issue: 問題
110 field_status: ステータス
110 field_status: ステータス
111 field_notes: 注記
111 field_notes: 注記
112 field_is_closed: 終了した問題
112 field_is_closed: 終了した問題
113 field_is_default: デフォルトのステータス
113 field_is_default: デフォルトのステータス
114 field_html_color:
114 field_html_color:
115 field_tracker: トラッカー
115 field_tracker: トラッカー
116 field_subject: 題名
116 field_subject: 題名
117 field_due_date: 期限日
117 field_due_date: 期限日
118 field_assigned_to: 担当者
118 field_assigned_to: 担当者
119 field_priority: 優先度
119 field_priority: 優先度
120 field_fixed_version: 修正されたバージョン
120 field_fixed_version: 修正されたバージョン
121 field_user: ユーザ
121 field_user: ユーザ
122 field_role: 役割
122 field_role: 役割
123 field_homepage: ホームページ
123 field_homepage: ホームページ
124 field_is_public: 公開
124 field_is_public: 公開
125 field_parent: 親プロジェクト名
125 field_parent: 親プロジェクト名
126 field_is_in_chlog: 変更記録に表示されている問題
126 field_is_in_chlog: 変更記録に表示されている問題
127 field_is_in_roadmap: ロードマップに表示されている問題
127 field_is_in_roadmap: ロードマップに表示されている問題
128 field_login: ログイン
128 field_login: ログイン
129 field_mail_notification: メール通知
129 field_mail_notification: メール通知
130 field_admin: 管理者
130 field_admin: 管理者
131 field_last_login_on: 最終接続日
131 field_last_login_on: 最終接続日
132 field_language: 言語
132 field_language: 言語
133 field_effective_date: 日付
133 field_effective_date: 日付
134 field_password: パスワード
134 field_password: パスワード
135 field_new_password: 新しいパスワード
135 field_new_password: 新しいパスワード
136 field_password_confirmation: パスワードの確認
136 field_password_confirmation: パスワードの確認
137 field_version: バージョン
137 field_version: バージョン
138 field_type: タイプ
138 field_type: タイプ
139 field_host: ホスト
139 field_host: ホスト
140 field_port: ポート
140 field_port: ポート
141 field_account: アカウント
141 field_account: アカウント
142 field_base_dn: Base DN
142 field_base_dn: Base DN
143 field_attr_login: ログイン名属性
143 field_attr_login: ログイン名属性
144 field_attr_firstname: 名前属性
144 field_attr_firstname: 名前属性
145 field_attr_lastname: 苗字属性
145 field_attr_lastname: 苗字属性
146 field_attr_mail: メール属性
146 field_attr_mail: メール属性
147 field_onthefly: あわせてユーザを作成
147 field_onthefly: あわせてユーザを作成
148 field_start_date: 開始日
148 field_start_date: 開始日
149 field_done_ratio: 進捗 %%
149 field_done_ratio: 進捗 %%
150 field_auth_source: 認証モード
150 field_auth_source: 認証モード
151 field_hide_mail: メールアドレスを隠す
151 field_hide_mail: メールアドレスを隠す
152 field_comments: コメント
152 field_comments: コメント
153 field_url: URL
153 field_url: URL
154 field_start_page: メインページ
154 field_start_page: メインページ
155 field_subproject: サブプロジェクト
155 field_subproject: サブプロジェクト
156 field_hours: 時間
156 field_hours: 時間
157 field_activity: 活動
157 field_activity: 活動
158 field_spent_on: 日付
158 field_spent_on: 日付
159 field_identifier: 識別子
159 field_identifier: 識別子
160 field_is_filter: フィルタとして使う
160 field_is_filter: フィルタとして使う
161 field_issue_to_id: 関連する問題
161 field_issue_to_id: 関連する問題
162 field_delay: 遅延
162 field_delay: 遅延
163 field_assignable: Issues can be assigned to this role
163 field_assignable: Issues can be assigned to this role
164 field_redirect_existing_links: Redirect existing links
164 field_redirect_existing_links: Redirect existing links
165 field_estimated_hours: 予定工数
165 field_estimated_hours: 予定工数
166
166
167 setting_app_title: アプリケーションのタイトル
167 setting_app_title: アプリケーションのタイトル
168 setting_app_subtitle: アプリケーションのサブタイトル
168 setting_app_subtitle: アプリケーションのサブタイトル
169 setting_welcome_text: ウェルカムメッセージ
169 setting_welcome_text: ウェルカムメッセージ
170 setting_default_language: 既定の言語
170 setting_default_language: 既定の言語
171 setting_login_required: 認証が必要
171 setting_login_required: 認証が必要
172 setting_self_registration: ユーザは自分で登録できる
172 setting_self_registration: ユーザは自分で登録できる
173 setting_attachment_max_size: 添付の最大サイズ
173 setting_attachment_max_size: 添付の最大サイズ
174 setting_issues_export_limit: 出力する問題数の上限
174 setting_issues_export_limit: 出力する問題数の上限
175 setting_mail_from: 送信元メールアドレス
175 setting_mail_from: 送信元メールアドレス
176 setting_host_name: ホスト名
176 setting_host_name: ホスト名
177 setting_text_formatting: テキストの書式
177 setting_text_formatting: テキストの書式
178 setting_wiki_compression: Wiki履歴を圧縮する
178 setting_wiki_compression: Wiki履歴を圧縮する
179 setting_feeds_limit: フィード内容の上限
179 setting_feeds_limit: フィード内容の上限
180 setting_autofetch_changesets: コミットを自動取得する
180 setting_autofetch_changesets: コミットを自動取得する
181 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
181 setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する
182 setting_commit_ref_keywords: 参照用キーワード
182 setting_commit_ref_keywords: 参照用キーワード
183 setting_commit_fix_keywords: 修正用キーワード
183 setting_commit_fix_keywords: 修正用キーワード
184 setting_autologin: 自動ログイン
184 setting_autologin: 自動ログイン
185 setting_date_format: 日付の形式
185 setting_date_format: 日付の形式
186 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
186 setting_cross_project_issue_relations: 異なるプロジェクトの問題間で関係の設定を許可
187
187
188 label_user: ユーザ
188 label_user: ユーザ
189 label_user_plural: ユーザ
189 label_user_plural: ユーザ
190 label_user_new: 新しいユーザ
190 label_user_new: 新しいユーザ
191 label_project: プロジェクト
191 label_project: プロジェクト
192 label_project_new: 新しいプロジェクト
192 label_project_new: 新しいプロジェクト
193 label_project_plural: プロジェクト
193 label_project_plural: プロジェクト
194 label_project_all: 全プロジェクト
194 label_project_all: 全プロジェクト
195 label_project_latest: 最近のプロジェクト
195 label_project_latest: 最近のプロジェクト
196 label_issue: 問題
196 label_issue: 問題
197 label_issue_new: 新しい問題
197 label_issue_new: 新しい問題
198 label_issue_plural: 問題
198 label_issue_plural: 問題
199 label_issue_view_all: 問題を全て見る
199 label_issue_view_all: 問題を全て見る
200 label_document: 文書
200 label_document: 文書
201 label_document_new: 新しい文書
201 label_document_new: 新しい文書
202 label_document_plural: 文書
202 label_document_plural: 文書
203 label_role: ロール
203 label_role: ロール
204 label_role_plural: ロール
204 label_role_plural: ロール
205 label_role_new: 新しいロール
205 label_role_new: 新しいロール
206 label_role_and_permissions: ロールと権限
206 label_role_and_permissions: ロールと権限
207 label_member: メンバー
207 label_member: メンバー
208 label_member_new: 新しいメンバー
208 label_member_new: 新しいメンバー
209 label_member_plural: メンバー
209 label_member_plural: メンバー
210 label_tracker: トラッカー
210 label_tracker: トラッカー
211 label_tracker_plural: トラッカー
211 label_tracker_plural: トラッカー
212 label_tracker_new: 新しいトラッカーを作成
212 label_tracker_new: 新しいトラッカーを作成
213 label_workflow: ワークフロー
213 label_workflow: ワークフロー
214 label_issue_status: 問題のステータス
214 label_issue_status: 問題のステータス
215 label_issue_status_plural: 問題のステータス
215 label_issue_status_plural: 問題のステータス
216 label_issue_status_new: 新しいステータス
216 label_issue_status_new: 新しいステータス
217 label_issue_category: 問題のカテゴリ
217 label_issue_category: 問題のカテゴリ
218 label_issue_category_plural: 問題のカテゴリ
218 label_issue_category_plural: 問題のカテゴリ
219 label_issue_category_new: 新しいカテゴリ
219 label_issue_category_new: 新しいカテゴリ
220 label_custom_field: カスタムフィールド
220 label_custom_field: カスタムフィールド
221 label_custom_field_plural: カスタムフィールド
221 label_custom_field_plural: カスタムフィールド
222 label_custom_field_new: 新しいカスタムフィールドを作成
222 label_custom_field_new: 新しいカスタムフィールドを作成
223 label_enumerations: 列挙項目
223 label_enumerations: 列挙項目
224 label_enumeration_new: 新しい値
224 label_enumeration_new: 新しい値
225 label_information: 情報
225 label_information: 情報
226 label_information_plural: 情報
226 label_information_plural: 情報
227 label_please_login: ログインしてください
227 label_please_login: ログインしてください
228 label_register: 登録する
228 label_register: 登録する
229 label_password_lost: パスワードの再発行
229 label_password_lost: パスワードの再発行
230 label_home: ホーム
230 label_home: ホーム
231 label_my_page: マイページ
231 label_my_page: マイページ
232 label_my_account: マイアカウント
232 label_my_account: マイアカウント
233 label_my_projects: マイプロジェクト
233 label_my_projects: マイプロジェクト
234 label_administration: 管理
234 label_administration: 管理
235 label_login: ログイン
235 label_login: ログイン
236 label_logout: ログアウト
236 label_logout: ログアウト
237 label_help: ヘルプ
237 label_help: ヘルプ
238 label_reported_issues: 報告した問題
238 label_reported_issues: 報告した問題
239 label_assigned_to_me_issues: 担当している問題
239 label_assigned_to_me_issues: 担当している問題
240 label_last_login: 最近の接続
240 label_last_login: 最近の接続
241 label_last_updates: 最近の更新1件
241 label_last_updates: 最近の更新1件
242 label_last_updates_plural: 最近の更新%d件
242 label_last_updates_plural: 最近の更新%d件
243 label_registered_on: 登録日
243 label_registered_on: 登録日
244 label_activity: 活動
244 label_activity: 活動
245 label_new: 新しく作成
245 label_new: 新しく作成
246 label_logged_as: ログイン中:
246 label_logged_as: ログイン中:
247 label_environment: 環境
247 label_environment: 環境
248 label_authentication: 認証
248 label_authentication: 認証
249 label_auth_source: 認証モード
249 label_auth_source: 認証モード
250 label_auth_source_new: 新しい認証モード
250 label_auth_source_new: 新しい認証モード
251 label_auth_source_plural: 認証モード
251 label_auth_source_plural: 認証モード
252 label_subproject_plural: サブプロジェクト
252 label_subproject_plural: サブプロジェクト
253 label_min_max_length: 最小値 - 最大値の長さ
253 label_min_max_length: 最小値 - 最大値の長さ
254 label_list: リストから選択
254 label_list: リストから選択
255 label_date: 日付
255 label_date: 日付
256 label_integer: 整数
256 label_integer: 整数
257 label_boolean: 真偽値
257 label_boolean: 真偽値
258 label_string: テキスト
258 label_string: テキスト
259 label_text: 長いテキスト
259 label_text: 長いテキスト
260 label_attribute: 属性
260 label_attribute: 属性
261 label_attribute_plural: 属性
261 label_attribute_plural: 属性
262 label_download: %d ダウンロード
262 label_download: %d ダウンロード
263 label_download_plural: %d ダウンロード
263 label_download_plural: %d ダウンロード
264 label_no_data: 表示するデータがありません
264 label_no_data: 表示するデータがありません
265 label_change_status: ステータスの変更
265 label_change_status: ステータスの変更
266 label_history: 履歴
266 label_history: 履歴
267 label_attachment: ファイル
267 label_attachment: ファイル
268 label_attachment_new: 新しいファイル
268 label_attachment_new: 新しいファイル
269 label_attachment_delete: ファイルを削除
269 label_attachment_delete: ファイルを削除
270 label_attachment_plural: ファイル
270 label_attachment_plural: ファイル
271 label_report: レポート
271 label_report: レポート
272 label_report_plural: レポート
272 label_report_plural: レポート
273 label_news: ニュース
273 label_news: ニュース
274 label_news_new: ニュースを追加
274 label_news_new: ニュースを追加
275 label_news_plural: ニュース
275 label_news_plural: ニュース
276 label_news_latest: 最新ニュース
276 label_news_latest: 最新ニュース
277 label_news_view_all: 全てのニュースを見る
277 label_news_view_all: 全てのニュースを見る
278 label_change_log: 変更記録
278 label_change_log: 変更記録
279 label_settings: 設定
279 label_settings: 設定
280 label_overview: 概要
280 label_overview: 概要
281 label_version: バージョン
281 label_version: バージョン
282 label_version_new: 新しいバージョン
282 label_version_new: 新しいバージョン
283 label_version_plural: バージョン
283 label_version_plural: バージョン
284 label_confirmation: 確認
284 label_confirmation: 確認
285 label_export_to: 他の形式に出力
285 label_export_to: 他の形式に出力
286 label_read: 読む...
286 label_read: 読む...
287 label_public_projects: 公開プロジェクト
287 label_public_projects: 公開プロジェクト
288 label_open_issues: 未完了
288 label_open_issues: 未完了
289 label_open_issues_plural: 未完了
289 label_open_issues_plural: 未完了
290 label_closed_issues: 終了
290 label_closed_issues: 終了
291 label_closed_issues_plural: 終了
291 label_closed_issues_plural: 終了
292 label_total: 合計
292 label_total: 合計
293 label_permissions: 権限
293 label_permissions: 権限
294 label_current_status: 現在のステータス
294 label_current_status: 現在のステータス
295 label_new_statuses_allowed: ステータスの移行先
295 label_new_statuses_allowed: ステータスの移行先
296 label_all: 全て
296 label_all: 全て
297 label_none: なし
297 label_none: なし
298 label_next:
298 label_next:
299 label_previous:
299 label_previous:
300 label_used_by: 使用中
300 label_used_by: 使用中
301 label_details: 詳細
301 label_details: 詳細
302 label_add_note: 注記を追加
302 label_add_note: 注記を追加
303 label_per_page: ページ毎
303 label_per_page: ページ毎
304 label_calendar: カレンダー
304 label_calendar: カレンダー
305 label_months_from: ヶ月 from
305 label_months_from: ヶ月 from
306 label_gantt: ガントチャート
306 label_gantt: ガントチャート
307 label_internal: Internal
307 label_internal: Internal
308 label_last_changes: 最新の変更%d件
308 label_last_changes: 最新の変更%d件
309 label_change_view_all: 全ての変更を見る
309 label_change_view_all: 全ての変更を見る
310 label_personalize_page: このページをパーソナライズする
310 label_personalize_page: このページをパーソナライズする
311 label_comment: コメント
311 label_comment: コメント
312 label_comment_plural: コメント
312 label_comment_plural: コメント
313 label_comment_add: コメント追加
313 label_comment_add: コメント追加
314 label_comment_added: 追加されたコメント
314 label_comment_added: 追加されたコメント
315 label_comment_delete: コメント削除
315 label_comment_delete: コメント削除
316 label_query: カスタムクエリ
316 label_query: カスタムクエリ
317 label_query_plural: カスタムクエリ
317 label_query_plural: カスタムクエリ
318 label_query_new: 新しいクエリ
318 label_query_new: 新しいクエリ
319 label_filter_add: フィルタ追加
319 label_filter_add: フィルタ追加
320 label_filter_plural: フィルタ
320 label_filter_plural: フィルタ
321 label_equals: 等しい
321 label_equals: 等しい
322 label_not_equals: 等しくない
322 label_not_equals: 等しくない
323 label_in_less_than: 残日数がこれより多い
323 label_in_less_than: 残日数がこれより多い
324 label_in_more_than: 残日数がこれより少ない
324 label_in_more_than: 残日数がこれより少ない
325 label_in: 残日数
325 label_in: 残日数
326 label_today: 今日
326 label_today: 今日
327 label_this_week: this week
327 label_this_week: this week
328 label_less_than_ago: 経過日数がこれより少ない
328 label_less_than_ago: 経過日数がこれより少ない
329 label_more_than_ago: 経過日数がこれより多い
329 label_more_than_ago: 経過日数がこれより多い
330 label_ago: 日前
330 label_ago: 日前
331 label_contains: 含む
331 label_contains: 含む
332 label_not_contains: 含まない
332 label_not_contains: 含まない
333 label_day_plural:
333 label_day_plural:
334 label_repository: リポジトリ
334 label_repository: リポジトリ
335 label_browse: ブラウズ
335 label_browse: ブラウズ
336 label_modification: %d点の変更
336 label_modification: %d点の変更
337 label_modification_plural: %d点の変更
337 label_modification_plural: %d点の変更
338 label_revision: リビジョン
338 label_revision: リビジョン
339 label_revision_plural: リビジョン
339 label_revision_plural: リビジョン
340 label_added: 追加
340 label_added: 追加
341 label_modified: 変更
341 label_modified: 変更
342 label_deleted: 削除
342 label_deleted: 削除
343 label_latest_revision: 最新リビジョン
343 label_latest_revision: 最新リビジョン
344 label_latest_revision_plural: 最新リビジョン
344 label_latest_revision_plural: 最新リビジョン
345 label_view_revisions: リビジョンを見る
345 label_view_revisions: リビジョンを見る
346 label_max_size: 最大サイズ
346 label_max_size: 最大サイズ
347 label_on: 合計
347 label_on: 合計
348 label_sort_highest: 一番上へ
348 label_sort_highest: 一番上へ
349 label_sort_higher: 上へ
349 label_sort_higher: 上へ
350 label_sort_lower: 下へ
350 label_sort_lower: 下へ
351 label_sort_lowest: 一番下へ
351 label_sort_lowest: 一番下へ
352 label_roadmap: ロードマップ
352 label_roadmap: ロードマップ
353 label_roadmap_due_in: 期日まで
353 label_roadmap_due_in: 期日まで
354 label_roadmap_overdue: %s late
354 label_roadmap_overdue: %s late
355 label_roadmap_no_issues: このバージョンに向けての問題はありません
355 label_roadmap_no_issues: このバージョンに向けての問題はありません
356 label_search: 検索
356 label_search: 検索
357 label_result_plural: 結果
357 label_result_plural: 結果
358 label_all_words: すべての単語
358 label_all_words: すべての単語
359 label_wiki: Wiki
359 label_wiki: Wiki
360 label_wiki_edit: Wiki編集
360 label_wiki_edit: Wiki編集
361 label_wiki_edit_plural: Wiki編集
361 label_wiki_edit_plural: Wiki編集
362 label_wiki_page: Wiki page
362 label_wiki_page: Wiki page
363 label_wiki_page_plural: Wikiページ
363 label_wiki_page_plural: Wikiページ
364 label_index_by_title: 索引
364 label_index_by_title: 索引
365 label_index_by_date: Index by date
365 label_index_by_date: Index by date
366 label_current_version: 最新版
366 label_current_version: 最新版
367 label_preview: プレビュー
367 label_preview: プレビュー
368 label_feed_plural: フィード
368 label_feed_plural: フィード
369 label_changes_details: 全変更の詳細
369 label_changes_details: 全変更の詳細
370 label_issue_tracking: 問題トラッキング
370 label_issue_tracking: 問題トラッキング
371 label_spent_time: 経過時間
371 label_spent_time: 経過時間
372 label_f_hour: %.2f 時間
372 label_f_hour: %.2f 時間
373 label_f_hour_plural: %.2f 時間
373 label_f_hour_plural: %.2f 時間
374 label_time_tracking: 時間トラッキング
374 label_time_tracking: 時間トラッキング
375 label_change_plural: 変更
375 label_change_plural: 変更
376 label_statistics: 統計
376 label_statistics: 統計
377 label_commits_per_month: 月別のコミット
377 label_commits_per_month: 月別のコミット
378 label_commits_per_author: 起票者別のコミット
378 label_commits_per_author: 起票者別のコミット
379 label_view_diff: 差分を見る
379 label_view_diff: 差分を見る
380 label_diff_inline: インライン
380 label_diff_inline: インライン
381 label_diff_side_by_side: 横に並べる
381 label_diff_side_by_side: 横に並べる
382 label_options: オプション
382 label_options: オプション
383 label_copy_workflow_from: ワークフローをここからコピー
383 label_copy_workflow_from: ワークフローをここからコピー
384 label_permissions_report: 権限レポート
384 label_permissions_report: 権限レポート
385 label_watched_issues: ウォッチ中の問題
385 label_watched_issues: ウォッチ中の問題
386 label_related_issues: 関連する問題
386 label_related_issues: 関連する問題
387 label_applied_status: 適用されたステータス
387 label_applied_status: 適用されたステータス
388 label_loading: ロード中...
388 label_loading: ロード中...
389 label_relation_new: 新しい関連
389 label_relation_new: 新しい関連
390 label_relation_delete: 関連の削除
390 label_relation_delete: 関連の削除
391 label_relates_to: 関係している
391 label_relates_to: 関係している
392 label_duplicates: 重複している
392 label_duplicates: 重複している
393 label_blocks: ブロックしている
393 label_blocks: ブロックしている
394 label_blocked_by: ブロックされている
394 label_blocked_by: ブロックされている
395 label_precedes: 先行する
395 label_precedes: 先行する
396 label_follows: 後続する
396 label_follows: 後続する
397 label_end_to_start: end to start
397 label_end_to_start: end to start
398 label_end_to_end: end to end
398 label_end_to_end: end to end
399 label_start_to_start: start to start
399 label_start_to_start: start to start
400 label_start_to_end: start to end
400 label_start_to_end: start to end
401 label_stay_logged_in: ログインを維持
401 label_stay_logged_in: ログインを維持
402 label_disabled: 無効
402 label_disabled: 無効
403 label_show_completed_versions: 完了したバージョンを表示
403 label_show_completed_versions: 完了したバージョンを表示
404 label_me: 自分
404 label_me: 自分
405 label_board: フォーラム
405 label_board: フォーラム
406 label_board_new: 新しいフォーラム
406 label_board_new: 新しいフォーラム
407 label_board_plural: フォーラム
407 label_board_plural: フォーラム
408 label_topic_plural: トピック
408 label_topic_plural: トピック
409 label_message_plural: メッセージ
409 label_message_plural: メッセージ
410 label_message_last: 最新のメッセージ
410 label_message_last: 最新のメッセージ
411 label_message_new: 新しいメッセージ
411 label_message_new: 新しいメッセージ
412 label_reply_plural: 返答
412 label_reply_plural: 返答
413 label_send_information: アカウント情報をユーザに送信
413 label_send_information: アカウント情報をユーザに送信
414 label_year: Year
414 label_year: Year
415 label_month: Month
415 label_month: Month
416 label_week: Week
416 label_week: Week
417 label_date_from: From
417 label_date_from: From
418 label_date_to: To
418 label_date_to: To
419 label_language_based: 既定の言語の設定に従う
419 label_language_based: 既定の言語の設定に従う
420 label_sort_by: Sort by "%s"
420 label_sort_by: Sort by "%s"
421 label_send_test_email: テストメールを送信
421 label_send_test_email: テストメールを送信
422 label_feeds_access_key_created_on: RSS access key created %s ago
422 label_feeds_access_key_created_on: RSS access key created %s ago
423 label_module_plural: Modules
423 label_module_plural: Modules
424 label_added_time_by: Added by %s %s ago
424 label_added_time_by: Added by %s %s ago
425 label_updated_time: Updated %s ago
425 label_updated_time: Updated %s ago
426 label_jump_to_a_project: プロジェクトへ移動...
426 label_jump_to_a_project: プロジェクトへ移動...
427
427
428 button_login: ログイン
428 button_login: ログイン
429 button_submit: 変更
429 button_submit: 変更
430 button_save: 保存
430 button_save: 保存
431 button_check_all: チェックを全部つける
431 button_check_all: チェックを全部つける
432 button_uncheck_all: チェックを全部外す
432 button_uncheck_all: チェックを全部外す
433 button_delete: 削除
433 button_delete: 削除
434 button_create: 作成
434 button_create: 作成
435 button_test: テスト
435 button_test: テスト
436 button_edit: 編集
436 button_edit: 編集
437 button_add: 追加
437 button_add: 追加
438 button_change: 変更
438 button_change: 変更
439 button_apply: 適用
439 button_apply: 適用
440 button_clear: クリア
440 button_clear: クリア
441 button_lock: ロック
441 button_lock: ロック
442 button_unlock: アンロック
442 button_unlock: アンロック
443 button_download: ダウンロード
443 button_download: ダウンロード
444 button_list: 一覧
444 button_list: 一覧
445 button_view: 見る
445 button_view: 見る
446 button_move: 移動
446 button_move: 移動
447 button_back: 戻る
447 button_back: 戻る
448 button_cancel: キャンセル
448 button_cancel: キャンセル
449 button_activate: 有効にする
449 button_activate: 有効にする
450 button_sort: ソート
450 button_sort: ソート
451 button_log_time: 時間を記録
451 button_log_time: 時間を記録
452 button_rollback: このバージョンにロールバック
452 button_rollback: このバージョンにロールバック
453 button_watch: ウォッチ
453 button_watch: ウォッチ
454 button_unwatch: ウォッチをやめる
454 button_unwatch: ウォッチをやめる
455 button_reply: 返答
455 button_reply: 返答
456 button_archive: 書庫に保存
456 button_archive: 書庫に保存
457 button_unarchive: 書庫から戻す
457 button_unarchive: 書庫から戻す
458 button_reset: Reset
458 button_reset: Reset
459 button_rename: Rename
459 button_rename: Rename
460
460
461 status_active: 有効
461 status_active: 有効
462 status_registered: 登録
462 status_registered: 登録
463 status_locked: ロック
463 status_locked: ロック
464
464
465 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
465 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
466 text_regexp_info: 例) ^[A-Z0-9]+$
466 text_regexp_info: 例) ^[A-Z0-9]+$
467 text_min_max_length_info: 0だと無制限になります
467 text_min_max_length_info: 0だと無制限になります
468 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
468 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
469 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
469 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
470 text_are_you_sure: よろしいですか?
470 text_are_you_sure: よろしいですか?
471 text_journal_changed: %sから%sに変更
471 text_journal_changed: %sから%sに変更
472 text_journal_set_to: %sにセット
472 text_journal_set_to: %sにセット
473 text_journal_deleted: 削除
473 text_journal_deleted: 削除
474 text_tip_task_begin_day: この日に開始するタスク
474 text_tip_task_begin_day: この日に開始するタスク
475 text_tip_task_end_day: この日に終了するタスク
475 text_tip_task_end_day: この日に終了するタスク
476 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
476 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
477 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
477 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
478 text_caracters_maximum: 最大 %d 文字です。
478 text_caracters_maximum: 最大 %d 文字です。
479 text_length_between: 長さは %d から %d 文字までです。
479 text_length_between: 長さは %d から %d 文字までです。
480 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
480 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
481 text_unallowed_characters: 使えない文字です
481 text_unallowed_characters: 使えない文字です
482 text_comma_separated: (カンマで区切った)複数の値が使えます
482 text_comma_separated: (カンマで区切った)複数の値が使えます
483 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
483 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
484 text_issue_added: 問題 %s が報告されました。
484 text_issue_added: 問題 %s が報告されました。
485 text_issue_updated: 問題 %s が更新されました。
485 text_issue_updated: 問題 %s が更新されました。
486 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
487 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
488 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_reassign_to: Reassing issues to this category
489 text_issue_category_reassign_to: Reassing issues to this category
490
490
491 default_role_manager: 管理者
491 default_role_manager: 管理者
492 default_role_developper: 開発者
492 default_role_developper: 開発者
493 default_role_reporter: 報告者
493 default_role_reporter: 報告者
494 default_tracker_bug: バグ
494 default_tracker_bug: バグ
495 default_tracker_feature: 機能
495 default_tracker_feature: 機能
496 default_tracker_support: サポート
496 default_tracker_support: サポート
497 default_issue_status_new: 新規
497 default_issue_status_new: 新規
498 default_issue_status_assigned: 担当
498 default_issue_status_assigned: 担当
499 default_issue_status_resolved: 解決
499 default_issue_status_resolved: 解決
500 default_issue_status_feedback: フィードバック
500 default_issue_status_feedback: フィードバック
501 default_issue_status_closed: 終了
501 default_issue_status_closed: 終了
502 default_issue_status_rejected: 却下
502 default_issue_status_rejected: 却下
503 default_doc_category_user: ユーザ文書
503 default_doc_category_user: ユーザ文書
504 default_doc_category_tech: 技術文書
504 default_doc_category_tech: 技術文書
505 default_priority_low: 低め
505 default_priority_low: 低め
506 default_priority_normal: 通常
506 default_priority_normal: 通常
507 default_priority_high: 高め
507 default_priority_high: 高め
508 default_priority_urgent: 急いで
508 default_priority_urgent: 急いで
509 default_priority_immediate: 今すぐ
509 default_priority_immediate: 今すぐ
510 default_activity_design: デザイン作業
510 default_activity_design: デザイン作業
511 default_activity_development: 開発作業
511 default_activity_development: 開発作業
512
512
513 enumeration_issue_priorities: 問題の優先度
513 enumeration_issue_priorities: 問題の優先度
514 enumeration_doc_categories: 文書カテゴリ
514 enumeration_doc_categories: 文書カテゴリ
515 enumeration_activities: 作業分類 (時間トラッキング)
515 enumeration_activities: 作業分類 (時間トラッキング)
516 label_file_plural: Files
516 label_file_plural: Files
517 label_changeset_plural: Changesets
517 label_changeset_plural: Changesets
518 field_column_names: 項目
518 field_column_names: 項目
519 label_default_columns: 既定の項目
519 label_default_columns: 既定の項目
520 setting_issue_list_default_columns: 問題の一覧で表示する項目
520 setting_issue_list_default_columns: 問題の一覧で表示する項目
521 setting_repositories_encodings: リポジトリのエンコーディング
521 setting_repositories_encodings: リポジトリのエンコーディング
522 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
522 notice_no_issue_selected: "問題が選択されていません! 更新対象の問題を選択してください。"
523 label_bulk_edit_selected_issues: 問題の一括編集
523 label_bulk_edit_selected_issues: 問題の一括編集
524 label_no_change_option: (変更無し)
524 label_no_change_option: (変更無し)
525 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
525 notice_failed_to_save_issues: "%d件の問題が保存できませんでした(%d件選択のうち) : %s."
526 label_theme: テーマ
526 label_theme: テーマ
527 label_default: 既定
527 label_default: 既定
528 label_search_titles_only: Search titles only
528 label_search_titles_only: Search titles only
529 label_nobody: nobody
529 label_nobody: nobody
530 button_change_password: Change password
531 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
532 label_user_mail_option_selected: "For any event on the selected projects only..."
533 label_user_mail_option_all: "For any event on all my projects"
534 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,529 +1,534
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagen
9 actionview_datehelper_time_in_words_day_plural: %d dagen
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
10 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
11 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
12 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
13 actionview_datehelper_time_in_words_minute: 1 minuut
13 actionview_datehelper_time_in_words_minute: 1 minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
14 actionview_datehelper_time_in_words_minute_half: een halve minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
15 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
16 actionview_datehelper_time_in_words_minute_plural: %d minuten
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
17 actionview_datehelper_time_in_words_minute_single: 1 minuut
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
18 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
19 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
20 actionview_instancetag_blank_option: Selecteer
20 actionview_instancetag_blank_option: Selecteer
21
21
22 activerecord_error_inclusion: staat niet in de lijst
22 activerecord_error_inclusion: staat niet in de lijst
23 activerecord_error_exclusion: is gereserveerd
23 activerecord_error_exclusion: is gereserveerd
24 activerecord_error_invalid: is ongeldig
24 activerecord_error_invalid: is ongeldig
25 activerecord_error_confirmation: komt niet overeen met confirmatie
25 activerecord_error_confirmation: komt niet overeen met confirmatie
26 activerecord_error_accepted: moet geaccepteerd worden
26 activerecord_error_accepted: moet geaccepteerd worden
27 activerecord_error_empty: mag niet leeg zijn
27 activerecord_error_empty: mag niet leeg zijn
28 activerecord_error_blank: mag niet blanco zijn
28 activerecord_error_blank: mag niet blanco zijn
29 activerecord_error_too_long: is te lang
29 activerecord_error_too_long: is te lang
30 activerecord_error_too_short: is te kort
30 activerecord_error_too_short: is te kort
31 activerecord_error_wrong_length: heeft de verkeerde lengte
31 activerecord_error_wrong_length: heeft de verkeerde lengte
32 activerecord_error_taken: is al in gebruik
32 activerecord_error_taken: is al in gebruik
33 activerecord_error_not_a_number: is geen getal
33 activerecord_error_not_a_number: is geen getal
34 activerecord_error_not_a_date: is geen valide datum
34 activerecord_error_not_a_date: is geen valide datum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
35 activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
36 activerecord_error_not_same_project: hoort niet bij hetzelfde project
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
37 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
38
38
39 general_fmt_age: %d jr
39 general_fmt_age: %d jr
40 general_fmt_age_plural: %d jr
40 general_fmt_age_plural: %d jr
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nee'
45 general_text_No: 'Nee'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nee'
47 general_text_no: 'nee'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Nederlands'
49 general_lang_name: 'Nederlands'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
53 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Account is met succes gewijzigd
56 notice_account_updated: Account is met succes gewijzigd
57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
57 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
58 notice_account_password_updated: Wachtwoord is met succes gewijzigd
59 notice_account_wrong_password: Incorrect wachtwoord
59 notice_account_wrong_password: Incorrect wachtwoord
60 notice_account_register_done: Account is met succes aangemaakt.
60 notice_account_register_done: Account is met succes aangemaakt.
61 notice_account_unknown_email: Onbekende gebruiker.
61 notice_account_unknown_email: Onbekende gebruiker.
62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
62 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
63 notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord.
64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
64 notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen.
65 notice_successful_create: Maken succesvol.
65 notice_successful_create: Maken succesvol.
66 notice_successful_update: Wijzigen succesvol.
66 notice_successful_update: Wijzigen succesvol.
67 notice_successful_delete: Verwijderen succesvol.
67 notice_successful_delete: Verwijderen succesvol.
68 notice_successful_connection: Verbinding succesvol.
68 notice_successful_connection: Verbinding succesvol.
69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
69 notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd.
70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
70 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
71 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
71 notice_scm_error: Deze ingang of revisie bestaat niet in de repository.
72 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
72 notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Uw redMine wachtwoord
77 mail_subject_lost_password: Uw redMine wachtwoord
78 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
78 mail_body_lost_password: 'Gebruik de volgende link om Uw wachtwoord te wijzigen:'
79 mail_subject_register: redMine account activatie
79 mail_subject_register: redMine account activatie
80 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
80 mail_body_register: 'Gebruik de volgende link om Uw Redmine account te activeren:'
81
81
82 gui_validation_error: 1 fout
82 gui_validation_error: 1 fout
83 gui_validation_error_plural: %d fouten
83 gui_validation_error_plural: %d fouten
84
84
85 field_name: Naam
85 field_name: Naam
86 field_description: Beschrijving
86 field_description: Beschrijving
87 field_summary: Samenvatting
87 field_summary: Samenvatting
88 field_is_required: Verplicht
88 field_is_required: Verplicht
89 field_firstname: Voornaam
89 field_firstname: Voornaam
90 field_lastname: Achternaam
90 field_lastname: Achternaam
91 field_mail: Email
91 field_mail: Email
92 field_filename: Bestand
92 field_filename: Bestand
93 field_filesize: Grootte
93 field_filesize: Grootte
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Auteur
95 field_author: Auteur
96 field_created_on: Aangemaakt
96 field_created_on: Aangemaakt
97 field_updated_on: Gewijzigd
97 field_updated_on: Gewijzigd
98 field_field_format: Formaat
98 field_field_format: Formaat
99 field_is_for_all: Voor alle projecten
99 field_is_for_all: Voor alle projecten
100 field_possible_values: Mogelijke waarden
100 field_possible_values: Mogelijke waarden
101 field_regexp: Reguliere expressie
101 field_regexp: Reguliere expressie
102 field_min_length: Minimale lengte
102 field_min_length: Minimale lengte
103 field_max_length: Maximale lengte
103 field_max_length: Maximale lengte
104 field_value: Waarde
104 field_value: Waarde
105 field_category: Categorie
105 field_category: Categorie
106 field_title: Titel
106 field_title: Titel
107 field_project: Project
107 field_project: Project
108 field_issue: Issue
108 field_issue: Issue
109 field_status: Status
109 field_status: Status
110 field_notes: Notities
110 field_notes: Notities
111 field_is_closed: Issue gesloten
111 field_is_closed: Issue gesloten
112 field_is_default: Default status
112 field_is_default: Default status
113 field_html_color: Kleur
113 field_html_color: Kleur
114 field_tracker: Tracker
114 field_tracker: Tracker
115 field_subject: Onderwerp
115 field_subject: Onderwerp
116 field_due_date: Verwachte datum gereed
116 field_due_date: Verwachte datum gereed
117 field_assigned_to: Toegewezen aan
117 field_assigned_to: Toegewezen aan
118 field_priority: Prioriteit
118 field_priority: Prioriteit
119 field_fixed_version: Opgeloste versie
119 field_fixed_version: Opgeloste versie
120 field_user: Gebruiker
120 field_user: Gebruiker
121 field_role: Rol
121 field_role: Rol
122 field_homepage: Homepage
122 field_homepage: Homepage
123 field_is_public: Publiek
123 field_is_public: Publiek
124 field_parent: Subproject van
124 field_parent: Subproject van
125 field_is_in_chlog: Issues weergegeven in wijzigingslog
125 field_is_in_chlog: Issues weergegeven in wijzigingslog
126 field_is_in_roadmap: Issues weergegeven in roadmap
126 field_is_in_roadmap: Issues weergegeven in roadmap
127 field_login: Inloggen
127 field_login: Inloggen
128 field_mail_notification: Mail mededelingen
128 field_mail_notification: Mail mededelingen
129 field_admin: Administrateur
129 field_admin: Administrateur
130 field_last_login_on: Laatste bezoek
130 field_last_login_on: Laatste bezoek
131 field_language: Taal
131 field_language: Taal
132 field_effective_date: Datum
132 field_effective_date: Datum
133 field_password: Wachtwoord
133 field_password: Wachtwoord
134 field_new_password: Nieuw wachtwoord
134 field_new_password: Nieuw wachtwoord
135 field_password_confirmation: Bevestigen
135 field_password_confirmation: Bevestigen
136 field_version: Versie
136 field_version: Versie
137 field_type: Type
137 field_type: Type
138 field_host: Host
138 field_host: Host
139 field_port: Port
139 field_port: Port
140 field_account: Account
140 field_account: Account
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Login attribuut
142 field_attr_login: Login attribuut
143 field_attr_firstname: Voornaam attribuut
143 field_attr_firstname: Voornaam attribuut
144 field_attr_lastname: Achternaam attribuut
144 field_attr_lastname: Achternaam attribuut
145 field_attr_mail: Email attribuut
145 field_attr_mail: Email attribuut
146 field_onthefly: On-the-fly aanmaken van een gebruiker
146 field_onthefly: On-the-fly aanmaken van een gebruiker
147 field_start_date: Start
147 field_start_date: Start
148 field_done_ratio: %% Gereed
148 field_done_ratio: %% Gereed
149 field_auth_source: Authenticatiemethode
149 field_auth_source: Authenticatiemethode
150 field_hide_mail: Verberg mijn emailadres
150 field_hide_mail: Verberg mijn emailadres
151 field_comments: Commentaar
151 field_comments: Commentaar
152 field_url: URL
152 field_url: URL
153 field_start_page: Startpagina
153 field_start_page: Startpagina
154 field_subproject: Subproject
154 field_subproject: Subproject
155 field_hours: Uren
155 field_hours: Uren
156 field_activity: Activiteit
156 field_activity: Activiteit
157 field_spent_on: Datum
157 field_spent_on: Datum
158 field_identifier: Identificatiecode
158 field_identifier: Identificatiecode
159 field_is_filter: Gebruikt als een filter
159 field_is_filter: Gebruikt als een filter
160 field_issue_to_id: Gerelateerd issue
160 field_issue_to_id: Gerelateerd issue
161 field_delay: Vertraging
161 field_delay: Vertraging
162 field_assignable: Issues can be assigned to this role
162 field_assignable: Issues can be assigned to this role
163 field_redirect_existing_links: Redirect existing links
163 field_redirect_existing_links: Redirect existing links
164 field_estimated_hours: Estimated time
164 field_estimated_hours: Estimated time
165
165
166 setting_app_title: Applicatie titel
166 setting_app_title: Applicatie titel
167 setting_app_subtitle: Applicatie ondertitel
167 setting_app_subtitle: Applicatie ondertitel
168 setting_welcome_text: Welkomsttekst
168 setting_welcome_text: Welkomsttekst
169 setting_default_language: Default taal
169 setting_default_language: Default taal
170 setting_login_required: Authent. nodig
170 setting_login_required: Authent. nodig
171 setting_self_registration: Zelf-registratie toegestaan
171 setting_self_registration: Zelf-registratie toegestaan
172 setting_attachment_max_size: Attachment max. grootte
172 setting_attachment_max_size: Attachment max. grootte
173 setting_issues_export_limit: Limiet export issues
173 setting_issues_export_limit: Limiet export issues
174 setting_mail_from: Afzender mail adres
174 setting_mail_from: Afzender mail adres
175 setting_host_name: Host naam
175 setting_host_name: Host naam
176 setting_text_formatting: Tekst formaat
176 setting_text_formatting: Tekst formaat
177 setting_wiki_compression: Wiki geschiedenis comprimeren
177 setting_wiki_compression: Wiki geschiedenis comprimeren
178 setting_feeds_limit: Feed inhoud limiet
178 setting_feeds_limit: Feed inhoud limiet
179 setting_autofetch_changesets: Haal commits automatisch op
179 setting_autofetch_changesets: Haal commits automatisch op
180 setting_sys_api_enabled: Gebruik WS voor repository beheer
180 setting_sys_api_enabled: Gebruik WS voor repository beheer
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
183 setting_autologin: Autologin
184 setting_date_format: Date format
184 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
186
186
187 label_user: Gebruiker
187 label_user: Gebruiker
188 label_user_plural: Gebruikers
188 label_user_plural: Gebruikers
189 label_user_new: Nieuwe gebruiker
189 label_user_new: Nieuwe gebruiker
190 label_project: Project
190 label_project: Project
191 label_project_new: Nieuw project
191 label_project_new: Nieuw project
192 label_project_plural: Projecten
192 label_project_plural: Projecten
193 label_project_all: Alle Projecten
193 label_project_all: Alle Projecten
194 label_project_latest: Nieuwste projecten
194 label_project_latest: Nieuwste projecten
195 label_issue: Issue
195 label_issue: Issue
196 label_issue_new: Nieuw issue
196 label_issue_new: Nieuw issue
197 label_issue_plural: Issues
197 label_issue_plural: Issues
198 label_issue_view_all: Bekijk alle issues
198 label_issue_view_all: Bekijk alle issues
199 label_document: Document
199 label_document: Document
200 label_document_new: Nieuw document
200 label_document_new: Nieuw document
201 label_document_plural: Documenten
201 label_document_plural: Documenten
202 label_role: Rol
202 label_role: Rol
203 label_role_plural: Rollen
203 label_role_plural: Rollen
204 label_role_new: Nieuwe rol
204 label_role_new: Nieuwe rol
205 label_role_and_permissions: Rollen en permissies
205 label_role_and_permissions: Rollen en permissies
206 label_member: Lid
206 label_member: Lid
207 label_member_new: Nieuw lid
207 label_member_new: Nieuw lid
208 label_member_plural: Leden
208 label_member_plural: Leden
209 label_tracker: Tracker
209 label_tracker: Tracker
210 label_tracker_plural: Trackers
210 label_tracker_plural: Trackers
211 label_tracker_new: Nieuwe tracker
211 label_tracker_new: Nieuwe tracker
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Issue status
213 label_issue_status: Issue status
214 label_issue_status_plural: Issue statussen
214 label_issue_status_plural: Issue statussen
215 label_issue_status_new: Nieuwe status
215 label_issue_status_new: Nieuwe status
216 label_issue_category: Issue categorie
216 label_issue_category: Issue categorie
217 label_issue_category_plural: Issue categorieën
217 label_issue_category_plural: Issue categorieën
218 label_issue_category_new: Nieuwe categorie
218 label_issue_category_new: Nieuwe categorie
219 label_custom_field: Custom veld
219 label_custom_field: Custom veld
220 label_custom_field_plural: Custom velden
220 label_custom_field_plural: Custom velden
221 label_custom_field_new: Nieuw custom veld
221 label_custom_field_new: Nieuw custom veld
222 label_enumerations: Enumeraties
222 label_enumerations: Enumeraties
223 label_enumeration_new: Nieuwe waarde
223 label_enumeration_new: Nieuwe waarde
224 label_information: Informatie
224 label_information: Informatie
225 label_information_plural: Informatie
225 label_information_plural: Informatie
226 label_please_login: Gaarne inloggen
226 label_please_login: Gaarne inloggen
227 label_register: Registreer
227 label_register: Registreer
228 label_password_lost: Wachtwoord verloren
228 label_password_lost: Wachtwoord verloren
229 label_home: Home
229 label_home: Home
230 label_my_page: Mijn pagina
230 label_my_page: Mijn pagina
231 label_my_account: Mijn account
231 label_my_account: Mijn account
232 label_my_projects: Mijn projecten
232 label_my_projects: Mijn projecten
233 label_administration: Administratie
233 label_administration: Administratie
234 label_login: Inloggen
234 label_login: Inloggen
235 label_logout: Uitloggen
235 label_logout: Uitloggen
236 label_help: Help
236 label_help: Help
237 label_reported_issues: Gemelde issues
237 label_reported_issues: Gemelde issues
238 label_assigned_to_me_issues: Aan mij toegewezen issues
238 label_assigned_to_me_issues: Aan mij toegewezen issues
239 label_last_login: Laatste bezoek
239 label_last_login: Laatste bezoek
240 label_last_updates: Laatste wijziging
240 label_last_updates: Laatste wijziging
241 label_last_updates_plural: %d laatste wijziging
241 label_last_updates_plural: %d laatste wijziging
242 label_registered_on: Geregistreerd op
242 label_registered_on: Geregistreerd op
243 label_activity: Activiteit
243 label_activity: Activiteit
244 label_new: Nieuw
244 label_new: Nieuw
245 label_logged_as: Ingelogd als
245 label_logged_as: Ingelogd als
246 label_environment: Omgeving
246 label_environment: Omgeving
247 label_authentication: Authenticatie
247 label_authentication: Authenticatie
248 label_auth_source: Authenticatie modus
248 label_auth_source: Authenticatie modus
249 label_auth_source_new: Nieuwe authenticatie modus
249 label_auth_source_new: Nieuwe authenticatie modus
250 label_auth_source_plural: Authenticatie modi
250 label_auth_source_plural: Authenticatie modi
251 label_subproject_plural: Subprojecten
251 label_subproject_plural: Subprojecten
252 label_min_max_length: Min - Max lengte
252 label_min_max_length: Min - Max lengte
253 label_list: Lijst
253 label_list: Lijst
254 label_date: Datum
254 label_date: Datum
255 label_integer: Integer
255 label_integer: Integer
256 label_boolean: Boolean
256 label_boolean: Boolean
257 label_string: Tekst
257 label_string: Tekst
258 label_text: Lange tekst
258 label_text: Lange tekst
259 label_attribute: Attribuut
259 label_attribute: Attribuut
260 label_attribute_plural: Attributen
260 label_attribute_plural: Attributen
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
263 label_no_data: Geen gegevens om te tonen
263 label_no_data: Geen gegevens om te tonen
264 label_change_status: Wijzig status
264 label_change_status: Wijzig status
265 label_history: Geschiedenis
265 label_history: Geschiedenis
266 label_attachment: Bestand
266 label_attachment: Bestand
267 label_attachment_new: Nieuw bestand
267 label_attachment_new: Nieuw bestand
268 label_attachment_delete: Verwijder bestand
268 label_attachment_delete: Verwijder bestand
269 label_attachment_plural: Bestanden
269 label_attachment_plural: Bestanden
270 label_report: Rapport
270 label_report: Rapport
271 label_report_plural: Rapporten
271 label_report_plural: Rapporten
272 label_news: Nieuws
272 label_news: Nieuws
273 label_news_new: Voeg nieuws toe
273 label_news_new: Voeg nieuws toe
274 label_news_plural: Nieuws
274 label_news_plural: Nieuws
275 label_news_latest: Laatste nieuws
275 label_news_latest: Laatste nieuws
276 label_news_view_all: Bekijk al het nieuws
276 label_news_view_all: Bekijk al het nieuws
277 label_change_log: Wijzigingslog
277 label_change_log: Wijzigingslog
278 label_settings: Instellingen
278 label_settings: Instellingen
279 label_overview: Overzicht
279 label_overview: Overzicht
280 label_version: Versie
280 label_version: Versie
281 label_version_new: Nieuwe versie
281 label_version_new: Nieuwe versie
282 label_version_plural: Versies
282 label_version_plural: Versies
283 label_confirmation: Bevestiging
283 label_confirmation: Bevestiging
284 label_export_to: Exporteer naar
284 label_export_to: Exporteer naar
285 label_read: Lees...
285 label_read: Lees...
286 label_public_projects: Publieke projecten
286 label_public_projects: Publieke projecten
287 label_open_issues: open
287 label_open_issues: open
288 label_open_issues_plural: open
288 label_open_issues_plural: open
289 label_closed_issues: gesloten
289 label_closed_issues: gesloten
290 label_closed_issues_plural: gesloten
290 label_closed_issues_plural: gesloten
291 label_total: Totaal
291 label_total: Totaal
292 label_permissions: Permissies
292 label_permissions: Permissies
293 label_current_status: Huidige status
293 label_current_status: Huidige status
294 label_new_statuses_allowed: Nieuwe statuses toegestaan
294 label_new_statuses_allowed: Nieuwe statuses toegestaan
295 label_all: alle
295 label_all: alle
296 label_none: geen
296 label_none: geen
297 label_next: Volgende
297 label_next: Volgende
298 label_previous: Vorige
298 label_previous: Vorige
299 label_used_by: Gebruikt door
299 label_used_by: Gebruikt door
300 label_details: Details
300 label_details: Details
301 label_add_note: Voeg een notitie toe
301 label_add_note: Voeg een notitie toe
302 label_per_page: Per pagina
302 label_per_page: Per pagina
303 label_calendar: Kalender
303 label_calendar: Kalender
304 label_months_from: maanden vanaf
304 label_months_from: maanden vanaf
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Intern
306 label_internal: Intern
307 label_last_changes: laatste %d wijzigingen
307 label_last_changes: laatste %d wijzigingen
308 label_change_view_all: Bekijk alle wijzigingen
308 label_change_view_all: Bekijk alle wijzigingen
309 label_personalize_page: Personaliseer deze pagina
309 label_personalize_page: Personaliseer deze pagina
310 label_comment: Commentaar
310 label_comment: Commentaar
311 label_comment_plural: Commentaar
311 label_comment_plural: Commentaar
312 label_comment_add: Voeg commentaar toe
312 label_comment_add: Voeg commentaar toe
313 label_comment_added: Commentaar toegevoegd
313 label_comment_added: Commentaar toegevoegd
314 label_comment_delete: Verwijder commentaar
314 label_comment_delete: Verwijder commentaar
315 label_query: Eigen zoekvraag
315 label_query: Eigen zoekvraag
316 label_query_plural: Eigen zoekvragen
316 label_query_plural: Eigen zoekvragen
317 label_query_new: Nieuwe zoekvraag
317 label_query_new: Nieuwe zoekvraag
318 label_filter_add: Voeg filter toe
318 label_filter_add: Voeg filter toe
319 label_filter_plural: Filters
319 label_filter_plural: Filters
320 label_equals: is gelijk
320 label_equals: is gelijk
321 label_not_equals: is niet gelijk
321 label_not_equals: is niet gelijk
322 label_in_less_than: in minder dan
322 label_in_less_than: in minder dan
323 label_in_more_than: in meer dan
323 label_in_more_than: in meer dan
324 label_in: in
324 label_in: in
325 label_today: vandaag
325 label_today: vandaag
326 label_this_week: this week
326 label_this_week: this week
327 label_less_than_ago: minder dan dagen geleden
327 label_less_than_ago: minder dan dagen geleden
328 label_more_than_ago: meer dan dagen geleden
328 label_more_than_ago: meer dan dagen geleden
329 label_ago: dagen geleden
329 label_ago: dagen geleden
330 label_contains: bevat
330 label_contains: bevat
331 label_not_contains: bevat niet
331 label_not_contains: bevat niet
332 label_day_plural: dagen
332 label_day_plural: dagen
333 label_repository: Repository
333 label_repository: Repository
334 label_browse: Blader
334 label_browse: Blader
335 label_modification: %d wijziging
335 label_modification: %d wijziging
336 label_modification_plural: %d wijzigingen
336 label_modification_plural: %d wijzigingen
337 label_revision: Revisie
337 label_revision: Revisie
338 label_revision_plural: Revisies
338 label_revision_plural: Revisies
339 label_added: toegevoegd
339 label_added: toegevoegd
340 label_modified: gewijzigd
340 label_modified: gewijzigd
341 label_deleted: verwijderd
341 label_deleted: verwijderd
342 label_latest_revision: Meest recente revisie
342 label_latest_revision: Meest recente revisie
343 label_latest_revision_plural: Meest recente revisies
343 label_latest_revision_plural: Meest recente revisies
344 label_view_revisions: Bekijk revisies
344 label_view_revisions: Bekijk revisies
345 label_max_size: Maximum grootte
345 label_max_size: Maximum grootte
346 label_on: 'van'
346 label_on: 'van'
347 label_sort_highest: Verplaats naar begin
347 label_sort_highest: Verplaats naar begin
348 label_sort_higher: Verplaats naar boven
348 label_sort_higher: Verplaats naar boven
349 label_sort_lower: Verplaats naar beneden
349 label_sort_lower: Verplaats naar beneden
350 label_sort_lowest: Verplaats naar eind
350 label_sort_lowest: Verplaats naar eind
351 label_roadmap: Roadmap
351 label_roadmap: Roadmap
352 label_roadmap_due_in: Due in
352 label_roadmap_due_in: Due in
353 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Geen issues voor deze versie
354 label_roadmap_no_issues: Geen issues voor deze versie
355 label_search: Zoeken
355 label_search: Zoeken
356 label_result_plural: Resultaten
356 label_result_plural: Resultaten
357 label_all_words: Alle woorden
357 label_all_words: Alle woorden
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Wiki edit
359 label_wiki_edit: Wiki edit
360 label_wiki_edit_plural: Wiki edits
360 label_wiki_edit_plural: Wiki edits
361 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
363 label_index_by_title: Index by title
364 label_index_by_date: Index by date
364 label_index_by_date: Index by date
365 label_current_version: Huidige versie
365 label_current_version: Huidige versie
366 label_preview: Testweergave
366 label_preview: Testweergave
367 label_feed_plural: Feeds
367 label_feed_plural: Feeds
368 label_changes_details: Details van alle wijzigingen
368 label_changes_details: Details van alle wijzigingen
369 label_issue_tracking: Issue tracking
369 label_issue_tracking: Issue tracking
370 label_spent_time: Gespendeerde tijd
370 label_spent_time: Gespendeerde tijd
371 label_f_hour: %.2f uur
371 label_f_hour: %.2f uur
372 label_f_hour_plural: %.2f uren
372 label_f_hour_plural: %.2f uren
373 label_time_tracking: Tijd tracking
373 label_time_tracking: Tijd tracking
374 label_change_plural: Wijzigingen
374 label_change_plural: Wijzigingen
375 label_statistics: Statistieken
375 label_statistics: Statistieken
376 label_commits_per_month: Commits per maand
376 label_commits_per_month: Commits per maand
377 label_commits_per_author: Commits per auteur
377 label_commits_per_author: Commits per auteur
378 label_view_diff: Bekijk verschillen
378 label_view_diff: Bekijk verschillen
379 label_diff_inline: inline
379 label_diff_inline: inline
380 label_diff_side_by_side: naast elkaar
380 label_diff_side_by_side: naast elkaar
381 label_options: Opties
381 label_options: Opties
382 label_copy_workflow_from: Kopieer workflow van
382 label_copy_workflow_from: Kopieer workflow van
383 label_permissions_report: Permissies rapport
383 label_permissions_report: Permissies rapport
384 label_watched_issues: Gemonitorde issues
384 label_watched_issues: Gemonitorde issues
385 label_related_issues: Gerelateerde issues
385 label_related_issues: Gerelateerde issues
386 label_applied_status: Toegekende status
386 label_applied_status: Toegekende status
387 label_loading: Laden...
387 label_loading: Laden...
388 label_relation_new: Nieuwe relatie
388 label_relation_new: Nieuwe relatie
389 label_relation_delete: Verwijder relatie
389 label_relation_delete: Verwijder relatie
390 label_relates_to: gerelateerd aan
390 label_relates_to: gerelateerd aan
391 label_duplicates: dupliceert
391 label_duplicates: dupliceert
392 label_blocks: blokkeert
392 label_blocks: blokkeert
393 label_blocked_by: geblokkeerd door
393 label_blocked_by: geblokkeerd door
394 label_precedes: gaat vooraf aan
394 label_precedes: gaat vooraf aan
395 label_follows: volgt op
395 label_follows: volgt op
396 label_end_to_start: eind tot start
396 label_end_to_start: eind tot start
397 label_end_to_end: eind tot eind
397 label_end_to_end: eind tot eind
398 label_start_to_start: start tot start
398 label_start_to_start: start tot start
399 label_start_to_end: start tot eind
399 label_start_to_end: start tot eind
400 label_stay_logged_in: Blijf ingelogd
400 label_stay_logged_in: Blijf ingelogd
401 label_disabled: uitgeschakeld
401 label_disabled: uitgeschakeld
402 label_show_completed_versions: Toon afgeronde versies
402 label_show_completed_versions: Toon afgeronde versies
403 label_me: ik
403 label_me: ik
404 label_board: Forum
404 label_board: Forum
405 label_board_new: Nieuw forum
405 label_board_new: Nieuw forum
406 label_board_plural: Forums
406 label_board_plural: Forums
407 label_topic_plural: Onderwerpen
407 label_topic_plural: Onderwerpen
408 label_message_plural: Berichten
408 label_message_plural: Berichten
409 label_message_last: Laatste bericht
409 label_message_last: Laatste bericht
410 label_message_new: Nieuw bericht
410 label_message_new: Nieuw bericht
411 label_reply_plural: Antwoorden
411 label_reply_plural: Antwoorden
412 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
413 label_year: Year
413 label_year: Year
414 label_month: Month
414 label_month: Month
415 label_week: Week
415 label_week: Week
416 label_date_from: From
416 label_date_from: From
417 label_date_to: To
417 label_date_to: To
418 label_language_based: Language based
418 label_language_based: Language based
419 label_sort_by: Sort by "%s"
419 label_sort_by: Sort by "%s"
420 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
422 label_module_plural: Modules
422 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
426
426
427 button_login: Inloggen
427 button_login: Inloggen
428 button_submit: Toevoegen
428 button_submit: Toevoegen
429 button_save: Bewaren
429 button_save: Bewaren
430 button_check_all: Selecteer alle
430 button_check_all: Selecteer alle
431 button_uncheck_all: Deselecteer alle
431 button_uncheck_all: Deselecteer alle
432 button_delete: Verwijder
432 button_delete: Verwijder
433 button_create: Maak
433 button_create: Maak
434 button_test: Test
434 button_test: Test
435 button_edit: Bewerk
435 button_edit: Bewerk
436 button_add: Voeg toe
436 button_add: Voeg toe
437 button_change: Wijzig
437 button_change: Wijzig
438 button_apply: Pas toe
438 button_apply: Pas toe
439 button_clear: Leeg maken
439 button_clear: Leeg maken
440 button_lock: Lock
440 button_lock: Lock
441 button_unlock: Unlock
441 button_unlock: Unlock
442 button_download: Download
442 button_download: Download
443 button_list: Lijst
443 button_list: Lijst
444 button_view: Bekijken
444 button_view: Bekijken
445 button_move: Verplaatsen
445 button_move: Verplaatsen
446 button_back: Terug
446 button_back: Terug
447 button_cancel: Annuleer
447 button_cancel: Annuleer
448 button_activate: Activeer
448 button_activate: Activeer
449 button_sort: Sorteer
449 button_sort: Sorteer
450 button_log_time: Log tijd
450 button_log_time: Log tijd
451 button_rollback: Rollback naar deze versie
451 button_rollback: Rollback naar deze versie
452 button_watch: Monitor
452 button_watch: Monitor
453 button_unwatch: Niet meer monitoren
453 button_unwatch: Niet meer monitoren
454 button_reply: Antwoord
454 button_reply: Antwoord
455 button_archive: Archive
455 button_archive: Archive
456 button_unarchive: Unarchive
456 button_unarchive: Unarchive
457 button_reset: Reset
457 button_reset: Reset
458 button_rename: Rename
458 button_rename: Rename
459
459
460 status_active: Actief
460 status_active: Actief
461 status_registered: geregistreerd
461 status_registered: geregistreerd
462 status_locked: gelockt
462 status_locked: gelockt
463
463
464 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
464 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
465 text_regexp_info: bv. ^[A-Z0-9]+$
465 text_regexp_info: bv. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 betekent geen restrictie
466 text_min_max_length_info: 0 betekent geen restrictie
467 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
467 text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ?
468 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
468 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
469 text_are_you_sure: Weet U het zeker ?
469 text_are_you_sure: Weet U het zeker ?
470 text_journal_changed: gewijzigd van %s naar %s
470 text_journal_changed: gewijzigd van %s naar %s
471 text_journal_set_to: ingesteld op %s
471 text_journal_set_to: ingesteld op %s
472 text_journal_deleted: verwijderd
472 text_journal_deleted: verwijderd
473 text_tip_task_begin_day: taak die op deze dag begint
473 text_tip_task_begin_day: taak die op deze dag begint
474 text_tip_task_end_day: taak die op deze dag eindigt
474 text_tip_task_end_day: taak die op deze dag eindigt
475 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
475 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
476 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
476 text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.'
477 text_caracters_maximum: %d van maximum aantal tekens.
477 text_caracters_maximum: %d van maximum aantal tekens.
478 text_length_between: Lengte tussen %d en %d tekens.
478 text_length_between: Lengte tussen %d en %d tekens.
479 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
479 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
480 text_unallowed_characters: Niet toegestane tekens
480 text_unallowed_characters: Niet toegestane tekens
481 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
481 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
482 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
482 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
483 text_issue_added: Issue %s is gerapporteerd.
483 text_issue_added: Issue %s is gerapporteerd.
484 text_issue_updated: Issue %s is gewijzigd.
484 text_issue_updated: Issue %s is gewijzigd.
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
489
489
490 default_role_manager: Manager
490 default_role_manager: Manager
491 default_role_developper: Ontwikkelaar
491 default_role_developper: Ontwikkelaar
492 default_role_reporter: Rapporteur
492 default_role_reporter: Rapporteur
493 default_tracker_bug: Bug
493 default_tracker_bug: Bug
494 default_tracker_feature: Feature
494 default_tracker_feature: Feature
495 default_tracker_support: Support
495 default_tracker_support: Support
496 default_issue_status_new: Nieuw
496 default_issue_status_new: Nieuw
497 default_issue_status_assigned: Toegewezen
497 default_issue_status_assigned: Toegewezen
498 default_issue_status_resolved: Opgelost
498 default_issue_status_resolved: Opgelost
499 default_issue_status_feedback: Terugkoppeling
499 default_issue_status_feedback: Terugkoppeling
500 default_issue_status_closed: Gesloten
500 default_issue_status_closed: Gesloten
501 default_issue_status_rejected: Afgewezen
501 default_issue_status_rejected: Afgewezen
502 default_doc_category_user: Gebruikersdocumentatie
502 default_doc_category_user: Gebruikersdocumentatie
503 default_doc_category_tech: Technische documentatie
503 default_doc_category_tech: Technische documentatie
504 default_priority_low: Laag
504 default_priority_low: Laag
505 default_priority_normal: Normaal
505 default_priority_normal: Normaal
506 default_priority_high: Hoog
506 default_priority_high: Hoog
507 default_priority_urgent: Spoed
507 default_priority_urgent: Spoed
508 default_priority_immediate: Onmiddellijk
508 default_priority_immediate: Onmiddellijk
509 default_activity_design: Design
509 default_activity_design: Design
510 default_activity_development: Development
510 default_activity_development: Development
511
511
512 enumeration_issue_priorities: Issue prioriteiten
512 enumeration_issue_priorities: Issue prioriteiten
513 enumeration_doc_categories: Document categorieën
513 enumeration_doc_categories: Document categorieën
514 enumeration_activities: Activiteiten (tijd tracking)
514 enumeration_activities: Activiteiten (tijd tracking)
515 text_comma_separated: Multiple values allowed (comma separated).
515 text_comma_separated: Multiple values allowed (comma separated).
516 label_file_plural: Files
516 label_file_plural: Files
517 label_changeset_plural: Changesets
517 label_changeset_plural: Changesets
518 field_column_names: Columns
518 field_column_names: Columns
519 label_default_columns: Default columns
519 label_default_columns: Default columns
520 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_issue_list_default_columns: Default columns displayed on the issue list
521 setting_repositories_encodings: Repositories encodings
521 setting_repositories_encodings: Repositories encodings
522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
523 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_no_change_option: (No change)
524 label_no_change_option: (No change)
525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
526 label_theme: Theme
526 label_theme: Theme
527 label_default: Default
527 label_default: Default
528 label_search_titles_only: Search titles only
528 label_search_titles_only: Search titles only
529 label_nobody: nobody
529 label_nobody: nobody
530 button_change_password: Change password
531 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
532 label_user_mail_option_selected: "For any event on the selected projects only..."
533 label_user_mail_option_all: "For any event on all my projects"
534 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
4 actionview_datehelper_select_month_names: Styczeń,Luty,Marzec,Kwiecień,Maj,Czerwiec,Lipiec,Sierpień,Wrzesień,Październik,Listopad,Grudzień
5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
5 actionview_datehelper_select_month_names_abbr: Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Paź,Lis,Gru
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dzień
8 actionview_datehelper_time_in_words_day: 1 dzień
9 actionview_datehelper_time_in_words_day_plural: %d dni
9 actionview_datehelper_time_in_words_day_plural: %d dni
10 actionview_datehelper_time_in_words_hour_about: około godziny
10 actionview_datehelper_time_in_words_hour_about: około godziny
11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
11 actionview_datehelper_time_in_words_hour_about_plural: około %d godzin
12 actionview_datehelper_time_in_words_hour_about_single: około godziny
12 actionview_datehelper_time_in_words_hour_about_single: około godziny
13 actionview_datehelper_time_in_words_minute: 1 minuta
13 actionview_datehelper_time_in_words_minute: 1 minuta
14 actionview_datehelper_time_in_words_minute_half: pół minuty
14 actionview_datehelper_time_in_words_minute_half: pół minuty
15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
15 actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta
16 actionview_datehelper_time_in_words_minute_plural: %d minut
16 actionview_datehelper_time_in_words_minute_plural: %d minut
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
17 actionview_datehelper_time_in_words_minute_single: 1 minuta
18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
18 actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda
19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mniej niż %d sekund
20 actionview_instancetag_blank_option: Proszę wybierz
20 actionview_instancetag_blank_option: Proszę wybierz
21
21
22 activerecord_error_inclusion: nie jest zawarte na liście
22 activerecord_error_inclusion: nie jest zawarte na liście
23 activerecord_error_exclusion: jest zarezerwowane
23 activerecord_error_exclusion: jest zarezerwowane
24 activerecord_error_invalid: jest nieprawidłowe
24 activerecord_error_invalid: jest nieprawidłowe
25 activerecord_error_confirmation: nie pasuje do potwierdzenia
25 activerecord_error_confirmation: nie pasuje do potwierdzenia
26 activerecord_error_accepted: musi być zaakceptowane
26 activerecord_error_accepted: musi być zaakceptowane
27 activerecord_error_empty: nie może być puste
27 activerecord_error_empty: nie może być puste
28 activerecord_error_blank: nie może być czyste
28 activerecord_error_blank: nie może być czyste
29 activerecord_error_too_long: jest za długie
29 activerecord_error_too_long: jest za długie
30 activerecord_error_too_short: jest za krótkie
30 activerecord_error_too_short: jest za krótkie
31 activerecord_error_wrong_length: ma złą długość
31 activerecord_error_wrong_length: ma złą długość
32 activerecord_error_taken: jest już wybrane
32 activerecord_error_taken: jest już wybrane
33 activerecord_error_not_a_number: nie jest numerem
33 activerecord_error_not_a_number: nie jest numerem
34 activerecord_error_not_a_date: nie jest prawidłową datą
34 activerecord_error_not_a_date: nie jest prawidłową datą
35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
35 activerecord_error_greater_than_start_date: musi być większe niż początkowa data
36 activerecord_error_not_same_project: nie należy do tego samego projektu
36 activerecord_error_not_same_project: nie należy do tego samego projektu
37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
37 activerecord_error_circular_dependency: Ta relacja może wytworzyć kołową zależność
38
38
39 general_fmt_age: %d lat
39 general_fmt_age: %d lat
40 general_fmt_age_plural: %d lat
40 general_fmt_age_plural: %d lat
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nie'
45 general_text_No: 'Nie'
46 general_text_Yes: 'Tak'
46 general_text_Yes: 'Tak'
47 general_text_no: 'nie'
47 general_text_no: 'nie'
48 general_text_yes: 'tak'
48 general_text_yes: 'tak'
49 general_lang_name: 'Polski'
49 general_lang_name: 'Polski'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-2
51 general_csv_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
52 general_pdf_encoding: ISO-8859-2
53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
53 general_day_names: Poniedziałek,Wtorek,Środa,Czwartek,Piątek,Sobota,Niedziela
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Konto prawidłowo zaktualizowane.
56 notice_account_updated: Konto prawidłowo zaktualizowane.
57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
57 notice_account_invalid_creditentials: Zły użytkownik lub hasło
58 notice_account_password_updated: Hasło prawidłowo zmienione.
58 notice_account_password_updated: Hasło prawidłowo zmienione.
59 notice_account_wrong_password: Złe hasło
59 notice_account_wrong_password: Złe hasło
60 notice_account_register_done: Konto prawidłowo stworzone.
60 notice_account_register_done: Konto prawidłowo stworzone.
61 notice_account_unknown_email: Nieznany użytkownik.
61 notice_account_unknown_email: Nieznany użytkownik.
62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
62 notice_can_t_change_password: To konto ma zewnętrzne źródło identyfikacji. Nie możesz zmienić hasła.
63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
63 notice_account_lost_email_sent: Email z instrukcjami zmiany hasła został wysłany do Ciebie.
64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
64 notice_account_activated: Twoje konto zostało aktywowane. Możesz się zalogować.
65 notice_successful_create: Udane stworzenie.
65 notice_successful_create: Udane stworzenie.
66 notice_successful_update: Udane poprawienie.
66 notice_successful_update: Udane poprawienie.
67 notice_successful_delete: Udane usunięcie.
67 notice_successful_delete: Udane usunięcie.
68 notice_successful_connection: Udane nawiązanie połączenia.
68 notice_successful_connection: Udane nawiązanie połączenia.
69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
69 notice_file_not_found: Strona do której próbujesz się dostać nie istnieje lub została usunięta.
70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
70 notice_locking_conflict: Dane poprawione przez innego użytkownika.
71 notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium.
71 notice_scm_error: Wejście i/lub zmiana nie istnieje w repozytorium.
72 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
72 notice_not_authorized: Nie jesteś autoryzowany by zobaczyć stronę.
73
73
74 mail_subject_lost_password: Twoje hasło do redMine
74 mail_subject_lost_password: Twoje hasło do redMine
75 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
75 mail_body_lost_password: 'W celu zmiany swojego hasła użyj poniższego odnośnika:'
76 mail_subject_register: Aktywacja konta w redMine
76 mail_subject_register: Aktywacja konta w redMine
77 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
77 mail_body_register: 'W celu aktywacji Twojego konta w Redmine, użyj poniższego odnośnika:'
78
78
79 gui_validation_error: 1 błąd
79 gui_validation_error: 1 błąd
80 gui_validation_error_plural: %d błędów
80 gui_validation_error_plural: %d błędów
81
81
82 field_name: Nazwa
82 field_name: Nazwa
83 field_description: Opis
83 field_description: Opis
84 field_summary: Podsumowanie
84 field_summary: Podsumowanie
85 field_is_required: Wymagane
85 field_is_required: Wymagane
86 field_firstname: Imię
86 field_firstname: Imię
87 field_lastname: Nazwisko
87 field_lastname: Nazwisko
88 field_mail: Email
88 field_mail: Email
89 field_filename: Plik
89 field_filename: Plik
90 field_filesize: Rozmiar
90 field_filesize: Rozmiar
91 field_downloads: Pobrań
91 field_downloads: Pobrań
92 field_author: Autor
92 field_author: Autor
93 field_created_on: Stworzone
93 field_created_on: Stworzone
94 field_updated_on: Zmienione
94 field_updated_on: Zmienione
95 field_field_format: Format
95 field_field_format: Format
96 field_is_for_all: Dla wszystkich projektów
96 field_is_for_all: Dla wszystkich projektów
97 field_possible_values: Możliwe wartości
97 field_possible_values: Możliwe wartości
98 field_regexp: Wyrażenie regularne
98 field_regexp: Wyrażenie regularne
99 field_min_length: Minimalna długość
99 field_min_length: Minimalna długość
100 field_max_length: Maksymalna długość
100 field_max_length: Maksymalna długość
101 field_value: Wartość
101 field_value: Wartość
102 field_category: Kategoria
102 field_category: Kategoria
103 field_title: Tytuł
103 field_title: Tytuł
104 field_project: Projekt
104 field_project: Projekt
105 field_issue: Zgłoszenie
105 field_issue: Zgłoszenie
106 field_status: Status
106 field_status: Status
107 field_notes: Notatki
107 field_notes: Notatki
108 field_is_closed: Zgłoszenie zamknięte
108 field_is_closed: Zgłoszenie zamknięte
109 field_is_default: Domyślny status
109 field_is_default: Domyślny status
110 field_html_color: Kolor
110 field_html_color: Kolor
111 field_tracker: Typ zgłoszenia
111 field_tracker: Typ zgłoszenia
112 field_subject: Temat
112 field_subject: Temat
113 field_due_date: Data oddania
113 field_due_date: Data oddania
114 field_assigned_to: Przydzielony do
114 field_assigned_to: Przydzielony do
115 field_priority: Priorytet
115 field_priority: Priorytet
116 field_fixed_version: Wersja
116 field_fixed_version: Wersja
117 field_user: Użytkownik
117 field_user: Użytkownik
118 field_role: Rola
118 field_role: Rola
119 field_homepage: Strona www
119 field_homepage: Strona www
120 field_is_public: Publiczny
120 field_is_public: Publiczny
121 field_parent: Subprojekt
121 field_parent: Subprojekt
122 field_is_in_chlog: Zgłoszenia pokazane w zapisie zmian
122 field_is_in_chlog: Zgłoszenia pokazane w zapisie zmian
123 field_is_in_roadmap: Zgłoszenia pokazane na mapie
123 field_is_in_roadmap: Zgłoszenia pokazane na mapie
124 field_login: Login
124 field_login: Login
125 field_mail_notification: Powiadomienia Email
125 field_mail_notification: Powiadomienia Email
126 field_admin: Administrator
126 field_admin: Administrator
127 field_last_login_on: Ostatnie połączenie
127 field_last_login_on: Ostatnie połączenie
128 field_language: Język
128 field_language: Język
129 field_effective_date: Data
129 field_effective_date: Data
130 field_password: Hasło
130 field_password: Hasło
131 field_new_password: Nowe hasło
131 field_new_password: Nowe hasło
132 field_password_confirmation: Potwierdzenie
132 field_password_confirmation: Potwierdzenie
133 field_version: Wersja
133 field_version: Wersja
134 field_type: Typ
134 field_type: Typ
135 field_host: Host
135 field_host: Host
136 field_port: Port
136 field_port: Port
137 field_account: Konto
137 field_account: Konto
138 field_base_dn: Base DN
138 field_base_dn: Base DN
139 field_attr_login: Login atrybut
139 field_attr_login: Login atrybut
140 field_attr_firstname: Imię atrybut
140 field_attr_firstname: Imię atrybut
141 field_attr_lastname: Nazwisko atrybut
141 field_attr_lastname: Nazwisko atrybut
142 field_attr_mail: Email atrybut
142 field_attr_mail: Email atrybut
143 field_onthefly: Tworzenie użytkownika w locie
143 field_onthefly: Tworzenie użytkownika w locie
144 field_start_date: Start
144 field_start_date: Start
145 field_done_ratio: %% Wykonane
145 field_done_ratio: %% Wykonane
146 field_auth_source: Tryb identyfikacji
146 field_auth_source: Tryb identyfikacji
147 field_hide_mail: Ukryj mój adres email
147 field_hide_mail: Ukryj mój adres email
148 field_comments: Komentarz
148 field_comments: Komentarz
149 field_url: URL
149 field_url: URL
150 field_start_page: Strona startowa
150 field_start_page: Strona startowa
151 field_subproject: Podprojekt
151 field_subproject: Podprojekt
152 field_hours: Godzin
152 field_hours: Godzin
153 field_activity: Aktywność
153 field_activity: Aktywność
154 field_spent_on: Data
154 field_spent_on: Data
155 field_identifier: Identifikator
155 field_identifier: Identifikator
156 field_is_filter: Używane jako filter
156 field_is_filter: Używane jako filter
157 field_issue_to_id: Powiązane zgłoszenie
157 field_issue_to_id: Powiązane zgłoszenie
158 field_delay: Opóźnienie
158 field_delay: Opóźnienie
159
159
160 setting_app_title: Tytuł aplikacji
160 setting_app_title: Tytuł aplikacji
161 setting_app_subtitle: Podtytuł aplikacji
161 setting_app_subtitle: Podtytuł aplikacji
162 setting_welcome_text: Tekst powitalny
162 setting_welcome_text: Tekst powitalny
163 setting_default_language: Domyślny język
163 setting_default_language: Domyślny język
164 setting_login_required: Identyfikacja wymagana
164 setting_login_required: Identyfikacja wymagana
165 setting_self_registration: Własna rejestracja umożliwiona
165 setting_self_registration: Własna rejestracja umożliwiona
166 setting_attachment_max_size: Maks. rozm. załącznika
166 setting_attachment_max_size: Maks. rozm. załącznika
167 setting_issues_export_limit: Limit eksportu zgłoszeń
167 setting_issues_export_limit: Limit eksportu zgłoszeń
168 setting_mail_from: Adres email wysyłki
168 setting_mail_from: Adres email wysyłki
169 setting_host_name: Nazwa hosta
169 setting_host_name: Nazwa hosta
170 setting_text_formatting: Formatowanie tekstu
170 setting_text_formatting: Formatowanie tekstu
171 setting_wiki_compression: Kompresja historii Wiki
171 setting_wiki_compression: Kompresja historii Wiki
172 setting_feeds_limit: Limit danych RSS
172 setting_feeds_limit: Limit danych RSS
173 setting_autofetch_changesets: Auto-odświeżanie CVS
173 setting_autofetch_changesets: Auto-odświeżanie CVS
174 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
174 setting_sys_api_enabled: Włączenie WS do zarządzania repozytorium
175 setting_commit_ref_keywords: Terminy odnoszące (CVS)
175 setting_commit_ref_keywords: Terminy odnoszące (CVS)
176 setting_commit_fix_keywords: Terminy ustalające (CVS)
176 setting_commit_fix_keywords: Terminy ustalające (CVS)
177 setting_autologin: Auto logowanie
177 setting_autologin: Auto logowanie
178 setting_date_format: Format daty
178 setting_date_format: Format daty
179
179
180 label_user: Użytkownik
180 label_user: Użytkownik
181 label_user_plural: Użytkownicy
181 label_user_plural: Użytkownicy
182 label_user_new: Nowy użytkownik
182 label_user_new: Nowy użytkownik
183 label_project: Projekt
183 label_project: Projekt
184 label_project_new: Nowy projekt
184 label_project_new: Nowy projekt
185 label_project_plural: Projekty
185 label_project_plural: Projekty
186 label_project_all: Wszystkie projekty
186 label_project_all: Wszystkie projekty
187 label_project_latest: Ostatnie projekty
187 label_project_latest: Ostatnie projekty
188 label_issue: Zgłoszenie
188 label_issue: Zgłoszenie
189 label_issue_new: Nowe zgłoszenie
189 label_issue_new: Nowe zgłoszenie
190 label_issue_plural: Zgłoszenia
190 label_issue_plural: Zgłoszenia
191 label_issue_view_all: Zobacz wszystkie zgłoszenia
191 label_issue_view_all: Zobacz wszystkie zgłoszenia
192 label_document: Dokument
192 label_document: Dokument
193 label_document_new: Nowy dokument
193 label_document_new: Nowy dokument
194 label_document_plural: Dokumenty
194 label_document_plural: Dokumenty
195 label_role: Rola
195 label_role: Rola
196 label_role_plural: Role
196 label_role_plural: Role
197 label_role_new: Nowa rola
197 label_role_new: Nowa rola
198 label_role_and_permissions: Role i Uprawnienia
198 label_role_and_permissions: Role i Uprawnienia
199 label_member: Uczestnik
199 label_member: Uczestnik
200 label_member_new: Nowy uczestnik
200 label_member_new: Nowy uczestnik
201 label_member_plural: Uczestnicy
201 label_member_plural: Uczestnicy
202 label_tracker: Typ zgłoszenia
202 label_tracker: Typ zgłoszenia
203 label_tracker_plural: Typy zgłoszeń
203 label_tracker_plural: Typy zgłoszeń
204 label_tracker_new: Nowy typ zgłoszenia
204 label_tracker_new: Nowy typ zgłoszenia
205 label_workflow: Przepływ
205 label_workflow: Przepływ
206 label_issue_status: Status zgłoszenia
206 label_issue_status: Status zgłoszenia
207 label_issue_status_plural: Statusy zgłoszeń
207 label_issue_status_plural: Statusy zgłoszeń
208 label_issue_status_new: Nowy status
208 label_issue_status_new: Nowy status
209 label_issue_category: Kategoria zgłoszenia
209 label_issue_category: Kategoria zgłoszenia
210 label_issue_category_plural: Kategorie zgłoszeń
210 label_issue_category_plural: Kategorie zgłoszeń
211 label_issue_category_new: Nowa kategoria
211 label_issue_category_new: Nowa kategoria
212 label_custom_field: Dowolne pole
212 label_custom_field: Dowolne pole
213 label_custom_field_plural: Dowolne pola
213 label_custom_field_plural: Dowolne pola
214 label_custom_field_new: Nowe dowolne pole
214 label_custom_field_new: Nowe dowolne pole
215 label_enumerations: Wyliczenia
215 label_enumerations: Wyliczenia
216 label_enumeration_new: Nowa wartość
216 label_enumeration_new: Nowa wartość
217 label_information: Informacja
217 label_information: Informacja
218 label_information_plural: Informacje
218 label_information_plural: Informacje
219 label_please_login: Zaloguj się
219 label_please_login: Zaloguj się
220 label_register: Rejestracja
220 label_register: Rejestracja
221 label_password_lost: Zapomniane hasło
221 label_password_lost: Zapomniane hasło
222 label_home: Główna
222 label_home: Główna
223 label_my_page: Moja strona
223 label_my_page: Moja strona
224 label_my_account: Moje konto
224 label_my_account: Moje konto
225 label_my_projects: Moje projekty
225 label_my_projects: Moje projekty
226 label_administration: Administracja
226 label_administration: Administracja
227 label_login: Login
227 label_login: Login
228 label_logout: Wylogowanie
228 label_logout: Wylogowanie
229 label_help: Pomoc
229 label_help: Pomoc
230 label_reported_issues: Zaraportowane zgłoszenia
230 label_reported_issues: Zaraportowane zgłoszenia
231 label_assigned_to_me_issues: Zgłoszenia przypisane do mnie
231 label_assigned_to_me_issues: Zgłoszenia przypisane do mnie
232 label_last_login: Ostatnie połączenie
232 label_last_login: Ostatnie połączenie
233 label_last_updates: Ostatnia zmieniana
233 label_last_updates: Ostatnia zmieniana
234 label_last_updates_plural: %d ostatnie zmiany
234 label_last_updates_plural: %d ostatnie zmiany
235 label_registered_on: Zarejestrowany
235 label_registered_on: Zarejestrowany
236 label_activity: Aktywność
236 label_activity: Aktywność
237 label_new: Nowy
237 label_new: Nowy
238 label_logged_as: Zalogowany jako
238 label_logged_as: Zalogowany jako
239 label_environment: Środowisko
239 label_environment: Środowisko
240 label_authentication: Identyfikacja
240 label_authentication: Identyfikacja
241 label_auth_source: Tryb identyfikacji
241 label_auth_source: Tryb identyfikacji
242 label_auth_source_new: Nowy tryb identyfikacji
242 label_auth_source_new: Nowy tryb identyfikacji
243 label_auth_source_plural: Tryby identyfikacji
243 label_auth_source_plural: Tryby identyfikacji
244 label_subproject_plural: Podprojekty
244 label_subproject_plural: Podprojekty
245 label_min_max_length: Min - Maks długość
245 label_min_max_length: Min - Maks długość
246 label_list: Lista
246 label_list: Lista
247 label_date: Data
247 label_date: Data
248 label_integer: L. pojedyńcza
248 label_integer: L. pojedyńcza
249 label_boolean: Wart. logiczna
249 label_boolean: Wart. logiczna
250 label_string: Tekst
250 label_string: Tekst
251 label_text: Długi tekst
251 label_text: Długi tekst
252 label_attribute: Atrybut
252 label_attribute: Atrybut
253 label_attribute_plural: Atrybuty
253 label_attribute_plural: Atrybuty
254 label_download: %d Pobranie
254 label_download: %d Pobranie
255 label_download_plural: %d Pobrania
255 label_download_plural: %d Pobrania
256 label_no_data: Brak danych do pokazania
256 label_no_data: Brak danych do pokazania
257 label_change_status: Status zmian
257 label_change_status: Status zmian
258 label_history: Historia
258 label_history: Historia
259 label_attachment: Plik
259 label_attachment: Plik
260 label_attachment_new: Nowy plik
260 label_attachment_new: Nowy plik
261 label_attachment_delete: Skasuj plik
261 label_attachment_delete: Skasuj plik
262 label_attachment_plural: Pliki
262 label_attachment_plural: Pliki
263 label_report: Raport
263 label_report: Raport
264 label_report_plural: Raporty
264 label_report_plural: Raporty
265 label_news: Nowość
265 label_news: Nowość
266 label_news_new: Dodaj nowość
266 label_news_new: Dodaj nowość
267 label_news_plural: Nowości
267 label_news_plural: Nowości
268 label_news_latest: Ostatnie nowości
268 label_news_latest: Ostatnie nowości
269 label_news_view_all: Pokaż wszystkie nowości
269 label_news_view_all: Pokaż wszystkie nowości
270 label_change_log: Lista zmian
270 label_change_log: Lista zmian
271 label_settings: Ustawienia
271 label_settings: Ustawienia
272 label_overview: Przegląd
272 label_overview: Przegląd
273 label_version: Wersja
273 label_version: Wersja
274 label_version_new: Nowa wersja
274 label_version_new: Nowa wersja
275 label_version_plural: Wersje
275 label_version_plural: Wersje
276 label_confirmation: Potwierdzenie
276 label_confirmation: Potwierdzenie
277 label_export_to: Eksportuj do
277 label_export_to: Eksportuj do
278 label_read: Czytanie...
278 label_read: Czytanie...
279 label_public_projects: Projekty publiczne
279 label_public_projects: Projekty publiczne
280 label_open_issues: otwarte
280 label_open_issues: otwarte
281 label_open_issues_plural: otwarte
281 label_open_issues_plural: otwarte
282 label_closed_issues: zamknięte
282 label_closed_issues: zamknięte
283 label_closed_issues_plural: zamknięte
283 label_closed_issues_plural: zamknięte
284 label_total: Ogółem
284 label_total: Ogółem
285 label_permissions: Uprawnienia
285 label_permissions: Uprawnienia
286 label_current_status: Obecny status
286 label_current_status: Obecny status
287 label_new_statuses_allowed: Uprawnione nowe statusy
287 label_new_statuses_allowed: Uprawnione nowe statusy
288 label_all: wszystko
288 label_all: wszystko
289 label_none: brak
289 label_none: brak
290 label_next: Następne
290 label_next: Następne
291 label_previous: Poprzednie
291 label_previous: Poprzednie
292 label_used_by: Używane przez
292 label_used_by: Używane przez
293 label_details: Szczegóły
293 label_details: Szczegóły
294 label_add_note: Dodaj notatkę
294 label_add_note: Dodaj notatkę
295 label_per_page: Na stronę
295 label_per_page: Na stronę
296 label_calendar: Kalendarz
296 label_calendar: Kalendarz
297 label_months_from: miesiące od
297 label_months_from: miesiące od
298 label_gantt: Gantt
298 label_gantt: Gantt
299 label_internal: Wewnętrzny
299 label_internal: Wewnętrzny
300 label_last_changes: ostatnie %d zmian
300 label_last_changes: ostatnie %d zmian
301 label_change_view_all: Pokaż wszystkie zmiany
301 label_change_view_all: Pokaż wszystkie zmiany
302 label_personalize_page: Personalizuj tą stronę
302 label_personalize_page: Personalizuj tą stronę
303 label_comment: Komentarz
303 label_comment: Komentarz
304 label_comment_plural: Komentarze
304 label_comment_plural: Komentarze
305 label_comment_add: Dodaj komentarz
305 label_comment_add: Dodaj komentarz
306 label_comment_added: Komentarz dodany
306 label_comment_added: Komentarz dodany
307 label_comment_delete: Usuń komentarze
307 label_comment_delete: Usuń komentarze
308 label_query: Dowolne zapytanie
308 label_query: Dowolne zapytanie
309 label_query_plural: Dowolne zapytania
309 label_query_plural: Dowolne zapytania
310 label_query_new: Nowe zapytanie
310 label_query_new: Nowe zapytanie
311 label_filter_add: Dodaj filtr
311 label_filter_add: Dodaj filtr
312 label_filter_plural: Filtry
312 label_filter_plural: Filtry
313 label_equals: jest
313 label_equals: jest
314 label_not_equals: nie jest
314 label_not_equals: nie jest
315 label_in_less_than: w mniejszych od
315 label_in_less_than: w mniejszych od
316 label_in_more_than: w większych niż
316 label_in_more_than: w większych niż
317 label_in: w
317 label_in: w
318 label_today: dzisiaj
318 label_today: dzisiaj
319 label_less_than_ago: dni mniej
319 label_less_than_ago: dni mniej
320 label_more_than_ago: dni więcej
320 label_more_than_ago: dni więcej
321 label_ago: dni temu
321 label_ago: dni temu
322 label_contains: zawiera
322 label_contains: zawiera
323 label_not_contains: nie zawiera
323 label_not_contains: nie zawiera
324 label_day_plural: dni
324 label_day_plural: dni
325 label_repository: Repozytorium
325 label_repository: Repozytorium
326 label_browse: Przegląd
326 label_browse: Przegląd
327 label_modification: %d modyfikacja
327 label_modification: %d modyfikacja
328 label_modification_plural: %d modyfikacja
328 label_modification_plural: %d modyfikacja
329 label_revision: Zmiana
329 label_revision: Zmiana
330 label_revision_plural: Zmiany
330 label_revision_plural: Zmiany
331 label_added: dodane
331 label_added: dodane
332 label_modified: zmodufikowane
332 label_modified: zmodufikowane
333 label_deleted: usunięte
333 label_deleted: usunięte
334 label_latest_revision: Ostatnia zmiana
334 label_latest_revision: Ostatnia zmiana
335 label_latest_revision_plural: Ostatnie zmiany
335 label_latest_revision_plural: Ostatnie zmiany
336 label_view_revisions: Pokaż zmiany
336 label_view_revisions: Pokaż zmiany
337 label_max_size: Kamsymalny rozmiar
337 label_max_size: Kamsymalny rozmiar
338 label_on: 'włączone'
338 label_on: 'włączone'
339 label_sort_highest: Przesuń na górę
339 label_sort_highest: Przesuń na górę
340 label_sort_higher: Do góry
340 label_sort_higher: Do góry
341 label_sort_lower: Do dołu
341 label_sort_lower: Do dołu
342 label_sort_lowest: Przesuń na dół
342 label_sort_lowest: Przesuń na dół
343 label_roadmap: Mapa
343 label_roadmap: Mapa
344 label_roadmap_due_in: W czasie
344 label_roadmap_due_in: W czasie
345 label_roadmap_no_issues: Brak zgłoszeń do tej wersji
345 label_roadmap_no_issues: Brak zgłoszeń do tej wersji
346 label_search: Szukaj
346 label_search: Szukaj
347 label_result_plural: Rezultatów
347 label_result_plural: Rezultatów
348 label_all_words: Wszystkie słowa
348 label_all_words: Wszystkie słowa
349 label_wiki: Wiki
349 label_wiki: Wiki
350 label_wiki_edit: Edycja wiki
350 label_wiki_edit: Edycja wiki
351 label_wiki_edit_plural: Edycje wiki
351 label_wiki_edit_plural: Edycje wiki
352 label_wiki_page: Strona wiki
352 label_wiki_page: Strona wiki
353 label_wiki_page_plural: Strony wiki
353 label_wiki_page_plural: Strony wiki
354 label_index_by_title: Indeks
354 label_index_by_title: Indeks
355 label_index_by_date: Index by date
355 label_index_by_date: Index by date
356 label_current_version: Obecna wersja
356 label_current_version: Obecna wersja
357 label_preview: Podgląd
357 label_preview: Podgląd
358 label_feed_plural: Ilość RSS
358 label_feed_plural: Ilość RSS
359 label_changes_details: Szczegóły wszystkich zmian
359 label_changes_details: Szczegóły wszystkich zmian
360 label_issue_tracking: Śledzenie zgłoszeń
360 label_issue_tracking: Śledzenie zgłoszeń
361 label_spent_time: Spędzony czas
361 label_spent_time: Spędzony czas
362 label_f_hour: %.2f godzina
362 label_f_hour: %.2f godzina
363 label_f_hour_plural: %.2f godzin
363 label_f_hour_plural: %.2f godzin
364 label_time_tracking: Śledzenie czasu
364 label_time_tracking: Śledzenie czasu
365 label_change_plural: Zmiany
365 label_change_plural: Zmiany
366 label_statistics: Statystyki
366 label_statistics: Statystyki
367 label_commits_per_month: Wrzutek CVS w miesiącu
367 label_commits_per_month: Wrzutek CVS w miesiącu
368 label_commits_per_author: Wrzutek CVS przez autora
368 label_commits_per_author: Wrzutek CVS przez autora
369 label_view_diff: Pokaż różnice
369 label_view_diff: Pokaż różnice
370 label_diff_inline: w linii
370 label_diff_inline: w linii
371 label_diff_side_by_side: obok siebie
371 label_diff_side_by_side: obok siebie
372 label_options: Opcje
372 label_options: Opcje
373 label_copy_workflow_from: Kopiuj przepływ z
373 label_copy_workflow_from: Kopiuj przepływ z
374 label_permissions_report: Raport uprawnień
374 label_permissions_report: Raport uprawnień
375 label_watched_issues: Obserwowane zgłoszenia
375 label_watched_issues: Obserwowane zgłoszenia
376 label_related_issues: Powiązane zgłoszenia
376 label_related_issues: Powiązane zgłoszenia
377 label_applied_status: Stosowany status
377 label_applied_status: Stosowany status
378 label_loading: Ładowanie...
378 label_loading: Ładowanie...
379 label_relation_new: Nowe powiązanie
379 label_relation_new: Nowe powiązanie
380 label_relation_delete: Usuń powiązanie
380 label_relation_delete: Usuń powiązanie
381 label_relates_to: powiązane z
381 label_relates_to: powiązane z
382 label_duplicates: duplikaty
382 label_duplicates: duplikaty
383 label_blocks: blokady
383 label_blocks: blokady
384 label_blocked_by: zablokowane przez
384 label_blocked_by: zablokowane przez
385 label_precedes: poprzedza
385 label_precedes: poprzedza
386 label_follows: podąża
386 label_follows: podąża
387 label_end_to_start: koniec do początku
387 label_end_to_start: koniec do początku
388 label_end_to_end: koniec do końca
388 label_end_to_end: koniec do końca
389 label_start_to_start: początek do początku
389 label_start_to_start: początek do początku
390 label_start_to_end: początek do końca
390 label_start_to_end: początek do końca
391 label_stay_logged_in: Pozostań zalogowany
391 label_stay_logged_in: Pozostań zalogowany
392 label_disabled: zablokowany
392 label_disabled: zablokowany
393 label_show_completed_versions: Pokaż kompletne wersje
393 label_show_completed_versions: Pokaż kompletne wersje
394 label_me: ja
394 label_me: ja
395 label_board: Forum
395 label_board: Forum
396 label_board_new: Nowe forum
396 label_board_new: Nowe forum
397 label_board_plural: Fora
397 label_board_plural: Fora
398 label_topic_plural: Tematy
398 label_topic_plural: Tematy
399 label_message_plural: Wiadomości
399 label_message_plural: Wiadomości
400 label_message_last: Ostatnia wiadomość
400 label_message_last: Ostatnia wiadomość
401 label_message_new: Nowa wiadomość
401 label_message_new: Nowa wiadomość
402 label_reply_plural: Odpowiedzi
402 label_reply_plural: Odpowiedzi
403 label_send_information: Wyślij informację użytkownikowi
403 label_send_information: Wyślij informację użytkownikowi
404 label_year: Rok
404 label_year: Rok
405 label_month: Miesiąc
405 label_month: Miesiąc
406 label_week: Tydzień
406 label_week: Tydzień
407 label_date_from: Z
407 label_date_from: Z
408 label_date_to: Do
408 label_date_to: Do
409 label_language_based: Na podstawie języka
409 label_language_based: Na podstawie języka
410
410
411 button_login: Login
411 button_login: Login
412 button_submit: Wyślij
412 button_submit: Wyślij
413 button_save: Zapisz
413 button_save: Zapisz
414 button_check_all: Zaznacz wszystko
414 button_check_all: Zaznacz wszystko
415 button_uncheck_all: Odznacz wszystko
415 button_uncheck_all: Odznacz wszystko
416 button_delete: Usuń
416 button_delete: Usuń
417 button_create: Stwórz
417 button_create: Stwórz
418 button_test: Testuj
418 button_test: Testuj
419 button_edit: Edytuj
419 button_edit: Edytuj
420 button_add: Dodaj
420 button_add: Dodaj
421 button_change: Zmień
421 button_change: Zmień
422 button_apply: Ustaw
422 button_apply: Ustaw
423 button_clear: Wyczyść
423 button_clear: Wyczyść
424 button_lock: Zablokuj
424 button_lock: Zablokuj
425 button_unlock: Odblokuj
425 button_unlock: Odblokuj
426 button_download: Pobierz
426 button_download: Pobierz
427 button_list: Lista
427 button_list: Lista
428 button_view: Pokaż
428 button_view: Pokaż
429 button_move: Przenieś
429 button_move: Przenieś
430 button_back: Wstecz
430 button_back: Wstecz
431 button_cancel: Anuluj
431 button_cancel: Anuluj
432 button_activate: Aktywuj
432 button_activate: Aktywuj
433 button_sort: Sortuj
433 button_sort: Sortuj
434 button_log_time: Logowanie czasu
434 button_log_time: Logowanie czasu
435 button_rollback: Przywróc do tej wersji
435 button_rollback: Przywróc do tej wersji
436 button_watch: Obserwuj
436 button_watch: Obserwuj
437 button_unwatch: Nie obserwuj
437 button_unwatch: Nie obserwuj
438 button_reply: Odpowiedz
438 button_reply: Odpowiedz
439 button_archive: Archiwizuj
439 button_archive: Archiwizuj
440 button_unarchive: Przywróc z archiwum
440 button_unarchive: Przywróc z archiwum
441
441
442 status_active: aktywny
442 status_active: aktywny
443 status_registered: zarejestrowany
443 status_registered: zarejestrowany
444 status_locked: zablokowany
444 status_locked: zablokowany
445
445
446 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
446 text_select_mail_notifications: Zaznacz czynności przy których użytkownik powinien być powiadomiony mailem.
447 text_regexp_info: np. ^[A-Z0-9]+$
447 text_regexp_info: np. ^[A-Z0-9]+$
448 text_min_max_length_info: 0 oznacza brak restrykcji
448 text_min_max_length_info: 0 oznacza brak restrykcji
449 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
449 text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
450 text_workflow_edit: Zaznacz rolę i typ zgłoszenia do edycji przepływu
450 text_workflow_edit: Zaznacz rolę i typ zgłoszenia do edycji przepływu
451 text_are_you_sure: Jesteś pewien ?
451 text_are_you_sure: Jesteś pewien ?
452 text_journal_changed: zmienione %s do %s
452 text_journal_changed: zmienione %s do %s
453 text_journal_set_to: ustawione na %s
453 text_journal_set_to: ustawione na %s
454 text_journal_deleted: usunięte
454 text_journal_deleted: usunięte
455 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
455 text_tip_task_begin_day: zadanie zaczynające się dzisiaj
456 text_tip_task_end_day: zadanie kończące się dzisiaj
456 text_tip_task_end_day: zadanie kończące się dzisiaj
457 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
457 text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
458 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
458 text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
459 text_caracters_maximum: %d znaków maksymalnie.
459 text_caracters_maximum: %d znaków maksymalnie.
460 text_length_between: Długość pomiędzy %d i %d znaków.
460 text_length_between: Długość pomiędzy %d i %d znaków.
461 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zgłoszenia
461 text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zgłoszenia
462 text_unallowed_characters: Niedozwolone znaki
462 text_unallowed_characters: Niedozwolone znaki
463 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
463 text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
464 text_issues_ref_in_commit_messages: Zgłoszenia odnoszące i ustalające we wrzutkach CVS
464 text_issues_ref_in_commit_messages: Zgłoszenia odnoszące i ustalające we wrzutkach CVS
465
465
466 default_role_manager: Kierownik
466 default_role_manager: Kierownik
467 default_role_developper: Programista
467 default_role_developper: Programista
468 default_role_reporter: Raportujący
468 default_role_reporter: Raportujący
469 default_tracker_bug: Błąd
469 default_tracker_bug: Błąd
470 default_tracker_feature: Cecha
470 default_tracker_feature: Cecha
471 default_tracker_support: Wsparcie
471 default_tracker_support: Wsparcie
472 default_issue_status_new: Nowy
472 default_issue_status_new: Nowy
473 default_issue_status_assigned: Przypisany
473 default_issue_status_assigned: Przypisany
474 default_issue_status_resolved: Rozwiązany
474 default_issue_status_resolved: Rozwiązany
475 default_issue_status_feedback: Odpowiedź
475 default_issue_status_feedback: Odpowiedź
476 default_issue_status_closed: Zamknięty
476 default_issue_status_closed: Zamknięty
477 default_issue_status_rejected: Odrzucony
477 default_issue_status_rejected: Odrzucony
478 default_doc_category_user: Dokumentacja użytkownika
478 default_doc_category_user: Dokumentacja użytkownika
479 default_doc_category_tech: Dokumentacja techniczna
479 default_doc_category_tech: Dokumentacja techniczna
480 default_priority_low: Niski
480 default_priority_low: Niski
481 default_priority_normal: Normalny
481 default_priority_normal: Normalny
482 default_priority_high: Wysoki
482 default_priority_high: Wysoki
483 default_priority_urgent: Pilny
483 default_priority_urgent: Pilny
484 default_priority_immediate: Natyczmiastowy
484 default_priority_immediate: Natyczmiastowy
485 default_activity_design: Projektowanie
485 default_activity_design: Projektowanie
486 default_activity_development: Rozwój
486 default_activity_development: Rozwój
487
487
488 enumeration_issue_priorities: Priorytety zgłoszeń
488 enumeration_issue_priorities: Priorytety zgłoszeń
489 enumeration_doc_categories: Kategorie dokumentów
489 enumeration_doc_categories: Kategorie dokumentów
490 enumeration_activities: Działania (śledzenie czasu)
490 enumeration_activities: Działania (śledzenie czasu)
491 button_rename: Zmień nazwę
491 button_rename: Zmień nazwę
492 text_issue_category_destroy_question: Zgłoszenia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
492 text_issue_category_destroy_question: Zgłoszenia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
493 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
493 label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
494 setting_cross_project_issue_relations: Zezwól na powiązania zgłoszeń między projektami
494 setting_cross_project_issue_relations: Zezwól na powiązania zgłoszeń między projektami
495 label_roadmap_overdue: %s spóźnienia
495 label_roadmap_overdue: %s spóźnienia
496 label_module_plural: Moduły
496 label_module_plural: Moduły
497 label_this_week: ten tydzień
497 label_this_week: ten tydzień
498 label_jump_to_a_project: Skocz do projektu...
498 label_jump_to_a_project: Skocz do projektu...
499 field_assignable: Zgłoszenia mogą być przypisane do tej roli
499 field_assignable: Zgłoszenia mogą być przypisane do tej roli
500 label_sort_by: Sortuj po "%s"
500 label_sort_by: Sortuj po "%s"
501 text_issue_updated: Zgłoszenie %s zostało zaktualizowane.
501 text_issue_updated: Zgłoszenie %s zostało zaktualizowane.
502 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
502 notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
503 field_redirect_existing_links: Przekierowanie istniejących odnośników
503 field_redirect_existing_links: Przekierowanie istniejących odnośników
504 text_issue_category_reassign_to: Przywróć zgłoszenia do tej kategorii
504 text_issue_category_reassign_to: Przywróć zgłoszenia do tej kategorii
505 notice_email_sent: Email został wysłany do %s
505 notice_email_sent: Email został wysłany do %s
506 text_issue_added: Zgłoszenie %s zostało zaraportowane.
506 text_issue_added: Zgłoszenie %s zostało zaraportowane.
507 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
507 text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
508 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
508 notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
509 label_updated_time: Zaktualizowane %s temu
509 label_updated_time: Zaktualizowane %s temu
510 text_issue_category_destroy_assignments: Usuń przydziały kategorii
510 text_issue_category_destroy_assignments: Usuń przydziały kategorii
511 label_send_test_email: Wyślij próbny email
511 label_send_test_email: Wyślij próbny email
512 button_reset: Resetuj
512 button_reset: Resetuj
513 label_added_time_by: Dodane przez %s %s temu
513 label_added_time_by: Dodane przez %s %s temu
514 field_estimated_hours: Szacowany czas
514 field_estimated_hours: Szacowany czas
515 label_file_plural: Pliki
515 label_file_plural: Pliki
516 label_changeset_plural: Zestawienia zmian
516 label_changeset_plural: Zestawienia zmian
517 field_column_names: Nazwy kolumn
517 field_column_names: Nazwy kolumn
518 label_default_columns: Domyślne kolumny
518 label_default_columns: Domyślne kolumny
519 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
519 setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
520 setting_repositories_encodings: Kodowanie repozytoriów
520 setting_repositories_encodings: Kodowanie repozytoriów
521 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
521 notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (Bez zmian)
523 label_no_change_option: (Bez zmian)
524 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
524 notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
525 label_theme: Temat
525 label_theme: Temat
526 label_default: Domyślne
526 label_default: Domyślne
527 label_search_titles_only: Przeszukuj tylko tytuły
527 label_search_titles_only: Przeszukuj tylko tytuły
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
10 actionview_datehelper_time_in_words_hour_about: sobre uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
12 actionview_datehelper_time_in_words_hour_about_single: sobre uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos que um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos que um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: nao esta incluido na lista
22 activerecord_error_inclusion: nao esta incluido na lista
23 activerecord_error_exclusion: esta reservado
23 activerecord_error_exclusion: esta reservado
24 activerecord_error_invalid: e invalido
24 activerecord_error_invalid: e invalido
25 activerecord_error_confirmation: confirmacao nao confere
25 activerecord_error_confirmation: confirmacao nao confere
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: nao pode ser vazio
27 activerecord_error_empty: nao pode ser vazio
28 activerecord_error_blank: nao pode estar em branco
28 activerecord_error_blank: nao pode estar em branco
29 activerecord_error_too_long: e muito longo
29 activerecord_error_too_long: e muito longo
30 activerecord_error_too_short: e muito comprido
30 activerecord_error_too_short: e muito comprido
31 activerecord_error_wrong_length: esta com o comprimento errado
31 activerecord_error_wrong_length: esta com o comprimento errado
32 activerecord_error_taken: ja esta examinado
32 activerecord_error_taken: ja esta examinado
33 activerecord_error_not_a_number: nao e um numero
33 activerecord_error_not_a_number: nao e um numero
34 activerecord_error_not_a_date: nao e uma data valida
34 activerecord_error_not_a_date: nao e uma data valida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d yr
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nao'
45 general_text_No: 'Nao'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'nao'
47 general_text_no: 'nao'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Portugues Brasileiro'
49 general_lang_name: 'Portugues Brasileiro'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
53 general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Conta foi alterada com sucesso.
56 notice_account_updated: Conta foi alterada com sucesso.
57 notice_account_invalid_creditentials: Usuario ou senha invalido.
57 notice_account_invalid_creditentials: Usuario ou senha invalido.
58 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_password_updated: Senha foi alterada com sucesso.
59 notice_account_wrong_password: Senha errada.
59 notice_account_wrong_password: Senha errada.
60 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_register_done: Conta foi criada com sucesso.
61 notice_account_unknown_email: Usuario desconhecido.
61 notice_account_unknown_email: Usuario desconhecido.
62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
62 notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha.
63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
63 notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce.
64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
64 notice_account_activated: Sua conta foi ativada. Voce pode logar agora
65 notice_successful_create: Criado com sucesso.
65 notice_successful_create: Criado com sucesso.
66 notice_successful_update: Alterado com sucesso.
66 notice_successful_update: Alterado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
69 notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuario.
71 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
71 notice_scm_error: A entrada e/ou a revisao nao existem no repositorio.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Sua senha do redMine.
77 mail_subject_lost_password: Sua senha do redMine.
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
79 mail_subject_register: Ativacao de conta do redMine.
79 mail_subject_register: Ativacao de conta do redMine.
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81
81
82 gui_validation_error: 1 erro
82 gui_validation_error: 1 erro
83 gui_validation_error_plural: %d erros
83 gui_validation_error_plural: %d erros
84
84
85 field_name: Nome
85 field_name: Nome
86 field_description: Descricao
86 field_description: Descricao
87 field_summary: Sumario
87 field_summary: Sumario
88 field_is_required: Obrigatorio
88 field_is_required: Obrigatorio
89 field_firstname: Primeiro nome
89 field_firstname: Primeiro nome
90 field_lastname: Ultimo nome
90 field_lastname: Ultimo nome
91 field_mail: Email
91 field_mail: Email
92 field_filename: Arquivo
92 field_filename: Arquivo
93 field_filesize: Tamanho
93 field_filesize: Tamanho
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Criado
96 field_created_on: Criado
97 field_updated_on: Alterado
97 field_updated_on: Alterado
98 field_field_format: Formato
98 field_field_format: Formato
99 field_is_for_all: Para todos os projetos
99 field_is_for_all: Para todos os projetos
100 field_possible_values: Possiveis valores
100 field_possible_values: Possiveis valores
101 field_regexp: Expressao regular
101 field_regexp: Expressao regular
102 field_min_length: Tamanho minimo
102 field_min_length: Tamanho minimo
103 field_max_length: Tamanho maximo
103 field_max_length: Tamanho maximo
104 field_value: Valor
104 field_value: Valor
105 field_category: Categoria
105 field_category: Categoria
106 field_title: Titulo
106 field_title: Titulo
107 field_project: Projeto
107 field_project: Projeto
108 field_issue: Tarefa
108 field_issue: Tarefa
109 field_status: Status
109 field_status: Status
110 field_notes: Notas
110 field_notes: Notas
111 field_is_closed: Tarefa fechada
111 field_is_closed: Tarefa fechada
112 field_is_default: Status padrao
112 field_is_default: Status padrao
113 field_html_color: Cor
113 field_html_color: Cor
114 field_tracker: Tipo
114 field_tracker: Tipo
115 field_subject: Titulo
115 field_subject: Titulo
116 field_due_date: Data devida
116 field_due_date: Data devida
117 field_assigned_to: Atribuido para
117 field_assigned_to: Atribuido para
118 field_priority: Prioridade
118 field_priority: Prioridade
119 field_fixed_version: Versao corrigida
119 field_fixed_version: Versao corrigida
120 field_user: Usuario
120 field_user: Usuario
121 field_role: Regra
121 field_role: Regra
122 field_homepage: Pagina inicial
122 field_homepage: Pagina inicial
123 field_is_public: Publico
123 field_is_public: Publico
124 field_parent: Sub-projeto de
124 field_parent: Sub-projeto de
125 field_is_in_chlog: Tarefas mostradas no changelog
125 field_is_in_chlog: Tarefas mostradas no changelog
126 field_is_in_roadmap: Tarefas mostradas no roadmap
126 field_is_in_roadmap: Tarefas mostradas no roadmap
127 field_login: Login
127 field_login: Login
128 field_mail_notification: Notificacoes por email
128 field_mail_notification: Notificacoes por email
129 field_admin: Administrador
129 field_admin: Administrador
130 field_last_login_on: Ultima conexao
130 field_last_login_on: Ultima conexao
131 field_language: Lingua
131 field_language: Lingua
132 field_effective_date: Data
132 field_effective_date: Data
133 field_password: Senha
133 field_password: Senha
134 field_new_password: Nova senha
134 field_new_password: Nova senha
135 field_password_confirmation: Confirmacao
135 field_password_confirmation: Confirmacao
136 field_version: Versao
136 field_version: Versao
137 field_type: Tipo
137 field_type: Tipo
138 field_host: Servidor
138 field_host: Servidor
139 field_port: Porta
139 field_port: Porta
140 field_account: Conta
140 field_account: Conta
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Atributo login
142 field_attr_login: Atributo login
143 field_attr_firstname: Atributo primeiro nome
143 field_attr_firstname: Atributo primeiro nome
144 field_attr_lastname: Atributo ultimo nome
144 field_attr_lastname: Atributo ultimo nome
145 field_attr_mail: Atributo email
145 field_attr_mail: Atributo email
146 field_onthefly: Criacao de usuario on-the-fly
146 field_onthefly: Criacao de usuario on-the-fly
147 field_start_date: Inicio
147 field_start_date: Inicio
148 field_done_ratio: %% Terminado
148 field_done_ratio: %% Terminado
149 field_auth_source: Modo de autenticacao
149 field_auth_source: Modo de autenticacao
150 field_hide_mail: Esconder meu email
150 field_hide_mail: Esconder meu email
151 field_comments: Comentario
151 field_comments: Comentario
152 field_url: URL
152 field_url: URL
153 field_start_page: Pagina inicial
153 field_start_page: Pagina inicial
154 field_subproject: Sub-projeto
154 field_subproject: Sub-projeto
155 field_hours: Horas
155 field_hours: Horas
156 field_activity: Atividade
156 field_activity: Atividade
157 field_spent_on: Data
157 field_spent_on: Data
158 field_identifier: Identificador
158 field_identifier: Identificador
159 field_is_filter: Used as a filter
159 field_is_filter: Used as a filter
160 field_issue_to_id: Related issue
160 field_issue_to_id: Related issue
161 field_delay: Delay
161 field_delay: Delay
162 field_assignable: Issues can be assigned to this role
162 field_assignable: Issues can be assigned to this role
163 field_redirect_existing_links: Redirect existing links
163 field_redirect_existing_links: Redirect existing links
164 field_estimated_hours: Estimated time
164 field_estimated_hours: Estimated time
165
165
166 setting_app_title: Titulo da aplicacao
166 setting_app_title: Titulo da aplicacao
167 setting_app_subtitle: Sub-titulo da aplicacao
167 setting_app_subtitle: Sub-titulo da aplicacao
168 setting_welcome_text: Texto de boa-vinda
168 setting_welcome_text: Texto de boa-vinda
169 setting_default_language: Lingua padrao
169 setting_default_language: Lingua padrao
170 setting_login_required: Autenticacao obrigatoria
170 setting_login_required: Autenticacao obrigatoria
171 setting_self_registration: Registro de si mesmo permitido
171 setting_self_registration: Registro de si mesmo permitido
172 setting_attachment_max_size: Tamanho maximo do anexo
172 setting_attachment_max_size: Tamanho maximo do anexo
173 setting_issues_export_limit: Limite de exportacao das tarefas
173 setting_issues_export_limit: Limite de exportacao das tarefas
174 setting_mail_from: Email enviado de
174 setting_mail_from: Email enviado de
175 setting_host_name: Servidor
175 setting_host_name: Servidor
176 setting_text_formatting: Formato do texto
176 setting_text_formatting: Formato do texto
177 setting_wiki_compression: Compactacao do historio do Wiki
177 setting_wiki_compression: Compactacao do historio do Wiki
178 setting_feeds_limit: Limite do Feed
178 setting_feeds_limit: Limite do Feed
179 setting_autofetch_changesets: Autofetch commits
179 setting_autofetch_changesets: Autofetch commits
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
183 setting_autologin: Autologin
184 setting_date_format: Date format
184 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
186
186
187 label_user: Usuario
187 label_user: Usuario
188 label_user_plural: Usuarios
188 label_user_plural: Usuarios
189 label_user_new: Novo usuario
189 label_user_new: Novo usuario
190 label_project: Projeto
190 label_project: Projeto
191 label_project_new: Novo projeto
191 label_project_new: Novo projeto
192 label_project_plural: Projetos
192 label_project_plural: Projetos
193 label_project_all: All Projects
193 label_project_all: All Projects
194 label_project_latest: Ultimos projetos
194 label_project_latest: Ultimos projetos
195 label_issue: Tarefa
195 label_issue: Tarefa
196 label_issue_new: Nova tarefa
196 label_issue_new: Nova tarefa
197 label_issue_plural: Tarefas
197 label_issue_plural: Tarefas
198 label_issue_view_all: Ver todas as tarefas
198 label_issue_view_all: Ver todas as tarefas
199 label_document: Documento
199 label_document: Documento
200 label_document_new: Novo documento
200 label_document_new: Novo documento
201 label_document_plural: Documentos
201 label_document_plural: Documentos
202 label_role: Regra
202 label_role: Regra
203 label_role_plural: Regras
203 label_role_plural: Regras
204 label_role_new: Nova regra
204 label_role_new: Nova regra
205 label_role_and_permissions: Regras e permissoes
205 label_role_and_permissions: Regras e permissoes
206 label_member: Membro
206 label_member: Membro
207 label_member_new: Novo membro
207 label_member_new: Novo membro
208 label_member_plural: Membros
208 label_member_plural: Membros
209 label_tracker: Tipo
209 label_tracker: Tipo
210 label_tracker_plural: Tipos
210 label_tracker_plural: Tipos
211 label_tracker_new: Novo tipo
211 label_tracker_new: Novo tipo
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Status da tarefa
213 label_issue_status: Status da tarefa
214 label_issue_status_plural: Status das tarefas
214 label_issue_status_plural: Status das tarefas
215 label_issue_status_new: Novo status
215 label_issue_status_new: Novo status
216 label_issue_category: Categoria de tarefa
216 label_issue_category: Categoria de tarefa
217 label_issue_category_plural: Categorias de tarefa
217 label_issue_category_plural: Categorias de tarefa
218 label_issue_category_new: Nova categoria
218 label_issue_category_new: Nova categoria
219 label_custom_field: Campo personalizado
219 label_custom_field: Campo personalizado
220 label_custom_field_plural: Campos personalizado
220 label_custom_field_plural: Campos personalizado
221 label_custom_field_new: Novo campo personalizado
221 label_custom_field_new: Novo campo personalizado
222 label_enumerations: Enumeracao
222 label_enumerations: Enumeracao
223 label_enumeration_new: Novo valor
223 label_enumeration_new: Novo valor
224 label_information: Informacao
224 label_information: Informacao
225 label_information_plural: Informacoes
225 label_information_plural: Informacoes
226 label_please_login: Efetue login
226 label_please_login: Efetue login
227 label_register: Registre-se
227 label_register: Registre-se
228 label_password_lost: Perdi a senha
228 label_password_lost: Perdi a senha
229 label_home: Pagina inicial
229 label_home: Pagina inicial
230 label_my_page: Minha pagina
230 label_my_page: Minha pagina
231 label_my_account: Minha conta
231 label_my_account: Minha conta
232 label_my_projects: Meus projetos
232 label_my_projects: Meus projetos
233 label_administration: Administracao
233 label_administration: Administracao
234 label_login: Login
234 label_login: Login
235 label_logout: Logout
235 label_logout: Logout
236 label_help: Ajuda
236 label_help: Ajuda
237 label_reported_issues: Tarefas reportadas
237 label_reported_issues: Tarefas reportadas
238 label_assigned_to_me_issues: Tarefas atribuidas a mim
238 label_assigned_to_me_issues: Tarefas atribuidas a mim
239 label_last_login: Utima conexao
239 label_last_login: Utima conexao
240 label_last_updates: Ultima alteracao
240 label_last_updates: Ultima alteracao
241 label_last_updates_plural: %d Ultimas alteracoes
241 label_last_updates_plural: %d Ultimas alteracoes
242 label_registered_on: Registrado em
242 label_registered_on: Registrado em
243 label_activity: Atividade
243 label_activity: Atividade
244 label_new: Novo
244 label_new: Novo
245 label_logged_as: Logado como
245 label_logged_as: Logado como
246 label_environment: Ambiente
246 label_environment: Ambiente
247 label_authentication: Autenticacao
247 label_authentication: Autenticacao
248 label_auth_source: Modo de autenticacao
248 label_auth_source: Modo de autenticacao
249 label_auth_source_new: Novo modo de autenticacao
249 label_auth_source_new: Novo modo de autenticacao
250 label_auth_source_plural: Modos de autenticacao
250 label_auth_source_plural: Modos de autenticacao
251 label_subproject_plural: Sub-projetos
251 label_subproject_plural: Sub-projetos
252 label_min_max_length: Tamanho min-max
252 label_min_max_length: Tamanho min-max
253 label_list: Lista
253 label_list: Lista
254 label_date: Data
254 label_date: Data
255 label_integer: Inteiro
255 label_integer: Inteiro
256 label_boolean: Boleano
256 label_boolean: Boleano
257 label_string: Texto
257 label_string: Texto
258 label_text: Texto longo
258 label_text: Texto longo
259 label_attribute: Atributo
259 label_attribute: Atributo
260 label_attribute_plural: Atributos
260 label_attribute_plural: Atributos
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
263 label_no_data: Sem dados para mostrar
263 label_no_data: Sem dados para mostrar
264 label_change_status: Mudar status
264 label_change_status: Mudar status
265 label_history: Historico
265 label_history: Historico
266 label_attachment: Arquivo
266 label_attachment: Arquivo
267 label_attachment_new: Novo arquivo
267 label_attachment_new: Novo arquivo
268 label_attachment_delete: Apagar arquivo
268 label_attachment_delete: Apagar arquivo
269 label_attachment_plural: Arquivos
269 label_attachment_plural: Arquivos
270 label_report: Relatorio
270 label_report: Relatorio
271 label_report_plural: Relatorio
271 label_report_plural: Relatorio
272 label_news: Noticias
272 label_news: Noticias
273 label_news_new: Adicionar noticias
273 label_news_new: Adicionar noticias
274 label_news_plural: Noticias
274 label_news_plural: Noticias
275 label_news_latest: Ultimas noticias
275 label_news_latest: Ultimas noticias
276 label_news_view_all: Ver todas as noticias
276 label_news_view_all: Ver todas as noticias
277 label_change_log: Change log
277 label_change_log: Change log
278 label_settings: Ajustes
278 label_settings: Ajustes
279 label_overview: Visao geral
279 label_overview: Visao geral
280 label_version: Versao
280 label_version: Versao
281 label_version_new: Nova versao
281 label_version_new: Nova versao
282 label_version_plural: Versoes
282 label_version_plural: Versoes
283 label_confirmation: Confirmacao
283 label_confirmation: Confirmacao
284 label_export_to: Exportar para
284 label_export_to: Exportar para
285 label_read: Ler...
285 label_read: Ler...
286 label_public_projects: Projetos publicos
286 label_public_projects: Projetos publicos
287 label_open_issues: Aberto
287 label_open_issues: Aberto
288 label_open_issues_plural: Abertos
288 label_open_issues_plural: Abertos
289 label_closed_issues: Fechado
289 label_closed_issues: Fechado
290 label_closed_issues_plural: Fechados
290 label_closed_issues_plural: Fechados
291 label_total: Total
291 label_total: Total
292 label_permissions: Permissoes
292 label_permissions: Permissoes
293 label_current_status: Status atual
293 label_current_status: Status atual
294 label_new_statuses_allowed: Novo status permitido
294 label_new_statuses_allowed: Novo status permitido
295 label_all: todos
295 label_all: todos
296 label_none: nenhum
296 label_none: nenhum
297 label_next: Proximo
297 label_next: Proximo
298 label_previous: Anterior
298 label_previous: Anterior
299 label_used_by: Usado por
299 label_used_by: Usado por
300 label_details: Detalhes
300 label_details: Detalhes
301 label_add_note: Adicionar nota
301 label_add_note: Adicionar nota
302 label_per_page: Por pagina
302 label_per_page: Por pagina
303 label_calendar: Calendario
303 label_calendar: Calendario
304 label_months_from: Meses de
304 label_months_from: Meses de
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Interno
306 label_internal: Interno
307 label_last_changes: utlimas %d mudancas
307 label_last_changes: utlimas %d mudancas
308 label_change_view_all: Mostrar todas as mudancas
308 label_change_view_all: Mostrar todas as mudancas
309 label_personalize_page: Personalizar esta pagina
309 label_personalize_page: Personalizar esta pagina
310 label_comment: Comentario
310 label_comment: Comentario
311 label_comment_plural: Comentarios
311 label_comment_plural: Comentarios
312 label_comment_add: Adicionar comentario
312 label_comment_add: Adicionar comentario
313 label_comment_added: Comentario adicionado
313 label_comment_added: Comentario adicionado
314 label_comment_delete: Apagar comentario
314 label_comment_delete: Apagar comentario
315 label_query: Consulta personalizada
315 label_query: Consulta personalizada
316 label_query_plural: Consultas personalizadas
316 label_query_plural: Consultas personalizadas
317 label_query_new: Nova consulta
317 label_query_new: Nova consulta
318 label_filter_add: Adicionar filtro
318 label_filter_add: Adicionar filtro
319 label_filter_plural: Filtros
319 label_filter_plural: Filtros
320 label_equals: e
320 label_equals: e
321 label_not_equals: nao e
321 label_not_equals: nao e
322 label_in_less_than: e maior que
322 label_in_less_than: e maior que
323 label_in_more_than: e menor que
323 label_in_more_than: e menor que
324 label_in: em
324 label_in: em
325 label_today: hoje
325 label_today: hoje
326 label_this_week: this week
326 label_this_week: this week
327 label_less_than_ago: faz menos de
327 label_less_than_ago: faz menos de
328 label_more_than_ago: faz mais de
328 label_more_than_ago: faz mais de
329 label_ago: dias atras
329 label_ago: dias atras
330 label_contains: contem
330 label_contains: contem
331 label_not_contains: nao contem
331 label_not_contains: nao contem
332 label_day_plural: dias
332 label_day_plural: dias
333 label_repository: Repository
333 label_repository: Repository
334 label_browse: Browse
334 label_browse: Browse
335 label_modification: %d change
335 label_modification: %d change
336 label_modification_plural: %d changes
336 label_modification_plural: %d changes
337 label_revision: Revision
337 label_revision: Revision
338 label_revision_plural: Revisions
338 label_revision_plural: Revisions
339 label_added: added
339 label_added: added
340 label_modified: modified
340 label_modified: modified
341 label_deleted: deleted
341 label_deleted: deleted
342 label_latest_revision: Latest revision
342 label_latest_revision: Latest revision
343 label_latest_revision_plural: Latest revisions
343 label_latest_revision_plural: Latest revisions
344 label_view_revisions: View revisions
344 label_view_revisions: View revisions
345 label_max_size: Maximum size
345 label_max_size: Maximum size
346 label_on: 'em'
346 label_on: 'em'
347 label_sort_highest: Mover para o inicio
347 label_sort_highest: Mover para o inicio
348 label_sort_higher: Mover para cima
348 label_sort_higher: Mover para cima
349 label_sort_lower: Mover para baixo
349 label_sort_lower: Mover para baixo
350 label_sort_lowest: Mover para o fim
350 label_sort_lowest: Mover para o fim
351 label_roadmap: Roadmap
351 label_roadmap: Roadmap
352 label_roadmap_due_in: Due in
352 label_roadmap_due_in: Due in
353 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Sem tarefas para essa versao
354 label_roadmap_no_issues: Sem tarefas para essa versao
355 label_search: Busca
355 label_search: Busca
356 label_result_plural: Resultados
356 label_result_plural: Resultados
357 label_all_words: Todas as palavras
357 label_all_words: Todas as palavras
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Wiki edit
359 label_wiki_edit: Wiki edit
360 label_wiki_edit_plural: Wiki edits
360 label_wiki_edit_plural: Wiki edits
361 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
363 label_index_by_title: Index by title
364 label_index_by_date: Index by date
364 label_index_by_date: Index by date
365 label_current_version: Versao atual
365 label_current_version: Versao atual
366 label_preview: Previa
366 label_preview: Previa
367 label_feed_plural: Feeds
367 label_feed_plural: Feeds
368 label_changes_details: Detalhes de todas as mudancas
368 label_changes_details: Detalhes de todas as mudancas
369 label_issue_tracking: Tarefas
369 label_issue_tracking: Tarefas
370 label_spent_time: Tempo gasto
370 label_spent_time: Tempo gasto
371 label_f_hour: %.2f hora
371 label_f_hour: %.2f hora
372 label_f_hour_plural: %.2f horas
372 label_f_hour_plural: %.2f horas
373 label_time_tracking: Tempo trabalhado
373 label_time_tracking: Tempo trabalhado
374 label_change_plural: Mudancas
374 label_change_plural: Mudancas
375 label_statistics: Estatisticas
375 label_statistics: Estatisticas
376 label_commits_per_month: Commits por mes
376 label_commits_per_month: Commits por mes
377 label_commits_per_author: Commits por autor
377 label_commits_per_author: Commits por autor
378 label_view_diff: Ver diferencas
378 label_view_diff: Ver diferencas
379 label_diff_inline: inline
379 label_diff_inline: inline
380 label_diff_side_by_side: side by side
380 label_diff_side_by_side: side by side
381 label_options: Opcoes
381 label_options: Opcoes
382 label_copy_workflow_from: Copiar workflow de
382 label_copy_workflow_from: Copiar workflow de
383 label_permissions_report: Relatorio de permissoes
383 label_permissions_report: Relatorio de permissoes
384 label_watched_issues: Watched issues
384 label_watched_issues: Watched issues
385 label_related_issues: Related issues
385 label_related_issues: Related issues
386 label_applied_status: Applied status
386 label_applied_status: Applied status
387 label_loading: Loading...
387 label_loading: Loading...
388 label_relation_new: New relation
388 label_relation_new: New relation
389 label_relation_delete: Delete relation
389 label_relation_delete: Delete relation
390 label_relates_to: related to
390 label_relates_to: related to
391 label_duplicates: duplicates
391 label_duplicates: duplicates
392 label_blocks: blocks
392 label_blocks: blocks
393 label_blocked_by: blocked by
393 label_blocked_by: blocked by
394 label_precedes: precedes
394 label_precedes: precedes
395 label_follows: follows
395 label_follows: follows
396 label_end_to_start: end to start
396 label_end_to_start: end to start
397 label_end_to_end: end to end
397 label_end_to_end: end to end
398 label_start_to_start: start to start
398 label_start_to_start: start to start
399 label_start_to_end: start to end
399 label_start_to_end: start to end
400 label_stay_logged_in: Stay logged in
400 label_stay_logged_in: Stay logged in
401 label_disabled: disabled
401 label_disabled: disabled
402 label_show_completed_versions: Show completed versions
402 label_show_completed_versions: Show completed versions
403 label_me: me
403 label_me: me
404 label_board: Forum
404 label_board: Forum
405 label_board_new: New forum
405 label_board_new: New forum
406 label_board_plural: Forums
406 label_board_plural: Forums
407 label_topic_plural: Topics
407 label_topic_plural: Topics
408 label_message_plural: Messages
408 label_message_plural: Messages
409 label_message_last: Last message
409 label_message_last: Last message
410 label_message_new: New message
410 label_message_new: New message
411 label_reply_plural: Replies
411 label_reply_plural: Replies
412 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
413 label_year: Year
413 label_year: Year
414 label_month: Month
414 label_month: Month
415 label_week: Week
415 label_week: Week
416 label_date_from: From
416 label_date_from: From
417 label_date_to: To
417 label_date_to: To
418 label_language_based: Language based
418 label_language_based: Language based
419 label_sort_by: Sort by "%s"
419 label_sort_by: Sort by "%s"
420 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
422 label_module_plural: Modules
422 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
426
426
427 button_login: Login
427 button_login: Login
428 button_submit: Enviar
428 button_submit: Enviar
429 button_save: Salvar
429 button_save: Salvar
430 button_check_all: Marcar todos
430 button_check_all: Marcar todos
431 button_uncheck_all: Desmarcar todos
431 button_uncheck_all: Desmarcar todos
432 button_delete: Apagar
432 button_delete: Apagar
433 button_create: Criar
433 button_create: Criar
434 button_test: Testar
434 button_test: Testar
435 button_edit: Editar
435 button_edit: Editar
436 button_add: Adicionar
436 button_add: Adicionar
437 button_change: Mudar
437 button_change: Mudar
438 button_apply: Aplicar
438 button_apply: Aplicar
439 button_clear: Limpar
439 button_clear: Limpar
440 button_lock: Bloquear
440 button_lock: Bloquear
441 button_unlock: Desbloquear
441 button_unlock: Desbloquear
442 button_download: Download
442 button_download: Download
443 button_list: Listar
443 button_list: Listar
444 button_view: Ver
444 button_view: Ver
445 button_move: Mover
445 button_move: Mover
446 button_back: Voltar
446 button_back: Voltar
447 button_cancel: Cancelar
447 button_cancel: Cancelar
448 button_activate: Ativar
448 button_activate: Ativar
449 button_sort: Ordenar
449 button_sort: Ordenar
450 button_log_time: Tempo de trabalho
450 button_log_time: Tempo de trabalho
451 button_rollback: Voltar para esta versao
451 button_rollback: Voltar para esta versao
452 button_watch: Watch
452 button_watch: Watch
453 button_unwatch: Unwatch
453 button_unwatch: Unwatch
454 button_reply: Reply
454 button_reply: Reply
455 button_archive: Archive
455 button_archive: Archive
456 button_unarchive: Unarchive
456 button_unarchive: Unarchive
457 button_reset: Reset
457 button_reset: Reset
458 button_rename: Rename
458 button_rename: Rename
459
459
460 status_active: ativo
460 status_active: ativo
461 status_registered: registrado
461 status_registered: registrado
462 status_locked: bloqueado
462 status_locked: bloqueado
463
463
464 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
464 text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email
465 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_regexp_info: eg. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 siginifica sem restricao
466 text_min_max_length_info: 0 siginifica sem restricao
467 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
467 text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados?
468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
469 text_are_you_sure: Voce tem certeza ?
469 text_are_you_sure: Voce tem certeza ?
470 text_journal_changed: alterado de %s para %s
470 text_journal_changed: alterado de %s para %s
471 text_journal_set_to: setar para %s
471 text_journal_set_to: setar para %s
472 text_journal_deleted: apagado
472 text_journal_deleted: apagado
473 text_tip_task_begin_day: tarefa comeca neste dia
473 text_tip_task_begin_day: tarefa comeca neste dia
474 text_tip_task_end_day: tarefa termina neste dia
474 text_tip_task_end_day: tarefa termina neste dia
475 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
475 text_tip_task_begin_end_day: tarefa comeca e termina neste dia
476 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
476 text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.'
477 text_caracters_maximum: %d maximo de caracteres
477 text_caracters_maximum: %d maximo de caracteres
478 text_length_between: Tamanho entre %d e %d caracteres.
478 text_length_between: Tamanho entre %d e %d caracteres.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
480 text_unallowed_characters: Unallowed characters
480 text_unallowed_characters: Unallowed characters
481 text_comma_separated: Multiple values allowed (comma separated).
481 text_comma_separated: Multiple values allowed (comma separated).
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 text_issue_added: Tarefa %s foi incluída.
483 text_issue_added: Tarefa %s foi incluída.
484 text_issue_updated: Tarefa %s foi alterada.
484 text_issue_updated: Tarefa %s foi alterada.
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
489
489
490 default_role_manager: Analista de Negocio ou Gerente de Projeto
490 default_role_manager: Analista de Negocio ou Gerente de Projeto
491 default_role_developper: Desenvolvedor
491 default_role_developper: Desenvolvedor
492 default_role_reporter: Analista de Suporte
492 default_role_reporter: Analista de Suporte
493 default_tracker_bug: Bug
493 default_tracker_bug: Bug
494 default_tracker_feature: Implementacao
494 default_tracker_feature: Implementacao
495 default_tracker_support: Suporte
495 default_tracker_support: Suporte
496 default_issue_status_new: Novo
496 default_issue_status_new: Novo
497 default_issue_status_assigned: Atribuido
497 default_issue_status_assigned: Atribuido
498 default_issue_status_resolved: Resolvido
498 default_issue_status_resolved: Resolvido
499 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Fechado
500 default_issue_status_closed: Fechado
501 default_issue_status_rejected: Rejeitado
501 default_issue_status_rejected: Rejeitado
502 default_doc_category_user: Documentacao do usuario
502 default_doc_category_user: Documentacao do usuario
503 default_doc_category_tech: Documentacao do tecnica
503 default_doc_category_tech: Documentacao do tecnica
504 default_priority_low: Baixo
504 default_priority_low: Baixo
505 default_priority_normal: Normal
505 default_priority_normal: Normal
506 default_priority_high: Alto
506 default_priority_high: Alto
507 default_priority_urgent: Urgente
507 default_priority_urgent: Urgente
508 default_priority_immediate: Imediato
508 default_priority_immediate: Imediato
509 default_activity_design: Design
509 default_activity_design: Design
510 default_activity_development: Desenvolvimento
510 default_activity_development: Desenvolvimento
511
511
512 enumeration_issue_priorities: Prioridade das tarefas
512 enumeration_issue_priorities: Prioridade das tarefas
513 enumeration_doc_categories: Categorias de documento
513 enumeration_doc_categories: Categorias de documento
514 enumeration_activities: Atividades (time tracking)
514 enumeration_activities: Atividades (time tracking)
515 label_file_plural: Files
515 label_file_plural: Files
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Columns
517 field_column_names: Columns
518 label_default_columns: Default columns
518 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
523 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
525 label_theme: Theme
526 label_default: Default
526 label_default: Default
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
4 actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
5 actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dias
9 actionview_datehelper_time_in_words_day_plural: %d dias
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
10 actionview_datehelper_time_in_words_hour_about: em torno de uma hora
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
11 actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
12 actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
14 actionview_datehelper_time_in_words_minute_half: meio minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
15 actionview_datehelper_time_in_words_minute_less_than: menos de um minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
16 actionview_datehelper_time_in_words_minute_plural: %d minutos
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
18 actionview_datehelper_time_in_words_second_less_than: menos de um segundo
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
19 actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos
20 actionview_instancetag_blank_option: Selecione
20 actionview_instancetag_blank_option: Selecione
21
21
22 activerecord_error_inclusion: não existe na lista
22 activerecord_error_inclusion: não existe na lista
23 activerecord_error_exclusion: já existe na lista
23 activerecord_error_exclusion: já existe na lista
24 activerecord_error_invalid: é inválido
24 activerecord_error_invalid: é inválido
25 activerecord_error_confirmation: não confere com sua confirmação
25 activerecord_error_confirmation: não confere com sua confirmação
26 activerecord_error_accepted: deve ser aceito
26 activerecord_error_accepted: deve ser aceito
27 activerecord_error_empty: não pode ser vazio
27 activerecord_error_empty: não pode ser vazio
28 activerecord_error_blank: não pode estar em branco
28 activerecord_error_blank: não pode estar em branco
29 activerecord_error_too_long: é muito longo
29 activerecord_error_too_long: é muito longo
30 activerecord_error_too_short: é muito curto
30 activerecord_error_too_short: é muito curto
31 activerecord_error_wrong_length: possui o comprimento errado
31 activerecord_error_wrong_length: possui o comprimento errado
32 activerecord_error_taken: já foi usado em outro registro
32 activerecord_error_taken: já foi usado em outro registro
33 activerecord_error_not_a_number: não é um número
33 activerecord_error_not_a_number: não é um número
34 activerecord_error_not_a_date: não é uma data válida
34 activerecord_error_not_a_date: não é uma data válida
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
35 activerecord_error_greater_than_start_date: deve ser maior que a data inicial
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
36 activerecord_error_not_same_project: não pertence ao mesmo projeto
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
37 activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular
38
38
39 general_fmt_age: %d ano
39 general_fmt_age: %d ano
40 general_fmt_age_plural: %d anos
40 general_fmt_age_plural: %d anos
41 general_fmt_date: %%d/%%m/%%Y
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Não'
45 general_text_No: 'Não'
46 general_text_Yes: 'Sim'
46 general_text_Yes: 'Sim'
47 general_text_no: 'não'
47 general_text_no: 'não'
48 general_text_yes: 'sim'
48 general_text_yes: 'sim'
49 general_lang_name: 'Português'
49 general_lang_name: 'Português'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
53 general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo
54 general_first_day_of_week: '1'
54 general_first_day_of_week: '1'
55
55
56 notice_account_updated: Conta foi atualizada com sucesso.
56 notice_account_updated: Conta foi atualizada com sucesso.
57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
57 notice_account_invalid_creditentials: Usuário ou senha inválidos.
58 notice_account_password_updated: Senha foi alterada com sucesso.
58 notice_account_password_updated: Senha foi alterada com sucesso.
59 notice_account_wrong_password: Senha errada.
59 notice_account_wrong_password: Senha errada.
60 notice_account_register_done: Conta foi criada com sucesso.
60 notice_account_register_done: Conta foi criada com sucesso.
61 notice_account_unknown_email: Usuário desconhecido.
61 notice_account_unknown_email: Usuário desconhecido.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
62 notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha.
63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
63 notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você.
64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
64 notice_account_activated: Sua conta foi ativada. Você pode logar agora
65 notice_successful_create: Criado com sucesso.
65 notice_successful_create: Criado com sucesso.
66 notice_successful_update: Alterado com sucesso.
66 notice_successful_update: Alterado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
67 notice_successful_delete: Apagado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
68 notice_successful_connection: Conectado com sucesso.
69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
69 notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
70 notice_locking_conflict: Os dados foram atualizados por um outro usuário.
71 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
71 notice_scm_error: A entrada e/ou a revisão não existem no repositório.
72 notice_not_authorized: Você não está autorizado a acessar esta página.
72 notice_not_authorized: Você não está autorizado a acessar esta página.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Sua senha do redMine.
77 mail_subject_lost_password: Sua senha do redMine.
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
78 mail_body_lost_password: 'Para mudar sua senha, clique no link abaixo:'
79 mail_subject_register: Ativação de conta do redMine.
79 mail_subject_register: Ativação de conta do redMine.
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
80 mail_body_register: 'Para ativar sua conta do Redmine, clique no link abaixo:'
81
81
82 gui_validation_error: 1 erro
82 gui_validation_error: 1 erro
83 gui_validation_error_plural: %d erros
83 gui_validation_error_plural: %d erros
84
84
85 field_name: Nome
85 field_name: Nome
86 field_description: Descrição
86 field_description: Descrição
87 field_summary: Sumário
87 field_summary: Sumário
88 field_is_required: Obrigatório
88 field_is_required: Obrigatório
89 field_firstname: Primeiro nome
89 field_firstname: Primeiro nome
90 field_lastname: Último nome
90 field_lastname: Último nome
91 field_mail: Email
91 field_mail: Email
92 field_filename: Arquivo
92 field_filename: Arquivo
93 field_filesize: Tamanho
93 field_filesize: Tamanho
94 field_downloads: Downloads
94 field_downloads: Downloads
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Criado
96 field_created_on: Criado
97 field_updated_on: Alterado
97 field_updated_on: Alterado
98 field_field_format: Formato
98 field_field_format: Formato
99 field_is_for_all: Para todos os projetos
99 field_is_for_all: Para todos os projetos
100 field_possible_values: Possíveis valores
100 field_possible_values: Possíveis valores
101 field_regexp: Expressão regular
101 field_regexp: Expressão regular
102 field_min_length: Tamanho mínimo
102 field_min_length: Tamanho mínimo
103 field_max_length: Tamanho máximo
103 field_max_length: Tamanho máximo
104 field_value: Valor
104 field_value: Valor
105 field_category: Categoria
105 field_category: Categoria
106 field_title: Título
106 field_title: Título
107 field_project: Projeto
107 field_project: Projeto
108 field_issue: Tarefa
108 field_issue: Tarefa
109 field_status: Status
109 field_status: Status
110 field_notes: Notas
110 field_notes: Notas
111 field_is_closed: Tarefa fechada
111 field_is_closed: Tarefa fechada
112 field_is_default: Status padrão
112 field_is_default: Status padrão
113 field_html_color: Cor
113 field_html_color: Cor
114 field_tracker: Tipo
114 field_tracker: Tipo
115 field_subject: Assunto
115 field_subject: Assunto
116 field_due_date: Data final
116 field_due_date: Data final
117 field_assigned_to: Atribuído para
117 field_assigned_to: Atribuído para
118 field_priority: Prioridade
118 field_priority: Prioridade
119 field_fixed_version: Versão corrigida
119 field_fixed_version: Versão corrigida
120 field_user: Usuário
120 field_user: Usuário
121 field_role: Regra
121 field_role: Regra
122 field_homepage: Página inicial
122 field_homepage: Página inicial
123 field_is_public: Público
123 field_is_public: Público
124 field_parent: Sub-projeto de
124 field_parent: Sub-projeto de
125 field_is_in_chlog: Tarefas mostradas no changelog
125 field_is_in_chlog: Tarefas mostradas no changelog
126 field_is_in_roadmap: Tarefas mostradas no roadmap
126 field_is_in_roadmap: Tarefas mostradas no roadmap
127 field_login: Login
127 field_login: Login
128 field_mail_notification: Notificações por email
128 field_mail_notification: Notificações por email
129 field_admin: Administrador
129 field_admin: Administrador
130 field_last_login_on: Última conexão
130 field_last_login_on: Última conexão
131 field_language: Língua
131 field_language: Língua
132 field_effective_date: Data
132 field_effective_date: Data
133 field_password: Senha
133 field_password: Senha
134 field_new_password: Nova senha
134 field_new_password: Nova senha
135 field_password_confirmation: Confirmação
135 field_password_confirmation: Confirmação
136 field_version: Versão
136 field_version: Versão
137 field_type: Tipo
137 field_type: Tipo
138 field_host: Servidor
138 field_host: Servidor
139 field_port: Porta
139 field_port: Porta
140 field_account: Conta
140 field_account: Conta
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Atributo login
142 field_attr_login: Atributo login
143 field_attr_firstname: Atributo primeiro nome
143 field_attr_firstname: Atributo primeiro nome
144 field_attr_lastname: Atributo último nome
144 field_attr_lastname: Atributo último nome
145 field_attr_mail: Atributo email
145 field_attr_mail: Atributo email
146 field_onthefly: Criação de usuário sob-demanda
146 field_onthefly: Criação de usuário sob-demanda
147 field_start_date: Início
147 field_start_date: Início
148 field_done_ratio: %% Terminado
148 field_done_ratio: %% Terminado
149 field_auth_source: Modo de autenticação
149 field_auth_source: Modo de autenticação
150 field_hide_mail: Esconda meu email
150 field_hide_mail: Esconda meu email
151 field_comments: Comentário
151 field_comments: Comentário
152 field_url: URL
152 field_url: URL
153 field_start_page: Página inicial
153 field_start_page: Página inicial
154 field_subproject: Sub-projeto
154 field_subproject: Sub-projeto
155 field_hours: Horas
155 field_hours: Horas
156 field_activity: Atividade
156 field_activity: Atividade
157 field_spent_on: Data
157 field_spent_on: Data
158 field_identifier: Identificador
158 field_identifier: Identificador
159 field_is_filter: Usado como filtro
159 field_is_filter: Usado como filtro
160 field_issue_to_id: Tarefa relacionada
160 field_issue_to_id: Tarefa relacionada
161 field_delay: Atraso
161 field_delay: Atraso
162 field_assignable: Issues can be assigned to this role
162 field_assignable: Issues can be assigned to this role
163 field_redirect_existing_links: Redirect existing links
163 field_redirect_existing_links: Redirect existing links
164 field_estimated_hours: Estimated time
164 field_estimated_hours: Estimated time
165
165
166 setting_app_title: Título da aplicação
166 setting_app_title: Título da aplicação
167 setting_app_subtitle: Sub-título da aplicação
167 setting_app_subtitle: Sub-título da aplicação
168 setting_welcome_text: Texto de boas-vindas
168 setting_welcome_text: Texto de boas-vindas
169 setting_default_language: Linguagem padrão
169 setting_default_language: Linguagem padrão
170 setting_login_required: Autenticação obrigatória
170 setting_login_required: Autenticação obrigatória
171 setting_self_registration: Registro permitido
171 setting_self_registration: Registro permitido
172 setting_attachment_max_size: Tamanho máximo do anexo
172 setting_attachment_max_size: Tamanho máximo do anexo
173 setting_issues_export_limit: Limite de exportação das tarefas
173 setting_issues_export_limit: Limite de exportação das tarefas
174 setting_mail_from: Email enviado de
174 setting_mail_from: Email enviado de
175 setting_host_name: Servidor
175 setting_host_name: Servidor
176 setting_text_formatting: Formato do texto
176 setting_text_formatting: Formato do texto
177 setting_wiki_compression: Compactação do histórico do Wiki
177 setting_wiki_compression: Compactação do histórico do Wiki
178 setting_feeds_limit: Limite do Feed
178 setting_feeds_limit: Limite do Feed
179 setting_autofetch_changesets: Buscar automaticamente commits
179 setting_autofetch_changesets: Buscar automaticamente commits
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
180 setting_sys_api_enabled: Ativa WS para gerenciamento do repositório
181 setting_commit_ref_keywords: Palavras-chave de referôncia
181 setting_commit_ref_keywords: Palavras-chave de referôncia
182 setting_commit_fix_keywords: Palavras-chave fixas
182 setting_commit_fix_keywords: Palavras-chave fixas
183 setting_autologin: Autologin
183 setting_autologin: Autologin
184 setting_date_format: Date format
184 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
186
186
187 label_user: Usuário
187 label_user: Usuário
188 label_user_plural: Usuários
188 label_user_plural: Usuários
189 label_user_new: Novo usuário
189 label_user_new: Novo usuário
190 label_project: Projeto
190 label_project: Projeto
191 label_project_new: Novo projeto
191 label_project_new: Novo projeto
192 label_project_plural: Projetos
192 label_project_plural: Projetos
193 label_project_all: All Projects
193 label_project_all: All Projects
194 label_project_latest: Últimos projetos
194 label_project_latest: Últimos projetos
195 label_issue: Tarefa
195 label_issue: Tarefa
196 label_issue_new: Nova tarefa
196 label_issue_new: Nova tarefa
197 label_issue_plural: Tarefas
197 label_issue_plural: Tarefas
198 label_issue_view_all: Ver todas as tarefas
198 label_issue_view_all: Ver todas as tarefas
199 label_document: Documento
199 label_document: Documento
200 label_document_new: Novo documento
200 label_document_new: Novo documento
201 label_document_plural: Documentos
201 label_document_plural: Documentos
202 label_role: Regra
202 label_role: Regra
203 label_role_plural: Regras
203 label_role_plural: Regras
204 label_role_new: Nova regra
204 label_role_new: Nova regra
205 label_role_and_permissions: Regras e permissões
205 label_role_and_permissions: Regras e permissões
206 label_member: Membro
206 label_member: Membro
207 label_member_new: Novo membro
207 label_member_new: Novo membro
208 label_member_plural: Membros
208 label_member_plural: Membros
209 label_tracker: Tipo
209 label_tracker: Tipo
210 label_tracker_plural: Tipos
210 label_tracker_plural: Tipos
211 label_tracker_new: Novo tipo
211 label_tracker_new: Novo tipo
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Status da tarefa
213 label_issue_status: Status da tarefa
214 label_issue_status_plural: Status das tarefas
214 label_issue_status_plural: Status das tarefas
215 label_issue_status_new: Novo status
215 label_issue_status_new: Novo status
216 label_issue_category: Categoria da tarefa
216 label_issue_category: Categoria da tarefa
217 label_issue_category_plural: Categorias das tarefas
217 label_issue_category_plural: Categorias das tarefas
218 label_issue_category_new: Nova categoria
218 label_issue_category_new: Nova categoria
219 label_custom_field: Campo personalizado
219 label_custom_field: Campo personalizado
220 label_custom_field_plural: Campos personalizados
220 label_custom_field_plural: Campos personalizados
221 label_custom_field_new: Novo campo personalizado
221 label_custom_field_new: Novo campo personalizado
222 label_enumerations: Enumeração
222 label_enumerations: Enumeração
223 label_enumeration_new: Novo valor
223 label_enumeration_new: Novo valor
224 label_information: Informação
224 label_information: Informação
225 label_information_plural: Informações
225 label_information_plural: Informações
226 label_please_login: Efetue login
226 label_please_login: Efetue login
227 label_register: Registre-se
227 label_register: Registre-se
228 label_password_lost: Perdi a senha
228 label_password_lost: Perdi a senha
229 label_home: Página inicial
229 label_home: Página inicial
230 label_my_page: Minha página
230 label_my_page: Minha página
231 label_my_account: Minha conta
231 label_my_account: Minha conta
232 label_my_projects: Meus projetos
232 label_my_projects: Meus projetos
233 label_administration: Administração
233 label_administration: Administração
234 label_login: Login
234 label_login: Login
235 label_logout: Logout
235 label_logout: Logout
236 label_help: Ajuda
236 label_help: Ajuda
237 label_reported_issues: Tarefas reportadas
237 label_reported_issues: Tarefas reportadas
238 label_assigned_to_me_issues: Tarefas atribuídas à mim
238 label_assigned_to_me_issues: Tarefas atribuídas à mim
239 label_last_login: Útima conexão
239 label_last_login: Útima conexão
240 label_last_updates: Última alteração
240 label_last_updates: Última alteração
241 label_last_updates_plural: %d Últimas alterações
241 label_last_updates_plural: %d Últimas alterações
242 label_registered_on: Registrado em
242 label_registered_on: Registrado em
243 label_activity: Atividade
243 label_activity: Atividade
244 label_new: Novo
244 label_new: Novo
245 label_logged_as: Logado como
245 label_logged_as: Logado como
246 label_environment: Ambiente
246 label_environment: Ambiente
247 label_authentication: Autenticação
247 label_authentication: Autenticação
248 label_auth_source: Modo de autenticação
248 label_auth_source: Modo de autenticação
249 label_auth_source_new: Novo modo de autenticação
249 label_auth_source_new: Novo modo de autenticação
250 label_auth_source_plural: Modos de autenticação
250 label_auth_source_plural: Modos de autenticação
251 label_subproject_plural: Sub-projetos
251 label_subproject_plural: Sub-projetos
252 label_min_max_length: Tamanho min-max
252 label_min_max_length: Tamanho min-max
253 label_list: Lista
253 label_list: Lista
254 label_date: Data
254 label_date: Data
255 label_integer: Inteiro
255 label_integer: Inteiro
256 label_boolean: Booleano
256 label_boolean: Booleano
257 label_string: Texto
257 label_string: Texto
258 label_text: Texto longo
258 label_text: Texto longo
259 label_attribute: Atributo
259 label_attribute: Atributo
260 label_attribute_plural: Atributos
260 label_attribute_plural: Atributos
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
263 label_no_data: Sem dados para mostrar
263 label_no_data: Sem dados para mostrar
264 label_change_status: Mudar status
264 label_change_status: Mudar status
265 label_history: Histórico
265 label_history: Histórico
266 label_attachment: Arquivo
266 label_attachment: Arquivo
267 label_attachment_new: Novo arquivo
267 label_attachment_new: Novo arquivo
268 label_attachment_delete: Apagar arquivo
268 label_attachment_delete: Apagar arquivo
269 label_attachment_plural: Arquivos
269 label_attachment_plural: Arquivos
270 label_report: Relatório
270 label_report: Relatório
271 label_report_plural: Relatório
271 label_report_plural: Relatório
272 label_news: Notícias
272 label_news: Notícias
273 label_news_new: Adicionar notícias
273 label_news_new: Adicionar notícias
274 label_news_plural: Notícias
274 label_news_plural: Notícias
275 label_news_latest: Últimas notícias
275 label_news_latest: Últimas notícias
276 label_news_view_all: Ver todas as notícias
276 label_news_view_all: Ver todas as notícias
277 label_change_log: Log de mudanças
277 label_change_log: Log de mudanças
278 label_settings: Configurações
278 label_settings: Configurações
279 label_overview: Visão geral
279 label_overview: Visão geral
280 label_version: Versão
280 label_version: Versão
281 label_version_new: Nova versão
281 label_version_new: Nova versão
282 label_version_plural: Versões
282 label_version_plural: Versões
283 label_confirmation: Confirmação
283 label_confirmation: Confirmação
284 label_export_to: Exportar para
284 label_export_to: Exportar para
285 label_read: Ler...
285 label_read: Ler...
286 label_public_projects: Projetos públicos
286 label_public_projects: Projetos públicos
287 label_open_issues: Aberto
287 label_open_issues: Aberto
288 label_open_issues_plural: Abertos
288 label_open_issues_plural: Abertos
289 label_closed_issues: Fechado
289 label_closed_issues: Fechado
290 label_closed_issues_plural: Fechados
290 label_closed_issues_plural: Fechados
291 label_total: Total
291 label_total: Total
292 label_permissions: Permissões
292 label_permissions: Permissões
293 label_current_status: Status atual
293 label_current_status: Status atual
294 label_new_statuses_allowed: Novo status permitido
294 label_new_statuses_allowed: Novo status permitido
295 label_all: todos
295 label_all: todos
296 label_none: nenhum
296 label_none: nenhum
297 label_next: Próximo
297 label_next: Próximo
298 label_previous: Anterior
298 label_previous: Anterior
299 label_used_by: Usado por
299 label_used_by: Usado por
300 label_details: Detalhes
300 label_details: Detalhes
301 label_add_note: Adicionar nota
301 label_add_note: Adicionar nota
302 label_per_page: Por página
302 label_per_page: Por página
303 label_calendar: Calendário
303 label_calendar: Calendário
304 label_months_from: Meses de
304 label_months_from: Meses de
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Interno
306 label_internal: Interno
307 label_last_changes: últimas %d mudanças
307 label_last_changes: últimas %d mudanças
308 label_change_view_all: Mostrar todas as mudanças
308 label_change_view_all: Mostrar todas as mudanças
309 label_personalize_page: Personalizar esta página
309 label_personalize_page: Personalizar esta página
310 label_comment: Comentário
310 label_comment: Comentário
311 label_comment_plural: Comentários
311 label_comment_plural: Comentários
312 label_comment_add: Adicionar comentário
312 label_comment_add: Adicionar comentário
313 label_comment_added: Comentário adicionado
313 label_comment_added: Comentário adicionado
314 label_comment_delete: Apagar comentário
314 label_comment_delete: Apagar comentário
315 label_query: Consulta personalizada
315 label_query: Consulta personalizada
316 label_query_plural: Consultas personalizadas
316 label_query_plural: Consultas personalizadas
317 label_query_new: Nova consulta
317 label_query_new: Nova consulta
318 label_filter_add: Adicionar filtro
318 label_filter_add: Adicionar filtro
319 label_filter_plural: Filtros
319 label_filter_plural: Filtros
320 label_equals: é
320 label_equals: é
321 label_not_equals: não e
321 label_not_equals: não e
322 label_in_less_than: é maior que
322 label_in_less_than: é maior que
323 label_in_more_than: é menor que
323 label_in_more_than: é menor que
324 label_in: em
324 label_in: em
325 label_today: hoje
325 label_today: hoje
326 label_this_week: this week
326 label_this_week: this week
327 label_less_than_ago: faz menos de
327 label_less_than_ago: faz menos de
328 label_more_than_ago: faz mais de
328 label_more_than_ago: faz mais de
329 label_ago: dias atrás
329 label_ago: dias atrás
330 label_contains: contém
330 label_contains: contém
331 label_not_contains: não contém
331 label_not_contains: não contém
332 label_day_plural: dias
332 label_day_plural: dias
333 label_repository: Repositório
333 label_repository: Repositório
334 label_browse: Procurar
334 label_browse: Procurar
335 label_modification: %d mudança
335 label_modification: %d mudança
336 label_modification_plural: %d mudanças
336 label_modification_plural: %d mudanças
337 label_revision: Revisão
337 label_revision: Revisão
338 label_revision_plural: Revisões
338 label_revision_plural: Revisões
339 label_added: adicionado
339 label_added: adicionado
340 label_modified: modificado
340 label_modified: modificado
341 label_deleted: deletado
341 label_deleted: deletado
342 label_latest_revision: Última revisão
342 label_latest_revision: Última revisão
343 label_latest_revision_plural: Últimas revisões
343 label_latest_revision_plural: Últimas revisões
344 label_view_revisions: Ver revisões
344 label_view_revisions: Ver revisões
345 label_max_size: Tamanho máximo
345 label_max_size: Tamanho máximo
346 label_on: em
346 label_on: em
347 label_sort_highest: Mover para o início
347 label_sort_highest: Mover para o início
348 label_sort_higher: Mover para cima
348 label_sort_higher: Mover para cima
349 label_sort_lower: Mover para baixo
349 label_sort_lower: Mover para baixo
350 label_sort_lowest: Mover para o fim
350 label_sort_lowest: Mover para o fim
351 label_roadmap: Roadmap
351 label_roadmap: Roadmap
352 label_roadmap_due_in: Termina em
352 label_roadmap_due_in: Termina em
353 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Sem tarefas para essa versão
354 label_roadmap_no_issues: Sem tarefas para essa versão
355 label_search: Busca
355 label_search: Busca
356 label_result_plural: Resultados
356 label_result_plural: Resultados
357 label_all_words: Todas as palavras
357 label_all_words: Todas as palavras
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Wiki edit
359 label_wiki_edit: Wiki edit
360 label_wiki_edit_plural: Wiki edits
360 label_wiki_edit_plural: Wiki edits
361 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
363 label_index_by_title: Index by title
364 label_index_by_date: Index by date
364 label_index_by_date: Index by date
365 label_current_version: Versão atual
365 label_current_version: Versão atual
366 label_preview: Prévia
366 label_preview: Prévia
367 label_feed_plural: Feeds
367 label_feed_plural: Feeds
368 label_changes_details: Detalhes de todas as mudanças
368 label_changes_details: Detalhes de todas as mudanças
369 label_issue_tracking: Tarefas
369 label_issue_tracking: Tarefas
370 label_spent_time: Tempo gasto
370 label_spent_time: Tempo gasto
371 label_f_hour: %.2f hora
371 label_f_hour: %.2f hora
372 label_f_hour_plural: %.2f horas
372 label_f_hour_plural: %.2f horas
373 label_time_tracking: Tempo trabalhado
373 label_time_tracking: Tempo trabalhado
374 label_change_plural: Mudanças
374 label_change_plural: Mudanças
375 label_statistics: Estatísticas
375 label_statistics: Estatísticas
376 label_commits_per_month: Commits por mês
376 label_commits_per_month: Commits por mês
377 label_commits_per_author: Commits por autor
377 label_commits_per_author: Commits por autor
378 label_view_diff: Ver diferenças
378 label_view_diff: Ver diferenças
379 label_diff_inline: inline
379 label_diff_inline: inline
380 label_diff_side_by_side: lado a lado
380 label_diff_side_by_side: lado a lado
381 label_options: Opções
381 label_options: Opções
382 label_copy_workflow_from: Copiar workflow de
382 label_copy_workflow_from: Copiar workflow de
383 label_permissions_report: Relatório de permissões
383 label_permissions_report: Relatório de permissões
384 label_watched_issues: Tarefas observadas
384 label_watched_issues: Tarefas observadas
385 label_related_issues: tarefas relacionadas
385 label_related_issues: tarefas relacionadas
386 label_applied_status: Status aplicado
386 label_applied_status: Status aplicado
387 label_loading: Carregando...
387 label_loading: Carregando...
388 label_relation_new: Nova relação
388 label_relation_new: Nova relação
389 label_relation_delete: Deletar relação
389 label_relation_delete: Deletar relação
390 label_relates_to: relacionado à
390 label_relates_to: relacionado à
391 label_duplicates: duplicadas
391 label_duplicates: duplicadas
392 label_blocks: bloqueios
392 label_blocks: bloqueios
393 label_blocked_by: bloqueado por
393 label_blocked_by: bloqueado por
394 label_precedes: procede
394 label_precedes: procede
395 label_follows: segue
395 label_follows: segue
396 label_end_to_start: fim ao início
396 label_end_to_start: fim ao início
397 label_end_to_end: fim ao fim
397 label_end_to_end: fim ao fim
398 label_start_to_start: ínícia ao inícia
398 label_start_to_start: ínícia ao inícia
399 label_start_to_end: inícia ao fim
399 label_start_to_end: inícia ao fim
400 label_stay_logged_in: Rester connecté
400 label_stay_logged_in: Rester connecté
401 label_disabled: désactivé
401 label_disabled: désactivé
402 label_show_completed_versions: Voire les versions passées
402 label_show_completed_versions: Voire les versions passées
403 label_me: me
403 label_me: me
404 label_board: Forum
404 label_board: Forum
405 label_board_new: New forum
405 label_board_new: New forum
406 label_board_plural: Forums
406 label_board_plural: Forums
407 label_topic_plural: Topics
407 label_topic_plural: Topics
408 label_message_plural: Messages
408 label_message_plural: Messages
409 label_message_last: Last message
409 label_message_last: Last message
410 label_message_new: New message
410 label_message_new: New message
411 label_reply_plural: Replies
411 label_reply_plural: Replies
412 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
413 label_year: Year
413 label_year: Year
414 label_month: Month
414 label_month: Month
415 label_week: Week
415 label_week: Week
416 label_date_from: From
416 label_date_from: From
417 label_date_to: To
417 label_date_to: To
418 label_language_based: Language based
418 label_language_based: Language based
419 label_sort_by: Sort by "%s"
419 label_sort_by: Sort by "%s"
420 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
422 label_module_plural: Modules
422 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
426
426
427 button_login: Login
427 button_login: Login
428 button_submit: Enviar
428 button_submit: Enviar
429 button_save: Salvar
429 button_save: Salvar
430 button_check_all: Marcar todos
430 button_check_all: Marcar todos
431 button_uncheck_all: Desmarcar todos
431 button_uncheck_all: Desmarcar todos
432 button_delete: Apagar
432 button_delete: Apagar
433 button_create: Criar
433 button_create: Criar
434 button_test: Testar
434 button_test: Testar
435 button_edit: Editar
435 button_edit: Editar
436 button_add: Adicionar
436 button_add: Adicionar
437 button_change: Mudar
437 button_change: Mudar
438 button_apply: Aplicar
438 button_apply: Aplicar
439 button_clear: Limpar
439 button_clear: Limpar
440 button_lock: Bloquear
440 button_lock: Bloquear
441 button_unlock: Desbloquear
441 button_unlock: Desbloquear
442 button_download: Download
442 button_download: Download
443 button_list: Listar
443 button_list: Listar
444 button_view: Ver
444 button_view: Ver
445 button_move: Mover
445 button_move: Mover
446 button_back: Voltar
446 button_back: Voltar
447 button_cancel: Cancelar
447 button_cancel: Cancelar
448 button_activate: Ativar
448 button_activate: Ativar
449 button_sort: Ordenar
449 button_sort: Ordenar
450 button_log_time: Tempo de trabalho
450 button_log_time: Tempo de trabalho
451 button_rollback: Voltar para esta versão
451 button_rollback: Voltar para esta versão
452 button_watch: Observar
452 button_watch: Observar
453 button_unwatch: Não observar
453 button_unwatch: Não observar
454 button_reply: Reply
454 button_reply: Reply
455 button_archive: Archive
455 button_archive: Archive
456 button_unarchive: Unarchive
456 button_unarchive: Unarchive
457 button_reset: Reset
457 button_reset: Reset
458 button_rename: Rename
458 button_rename: Rename
459
459
460 status_active: ativo
460 status_active: ativo
461 status_registered: registrado
461 status_registered: registrado
462 status_locked: bloqueado
462 status_locked: bloqueado
463
463
464 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
464 text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email
465 text_regexp_info: ex. ^[A-Z0-9]+$
465 text_regexp_info: ex. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 siginifica sem restrição
466 text_min_max_length_info: 0 siginifica sem restrição
467 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
467 text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados?
468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
468 text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow
469 text_are_you_sure: Você tem certeza ?
469 text_are_you_sure: Você tem certeza ?
470 text_journal_changed: alterado de %s para %s
470 text_journal_changed: alterado de %s para %s
471 text_journal_set_to: alterar para %s
471 text_journal_set_to: alterar para %s
472 text_journal_deleted: apagado
472 text_journal_deleted: apagado
473 text_tip_task_begin_day: tarefa começa neste dia
473 text_tip_task_begin_day: tarefa começa neste dia
474 text_tip_task_end_day: tarefa termina neste dia
474 text_tip_task_end_day: tarefa termina neste dia
475 text_tip_task_begin_end_day: tarefa começa e termina neste dia
475 text_tip_task_begin_end_day: tarefa começa e termina neste dia
476 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.'
476 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.'
477 text_caracters_maximum: %d móximo de caracteres
477 text_caracters_maximum: %d móximo de caracteres
478 text_length_between: Tamanho entre %d e %d caracteres.
478 text_length_between: Tamanho entre %d e %d caracteres.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
479 text_tracker_no_workflow: Sem workflow definido para este tipo.
480 text_unallowed_characters: Caracteres não permitidos
480 text_unallowed_characters: Caracteres não permitidos
481 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
481 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
482 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
482 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
483 text_issue_added: Tarefa %s foi incluída.
483 text_issue_added: Tarefa %s foi incluída.
484 text_issue_updated: Tarefa %s foi alterada.
484 text_issue_updated: Tarefa %s foi alterada.
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
489
489
490 default_role_manager: Analista de Negócio ou Gerente de Projeto
490 default_role_manager: Analista de Negócio ou Gerente de Projeto
491 default_role_developper: Desenvolvedor
491 default_role_developper: Desenvolvedor
492 default_role_reporter: Analista de Suporte
492 default_role_reporter: Analista de Suporte
493 default_tracker_bug: Bug
493 default_tracker_bug: Bug
494 default_tracker_feature: Implementaçõo
494 default_tracker_feature: Implementaçõo
495 default_tracker_support: Suporte
495 default_tracker_support: Suporte
496 default_issue_status_new: Novo
496 default_issue_status_new: Novo
497 default_issue_status_assigned: Atribuído
497 default_issue_status_assigned: Atribuído
498 default_issue_status_resolved: Resolvido
498 default_issue_status_resolved: Resolvido
499 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Fechado
500 default_issue_status_closed: Fechado
501 default_issue_status_rejected: Rejeitado
501 default_issue_status_rejected: Rejeitado
502 default_doc_category_user: Documentação do usuário
502 default_doc_category_user: Documentação do usuário
503 default_doc_category_tech: Documentação técnica
503 default_doc_category_tech: Documentação técnica
504 default_priority_low: Baixo
504 default_priority_low: Baixo
505 default_priority_normal: Normal
505 default_priority_normal: Normal
506 default_priority_high: Alto
506 default_priority_high: Alto
507 default_priority_urgent: Urgente
507 default_priority_urgent: Urgente
508 default_priority_immediate: Imediato
508 default_priority_immediate: Imediato
509 default_activity_design: Design
509 default_activity_design: Design
510 default_activity_development: Desenvolvimento
510 default_activity_development: Desenvolvimento
511
511
512 enumeration_issue_priorities: Prioridade das tarefas
512 enumeration_issue_priorities: Prioridade das tarefas
513 enumeration_doc_categories: Categorias de documento
513 enumeration_doc_categories: Categorias de documento
514 enumeration_activities: Atividades (time tracking)
514 enumeration_activities: Atividades (time tracking)
515 label_file_plural: Files
515 label_file_plural: Files
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Columns
517 field_column_names: Columns
518 label_default_columns: Default columns
518 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
523 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
525 label_theme: Theme
526 label_default: Default
526 label_default: Default
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,528 +1,533
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
4 actionview_datehelper_select_month_names: Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie
5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Ian,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 zi
8 actionview_datehelper_time_in_words_day: 1 zi
9 actionview_datehelper_time_in_words_day_plural: %d zile
9 actionview_datehelper_time_in_words_day_plural: %d zile
10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
10 actionview_datehelper_time_in_words_hour_about: aproximativ o ora
11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: aproximativ %d ore
12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
12 actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
14 actionview_datehelper_time_in_words_minute_half: 30 de secunde
15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
15 actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut
16 actionview_datehelper_time_in_words_minute_plural: %d minute
16 actionview_datehelper_time_in_words_minute_plural: %d minute
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
18 actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda
19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
19 actionview_datehelper_time_in_words_second_less_than_plural: mai putin de %d secunde
20 actionview_instancetag_blank_option: Va rog selectati
20 actionview_instancetag_blank_option: Va rog selectati
21
21
22 activerecord_error_inclusion: nu este inclus in lista
22 activerecord_error_inclusion: nu este inclus in lista
23 activerecord_error_exclusion: este rezervat
23 activerecord_error_exclusion: este rezervat
24 activerecord_error_invalid: este invalid
24 activerecord_error_invalid: este invalid
25 activerecord_error_confirmation: nu corespunde confirmarii
25 activerecord_error_confirmation: nu corespunde confirmarii
26 activerecord_error_accepted: trebuie acceptat
26 activerecord_error_accepted: trebuie acceptat
27 activerecord_error_empty: nu poate fi gol
27 activerecord_error_empty: nu poate fi gol
28 activerecord_error_blank: nu poate fi gol
28 activerecord_error_blank: nu poate fi gol
29 activerecord_error_too_long: este prea lung
29 activerecord_error_too_long: este prea lung
30 activerecord_error_too_short: este prea scurt
30 activerecord_error_too_short: este prea scurt
31 activerecord_error_wrong_length: are lungimea eronata
31 activerecord_error_wrong_length: are lungimea eronata
32 activerecord_error_taken: deja a fost luat/rezervat
32 activerecord_error_taken: deja a fost luat/rezervat
33 activerecord_error_not_a_number: nu este un numar
33 activerecord_error_not_a_number: nu este un numar
34 activerecord_error_not_a_date: nu este o data valida
34 activerecord_error_not_a_date: nu este o data valida
35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
35 activerecord_error_greater_than_start_date: trebuie sa fie mai mare ca data de start
36 activerecord_error_not_same_project: nu apartine projectului respectiv
36 activerecord_error_not_same_project: nu apartine projectului respectiv
37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
37 activerecord_error_circular_dependency: Aceasta relatie ar crea dependenta circulara
38
38
39 general_fmt_age: %d an
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ani
40 general_fmt_age_plural: %d ani
41 general_fmt_date: %%m/%%d/%%A
41 general_fmt_date: %%m/%%d/%%A
42 general_fmt_datetime: %%m/%%d/%%A %%Z:%%L %%p
42 general_fmt_datetime: %%m/%%d/%%A %%Z:%%L %%p
43 general_fmt_datetime_short: %%b %%d, %%Z:%%L %%p
43 general_fmt_datetime_short: %%b %%d, %%Z:%%L %%p
44 general_fmt_time: %%Z:%%L %%p
44 general_fmt_time: %%Z:%%L %%p
45 general_text_No: 'Nu'
45 general_text_No: 'Nu'
46 general_text_Yes: 'Da'
46 general_text_Yes: 'Da'
47 general_text_no: 'nu'
47 general_text_no: 'nu'
48 general_text_yes: 'da'
48 general_text_yes: 'da'
49 general_lang_name: 'Română'
49 general_lang_name: 'Română'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
53 general_day_names: Luni,Marti,Miercuri,Joi,Vineri,Sambata,Duminica
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Contul a fost creat cu succes.
56 notice_account_updated: Contul a fost creat cu succes.
57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
57 notice_account_invalid_creditentials: Numele utilizator sau parola este invalida.
58 notice_account_password_updated: Parola a fost modificata cu succes.
58 notice_account_password_updated: Parola a fost modificata cu succes.
59 notice_account_wrong_password: Parola gresita
59 notice_account_wrong_password: Parola gresita
60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
60 notice_account_register_done: Contul a fost creat cu succes. Pentru activarea contului folositi linkul primit in e-mailul de confirmare.
61 notice_account_unknown_email: Utilizator inexistent.
61 notice_account_unknown_email: Utilizator inexistent.
62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
62 notice_can_t_change_password: Acest cont foloseste un sistem de autenticare externa. Parola nu poate fi schimbata.
63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
63 notice_account_lost_email_sent: Un e-mail cu instructiuni de a seta noua parola a fost trimisa.
64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
64 notice_account_activated: Contul a fost activat. Acum puteti intra in cont.
65 notice_successful_create: Creat cu succes.
65 notice_successful_create: Creat cu succes.
66 notice_successful_update: Modificare cu succes.
66 notice_successful_update: Modificare cu succes.
67 notice_successful_delete: Stergere cu succes.
67 notice_successful_delete: Stergere cu succes.
68 notice_successful_connection: Conectare cu succes.
68 notice_successful_connection: Conectare cu succes.
69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
69 notice_file_not_found: Pagina dorita nu exista sau nu mai este valabila.
70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
70 notice_locking_conflict: Informatiile au fost modificate de un alt utilizator.
71 notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository).
71 notice_scm_error: Articolul sau reviziunea nu exista in stoc (Repository).
72 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
72 notice_not_authorized: Nu aveti autorizatia sa accesati aceasta pagina.
73 notice_email_sent: Un e-mail a fost trimis la adresa %s
73 notice_email_sent: Un e-mail a fost trimis la adresa %s
74 notice_email_error: Eroare in trimiterea e-mailului (%s)
74 notice_email_error: Eroare in trimiterea e-mailului (%s)
75 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
75 notice_feeds_access_key_reseted: Parola de acces RSS a fost resetat.
76
76
77 mail_subject_lost_password: Parola clair.ro|PM
77 mail_subject_lost_password: Parola clair.ro|PM
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
78 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
79 mail_subject_register: Activare cont clair.ro|PM
79 mail_subject_register: Activare cont clair.ro|PM
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
80 mail_body_register: 'To activate your Redmine account, click on the following link:'
81
81
82 gui_validation_error: 1 eroare
82 gui_validation_error: 1 eroare
83 gui_validation_error_plural: %d erori
83 gui_validation_error_plural: %d erori
84
84
85 field_name: Nume
85 field_name: Nume
86 field_description: Descriere
86 field_description: Descriere
87 field_summary: Sumar
87 field_summary: Sumar
88 field_is_required: Obligatoriu
88 field_is_required: Obligatoriu
89 field_firstname: Nume
89 field_firstname: Nume
90 field_lastname: Prenume
90 field_lastname: Prenume
91 field_mail: Email
91 field_mail: Email
92 field_filename: Fisier
92 field_filename: Fisier
93 field_filesize: Marimea fisierului
93 field_filesize: Marimea fisierului
94 field_downloads: Download
94 field_downloads: Download
95 field_author: Autor
95 field_author: Autor
96 field_created_on: Creat
96 field_created_on: Creat
97 field_updated_on: Modificat
97 field_updated_on: Modificat
98 field_field_format: Format
98 field_field_format: Format
99 field_is_for_all: Pentru toate proiectele
99 field_is_for_all: Pentru toate proiectele
100 field_possible_values: Valori posibile
100 field_possible_values: Valori posibile
101 field_regexp: Expresie regulara
101 field_regexp: Expresie regulara
102 field_min_length: Lungime minima
102 field_min_length: Lungime minima
103 field_max_length: Lungime maxima
103 field_max_length: Lungime maxima
104 field_value: Valoare
104 field_value: Valoare
105 field_category: Categorie
105 field_category: Categorie
106 field_title: Titlu
106 field_title: Titlu
107 field_project: Proiect
107 field_project: Proiect
108 field_issue: Tichet
108 field_issue: Tichet
109 field_status: Statut
109 field_status: Statut
110 field_notes: Note
110 field_notes: Note
111 field_is_closed: Tichet rezolvat
111 field_is_closed: Tichet rezolvat
112 field_is_default: Statut de baza
112 field_is_default: Statut de baza
113 field_html_color: Culoare
113 field_html_color: Culoare
114 field_tracker: Tip tichet
114 field_tracker: Tip tichet
115 field_subject: Subiect
115 field_subject: Subiect
116 field_due_date: Data finalizarii
116 field_due_date: Data finalizarii
117 field_assigned_to: Atribuit pentru
117 field_assigned_to: Atribuit pentru
118 field_priority: Prioritate
118 field_priority: Prioritate
119 field_fixed_version: Versiune rezolvata
119 field_fixed_version: Versiune rezolvata
120 field_user: Utilizator
120 field_user: Utilizator
121 field_role: Rol
121 field_role: Rol
122 field_homepage: Pagina principala
122 field_homepage: Pagina principala
123 field_is_public: Public
123 field_is_public: Public
124 field_parent: Subproiect al
124 field_parent: Subproiect al
125 field_is_in_chlog: Tichetele sunt vizibile in changelog
125 field_is_in_chlog: Tichetele sunt vizibile in changelog
126 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
126 field_is_in_roadmap: Tichetele sunt vizibile in roadmap
127 field_login: Autentificare
127 field_login: Autentificare
128 field_mail_notification: Notificari prin e-mail
128 field_mail_notification: Notificari prin e-mail
129 field_admin: Administrator
129 field_admin: Administrator
130 field_last_login_on: Ultima conectare
130 field_last_login_on: Ultima conectare
131 field_language: Limba
131 field_language: Limba
132 field_effective_date: Data
132 field_effective_date: Data
133 field_password: Parola
133 field_password: Parola
134 field_new_password: Parola noua
134 field_new_password: Parola noua
135 field_password_confirmation: Confirmare
135 field_password_confirmation: Confirmare
136 field_version: Versiune
136 field_version: Versiune
137 field_type: Tip
137 field_type: Tip
138 field_host: Host
138 field_host: Host
139 field_port: Port
139 field_port: Port
140 field_account: Cont
140 field_account: Cont
141 field_base_dn: Base DN
141 field_base_dn: Base DN
142 field_attr_login: Atribut autentificare
142 field_attr_login: Atribut autentificare
143 field_attr_firstname: Atribut nume
143 field_attr_firstname: Atribut nume
144 field_attr_lastname: Atribut prenume
144 field_attr_lastname: Atribut prenume
145 field_attr_mail: Atribut e-mail
145 field_attr_mail: Atribut e-mail
146 field_onthefly: Creare utilizator on-the-fly (rapid)
146 field_onthefly: Creare utilizator on-the-fly (rapid)
147 field_start_date: Start
147 field_start_date: Start
148 field_done_ratio: %% rezolvat
148 field_done_ratio: %% rezolvat
149 field_auth_source: Mod de autentificare
149 field_auth_source: Mod de autentificare
150 field_hide_mail: Ascunde adresa de e-mail
150 field_hide_mail: Ascunde adresa de e-mail
151 field_comments: Comentariu
151 field_comments: Comentariu
152 field_url: URL
152 field_url: URL
153 field_start_page: Pagina de start
153 field_start_page: Pagina de start
154 field_subproject: Subproiect
154 field_subproject: Subproiect
155 field_hours: Ore
155 field_hours: Ore
156 field_activity: Activitate
156 field_activity: Activitate
157 field_spent_on: Data
157 field_spent_on: Data
158 field_identifier: Identificator
158 field_identifier: Identificator
159 field_is_filter: Folosit ca un filtru
159 field_is_filter: Folosit ca un filtru
160 field_issue_to_id: Articole similare
160 field_issue_to_id: Articole similare
161 field_delay: Intarziere
161 field_delay: Intarziere
162 field_assignable: La acest rol se poate atribui tichete
162 field_assignable: La acest rol se poate atribui tichete
163 field_redirect_existing_links: Redirectare linkuri existente
163 field_redirect_existing_links: Redirectare linkuri existente
164 field_estimated_hours: Timpul estimat
164 field_estimated_hours: Timpul estimat
165
165
166 setting_app_title: Titlul aplicatiei
166 setting_app_title: Titlul aplicatiei
167 setting_app_subtitle: Subtitlul aplicatiei
167 setting_app_subtitle: Subtitlul aplicatiei
168 setting_welcome_text: Textul de intampinare
168 setting_welcome_text: Textul de intampinare
169 setting_default_language: Limbajul
169 setting_default_language: Limbajul
170 setting_login_required: Autentificare obligatorie
170 setting_login_required: Autentificare obligatorie
171 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
171 setting_self_registration: Inregistrarea utilizatorilor pe cont propriu este permisa
172 setting_attachment_max_size: Lungimea maxima al attachmentului
172 setting_attachment_max_size: Lungimea maxima al attachmentului
173 setting_issues_export_limit: Limita de exportare a tichetelor
173 setting_issues_export_limit: Limita de exportare a tichetelor
174 setting_mail_from: Adresa de e-mail al emitatorului
174 setting_mail_from: Adresa de e-mail al emitatorului
175 setting_host_name: Numele hostului
175 setting_host_name: Numele hostului
176 setting_text_formatting: Formatarea textului
176 setting_text_formatting: Formatarea textului
177 setting_wiki_compression: Compresie istoric wiki
177 setting_wiki_compression: Compresie istoric wiki
178 setting_feeds_limit: Limita continut feed
178 setting_feeds_limit: Limita continut feed
179 setting_autofetch_changesets: Autofetch commits
179 setting_autofetch_changesets: Autofetch commits
180 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
180 setting_sys_api_enabled: Setare WS pentru managementul stocului (repository)
181 setting_commit_ref_keywords: Cuvinte cheie de referinta
181 setting_commit_ref_keywords: Cuvinte cheie de referinta
182 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
182 setting_commit_fix_keywords: Cuvinte cheie de rezolvare
183 setting_autologin: Autentificare automata
183 setting_autologin: Autentificare automata
184 setting_date_format: Formatul datelor
184 setting_date_format: Formatul datelor
185 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
185 setting_cross_project_issue_relations: Tichetele pot avea relatii intre diferite proiecte
186
186
187 label_user: Utilizator
187 label_user: Utilizator
188 label_user_plural: Utilizatori
188 label_user_plural: Utilizatori
189 label_user_new: Utilizator nou
189 label_user_new: Utilizator nou
190 label_project: Proiect
190 label_project: Proiect
191 label_project_new: Proiect nou
191 label_project_new: Proiect nou
192 label_project_plural: Proiecte
192 label_project_plural: Proiecte
193 label_project_all: Toate proiectele
193 label_project_all: Toate proiectele
194 label_project_latest: Ultimele proiecte
194 label_project_latest: Ultimele proiecte
195 label_issue: Tichet
195 label_issue: Tichet
196 label_issue_new: Tichet nou
196 label_issue_new: Tichet nou
197 label_issue_plural: Tichete
197 label_issue_plural: Tichete
198 label_issue_view_all: Vizualizare toate tichetele
198 label_issue_view_all: Vizualizare toate tichetele
199 label_document: Document
199 label_document: Document
200 label_document_new: Document nou
200 label_document_new: Document nou
201 label_document_plural: Documente
201 label_document_plural: Documente
202 label_role: Rol
202 label_role: Rol
203 label_role_plural: Roluri
203 label_role_plural: Roluri
204 label_role_new: Rol nou
204 label_role_new: Rol nou
205 label_role_and_permissions: Roluri si permisiuni
205 label_role_and_permissions: Roluri si permisiuni
206 label_member: Membru
206 label_member: Membru
207 label_member_new: Membru nou
207 label_member_new: Membru nou
208 label_member_plural: Membrii
208 label_member_plural: Membrii
209 label_tracker: Tip tichet
209 label_tracker: Tip tichet
210 label_tracker_plural: Tipuri de tichete
210 label_tracker_plural: Tipuri de tichete
211 label_tracker_new: Tip tichet nou
211 label_tracker_new: Tip tichet nou
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Statut tichet
213 label_issue_status: Statut tichet
214 label_issue_status_plural: Statut tichete
214 label_issue_status_plural: Statut tichete
215 label_issue_status_new: Statut nou
215 label_issue_status_new: Statut nou
216 label_issue_category: Categorie tichet
216 label_issue_category: Categorie tichet
217 label_issue_category_plural: Categorii tichete
217 label_issue_category_plural: Categorii tichete
218 label_issue_category_new: Categorie noua
218 label_issue_category_new: Categorie noua
219 label_custom_field: Camp personalizat
219 label_custom_field: Camp personalizat
220 label_custom_field_plural: Campuri personalizate
220 label_custom_field_plural: Campuri personalizate
221 label_custom_field_new: Camp personalizat nou
221 label_custom_field_new: Camp personalizat nou
222 label_enumerations: Enumeratii
222 label_enumerations: Enumeratii
223 label_enumeration_new: Valoare noua
223 label_enumeration_new: Valoare noua
224 label_information: Informatie
224 label_information: Informatie
225 label_information_plural: Informatii
225 label_information_plural: Informatii
226 label_please_login: Va rugam sa va autentificati
226 label_please_login: Va rugam sa va autentificati
227 label_register: Inregistrare
227 label_register: Inregistrare
228 label_password_lost: Parola pierduta
228 label_password_lost: Parola pierduta
229 label_home: Prima pagina
229 label_home: Prima pagina
230 label_my_page: Pagina mea
230 label_my_page: Pagina mea
231 label_my_account: Contul meu
231 label_my_account: Contul meu
232 label_my_projects: Proiectele mele
232 label_my_projects: Proiectele mele
233 label_administration: Administrare
233 label_administration: Administrare
234 label_login: Autentificare
234 label_login: Autentificare
235 label_logout: Iesire din cont
235 label_logout: Iesire din cont
236 label_help: Ajutor
236 label_help: Ajutor
237 label_reported_issues: Tichete raportate
237 label_reported_issues: Tichete raportate
238 label_assigned_to_me_issues: Tichete atribuite pentru mine
238 label_assigned_to_me_issues: Tichete atribuite pentru mine
239 label_last_login: Ultima conectare
239 label_last_login: Ultima conectare
240 label_last_updates: Ultima modificare
240 label_last_updates: Ultima modificare
241 label_last_updates_plural: ultimele %d modificari
241 label_last_updates_plural: ultimele %d modificari
242 label_registered_on: Inregistrat la
242 label_registered_on: Inregistrat la
243 label_activity: Activitate
243 label_activity: Activitate
244 label_new: Nou
244 label_new: Nou
245 label_logged_as: Inregistrat ca
245 label_logged_as: Inregistrat ca
246 label_environment: Mediu
246 label_environment: Mediu
247 label_authentication: Autentificare
247 label_authentication: Autentificare
248 label_auth_source: Modul de autentificare
248 label_auth_source: Modul de autentificare
249 label_auth_source_new: Mod de autentificare noua
249 label_auth_source_new: Mod de autentificare noua
250 label_auth_source_plural: Moduri de autentificare
250 label_auth_source_plural: Moduri de autentificare
251 label_subproject_plural: Subproiecte
251 label_subproject_plural: Subproiecte
252 label_min_max_length: Lungime min-max
252 label_min_max_length: Lungime min-max
253 label_list: Lista
253 label_list: Lista
254 label_date: Data
254 label_date: Data
255 label_integer: Numar intreg
255 label_integer: Numar intreg
256 label_boolean: Variabila logica
256 label_boolean: Variabila logica
257 label_string: Text
257 label_string: Text
258 label_text: text lung
258 label_text: text lung
259 label_attribute: Atribut
259 label_attribute: Atribut
260 label_attribute_plural: Attribute
260 label_attribute_plural: Attribute
261 label_download: %d Download
261 label_download: %d Download
262 label_download_plural: %d Downloads
262 label_download_plural: %d Downloads
263 label_no_data: Nu exista date de vizualizat
263 label_no_data: Nu exista date de vizualizat
264 label_change_status: Schimbare statut
264 label_change_status: Schimbare statut
265 label_history: Istoric
265 label_history: Istoric
266 label_attachment: Fisier
266 label_attachment: Fisier
267 label_attachment_new: Fisier nou
267 label_attachment_new: Fisier nou
268 label_attachment_delete: Stergere fisier
268 label_attachment_delete: Stergere fisier
269 label_attachment_plural: Fisiere
269 label_attachment_plural: Fisiere
270 label_report: Raport
270 label_report: Raport
271 label_report_plural: Rapoarte
271 label_report_plural: Rapoarte
272 label_news: Stiri
272 label_news: Stiri
273 label_news_new: Adauga stiri
273 label_news_new: Adauga stiri
274 label_news_plural: Stiri
274 label_news_plural: Stiri
275 label_news_latest: Ultimele noutati
275 label_news_latest: Ultimele noutati
276 label_news_view_all: Vizualizare stiri
276 label_news_view_all: Vizualizare stiri
277 label_change_log: Change log
277 label_change_log: Change log
278 label_settings: Setari
278 label_settings: Setari
279 label_overview: Sumar
279 label_overview: Sumar
280 label_version: Versiune
280 label_version: Versiune
281 label_version_new: Versiune noua
281 label_version_new: Versiune noua
282 label_version_plural: Versiuni
282 label_version_plural: Versiuni
283 label_confirmation: Confirmare
283 label_confirmation: Confirmare
284 label_export_to: Exportare in
284 label_export_to: Exportare in
285 label_read: Citire...
285 label_read: Citire...
286 label_public_projects: Proiecte publice
286 label_public_projects: Proiecte publice
287 label_open_issues: deschis
287 label_open_issues: deschis
288 label_open_issues_plural: deschise
288 label_open_issues_plural: deschise
289 label_closed_issues: rezolvat
289 label_closed_issues: rezolvat
290 label_closed_issues_plural: rezolvate
290 label_closed_issues_plural: rezolvate
291 label_total: Total
291 label_total: Total
292 label_permissions: Permisiuni
292 label_permissions: Permisiuni
293 label_current_status: Statut curent
293 label_current_status: Statut curent
294 label_new_statuses_allowed: Drepturi de a schimba statutul in
294 label_new_statuses_allowed: Drepturi de a schimba statutul in
295 label_all: toate
295 label_all: toate
296 label_none: n/a
296 label_none: n/a
297 label_next: Urmator
297 label_next: Urmator
298 label_previous: Anterior
298 label_previous: Anterior
299 label_used_by: Folosit de
299 label_used_by: Folosit de
300 label_details: Detalii
300 label_details: Detalii
301 label_add_note: Adauga o nota
301 label_add_note: Adauga o nota
302 label_per_page: Per pagina
302 label_per_page: Per pagina
303 label_calendar: Calendar
303 label_calendar: Calendar
304 label_months_from: luni incepand cu
304 label_months_from: luni incepand cu
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Internal
306 label_internal: Internal
307 label_last_changes: ultimele %d modificari
307 label_last_changes: ultimele %d modificari
308 label_change_view_all: Vizualizare toate modificarile
308 label_change_view_all: Vizualizare toate modificarile
309 label_personalize_page: Personalizeaza aceasta pagina
309 label_personalize_page: Personalizeaza aceasta pagina
310 label_comment: Comentariu
310 label_comment: Comentariu
311 label_comment_plural: Comentarii
311 label_comment_plural: Comentarii
312 label_comment_add: Adauga un comentariu
312 label_comment_add: Adauga un comentariu
313 label_comment_added: Comentariu adaugat
313 label_comment_added: Comentariu adaugat
314 label_comment_delete: Stergere comentarii
314 label_comment_delete: Stergere comentarii
315 label_query: Raport personalizat
315 label_query: Raport personalizat
316 label_query_plural: Rapoarte personalizate
316 label_query_plural: Rapoarte personalizate
317 label_query_new: Raport nou
317 label_query_new: Raport nou
318 label_filter_add: Adauga filtru
318 label_filter_add: Adauga filtru
319 label_filter_plural: Filtre
319 label_filter_plural: Filtre
320 label_equals: egal cu
320 label_equals: egal cu
321 label_not_equals: nu este egal cu
321 label_not_equals: nu este egal cu
322 label_in_less_than: este mai putin decat
322 label_in_less_than: este mai putin decat
323 label_in_more_than: este mai mult ca
323 label_in_more_than: este mai mult ca
324 label_in: in
324 label_in: in
325 label_today: azi
325 label_today: azi
326 label_this_week: saptamana curenta
326 label_this_week: saptamana curenta
327 label_less_than_ago: recent
327 label_less_than_ago: recent
328 label_more_than_ago: mai multe zile
328 label_more_than_ago: mai multe zile
329 label_ago: in ultimele zile
329 label_ago: in ultimele zile
330 label_contains: contine
330 label_contains: contine
331 label_not_contains: nu contine
331 label_not_contains: nu contine
332 label_day_plural: zile
332 label_day_plural: zile
333 label_repository: Stoc (Repository)
333 label_repository: Stoc (Repository)
334 label_browse: Navigare
334 label_browse: Navigare
335 label_modification: %d modificare
335 label_modification: %d modificare
336 label_modification_plural: %d modificari
336 label_modification_plural: %d modificari
337 label_revision: Revizie
337 label_revision: Revizie
338 label_revision_plural: Revizii
338 label_revision_plural: Revizii
339 label_added: adaugat
339 label_added: adaugat
340 label_modified: modificat
340 label_modified: modificat
341 label_deleted: sters
341 label_deleted: sters
342 label_latest_revision: Ultima revizie
342 label_latest_revision: Ultima revizie
343 label_latest_revision_plural: Ultimele revizii
343 label_latest_revision_plural: Ultimele revizii
344 label_view_revisions: Vizualizare revizii
344 label_view_revisions: Vizualizare revizii
345 label_max_size: Marime maxima
345 label_max_size: Marime maxima
346 label_on: 'din'
346 label_on: 'din'
347 label_sort_highest: Muta prima
347 label_sort_highest: Muta prima
348 label_sort_higher: Muta sus
348 label_sort_higher: Muta sus
349 label_sort_lower: Mota jos
349 label_sort_lower: Mota jos
350 label_sort_lowest: Mota ultima
350 label_sort_lowest: Mota ultima
351 label_roadmap: Harta activitatiilor
351 label_roadmap: Harta activitatiilor
352 label_roadmap_due_in: Rezolvat in
352 label_roadmap_due_in: Rezolvat in
353 label_roadmap_overdue: %s intarziere
353 label_roadmap_overdue: %s intarziere
354 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
354 label_roadmap_no_issues: Nu sunt tichete pentru aceasta reviziune
355 label_search: Cauta
355 label_search: Cauta
356 label_result_plural: Rezultate
356 label_result_plural: Rezultate
357 label_all_words: Toate cuvintele
357 label_all_words: Toate cuvintele
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Editare wiki
359 label_wiki_edit: Editare wiki
360 label_wiki_edit_plural: Editari wiki
360 label_wiki_edit_plural: Editari wiki
361 label_wiki_page: Pagina wiki
361 label_wiki_page: Pagina wiki
362 label_wiki_page_plural: Pagini wiki
362 label_wiki_page_plural: Pagini wiki
363 label_current_version: Versiunea curenta
363 label_current_version: Versiunea curenta
364 label_preview: Pre-vizualizare
364 label_preview: Pre-vizualizare
365 label_feed_plural: Feeduri
365 label_feed_plural: Feeduri
366 label_changes_details: Detaliile modificarilor
366 label_changes_details: Detaliile modificarilor
367 label_issue_tracking: Urmarire tichete
367 label_issue_tracking: Urmarire tichete
368 label_spent_time: Timp consumat
368 label_spent_time: Timp consumat
369 label_f_hour: %.2f ora
369 label_f_hour: %.2f ora
370 label_f_hour_plural: %.2f ore
370 label_f_hour_plural: %.2f ore
371 label_time_tracking: Urmarire timp
371 label_time_tracking: Urmarire timp
372 label_change_plural: Schimbari
372 label_change_plural: Schimbari
373 label_statistics: Statistici
373 label_statistics: Statistici
374 label_commits_per_month: Rezolvari lunare
374 label_commits_per_month: Rezolvari lunare
375 label_commits_per_author: Rezolvari
375 label_commits_per_author: Rezolvari
376 label_view_diff: Vizualizare diferente
376 label_view_diff: Vizualizare diferente
377 label_diff_inline: inline
377 label_diff_inline: inline
378 label_diff_side_by_side: side by side
378 label_diff_side_by_side: side by side
379 label_options: Optiuni
379 label_options: Optiuni
380 label_copy_workflow_from: Copiaza workflow de la
380 label_copy_workflow_from: Copiaza workflow de la
381 label_permissions_report: Raportul permisiunilor
381 label_permissions_report: Raportul permisiunilor
382 label_watched_issues: Tichete urmarite
382 label_watched_issues: Tichete urmarite
383 label_related_issues: Tichete similare
383 label_related_issues: Tichete similare
384 label_applied_status: Statut aplicat
384 label_applied_status: Statut aplicat
385 label_loading: Incarcare...
385 label_loading: Incarcare...
386 label_relation_new: Relatie noua
386 label_relation_new: Relatie noua
387 label_relation_delete: Stergere relatie
387 label_relation_delete: Stergere relatie
388 label_relates_to: relatat la
388 label_relates_to: relatat la
389 label_duplicates: duplicate
389 label_duplicates: duplicate
390 label_blocks: blocuri
390 label_blocks: blocuri
391 label_blocked_by: blocat de
391 label_blocked_by: blocat de
392 label_precedes: precedes
392 label_precedes: precedes
393 label_follows: follows
393 label_follows: follows
394 label_end_to_start: de la sfarsit la capat
394 label_end_to_start: de la sfarsit la capat
395 label_end_to_end: de la sfarsit la sfarsit
395 label_end_to_end: de la sfarsit la sfarsit
396 label_start_to_start: de la capat la capat
396 label_start_to_start: de la capat la capat
397 label_start_to_end: de la sfarsit la capat
397 label_start_to_end: de la sfarsit la capat
398 label_stay_logged_in: Ramane autenticat
398 label_stay_logged_in: Ramane autenticat
399 label_disabled: dezactivata
399 label_disabled: dezactivata
400 label_show_completed_versions: Vizualizare verziuni completate
400 label_show_completed_versions: Vizualizare verziuni completate
401 label_me: mine
401 label_me: mine
402 label_board: Forum
402 label_board: Forum
403 label_board_new: Forum nou
403 label_board_new: Forum nou
404 label_board_plural: Forumuri
404 label_board_plural: Forumuri
405 label_topic_plural: Subiecte
405 label_topic_plural: Subiecte
406 label_message_plural: Mesaje
406 label_message_plural: Mesaje
407 label_message_last: Ultimul mesaj
407 label_message_last: Ultimul mesaj
408 label_message_new: Mesaj nou
408 label_message_new: Mesaj nou
409 label_reply_plural: Raspunsuri
409 label_reply_plural: Raspunsuri
410 label_send_information: Trimite informatii despre cont pentru utilizator
410 label_send_information: Trimite informatii despre cont pentru utilizator
411 label_year: An
411 label_year: An
412 label_month: Luna
412 label_month: Luna
413 label_week: Saptamana
413 label_week: Saptamana
414 label_date_from: De la
414 label_date_from: De la
415 label_date_to: Pentru
415 label_date_to: Pentru
416 label_language_based: Bazat pe limbaj
416 label_language_based: Bazat pe limbaj
417 label_sort_by: Sortare dupa "%s"
417 label_sort_by: Sortare dupa "%s"
418 label_send_test_email: trimite un e-mail de test
418 label_send_test_email: trimite un e-mail de test
419 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
419 label_feeds_access_key_created_on: Parola de acces RSS creat cu %s mai devreme
420 label_module_plural: Module
420 label_module_plural: Module
421 label_added_time_by: Adaugat de %s %s mai devreme
421 label_added_time_by: Adaugat de %s %s mai devreme
422 label_updated_time: Modificat %s mai devreme
422 label_updated_time: Modificat %s mai devreme
423 label_jump_to_a_project: Alege un proiect ...
423 label_jump_to_a_project: Alege un proiect ...
424
424
425 button_login: Autentificare
425 button_login: Autentificare
426 button_submit: Trimite
426 button_submit: Trimite
427 button_save: Salveaza
427 button_save: Salveaza
428 button_check_all: Bifeaza toate
428 button_check_all: Bifeaza toate
429 button_uncheck_all: Reseteaza toate
429 button_uncheck_all: Reseteaza toate
430 button_delete: Sterge
430 button_delete: Sterge
431 button_create: Creare
431 button_create: Creare
432 button_test: Test
432 button_test: Test
433 button_edit: Editare
433 button_edit: Editare
434 button_add: Adauga
434 button_add: Adauga
435 button_change: Modificare
435 button_change: Modificare
436 button_apply: Aplicare
436 button_apply: Aplicare
437 button_clear: Resetare
437 button_clear: Resetare
438 button_lock: Inchide
438 button_lock: Inchide
439 button_unlock: Deschide
439 button_unlock: Deschide
440 button_download: Download
440 button_download: Download
441 button_list: Listare
441 button_list: Listare
442 button_view: Vizualizare
442 button_view: Vizualizare
443 button_move: Mutare
443 button_move: Mutare
444 button_back: Inapoi
444 button_back: Inapoi
445 button_cancel: Anulare
445 button_cancel: Anulare
446 button_activate: Activare
446 button_activate: Activare
447 button_sort: Sortare
447 button_sort: Sortare
448 button_log_time: Log time
448 button_log_time: Log time
449 button_rollback: Inapoi la aceasta versiune
449 button_rollback: Inapoi la aceasta versiune
450 button_watch: Urmarie
450 button_watch: Urmarie
451 button_unwatch: Terminare urmarire
451 button_unwatch: Terminare urmarire
452 button_reply: Raspuns
452 button_reply: Raspuns
453 button_archive: Arhivare
453 button_archive: Arhivare
454 button_unarchive: Dezarhivare
454 button_unarchive: Dezarhivare
455 button_reset: Reset
455 button_reset: Reset
456 button_rename: Redenumire
456 button_rename: Redenumire
457
457
458 status_active: activ
458 status_active: activ
459 status_registered: inregistrat
459 status_registered: inregistrat
460 status_locked: inchis
460 status_locked: inchis
461
461
462 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
462 text_select_mail_notifications: Selectare actiuni pentru care se va trimite notificari prin e-mail.
463 text_regexp_info: de exemplu ^[A-Z0-9]+$
463 text_regexp_info: de exemplu ^[A-Z0-9]+$
464 text_min_max_length_info: 0 inseamna fara restrictii
464 text_min_max_length_info: 0 inseamna fara restrictii
465 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
465 text_project_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest proiect si toate datele aferente ?
466 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
466 text_workflow_edit: Selecteaza un rol si un tip tichet pentru a edita acest workflow
467 text_are_you_sure: Sunteti sigur ?
467 text_are_you_sure: Sunteti sigur ?
468 text_journal_changed: modificat de la %s la %s
468 text_journal_changed: modificat de la %s la %s
469 text_journal_set_to: setat la %s
469 text_journal_set_to: setat la %s
470 text_journal_deleted: sters
470 text_journal_deleted: sters
471 text_tip_task_begin_day: activitate care incepe azi
471 text_tip_task_begin_day: activitate care incepe azi
472 text_tip_task_end_day: activitate care se termina azi
472 text_tip_task_end_day: activitate care se termina azi
473 text_tip_task_begin_end_day: activitate care incepe si se termina azi
473 text_tip_task_begin_end_day: activitate care incepe si se termina azi
474 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
474 text_project_identifier_info: 'Se poate folosi caracterele a-z si cifrele.<br />Odata salvat identificatorul nu poate fi modificat.'
475 text_caracters_maximum: maximum %d caractere.
475 text_caracters_maximum: maximum %d caractere.
476 text_length_between: Lungimea intre %d si %d caractere.
476 text_length_between: Lungimea intre %d si %d caractere.
477 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
477 text_tracker_no_workflow: Nu este definit nici un workflow pentru acest tip de tichet
478 text_unallowed_characters: Caractere nepermise
478 text_unallowed_characters: Caractere nepermise
479 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
479 text_comma_separated: Se poate folosi valori multiple (separate de virgula).
480 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
480 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
481 text_issue_added: Tichetul %s a fost raportat.
481 text_issue_added: Tichetul %s a fost raportat.
482 text_issue_updated: tichetul %s a fost modificat.
482 text_issue_updated: tichetul %s a fost modificat.
483 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
483 text_wiki_destroy_confirmation: Sunteti sigur ca vreti sa stergeti acest wiki si continutul ei ?
484 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
484 text_issue_category_destroy_question: Cateva tichete (%d) apartin acestei categorii. Cum vreti sa procedati ?
485 text_issue_category_destroy_assignments: Remove category assignments
485 text_issue_category_destroy_assignments: Remove category assignments
486 text_issue_category_reassign_to: Reassing issues to this category
486 text_issue_category_reassign_to: Reassing issues to this category
487
487
488 default_role_manager: Manager
488 default_role_manager: Manager
489 default_role_developper: Programator
489 default_role_developper: Programator
490 default_role_reporter: Creator rapoarte
490 default_role_reporter: Creator rapoarte
491 default_tracker_bug: Defect
491 default_tracker_bug: Defect
492 default_tracker_feature: Functionalitate
492 default_tracker_feature: Functionalitate
493 default_tracker_support: Suport
493 default_tracker_support: Suport
494 default_issue_status_new: Nou
494 default_issue_status_new: Nou
495 default_issue_status_assigned: Atribuit
495 default_issue_status_assigned: Atribuit
496 default_issue_status_resolved: Rezolvat
496 default_issue_status_resolved: Rezolvat
497 default_issue_status_feedback: Feedback
497 default_issue_status_feedback: Feedback
498 default_issue_status_closed: Rezolvat
498 default_issue_status_closed: Rezolvat
499 default_issue_status_rejected: Respins
499 default_issue_status_rejected: Respins
500 default_doc_category_user: Documentatie
500 default_doc_category_user: Documentatie
501 default_doc_category_tech: Documentatie tehnica
501 default_doc_category_tech: Documentatie tehnica
502 default_priority_low: Redusa
502 default_priority_low: Redusa
503 default_priority_normal: Normala
503 default_priority_normal: Normala
504 default_priority_high: Ridicata
504 default_priority_high: Ridicata
505 default_priority_urgent: Urgenta
505 default_priority_urgent: Urgenta
506 default_priority_immediate: Imediata
506 default_priority_immediate: Imediata
507 default_activity_design: Design
507 default_activity_design: Design
508 default_activity_development: Programare
508 default_activity_development: Programare
509
509
510 enumeration_issue_priorities: Prioritati tichet
510 enumeration_issue_priorities: Prioritati tichet
511 enumeration_doc_categories: Categorii documente
511 enumeration_doc_categories: Categorii documente
512 enumeration_activities: Activitati (urmarite in timp)
512 enumeration_activities: Activitati (urmarite in timp)
513 label_index_by_date: Index by date
513 label_index_by_date: Index by date
514 label_index_by_title: Index by title
514 label_index_by_title: Index by title
515 label_file_plural: Files
515 label_file_plural: Files
516 label_changeset_plural: Changesets
516 label_changeset_plural: Changesets
517 field_column_names: Columns
517 field_column_names: Columns
518 label_default_columns: Default columns
518 label_default_columns: Default columns
519 setting_issue_list_default_columns: Default columns displayed on the issue list
519 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_repositories_encodings: Repositories encodings
520 setting_repositories_encodings: Repositories encodings
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
521 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 label_bulk_edit_selected_issues: Bulk edit selected issues
522 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_no_change_option: (No change)
523 label_no_change_option: (No change)
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
524 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 label_theme: Theme
525 label_theme: Theme
526 label_default: Default
526 label_default: Default
527 label_search_titles_only: Search titles only
527 label_search_titles_only: Search titles only
528 label_nobody: nobody
528 label_nobody: nobody
529 button_change_password: Change password
530 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
531 label_user_mail_option_selected: "For any event on the selected projects only..."
532 label_user_mail_option_all: "For any event on all my projects"
533 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,529 +1,534
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
4 actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dagar
9 actionview_datehelper_time_in_words_day_plural: %d dagar
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
10 actionview_datehelper_time_in_words_hour_about: cirka en timme
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
12 actionview_datehelper_time_in_words_hour_about_single: cirka en timme
13 actionview_datehelper_time_in_words_minute: 1 minut
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: en halv minute
14 actionview_datehelper_time_in_words_minute_half: en halv minute
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre än en minut
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
16 actionview_datehelper_time_in_words_minute_plural: %d minuter
17 actionview_datehelper_time_in_words_minute_single: 1 minut
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
18 actionview_datehelper_time_in_words_second_less_than: mindre än en sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder
20 actionview_instancetag_blank_option: Var god välj
20 actionview_instancetag_blank_option: Var god välj
21
21
22 activerecord_error_inclusion: finns inte i listan
22 activerecord_error_inclusion: finns inte i listan
23 activerecord_error_exclusion: är reserverad
23 activerecord_error_exclusion: är reserverad
24 activerecord_error_invalid: är ogiltig
24 activerecord_error_invalid: är ogiltig
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
25 activerecord_error_confirmation: överränsstämmer inte med bekräftelsen
26 activerecord_error_accepted: måste accepteras
26 activerecord_error_accepted: måste accepteras
27 activerecord_error_empty: får inte vara tom
27 activerecord_error_empty: får inte vara tom
28 activerecord_error_blank: får inte vara tom
28 activerecord_error_blank: får inte vara tom
29 activerecord_error_too_long: är för lång
29 activerecord_error_too_long: är för lång
30 activerecord_error_too_short: är för kort
30 activerecord_error_too_short: är för kort
31 activerecord_error_wrong_length: har fel längd
31 activerecord_error_wrong_length: har fel längd
32 activerecord_error_taken: har redan blivit tagen
32 activerecord_error_taken: har redan blivit tagen
33 activerecord_error_not_a_number: är inte ett nummer
33 activerecord_error_not_a_number: är inte ett nummer
34 activerecord_error_not_a_date: är inte ett korrekt datum
34 activerecord_error_not_a_date: är inte ett korrekt datum
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
35 activerecord_error_greater_than_start_date: måste vara senare än startdatumet
36 activerecord_error_not_same_project: doesn't belong to the same project
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
38
39 general_fmt_age: %d år
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%Y-%%m-%%d
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
42 general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'Nej'
45 general_text_No: 'Nej'
46 general_text_Yes: 'Ja'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nej'
47 general_text_no: 'nej'
48 general_text_yes: 'ja'
48 general_text_yes: 'ja'
49 general_lang_name: 'Svenska'
49 general_lang_name: 'Svenska'
50 general_csv_separator: ','
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
53 general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag
54 general_first_day_of_week: '7'
54 general_first_day_of_week: '7'
55
55
56 notice_account_updated: Kontot har uppdaterats
56 notice_account_updated: Kontot har uppdaterats
57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
57 notice_account_invalid_creditentials: Fel användarnamn eller lösenord
58 notice_account_password_updated: Lösenordet har uppdaterats
58 notice_account_password_updated: Lösenordet har uppdaterats
59 notice_account_wrong_password: Fel lösenord
59 notice_account_wrong_password: Fel lösenord
60 notice_account_register_done: Kontot har skapats.
60 notice_account_register_done: Kontot har skapats.
61 notice_account_unknown_email: Okäns användare.
61 notice_account_unknown_email: Okäns användare.
62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
62 notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord.
63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
63 notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig.
64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
64 notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in.
65 notice_successful_create: Lyckat skapande.
65 notice_successful_create: Lyckat skapande.
66 notice_successful_update: Lyckad uppdatering.
66 notice_successful_update: Lyckad uppdatering.
67 notice_successful_delete: Lyckad borttagning.
67 notice_successful_delete: Lyckad borttagning.
68 notice_successful_connection: Lyckad uppkoppling.
68 notice_successful_connection: Lyckad uppkoppling.
69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
69 notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen.
70 notice_locking_conflict: Data har uppdaterats av en annan användare.
70 notice_locking_conflict: Data har uppdaterats av en annan användare.
71 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
71 notice_scm_error: Inlägg och/eller revision finns inte i repositoriet.
72 notice_not_authorized: You are not authorized to access this page.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
75 notice_feeds_access_key_reseted: Your RSS access key was reseted.
76
76
77 mail_subject_lost_password: Ditt redMine lösenord
77 mail_subject_lost_password: Ditt redMine lösenord
78 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
78 mail_body_lost_password: 'För att ändra lösenord, följ denna länk:'
79 mail_subject_register: redMine kontoaktivering
79 mail_subject_register: redMine kontoaktivering
80 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
80 mail_body_register: 'För att aktivera ditt Redmine-konto, använd följande länk.'
81
81
82 gui_validation_error: 1 fel
82 gui_validation_error: 1 fel
83 gui_validation_error_plural: %d fel
83 gui_validation_error_plural: %d fel
84
84
85 field_name: Namn
85 field_name: Namn
86 field_description: Beskrivning
86 field_description: Beskrivning
87 field_summary: Sammanfattning
87 field_summary: Sammanfattning
88 field_is_required: Obligatorisk
88 field_is_required: Obligatorisk
89 field_firstname: Förnamn
89 field_firstname: Förnamn
90 field_lastname: Efternamn
90 field_lastname: Efternamn
91 field_mail: Email
91 field_mail: Email
92 field_filename: Fil
92 field_filename: Fil
93 field_filesize: Storlek
93 field_filesize: Storlek
94 field_downloads: Nerladdningar
94 field_downloads: Nerladdningar
95 field_author: Författare
95 field_author: Författare
96 field_created_on: Skapad
96 field_created_on: Skapad
97 field_updated_on: Uppdaterad
97 field_updated_on: Uppdaterad
98 field_field_format: Format
98 field_field_format: Format
99 field_is_for_all: För alla projekt
99 field_is_for_all: För alla projekt
100 field_possible_values: Möjliga värden
100 field_possible_values: Möjliga värden
101 field_regexp: Regular expression
101 field_regexp: Regular expression
102 field_min_length: Minimilängd
102 field_min_length: Minimilängd
103 field_max_length: Maximumlängd
103 field_max_length: Maximumlängd
104 field_value: Värde
104 field_value: Värde
105 field_category: Kategori
105 field_category: Kategori
106 field_title: Titel
106 field_title: Titel
107 field_project: Projekt
107 field_project: Projekt
108 field_issue: Brist
108 field_issue: Brist
109 field_status: Status
109 field_status: Status
110 field_notes: Anteckningar
110 field_notes: Anteckningar
111 field_is_closed: Brist stängd
111 field_is_closed: Brist stängd
112 field_is_default: Defaultstatus
112 field_is_default: Defaultstatus
113 field_html_color: Färg
113 field_html_color: Färg
114 field_tracker: Tracker
114 field_tracker: Tracker
115 field_subject: Rubrik
115 field_subject: Rubrik
116 field_due_date: Färdigdatum
116 field_due_date: Färdigdatum
117 field_assigned_to: Tilldelad
117 field_assigned_to: Tilldelad
118 field_priority: Prioritet
118 field_priority: Prioritet
119 field_fixed_version: Fixed version
119 field_fixed_version: Fixed version
120 field_user: Användare
120 field_user: Användare
121 field_role: Roll
121 field_role: Roll
122 field_homepage: Hemsida
122 field_homepage: Hemsida
123 field_is_public: Offentlig
123 field_is_public: Offentlig
124 field_parent: Delprojekt av
124 field_parent: Delprojekt av
125 field_is_in_chlog: Brister visade i ändringslogg
125 field_is_in_chlog: Brister visade i ändringslogg
126 field_is_in_roadmap: Bsiter visade i roadmap
126 field_is_in_roadmap: Bsiter visade i roadmap
127 field_login: Inloggning
127 field_login: Inloggning
128 field_mail_notification: Emailnotifieringar
128 field_mail_notification: Emailnotifieringar
129 field_admin: Administratör
129 field_admin: Administratör
130 field_last_login_on: Senaste inloggning
130 field_last_login_on: Senaste inloggning
131 field_language: Språk
131 field_language: Språk
132 field_effective_date: Datum
132 field_effective_date: Datum
133 field_password: Lösenord
133 field_password: Lösenord
134 field_new_password: Nytt lösenord
134 field_new_password: Nytt lösenord
135 field_password_confirmation: Bekräfta
135 field_password_confirmation: Bekräfta
136 field_version: Version
136 field_version: Version
137 field_type: Typ
137 field_type: Typ
138 field_host: Värddator
138 field_host: Värddator
139 field_port: Port
139 field_port: Port
140 field_account: Konto
140 field_account: Konto
141 field_base_dn: Bas DN
141 field_base_dn: Bas DN
142 field_attr_login: Inloggningsattribut
142 field_attr_login: Inloggningsattribut
143 field_attr_firstname: Förnamnattribut
143 field_attr_firstname: Förnamnattribut
144 field_attr_lastname: Efternamnattribut
144 field_attr_lastname: Efternamnattribut
145 field_attr_mail: Emailattribut
145 field_attr_mail: Emailattribut
146 field_onthefly: On-the-fly användarskapning
146 field_onthefly: On-the-fly användarskapning
147 field_start_date: Start
147 field_start_date: Start
148 field_done_ratio: %% Done
148 field_done_ratio: %% Done
149 field_auth_source: Authentikeringsläge
149 field_auth_source: Authentikeringsläge
150 field_hide_mail: Dölj min emailadress
150 field_hide_mail: Dölj min emailadress
151 field_comment: Kommentar
151 field_comment: Kommentar
152 field_url: URL
152 field_url: URL
153 field_start_page: Startsida
153 field_start_page: Startsida
154 field_subproject: Delprojekt
154 field_subproject: Delprojekt
155 field_hours: Timmar
155 field_hours: Timmar
156 field_activity: Aktivitet
156 field_activity: Aktivitet
157 field_spent_on: Datum
157 field_spent_on: Datum
158 field_identifier: Identifierare
158 field_identifier: Identifierare
159 field_is_filter: Used as a filter
159 field_is_filter: Used as a filter
160 field_issue_to_id: Related issue
160 field_issue_to_id: Related issue
161 field_delay: Delay
161 field_delay: Delay
162 field_assignable: Issues can be assigned to this role
162 field_assignable: Issues can be assigned to this role
163 field_redirect_existing_links: Redirect existing links
163 field_redirect_existing_links: Redirect existing links
164 field_estimated_hours: Estimated time
164 field_estimated_hours: Estimated time
165
165
166 setting_app_title: Applikationstitel
166 setting_app_title: Applikationstitel
167 setting_app_subtitle: Applicationsunderrubrik
167 setting_app_subtitle: Applicationsunderrubrik
168 setting_welcome_text: Välkommentext
168 setting_welcome_text: Välkommentext
169 setting_default_language: Default språk
169 setting_default_language: Default språk
170 setting_login_required: Authent. obligatoriskt
170 setting_login_required: Authent. obligatoriskt
171 setting_self_registration: Självregistrering påslaget
171 setting_self_registration: Självregistrering påslaget
172 setting_attachment_max_size: Bifogad maxstorlek
172 setting_attachment_max_size: Bifogad maxstorlek
173 setting_issues_export_limit: Brist exportgräns
173 setting_issues_export_limit: Brist exportgräns
174 setting_mail_from: Emailavsändare
174 setting_mail_from: Emailavsändare
175 setting_host_name: Värddatornamn
175 setting_host_name: Värddatornamn
176 setting_text_formatting: Textformattering
176 setting_text_formatting: Textformattering
177 setting_wiki_compression: Wiki historiekomprimering
177 setting_wiki_compression: Wiki historiekomprimering
178 setting_feeds_limit: Feed innehållsgräns
178 setting_feeds_limit: Feed innehållsgräns
179 setting_autofetch_changesets: Automatisk hämtning av commits
179 setting_autofetch_changesets: Automatisk hämtning av commits
180 setting_sys_api_enabled: Aktivera WS för repository management
180 setting_sys_api_enabled: Aktivera WS för repository management
181 setting_commit_ref_keywords: Referencing keywords
181 setting_commit_ref_keywords: Referencing keywords
182 setting_commit_fix_keywords: Fixing keywords
182 setting_commit_fix_keywords: Fixing keywords
183 setting_autologin: Autologin
183 setting_autologin: Autologin
184 setting_date_format: Date format
184 setting_date_format: Date format
185 setting_cross_project_issue_relations: Allow cross-project issue relations
185 setting_cross_project_issue_relations: Allow cross-project issue relations
186
186
187 label_user: Användare
187 label_user: Användare
188 label_user_plural: Användare
188 label_user_plural: Användare
189 label_user_new: Ny användare
189 label_user_new: Ny användare
190 label_project: Projekt
190 label_project: Projekt
191 label_project_new: Nytt projekt
191 label_project_new: Nytt projekt
192 label_project_plural: Projekt
192 label_project_plural: Projekt
193 label_project_all: All Projects
193 label_project_all: All Projects
194 label_project_latest: Senaste projekt
194 label_project_latest: Senaste projekt
195 label_issue: Brist
195 label_issue: Brist
196 label_issue_new: Ny brist
196 label_issue_new: Ny brist
197 label_issue_plural: Brister
197 label_issue_plural: Brister
198 label_issue_view_all: Visa alla brister
198 label_issue_view_all: Visa alla brister
199 label_document: Dokument
199 label_document: Dokument
200 label_document_new: Nytt dokument
200 label_document_new: Nytt dokument
201 label_document_plural: Dokument
201 label_document_plural: Dokument
202 label_role: Roll
202 label_role: Roll
203 label_role_plural: Roller
203 label_role_plural: Roller
204 label_role_new: Ny roll
204 label_role_new: Ny roll
205 label_role_and_permissions: Roller och rättigheter
205 label_role_and_permissions: Roller och rättigheter
206 label_member: Medlem
206 label_member: Medlem
207 label_member_new: Ny medlem
207 label_member_new: Ny medlem
208 label_member_plural: Medlemmar
208 label_member_plural: Medlemmar
209 label_tracker: Tracker
209 label_tracker: Tracker
210 label_tracker_plural: Trackers
210 label_tracker_plural: Trackers
211 label_tracker_new: Ny tracker
211 label_tracker_new: Ny tracker
212 label_workflow: Workflow
212 label_workflow: Workflow
213 label_issue_status: Briststatus
213 label_issue_status: Briststatus
214 label_issue_status_plural: Briststatusar
214 label_issue_status_plural: Briststatusar
215 label_issue_status_new: Ny status
215 label_issue_status_new: Ny status
216 label_issue_category: Bristkategori
216 label_issue_category: Bristkategori
217 label_issue_category_plural: Bristkategorier
217 label_issue_category_plural: Bristkategorier
218 label_issue_category_new: Ny kategori
218 label_issue_category_new: Ny kategori
219 label_custom_field: Användardefinerat fält
219 label_custom_field: Användardefinerat fält
220 label_custom_field_plural: Användardefinerade fält
220 label_custom_field_plural: Användardefinerade fält
221 label_custom_field_new: Nytt Användardefinerat fält
221 label_custom_field_new: Nytt Användardefinerat fält
222 label_enumerations: Uppräkningar
222 label_enumerations: Uppräkningar
223 label_enumeration_new: Nytt värde
223 label_enumeration_new: Nytt värde
224 label_information: Information
224 label_information: Information
225 label_information_plural: Information
225 label_information_plural: Information
226 label_please_login: Var god logga in
226 label_please_login: Var god logga in
227 label_register: Registrera
227 label_register: Registrera
228 label_password_lost: Glömt lösenord
228 label_password_lost: Glömt lösenord
229 label_home: Hem
229 label_home: Hem
230 label_my_page: Min sida
230 label_my_page: Min sida
231 label_my_account: Mitt konto
231 label_my_account: Mitt konto
232 label_my_projects: Mina projekt
232 label_my_projects: Mina projekt
233 label_administration: Administration
233 label_administration: Administration
234 label_login: Logga in
234 label_login: Logga in
235 label_logout: Logga ut
235 label_logout: Logga ut
236 label_help: Hjälp
236 label_help: Hjälp
237 label_reported_issues: Rapporterade brister
237 label_reported_issues: Rapporterade brister
238 label_assigned_to_me_issues: Brister tilldelade mig
238 label_assigned_to_me_issues: Brister tilldelade mig
239 label_last_login: Senaste inloggning
239 label_last_login: Senaste inloggning
240 label_last_updates: Senast uppdaterad
240 label_last_updates: Senast uppdaterad
241 label_last_updates_plural: %d senaste uppdateringarna
241 label_last_updates_plural: %d senaste uppdateringarna
242 label_registered_on: Registrerad
242 label_registered_on: Registrerad
243 label_activity: Aktivitet
243 label_activity: Aktivitet
244 label_new: Ny
244 label_new: Ny
245 label_logged_as: Loggad som
245 label_logged_as: Loggad som
246 label_environment: Miljö
246 label_environment: Miljö
247 label_authentication: Authentikering
247 label_authentication: Authentikering
248 label_auth_source: Authentikeringsläge
248 label_auth_source: Authentikeringsläge
249 label_auth_source_new: Nytt authentikeringsläge
249 label_auth_source_new: Nytt authentikeringsläge
250 label_auth_source_plural: Authentikeringslägen
250 label_auth_source_plural: Authentikeringslägen
251 label_subproject_plural: Delprojekt
251 label_subproject_plural: Delprojekt
252 label_min_max_length: Min - Max längd
252 label_min_max_length: Min - Max längd
253 label_list: Lista
253 label_list: Lista
254 label_date: Datum
254 label_date: Datum
255 label_integer: Heltal
255 label_integer: Heltal
256 label_boolean: Boolean
256 label_boolean: Boolean
257 label_string: Text
257 label_string: Text
258 label_text: Long text
258 label_text: Long text
259 label_attribute: Attribut
259 label_attribute: Attribut
260 label_attribute_plural: Attribut
260 label_attribute_plural: Attribut
261 label_download: %d Nerladdning
261 label_download: %d Nerladdning
262 label_download_plural: %d Nerladdningar
262 label_download_plural: %d Nerladdningar
263 label_no_data: Ingen data att visa
263 label_no_data: Ingen data att visa
264 label_change_status: Ändra status
264 label_change_status: Ändra status
265 label_history: Historia
265 label_history: Historia
266 label_attachment: Fil
266 label_attachment: Fil
267 label_attachment_new: Ny fil
267 label_attachment_new: Ny fil
268 label_attachment_delete: Ta bort fil
268 label_attachment_delete: Ta bort fil
269 label_attachment_plural: Filer
269 label_attachment_plural: Filer
270 label_report: Rapport
270 label_report: Rapport
271 label_report_plural: Rapporter
271 label_report_plural: Rapporter
272 label_news: Nyhet
272 label_news: Nyhet
273 label_news_new: Lägg till nyhet
273 label_news_new: Lägg till nyhet
274 label_news_plural: Nyheter
274 label_news_plural: Nyheter
275 label_news_latest: Senaste neheten
275 label_news_latest: Senaste neheten
276 label_news_view_all: Visa alla nyheter
276 label_news_view_all: Visa alla nyheter
277 label_change_log: Ändringslogg
277 label_change_log: Ändringslogg
278 label_settings: Inställningar
278 label_settings: Inställningar
279 label_overview: Överblick
279 label_overview: Överblick
280 label_version: Version
280 label_version: Version
281 label_version_new: Ny version
281 label_version_new: Ny version
282 label_version_plural: Versioner
282 label_version_plural: Versioner
283 label_confirmation: Bekräftelse
283 label_confirmation: Bekräftelse
284 label_export_to: Exportera till
284 label_export_to: Exportera till
285 label_read: Läs...
285 label_read: Läs...
286 label_public_projects: Offentligt projekt
286 label_public_projects: Offentligt projekt
287 label_open_issues: öppen
287 label_open_issues: öppen
288 label_open_issues_plural: öppna
288 label_open_issues_plural: öppna
289 label_closed_issues: stängd
289 label_closed_issues: stängd
290 label_closed_issues_plural: stängda
290 label_closed_issues_plural: stängda
291 label_total: Total
291 label_total: Total
292 label_permissions: Rättigheter
292 label_permissions: Rättigheter
293 label_current_status: Nuvarande status
293 label_current_status: Nuvarande status
294 label_new_statuses_allowed: Nya statusar tillåtna
294 label_new_statuses_allowed: Nya statusar tillåtna
295 label_all: alla
295 label_all: alla
296 label_none: inga
296 label_none: inga
297 label_next: Nästa
297 label_next: Nästa
298 label_previous: Föregående
298 label_previous: Föregående
299 label_used_by: Använd av
299 label_used_by: Använd av
300 label_details: Detaljer
300 label_details: Detaljer
301 label_add_note: Lägg till anteckning
301 label_add_note: Lägg till anteckning
302 label_per_page: Per sida
302 label_per_page: Per sida
303 label_calendar: Kalender
303 label_calendar: Kalender
304 label_months_from: månader från
304 label_months_from: månader från
305 label_gantt: Gantt
305 label_gantt: Gantt
306 label_internal: Intern
306 label_internal: Intern
307 label_last_changes: senaste %d ändringar
307 label_last_changes: senaste %d ändringar
308 label_change_view_all: Visa alla ändringar
308 label_change_view_all: Visa alla ändringar
309 label_personalize_page: Anpassa denna sida
309 label_personalize_page: Anpassa denna sida
310 label_comment: Kommentar
310 label_comment: Kommentar
311 label_comment_plural: Kommentarer
311 label_comment_plural: Kommentarer
312 label_comment_add: Lägg till kommentar
312 label_comment_add: Lägg till kommentar
313 label_comment_added: Kommentar tillagd
313 label_comment_added: Kommentar tillagd
314 label_comment_delete: Ta bort kommentar
314 label_comment_delete: Ta bort kommentar
315 label_query: Användardefinerad fråga
315 label_query: Användardefinerad fråga
316 label_query_plural: Användardefinerade frågor
316 label_query_plural: Användardefinerade frågor
317 label_query_new: Ny fråga
317 label_query_new: Ny fråga
318 label_filter_add: Lägg till filter
318 label_filter_add: Lägg till filter
319 label_filter_plural: Filter
319 label_filter_plural: Filter
320 label_equals: är
320 label_equals: är
321 label_not_equals: är inte
321 label_not_equals: är inte
322 label_in_less_than: i mindre än
322 label_in_less_than: i mindre än
323 label_in_more_than: i mer än
323 label_in_more_than: i mer än
324 label_in: i
324 label_in: i
325 label_today: idag
325 label_today: idag
326 label_this_week: this week
326 label_this_week: this week
327 label_less_than_ago: mindre än dagar sedan
327 label_less_than_ago: mindre än dagar sedan
328 label_more_than_ago: mer än dagar sedan
328 label_more_than_ago: mer än dagar sedan
329 label_ago: dagar sedan
329 label_ago: dagar sedan
330 label_contains: innehåller
330 label_contains: innehåller
331 label_not_contains: innehåller inte
331 label_not_contains: innehåller inte
332 label_day_plural: dagar
332 label_day_plural: dagar
333 label_repository: Repositorie
333 label_repository: Repositorie
334 label_browse: Bläddra
334 label_browse: Bläddra
335 label_modification: %d ändring
335 label_modification: %d ändring
336 label_modification_plural: %d ändringar
336 label_modification_plural: %d ändringar
337 label_revision: Revision
337 label_revision: Revision
338 label_revision_plural: Revisioner
338 label_revision_plural: Revisioner
339 label_added: tillagd
339 label_added: tillagd
340 label_modified: modifierad
340 label_modified: modifierad
341 label_deleted: borttagen
341 label_deleted: borttagen
342 label_latest_revision: Senaste revisionen
342 label_latest_revision: Senaste revisionen
343 label_latest_revision_plural: Senaste revisionerna
343 label_latest_revision_plural: Senaste revisionerna
344 label_view_revisions: Visa revisioner
344 label_view_revisions: Visa revisioner
345 label_max_size: Maximumstorlek
345 label_max_size: Maximumstorlek
346 label_on: 'på'
346 label_on: 'på'
347 label_sort_highest: Flytta till top
347 label_sort_highest: Flytta till top
348 label_sort_higher: Flytta up
348 label_sort_higher: Flytta up
349 label_sort_lower: Flytta ner
349 label_sort_lower: Flytta ner
350 label_sort_lowest: Flytta till botten
350 label_sort_lowest: Flytta till botten
351 label_roadmap: Roadmap
351 label_roadmap: Roadmap
352 label_roadmap_due_in: Färdig om
352 label_roadmap_due_in: Färdig om
353 label_roadmap_overdue: %s late
353 label_roadmap_overdue: %s late
354 label_roadmap_no_issues: Inga brister för denna version
354 label_roadmap_no_issues: Inga brister för denna version
355 label_search: Sök
355 label_search: Sök
356 label_result_plural: Resultat
356 label_result_plural: Resultat
357 label_all_words: Alla ord
357 label_all_words: Alla ord
358 label_wiki: Wiki
358 label_wiki: Wiki
359 label_wiki_edit: Wiki editera
359 label_wiki_edit: Wiki editera
360 label_wiki_edit_plural: Wiki editeringar
360 label_wiki_edit_plural: Wiki editeringar
361 label_wiki_page: Wiki page
361 label_wiki_page: Wiki page
362 label_wiki_page_plural: Wiki pages
362 label_wiki_page_plural: Wiki pages
363 label_index_by_title: Index by title
363 label_index_by_title: Index by title
364 label_index_by_date: Index by date
364 label_index_by_date: Index by date
365 label_current_version: Nuvarande version
365 label_current_version: Nuvarande version
366 label_preview: Preview
366 label_preview: Preview
367 label_feed_plural: Feeder
367 label_feed_plural: Feeder
368 label_changes_details: Detaljer om alla ändringar
368 label_changes_details: Detaljer om alla ändringar
369 label_issue_tracking: Bristspårning
369 label_issue_tracking: Bristspårning
370 label_spent_time: Spenderad tid
370 label_spent_time: Spenderad tid
371 label_f_hour: %.2f timmar
371 label_f_hour: %.2f timmar
372 label_f_hour_plural: %.2f timmar
372 label_f_hour_plural: %.2f timmar
373 label_time_tracking: Tidsspårning
373 label_time_tracking: Tidsspårning
374 label_change_plural: Ändringar
374 label_change_plural: Ändringar
375 label_statistics: Statistik
375 label_statistics: Statistik
376 label_commits_per_month: Commit per månad
376 label_commits_per_month: Commit per månad
377 label_commits_per_author: Commit per författare
377 label_commits_per_author: Commit per författare
378 label_view_diff: Visa skillnader
378 label_view_diff: Visa skillnader
379 label_diff_inline: inline
379 label_diff_inline: inline
380 label_diff_side_by_side: sida vid sida
380 label_diff_side_by_side: sida vid sida
381 label_options: Inställningar
381 label_options: Inställningar
382 label_copy_workflow_from: Kopiera workflow från
382 label_copy_workflow_from: Kopiera workflow från
383 label_permissions_report: Rättighetsrapport
383 label_permissions_report: Rättighetsrapport
384 label_watched_issues: Watched issues
384 label_watched_issues: Watched issues
385 label_related_issues: Related issues
385 label_related_issues: Related issues
386 label_applied_status: Applied status
386 label_applied_status: Applied status
387 label_loading: Loading...
387 label_loading: Loading...
388 label_relation_new: New relation
388 label_relation_new: New relation
389 label_relation_delete: Delete relation
389 label_relation_delete: Delete relation
390 label_relates_to: related to
390 label_relates_to: related to
391 label_duplicates: duplicates
391 label_duplicates: duplicates
392 label_blocks: blocks
392 label_blocks: blocks
393 label_blocked_by: blocked by
393 label_blocked_by: blocked by
394 label_precedes: precedes
394 label_precedes: precedes
395 label_follows: follows
395 label_follows: follows
396 label_end_to_start: end to start
396 label_end_to_start: end to start
397 label_end_to_end: end to end
397 label_end_to_end: end to end
398 label_start_to_start: start to start
398 label_start_to_start: start to start
399 label_start_to_end: start to end
399 label_start_to_end: start to end
400 label_stay_logged_in: Stay logged in
400 label_stay_logged_in: Stay logged in
401 label_disabled: disabled
401 label_disabled: disabled
402 label_show_completed_versions: Show completed versions
402 label_show_completed_versions: Show completed versions
403 label_me: me
403 label_me: me
404 label_board: Forum
404 label_board: Forum
405 label_board_new: New forum
405 label_board_new: New forum
406 label_board_plural: Forums
406 label_board_plural: Forums
407 label_topic_plural: Topics
407 label_topic_plural: Topics
408 label_message_plural: Messages
408 label_message_plural: Messages
409 label_message_last: Last message
409 label_message_last: Last message
410 label_message_new: New message
410 label_message_new: New message
411 label_reply_plural: Replies
411 label_reply_plural: Replies
412 label_send_information: Send account information to the user
412 label_send_information: Send account information to the user
413 label_year: Year
413 label_year: Year
414 label_month: Month
414 label_month: Month
415 label_week: Week
415 label_week: Week
416 label_date_from: From
416 label_date_from: From
417 label_date_to: To
417 label_date_to: To
418 label_language_based: Language based
418 label_language_based: Language based
419 label_sort_by: Sort by "%s"
419 label_sort_by: Sort by "%s"
420 label_send_test_email: Send a test email
420 label_send_test_email: Send a test email
421 label_feeds_access_key_created_on: RSS access key created %s ago
421 label_feeds_access_key_created_on: RSS access key created %s ago
422 label_module_plural: Modules
422 label_module_plural: Modules
423 label_added_time_by: Added by %s %s ago
423 label_added_time_by: Added by %s %s ago
424 label_updated_time: Updated %s ago
424 label_updated_time: Updated %s ago
425 label_jump_to_a_project: Jump to a project...
425 label_jump_to_a_project: Jump to a project...
426
426
427 button_login: Logga in
427 button_login: Logga in
428 button_submit: Skicka
428 button_submit: Skicka
429 button_save: Spara
429 button_save: Spara
430 button_check_all: Markera alla
430 button_check_all: Markera alla
431 button_uncheck_all: Avmarkera alla
431 button_uncheck_all: Avmarkera alla
432 button_delete: Ta bort
432 button_delete: Ta bort
433 button_create: Skapa
433 button_create: Skapa
434 button_test: Testa
434 button_test: Testa
435 button_edit: Editera
435 button_edit: Editera
436 button_add: Lägg till
436 button_add: Lägg till
437 button_change: Ändra
437 button_change: Ändra
438 button_apply: Värkställ
438 button_apply: Värkställ
439 button_clear: Rensa
439 button_clear: Rensa
440 button_lock: Lås
440 button_lock: Lås
441 button_unlock: Lås upp
441 button_unlock: Lås upp
442 button_download: Ladda ner
442 button_download: Ladda ner
443 button_list: Lista
443 button_list: Lista
444 button_view: Visa
444 button_view: Visa
445 button_move: Flytta
445 button_move: Flytta
446 button_back: Tillbaka
446 button_back: Tillbaka
447 button_cancel: Avbryt
447 button_cancel: Avbryt
448 button_activate: Aktivera
448 button_activate: Aktivera
449 button_sort: Sortera
449 button_sort: Sortera
450 button_log_time: Logga tid
450 button_log_time: Logga tid
451 button_rollback: Rulla tillbaka till denna version
451 button_rollback: Rulla tillbaka till denna version
452 button_watch: Watch
452 button_watch: Watch
453 button_unwatch: Unwatch
453 button_unwatch: Unwatch
454 button_reply: Reply
454 button_reply: Reply
455 button_archive: Archive
455 button_archive: Archive
456 button_unarchive: Unarchive
456 button_unarchive: Unarchive
457 button_reset: Reset
457 button_reset: Reset
458 button_rename: Rename
458 button_rename: Rename
459
459
460 status_active: activ
460 status_active: activ
461 status_registered: registrerad
461 status_registered: registrerad
462 status_locked: låst
462 status_locked: låst
463
463
464 text_select_mail_notifications: Väl action för vilka email ska skickas.
464 text_select_mail_notifications: Väl action för vilka email ska skickas.
465 text_regexp_info: eg. ^[A-Z0-9]+$
465 text_regexp_info: eg. ^[A-Z0-9]+$
466 text_min_max_length_info: 0 betyder ingen gräns
466 text_min_max_length_info: 0 betyder ingen gräns
467 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
467 text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data?
468 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
468 text_workflow_edit: Väl en roll och en tracker för att editera workflow.
469 text_are_you_sure: Är du säker?
469 text_are_you_sure: Är du säker?
470 text_journal_changed: ändrad från %s till %s
470 text_journal_changed: ändrad från %s till %s
471 text_journal_set_to: satt till %s
471 text_journal_set_to: satt till %s
472 text_journal_deleted: borttagen
472 text_journal_deleted: borttagen
473 text_tip_task_begin_day: arbetsuppgift börjar denna dag
473 text_tip_task_begin_day: arbetsuppgift börjar denna dag
474 text_tip_task_end_day: arbetsuppgift slutar denna dag
474 text_tip_task_end_day: arbetsuppgift slutar denna dag
475 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
475 text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag
476 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
476 text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.'
477 text_caracters_maximum: %d tecken maximum.
477 text_caracters_maximum: %d tecken maximum.
478 text_length_between: Längd mellan %d och %d tecken.
478 text_length_between: Längd mellan %d och %d tecken.
479 text_tracker_no_workflow: Inget workflow definerat för denna tracker
479 text_tracker_no_workflow: Inget workflow definerat för denna tracker
480 text_unallowed_characters: Unallowed characters
480 text_unallowed_characters: Unallowed characters
481 text_comma_separated: Multiple values allowed (comma separated).
481 text_comma_separated: Multiple values allowed (comma separated).
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
482 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
483 text_issue_added: Brist %s har rapporterats.
483 text_issue_added: Brist %s har rapporterats.
484 text_issue_updated: Brist %s har uppdaterats.
484 text_issue_updated: Brist %s har uppdaterats.
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
485 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
486 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
487 text_issue_category_destroy_assignments: Remove category assignments
487 text_issue_category_destroy_assignments: Remove category assignments
488 text_issue_category_reassign_to: Reassing issues to this category
488 text_issue_category_reassign_to: Reassing issues to this category
489
489
490 default_role_manager: Förvaltare
490 default_role_manager: Förvaltare
491 default_role_developper: Utvecklare
491 default_role_developper: Utvecklare
492 default_role_reporter: Rapporterare
492 default_role_reporter: Rapporterare
493 default_tracker_bug: Bugg
493 default_tracker_bug: Bugg
494 default_tracker_feature: Finess
494 default_tracker_feature: Finess
495 default_tracker_support: Support
495 default_tracker_support: Support
496 default_issue_status_new: Ny
496 default_issue_status_new: Ny
497 default_issue_status_assigned: Tilldelad
497 default_issue_status_assigned: Tilldelad
498 default_issue_status_resolved: Löst
498 default_issue_status_resolved: Löst
499 default_issue_status_feedback: Feedback
499 default_issue_status_feedback: Feedback
500 default_issue_status_closed: Stängd
500 default_issue_status_closed: Stängd
501 default_issue_status_rejected: Avslagen
501 default_issue_status_rejected: Avslagen
502 default_doc_category_user: Användardokumentation
502 default_doc_category_user: Användardokumentation
503 default_doc_category_tech: Teknisk dokumentation
503 default_doc_category_tech: Teknisk dokumentation
504 default_priority_low: Låg
504 default_priority_low: Låg
505 default_priority_normal: Normal
505 default_priority_normal: Normal
506 default_priority_high: Hög
506 default_priority_high: Hög
507 default_priority_urgent: Bråttom
507 default_priority_urgent: Bråttom
508 default_priority_immediate: Omedelbar
508 default_priority_immediate: Omedelbar
509 default_activity_design: Design
509 default_activity_design: Design
510 default_activity_development: Utveckling
510 default_activity_development: Utveckling
511
511
512 enumeration_issue_priorities: Bristprioriteringar
512 enumeration_issue_priorities: Bristprioriteringar
513 enumeration_doc_categories: Dokumentkategorier
513 enumeration_doc_categories: Dokumentkategorier
514 enumeration_activities: Aktiviteter (tidsspårning)
514 enumeration_activities: Aktiviteter (tidsspårning)
515 field_comments: Comment
515 field_comments: Comment
516 label_file_plural: Files
516 label_file_plural: Files
517 label_changeset_plural: Changesets
517 label_changeset_plural: Changesets
518 field_column_names: Columns
518 field_column_names: Columns
519 label_default_columns: Default columns
519 label_default_columns: Default columns
520 setting_issue_list_default_columns: Default columns displayed on the issue list
520 setting_issue_list_default_columns: Default columns displayed on the issue list
521 setting_repositories_encodings: Repositories encodings
521 setting_repositories_encodings: Repositories encodings
522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
522 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
523 label_bulk_edit_selected_issues: Bulk edit selected issues
523 label_bulk_edit_selected_issues: Bulk edit selected issues
524 label_no_change_option: (No change)
524 label_no_change_option: (No change)
525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
525 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
526 label_theme: Theme
526 label_theme: Theme
527 label_default: Default
527 label_default: Default
528 label_search_titles_only: Search titles only
528 label_search_titles_only: Search titles only
529 label_nobody: nobody
529 label_nobody: nobody
530 button_change_password: Change password
531 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
532 label_user_mail_option_selected: "For any event on the selected projects only..."
533 label_user_mail_option_all: "For any event on all my projects"
534 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,531 +1,536
1 # translated by andy wu
1 # translated by andy wu
2 # email:andywu.zh@gmail.com
2 # email:andywu.zh@gmail.com
3
3
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5
5
6 actionview_datehelper_select_day_prefix:
6 actionview_datehelper_select_day_prefix:
7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
7 actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月
8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
8 actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二
9 actionview_datehelper_select_month_prefix:
9 actionview_datehelper_select_month_prefix:
10 actionview_datehelper_select_year_prefix:
10 actionview_datehelper_select_year_prefix:
11 actionview_datehelper_time_in_words_day: 1 天
11 actionview_datehelper_time_in_words_day: 1 天
12 actionview_datehelper_time_in_words_day_plural: %d 天
12 actionview_datehelper_time_in_words_day_plural: %d 天
13 actionview_datehelper_time_in_words_hour_about: 约1小时
13 actionview_datehelper_time_in_words_hour_about: 约1小时
14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
14 actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时
15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
15 actionview_datehelper_time_in_words_hour_about_single: 约1小时
16 actionview_datehelper_time_in_words_minute: 1分钟
16 actionview_datehelper_time_in_words_minute: 1分钟
17 actionview_datehelper_time_in_words_minute_half: 半分钟
17 actionview_datehelper_time_in_words_minute_half: 半分钟
18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
18 actionview_datehelper_time_in_words_minute_less_than: 1分钟以内
19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
19 actionview_datehelper_time_in_words_minute_plural: %d 分钟
20 actionview_datehelper_time_in_words_minute_single: 1分钟
20 actionview_datehelper_time_in_words_minute_single: 1分钟
21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
21 actionview_datehelper_time_in_words_second_less_than: 1秒以内
22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
22 actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内
23 actionview_instancetag_blank_option: 请选择
23 actionview_instancetag_blank_option: 请选择
24
24
25 activerecord_error_inclusion: 未包含在列表中
25 activerecord_error_inclusion: 未包含在列表中
26 activerecord_error_exclusion: 保留的
26 activerecord_error_exclusion: 保留的
27 activerecord_error_invalid: 无效的
27 activerecord_error_invalid: 无效的
28 activerecord_error_confirmation: 和确认输入不匹配
28 activerecord_error_confirmation: 和确认输入不匹配
29 activerecord_error_accepted: 必需被接受
29 activerecord_error_accepted: 必需被接受
30 activerecord_error_empty: 不能为空
30 activerecord_error_empty: 不能为空
31 activerecord_error_blank: 不能是空格
31 activerecord_error_blank: 不能是空格
32 activerecord_error_too_long: 太长
32 activerecord_error_too_long: 太长
33 activerecord_error_too_short: 太短
33 activerecord_error_too_short: 太短
34 activerecord_error_wrong_length: 长度有问题
34 activerecord_error_wrong_length: 长度有问题
35 activerecord_error_taken: has already been taken
35 activerecord_error_taken: has already been taken
36 activerecord_error_not_a_number: 不是数字
36 activerecord_error_not_a_number: 不是数字
37 activerecord_error_not_a_date: 不是有效的日期
37 activerecord_error_not_a_date: 不是有效的日期
38 activerecord_error_greater_than_start_date: 必需大于开始日期
38 activerecord_error_greater_than_start_date: 必需大于开始日期
39 activerecord_error_not_same_project: doesn't belong to the same project
39 activerecord_error_not_same_project: doesn't belong to the same project
40 activerecord_error_circular_dependency: This relation would create a circular dependency
40 activerecord_error_circular_dependency: This relation would create a circular dependency
41
41
42 general_fmt_age: %d yr
42 general_fmt_age: %d yr
43 general_fmt_age_plural: %d yrs
43 general_fmt_age_plural: %d yrs
44 general_fmt_date: %%m/%%d/%%Y
44 general_fmt_date: %%m/%%d/%%Y
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
48 general_text_No: '否'
48 general_text_No: '否'
49 general_text_Yes: '是'
49 general_text_Yes: '是'
50 general_text_no: '否'
50 general_text_no: '否'
51 general_text_yes: '是'
51 general_text_yes: '是'
52 general_lang_name: 'Chinese (简体中文)'
52 general_lang_name: 'Chinese (简体中文)'
53 general_csv_separator: ','
53 general_csv_separator: ','
54 general_csv_encoding: gb2312
54 general_csv_encoding: gb2312
55 general_pdf_encoding: Big5
55 general_pdf_encoding: Big5
56 general_day_names: 一,二,三,四,五,六,日
56 general_day_names: 一,二,三,四,五,六,日
57 general_first_day_of_week: '7'
57 general_first_day_of_week: '7'
58
58
59 notice_account_updated: 帐户更新成功。
59 notice_account_updated: 帐户更新成功。
60 notice_account_invalid_creditentials: 用户名或密码不正确
60 notice_account_invalid_creditentials: 用户名或密码不正确
61 notice_account_password_updated: 成功更新口令
61 notice_account_password_updated: 成功更新口令
62 notice_account_wrong_password: 错误的口令
62 notice_account_wrong_password: 错误的口令
63 notice_account_register_done: 帐户已创建成功
63 notice_account_register_done: 帐户已创建成功
64 notice_account_unknown_email: 未知用户
64 notice_account_unknown_email: 未知用户
65 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
65 notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。
66 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
66 notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导
67 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
67 notice_account_activated: 您的帐号已被激活。您现在可以登录了。
68 notice_successful_create: 创建成功
68 notice_successful_create: 创建成功
69 notice_successful_update: 更新成功
69 notice_successful_update: 更新成功
70 notice_successful_delete: 删除成功
70 notice_successful_delete: 删除成功
71 notice_successful_connection: 连接成功
71 notice_successful_connection: 连接成功
72 notice_file_not_found: 您访问的页面不存在或已被删除。
72 notice_file_not_found: 您访问的页面不存在或已被删除。
73 notice_locking_conflict: 数据已被另一个用户更新
73 notice_locking_conflict: 数据已被另一个用户更新
74 notice_scm_error: 在版本库中不存在该条目或修订
74 notice_scm_error: 在版本库中不存在该条目或修订
75 notice_not_authorized: You are not authorized to access this page.
75 notice_not_authorized: You are not authorized to access this page.
76 notice_email_sent: An email was sent to %s
76 notice_email_sent: An email was sent to %s
77 notice_email_error: An error occurred while sending mail (%s)
77 notice_email_error: An error occurred while sending mail (%s)
78 notice_feeds_access_key_reseted: Your RSS access key was reseted.
78 notice_feeds_access_key_reseted: Your RSS access key was reseted.
79
79
80 mail_subject_lost_password: 您的redMine口令
80 mail_subject_lost_password: 您的redMine口令
81 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
81 mail_body_lost_password: 'To change your Redmine password, click on the following link:'
82 mail_subject_register: redMine帐户激活
82 mail_subject_register: redMine帐户激活
83 mail_body_register: 'To activate your Redmine account, click on the following link:'
83 mail_body_register: 'To activate your Redmine account, click on the following link:'
84
84
85 gui_validation_error: 1 个错误
85 gui_validation_error: 1 个错误
86 gui_validation_error_plural: %d 个错误
86 gui_validation_error_plural: %d 个错误
87
87
88 field_name: 名称
88 field_name: 名称
89 field_description: 描述
89 field_description: 描述
90 field_summary: 摘要
90 field_summary: 摘要
91 field_is_required: 必填
91 field_is_required: 必填
92 field_firstname: 名字
92 field_firstname: 名字
93 field_lastname:
93 field_lastname:
94 field_mail: 邮件地址
94 field_mail: 邮件地址
95 field_filename: 文件
95 field_filename: 文件
96 field_filesize: 大小
96 field_filesize: 大小
97 field_downloads: 下载次数
97 field_downloads: 下载次数
98 field_author: 作者
98 field_author: 作者
99 field_created_on: 创建于
99 field_created_on: 创建于
100 field_updated_on: 更新于
100 field_updated_on: 更新于
101 field_field_format: 格式
101 field_field_format: 格式
102 field_is_for_all: 应用于所有项目
102 field_is_for_all: 应用于所有项目
103 field_possible_values: 可能的值
103 field_possible_values: 可能的值
104 field_regexp: 正则表达式
104 field_regexp: 正则表达式
105 field_min_length: 最小长度
105 field_min_length: 最小长度
106 field_max_length: 最大长度
106 field_max_length: 最大长度
107 field_value:
107 field_value:
108 field_category: 分类
108 field_category: 分类
109 field_title: 标题
109 field_title: 标题
110 field_project: 项目
110 field_project: 项目
111 field_issue: 任务
111 field_issue: 任务
112 field_status: 状态
112 field_status: 状态
113 field_notes: 说明
113 field_notes: 说明
114 field_is_closed: 已关闭的任务
114 field_is_closed: 已关闭的任务
115 field_is_default: 默认状态
115 field_is_default: 默认状态
116 field_html_color: 颜色
116 field_html_color: 颜色
117 field_tracker: 跟踪
117 field_tracker: 跟踪
118 field_subject: 主题
118 field_subject: 主题
119 field_due_date: 到期日
119 field_due_date: 到期日
120 field_assigned_to: 指派
120 field_assigned_to: 指派
121 field_priority: 优先级
121 field_priority: 优先级
122 field_fixed_version: 修订版本
122 field_fixed_version: 修订版本
123 field_user: 用户
123 field_user: 用户
124 field_role: 角色
124 field_role: 角色
125 field_homepage: 主页
125 field_homepage: 主页
126 field_is_public: 公开
126 field_is_public: 公开
127 field_parent: 上级项目
127 field_parent: 上级项目
128 field_is_in_chlog: 在更新日志中显示任务
128 field_is_in_chlog: 在更新日志中显示任务
129 field_is_in_roadmap: 在路线图中显示任务
129 field_is_in_roadmap: 在路线图中显示任务
130 field_login: 登录名
130 field_login: 登录名
131 field_mail_notification: 邮件通知
131 field_mail_notification: 邮件通知
132 field_admin: 管理员
132 field_admin: 管理员
133 field_last_login_on: 最后登录
133 field_last_login_on: 最后登录
134 field_language: 语言
134 field_language: 语言
135 field_effective_date: 日期
135 field_effective_date: 日期
136 field_password: 口令
136 field_password: 口令
137 field_new_password: 新口令
137 field_new_password: 新口令
138 field_password_confirmation: 确认
138 field_password_confirmation: 确认
139 field_version: 版本
139 field_version: 版本
140 field_type: 类别
140 field_type: 类别
141 field_host: 主机
141 field_host: 主机
142 field_port: 端口
142 field_port: 端口
143 field_account: 帐号
143 field_account: 帐号
144 field_base_dn: Base DN
144 field_base_dn: Base DN
145 field_attr_login: 登录名属性
145 field_attr_login: 登录名属性
146 field_attr_firstname: 名字属性
146 field_attr_firstname: 名字属性
147 field_attr_lastname: 姓属性
147 field_attr_lastname: 姓属性
148 field_attr_mail: 邮件属性
148 field_attr_mail: 邮件属性
149 field_onthefly: On-the-fly user creation
149 field_onthefly: On-the-fly user creation
150 field_start_date: 开始
150 field_start_date: 开始
151 field_done_ratio: %% 完成
151 field_done_ratio: %% 完成
152 field_auth_source: 认证模式
152 field_auth_source: 认证模式
153 field_hide_mail: 隐藏我的邮件
153 field_hide_mail: 隐藏我的邮件
154 field_comments: 注释
154 field_comments: 注释
155 field_url: URL
155 field_url: URL
156 field_start_page: 起始页
156 field_start_page: 起始页
157 field_subproject: 子项目
157 field_subproject: 子项目
158 field_hours: Hours
158 field_hours: Hours
159 field_activity: 活动
159 field_activity: 活动
160 field_spent_on: 日期
160 field_spent_on: 日期
161 field_identifier: Identifier
161 field_identifier: Identifier
162 field_is_filter: Used as a filter
162 field_is_filter: Used as a filter
163 field_issue_to_id: Related issue
163 field_issue_to_id: Related issue
164 field_delay: Delay
164 field_delay: Delay
165 field_assignable: Issues can be assigned to this role
165 field_assignable: Issues can be assigned to this role
166 field_redirect_existing_links: Redirect existing links
166 field_redirect_existing_links: Redirect existing links
167 field_estimated_hours: Estimated time
167 field_estimated_hours: Estimated time
168
168
169 setting_app_title: 应用程序标题
169 setting_app_title: 应用程序标题
170 setting_app_subtitle: 应用程序子标题
170 setting_app_subtitle: 应用程序子标题
171 setting_welcome_text: 欢迎文字
171 setting_welcome_text: 欢迎文字
172 setting_default_language: 默认语言
172 setting_default_language: 默认语言
173 setting_login_required: 要求认证
173 setting_login_required: 要求认证
174 setting_self_registration: 允许自注册
174 setting_self_registration: 允许自注册
175 setting_attachment_max_size: 附件最大尺寸
175 setting_attachment_max_size: 附件最大尺寸
176 setting_issues_export_limit: Issues export limit
176 setting_issues_export_limit: Issues export limit
177 setting_mail_from: Emission mail address
177 setting_mail_from: Emission mail address
178 setting_host_name: 主机名称
178 setting_host_name: 主机名称
179 setting_text_formatting: 文本格式
179 setting_text_formatting: 文本格式
180 setting_wiki_compression: Wiki history compression
180 setting_wiki_compression: Wiki history compression
181 setting_feeds_limit: Feed content limit
181 setting_feeds_limit: Feed content limit
182 setting_autofetch_changesets: Autofetch commits
182 setting_autofetch_changesets: Autofetch commits
183 setting_sys_api_enabled: Enable WS for repository management
183 setting_sys_api_enabled: Enable WS for repository management
184 setting_commit_ref_keywords: Referencing keywords
184 setting_commit_ref_keywords: Referencing keywords
185 setting_commit_fix_keywords: Fixing keywords
185 setting_commit_fix_keywords: Fixing keywords
186 setting_autologin: Autologin
186 setting_autologin: Autologin
187 setting_date_format: Date format
187 setting_date_format: Date format
188 setting_cross_project_issue_relations: Allow cross-project issue relations
188 setting_cross_project_issue_relations: Allow cross-project issue relations
189
189
190 label_user: 用户
190 label_user: 用户
191 label_user_plural: 用户列表
191 label_user_plural: 用户列表
192 label_user_new: 新建用户
192 label_user_new: 新建用户
193 label_project: 项目
193 label_project: 项目
194 label_project_new: 新建项目
194 label_project_new: 新建项目
195 label_project_plural: 项目列表
195 label_project_plural: 项目列表
196 label_project_all: All Projects
196 label_project_all: All Projects
197 label_project_latest: 最近的项目列表
197 label_project_latest: 最近的项目列表
198 label_issue: 任务
198 label_issue: 任务
199 label_issue_new: 新建任务
199 label_issue_new: 新建任务
200 label_issue_plural: 任务列表
200 label_issue_plural: 任务列表
201 label_issue_view_all: 查看所有任务
201 label_issue_view_all: 查看所有任务
202 label_document: 文档
202 label_document: 文档
203 label_document_new: 新建文档
203 label_document_new: 新建文档
204 label_document_plural: 文档列表
204 label_document_plural: 文档列表
205 label_role: 角色
205 label_role: 角色
206 label_role_plural: 角色列表
206 label_role_plural: 角色列表
207 label_role_new: 新建角色
207 label_role_new: 新建角色
208 label_role_and_permissions: 角色和权限
208 label_role_and_permissions: 角色和权限
209 label_member: 成员
209 label_member: 成员
210 label_member_new: 新建成员
210 label_member_new: 新建成员
211 label_member_plural: 成员列表
211 label_member_plural: 成员列表
212 label_tracker: 跟踪标签
212 label_tracker: 跟踪标签
213 label_tracker_plural: 跟踪标签列表
213 label_tracker_plural: 跟踪标签列表
214 label_tracker_new: 新建跟踪标签
214 label_tracker_new: 新建跟踪标签
215 label_workflow: 工作流
215 label_workflow: 工作流
216 label_issue_status: 任务状态列表
216 label_issue_status: 任务状态列表
217 label_issue_status_plural: 任务状态列表
217 label_issue_status_plural: 任务状态列表
218 label_issue_status_new: 新建任务状态列表
218 label_issue_status_new: 新建任务状态列表
219 label_issue_category: 任务类别
219 label_issue_category: 任务类别
220 label_issue_category_plural: 任务类别列表
220 label_issue_category_plural: 任务类别列表
221 label_issue_category_new: 新建任务类别
221 label_issue_category_new: 新建任务类别
222 label_custom_field: 自定义字段
222 label_custom_field: 自定义字段
223 label_custom_field_plural: 自定义字段列表
223 label_custom_field_plural: 自定义字段列表
224 label_custom_field_new: 新建自定义字段
224 label_custom_field_new: 新建自定义字段
225 label_enumerations: 枚举列表
225 label_enumerations: 枚举列表
226 label_enumeration_new: 新建枚举值
226 label_enumeration_new: 新建枚举值
227 label_information: 信息
227 label_information: 信息
228 label_information_plural: 信息
228 label_information_plural: 信息
229 label_please_login: 请登录
229 label_please_login: 请登录
230 label_register: 注册
230 label_register: 注册
231 label_password_lost: 忘记口令
231 label_password_lost: 忘记口令
232 label_home: 主页
232 label_home: 主页
233 label_my_page: 我的工作台
233 label_my_page: 我的工作台
234 label_my_account: 我的帐号
234 label_my_account: 我的帐号
235 label_my_projects: 我的项目列表
235 label_my_projects: 我的项目列表
236 label_administration: 管理
236 label_administration: 管理
237 label_login: 登录
237 label_login: 登录
238 label_logout: 退出
238 label_logout: 退出
239 label_help: 帮助
239 label_help: 帮助
240 label_reported_issues: 已报告的问题
240 label_reported_issues: 已报告的问题
241 label_assigned_to_me_issues: 分配给我的任务
241 label_assigned_to_me_issues: 分配给我的任务
242 label_last_login: 最后登录
242 label_last_login: 最后登录
243 label_last_updates: 最后更新
243 label_last_updates: 最后更新
244 label_last_updates_plural: %d 最后更新
244 label_last_updates_plural: %d 最后更新
245 label_registered_on: 注册于
245 label_registered_on: 注册于
246 label_activity: 活动
246 label_activity: 活动
247 label_new: 新建
247 label_new: 新建
248 label_logged_as: 登录为
248 label_logged_as: 登录为
249 label_environment: 环境
249 label_environment: 环境
250 label_authentication: 认证
250 label_authentication: 认证
251 label_auth_source: 认证模式
251 label_auth_source: 认证模式
252 label_auth_source_new: 新建认证模式
252 label_auth_source_new: 新建认证模式
253 label_auth_source_plural: 认证模式列表
253 label_auth_source_plural: 认证模式列表
254 label_subproject_plural: 子项目列表
254 label_subproject_plural: 子项目列表
255 label_min_max_length: 最小 - 最大 长度
255 label_min_max_length: 最小 - 最大 长度
256 label_list: list
256 label_list: list
257 label_date: Date
257 label_date: Date
258 label_integer: Integer
258 label_integer: Integer
259 label_boolean: Boolean
259 label_boolean: Boolean
260 label_string: Text
260 label_string: Text
261 label_text: Long text
261 label_text: Long text
262 label_attribute: 属性
262 label_attribute: 属性
263 label_attribute_plural: 属性
263 label_attribute_plural: 属性
264 label_download: %d 个下载次数
264 label_download: %d 个下载次数
265 label_download_plural: %d 个下载次数
265 label_download_plural: %d 个下载次数
266 label_no_data: 没有数据用于显示
266 label_no_data: 没有数据用于显示
267 label_change_status: 改变状态
267 label_change_status: 改变状态
268 label_history: 历史记录
268 label_history: 历史记录
269 label_attachment: 文件
269 label_attachment: 文件
270 label_attachment_new: 新建文件
270 label_attachment_new: 新建文件
271 label_attachment_delete: 删除文件
271 label_attachment_delete: 删除文件
272 label_attachment_plural: 文件列表
272 label_attachment_plural: 文件列表
273 label_report: 报表
273 label_report: 报表
274 label_report_plural: 报表列表
274 label_report_plural: 报表列表
275 label_news: 新闻
275 label_news: 新闻
276 label_news_new: 增加新闻
276 label_news_new: 增加新闻
277 label_news_plural: 新闻列表
277 label_news_plural: 新闻列表
278 label_news_latest: 最近的新闻
278 label_news_latest: 最近的新闻
279 label_news_view_all: 查看所有新闻
279 label_news_view_all: 查看所有新闻
280 label_change_log: 更新日志
280 label_change_log: 更新日志
281 label_settings: 配置
281 label_settings: 配置
282 label_overview: 概述
282 label_overview: 概述
283 label_version: 版本
283 label_version: 版本
284 label_version_new: 新建版本
284 label_version_new: 新建版本
285 label_version_plural: 版本列表
285 label_version_plural: 版本列表
286 label_confirmation: 确认
286 label_confirmation: 确认
287 label_export_to: 导出
287 label_export_to: 导出
288 label_read: 读取...
288 label_read: 读取...
289 label_public_projects: 公开的项目列表
289 label_public_projects: 公开的项目列表
290 label_open_issues: 打开
290 label_open_issues: 打开
291 label_open_issues_plural: 打开
291 label_open_issues_plural: 打开
292 label_closed_issues: 已关闭
292 label_closed_issues: 已关闭
293 label_closed_issues_plural: 已关闭
293 label_closed_issues_plural: 已关闭
294 label_total: 合计
294 label_total: 合计
295 label_permissions: 权限列表
295 label_permissions: 权限列表
296 label_current_status: 当前状态
296 label_current_status: 当前状态
297 label_new_statuses_allowed: New statuses allowed
297 label_new_statuses_allowed: New statuses allowed
298 label_all: 全部
298 label_all: 全部
299 label_none:
299 label_none:
300 label_next: 下一个
300 label_next: 下一个
301 label_previous: 上一个
301 label_previous: 上一个
302 label_used_by: 使用中
302 label_used_by: 使用中
303 label_details: 详情
303 label_details: 详情
304 label_add_note: 添加说明
304 label_add_note: 添加说明
305 label_per_page: 每面
305 label_per_page: 每面
306 label_calendar: 日历
306 label_calendar: 日历
307 label_months_from: months from
307 label_months_from: months from
308 label_gantt: 甘特图(Gantt)
308 label_gantt: 甘特图(Gantt)
309 label_internal: 内部
309 label_internal: 内部
310 label_last_changes: 最近的 %d 次更改
310 label_last_changes: 最近的 %d 次更改
311 label_change_view_all: 查看所有更改
311 label_change_view_all: 查看所有更改
312 label_personalize_page: 个性化定制本页
312 label_personalize_page: 个性化定制本页
313 label_comment: 注释
313 label_comment: 注释
314 label_comment_plural: 注释列表
314 label_comment_plural: 注释列表
315 label_comment_add: 添加注释
315 label_comment_add: 添加注释
316 label_comment_added: 已加入注释
316 label_comment_added: 已加入注释
317 label_comment_delete: 删除注释
317 label_comment_delete: 删除注释
318 label_query: 自定义查询
318 label_query: 自定义查询
319 label_query_plural: 自定义查询列表
319 label_query_plural: 自定义查询列表
320 label_query_new: 新建查询
320 label_query_new: 新建查询
321 label_filter_add: 增加过滤器
321 label_filter_add: 增加过滤器
322 label_filter_plural: 过滤器列表
322 label_filter_plural: 过滤器列表
323 label_equals: 等于
323 label_equals: 等于
324 label_not_equals: 不等于
324 label_not_equals: 不等于
325 label_in_less_than: 剩余天数小于
325 label_in_less_than: 剩余天数小于
326 label_in_more_than: 剩余天数大于
326 label_in_more_than: 剩余天数大于
327 label_in: 剩余天数
327 label_in: 剩余天数
328 label_today: 今天
328 label_today: 今天
329 label_this_week: this week
329 label_this_week: this week
330 label_less_than_ago: 之前天数少于
330 label_less_than_ago: 之前天数少于
331 label_more_than_ago: 之前天数大于
331 label_more_than_ago: 之前天数大于
332 label_ago: 之前天数
332 label_ago: 之前天数
333 label_contains: 包含
333 label_contains: 包含
334 label_not_contains: 不包含
334 label_not_contains: 不包含
335 label_day_plural: 天数
335 label_day_plural: 天数
336 label_repository: 版本库
336 label_repository: 版本库
337 label_browse: 浏览
337 label_browse: 浏览
338 label_modification: %d 个更新
338 label_modification: %d 个更新
339 label_modification_plural: %d 个更新
339 label_modification_plural: %d 个更新
340 label_revision: 修订
340 label_revision: 修订
341 label_revision_plural: 修订
341 label_revision_plural: 修订
342 label_added: 已增加
342 label_added: 已增加
343 label_modified: 已修改
343 label_modified: 已修改
344 label_deleted: 已删除
344 label_deleted: 已删除
345 label_latest_revision: 最近的版本
345 label_latest_revision: 最近的版本
346 label_latest_revision_plural: 最近的版本列表
346 label_latest_revision_plural: 最近的版本列表
347 label_view_revisions: 查看修订列表
347 label_view_revisions: 查看修订列表
348 label_max_size: 最大尺寸
348 label_max_size: 最大尺寸
349 label_on: 'on'
349 label_on: 'on'
350 label_sort_highest: 置顶
350 label_sort_highest: 置顶
351 label_sort_higher: 上移
351 label_sort_higher: 上移
352 label_sort_lower: 下移
352 label_sort_lower: 下移
353 label_sort_lowest: 置底
353 label_sort_lowest: 置底
354 label_roadmap: 路线图
354 label_roadmap: 路线图
355 label_roadmap_due_in: Due in
355 label_roadmap_due_in: Due in
356 label_roadmap_overdue: %s late
356 label_roadmap_overdue: %s late
357 label_roadmap_no_issues: 该版本没有任务
357 label_roadmap_no_issues: 该版本没有任务
358 label_search: 查找
358 label_search: 查找
359 label_result_plural: 个结果
359 label_result_plural: 个结果
360 label_all_words: 所有单词
360 label_all_words: 所有单词
361 label_wiki: Wiki
361 label_wiki: Wiki
362 label_wiki_edit: Wiki edit
362 label_wiki_edit: Wiki edit
363 label_wiki_edit_plural: Wiki edits
363 label_wiki_edit_plural: Wiki edits
364 label_wiki_page_plural: Wiki pages
364 label_wiki_page_plural: Wiki pages
365 label_index_by_title: 索引
365 label_index_by_title: 索引
366 label_index_by_date: Index by date
366 label_index_by_date: Index by date
367 label_current_version: 当前版本
367 label_current_version: 当前版本
368 label_preview: 预览
368 label_preview: 预览
369 label_feed_plural: Feeds
369 label_feed_plural: Feeds
370 label_changes_details: 所有更改的详情
370 label_changes_details: 所有更改的详情
371 label_issue_tracking: 任务跟踪
371 label_issue_tracking: 任务跟踪
372 label_spent_time: 耗时
372 label_spent_time: 耗时
373 label_f_hour: %.2f 小时
373 label_f_hour: %.2f 小时
374 label_f_hour_plural: %.2f 小时
374 label_f_hour_plural: %.2f 小时
375 label_time_tracking: 时间跟踪
375 label_time_tracking: 时间跟踪
376 label_change_plural: 更改列表
376 label_change_plural: 更改列表
377 label_statistics: 统计
377 label_statistics: 统计
378 label_commits_per_month: Commits per month
378 label_commits_per_month: Commits per month
379 label_commits_per_author: Commits per author
379 label_commits_per_author: Commits per author
380 label_view_diff: View differences
380 label_view_diff: View differences
381 label_diff_inline: inline
381 label_diff_inline: inline
382 label_diff_side_by_side: side by side
382 label_diff_side_by_side: side by side
383 label_options: Options
383 label_options: Options
384 label_copy_workflow_from: Copy workflow from
384 label_copy_workflow_from: Copy workflow from
385 label_permissions_report: Permissions report
385 label_permissions_report: Permissions report
386 label_watched_issues: Watched issues
386 label_watched_issues: Watched issues
387 label_related_issues: Related issues
387 label_related_issues: Related issues
388 label_applied_status: Applied status
388 label_applied_status: Applied status
389 label_loading: Loading...
389 label_loading: Loading...
390 label_relation_new: New relation
390 label_relation_new: New relation
391 label_relation_delete: Delete relation
391 label_relation_delete: Delete relation
392 label_relates_to: related to
392 label_relates_to: related to
393 label_duplicates: duplicates
393 label_duplicates: duplicates
394 label_blocks: blocks
394 label_blocks: blocks
395 label_blocked_by: blocked by
395 label_blocked_by: blocked by
396 label_precedes: precedes
396 label_precedes: precedes
397 label_follows: follows
397 label_follows: follows
398 label_end_to_start: end to start
398 label_end_to_start: end to start
399 label_end_to_end: end to end
399 label_end_to_end: end to end
400 label_start_to_start: start to start
400 label_start_to_start: start to start
401 label_start_to_end: start to end
401 label_start_to_end: start to end
402 label_stay_logged_in: Stay logged in
402 label_stay_logged_in: Stay logged in
403 label_disabled: disabled
403 label_disabled: disabled
404 label_show_completed_versions: Show completed versions
404 label_show_completed_versions: Show completed versions
405 label_me: me
405 label_me: me
406 label_board: Forum
406 label_board: Forum
407 label_board_new: New forum
407 label_board_new: New forum
408 label_board_plural: Forums
408 label_board_plural: Forums
409 label_topic_plural: Topics
409 label_topic_plural: Topics
410 label_message_plural: Messages
410 label_message_plural: Messages
411 label_message_last: Last message
411 label_message_last: Last message
412 label_message_new: New message
412 label_message_new: New message
413 label_reply_plural: Replies
413 label_reply_plural: Replies
414 label_send_information: Send account information to the user
414 label_send_information: Send account information to the user
415 label_year: Year
415 label_year: Year
416 label_month: Month
416 label_month: Month
417 label_week: Week
417 label_week: Week
418 label_date_from: From
418 label_date_from: From
419 label_date_to: To
419 label_date_to: To
420 label_language_based: Language based
420 label_language_based: Language based
421 label_sort_by: Sort by "%s"
421 label_sort_by: Sort by "%s"
422 label_send_test_email: Send a test email
422 label_send_test_email: Send a test email
423 label_feeds_access_key_created_on: RSS access key created %s ago
423 label_feeds_access_key_created_on: RSS access key created %s ago
424 label_module_plural: Modules
424 label_module_plural: Modules
425 label_added_time_by: Added by %s %s ago
425 label_added_time_by: Added by %s %s ago
426 label_updated_time: Updated %s ago
426 label_updated_time: Updated %s ago
427 label_jump_to_a_project: Jump to a project...
427 label_jump_to_a_project: Jump to a project...
428
428
429 button_login: 登录
429 button_login: 登录
430 button_submit: 提交
430 button_submit: 提交
431 button_save: 保存
431 button_save: 保存
432 button_check_all: 全选
432 button_check_all: 全选
433 button_uncheck_all: 清除
433 button_uncheck_all: 清除
434 button_delete: 删除
434 button_delete: 删除
435 button_create: 创建
435 button_create: 创建
436 button_test: 测试
436 button_test: 测试
437 button_edit: 编辑
437 button_edit: 编辑
438 button_add: 新增
438 button_add: 新增
439 button_change: 修改
439 button_change: 修改
440 button_apply: 应用
440 button_apply: 应用
441 button_clear: 清除
441 button_clear: 清除
442 button_lock: 锁定
442 button_lock: 锁定
443 button_unlock: 解锁
443 button_unlock: 解锁
444 button_download: 下载
444 button_download: 下载
445 button_list: 列表
445 button_list: 列表
446 button_view: 查看
446 button_view: 查看
447 button_move: 移动
447 button_move: 移动
448 button_back: 返回
448 button_back: 返回
449 button_cancel: 取消
449 button_cancel: 取消
450 button_activate: 激活
450 button_activate: 激活
451 button_sort: 排序
451 button_sort: 排序
452 button_log_time: 登记工时
452 button_log_time: 登记工时
453 button_rollback: Rollback to this version
453 button_rollback: Rollback to this version
454 button_watch: Watch
454 button_watch: Watch
455 button_unwatch: Unwatch
455 button_unwatch: Unwatch
456 button_reply: Reply
456 button_reply: Reply
457 button_archive: Archive
457 button_archive: Archive
458 button_unarchive: Unarchive
458 button_unarchive: Unarchive
459 button_reset: Reset
459 button_reset: Reset
460 button_rename: Rename
460 button_rename: Rename
461
461
462 status_active: 激活
462 status_active: 激活
463 status_registered: 已注册
463 status_registered: 已注册
464 status_locked: 已锁定
464 status_locked: 已锁定
465
465
466 text_select_mail_notifications: 选择需要发送邮件通知的动作。
466 text_select_mail_notifications: 选择需要发送邮件通知的动作。
467 text_regexp_info: eg. ^[A-Z0-9]+$
467 text_regexp_info: eg. ^[A-Z0-9]+$
468 text_min_max_length_info: 0 表示没有限制
468 text_min_max_length_info: 0 表示没有限制
469 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
469 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
470 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
470 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
471 text_are_you_sure: 您确定?
471 text_are_you_sure: 您确定?
472 text_journal_changed: 从 %s 更改为 %s
472 text_journal_changed: 从 %s 更改为 %s
473 text_journal_set_to: 设置为 %s
473 text_journal_set_to: 设置为 %s
474 text_journal_deleted: 已删除
474 text_journal_deleted: 已删除
475 text_tip_task_begin_day: 开始于此
475 text_tip_task_begin_day: 开始于此
476 text_tip_task_end_day: 在此结束
476 text_tip_task_end_day: 在此结束
477 text_tip_task_begin_end_day: 开始并结束于此
477 text_tip_task_begin_end_day: 开始并结束于此
478 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
478 text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.'
479 text_caracters_maximum: %d characters maximum.
479 text_caracters_maximum: %d characters maximum.
480 text_length_between: Length between %d and %d characters.
480 text_length_between: Length between %d and %d characters.
481 text_tracker_no_workflow: No workflow defined for this tracker
481 text_tracker_no_workflow: No workflow defined for this tracker
482 text_unallowed_characters: Unallowed characters
482 text_unallowed_characters: Unallowed characters
483 text_comma_separated: Multiple values allowed (comma separated).
483 text_comma_separated: Multiple values allowed (comma separated).
484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
484 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
485 text_issue_added: %s ѱ
485 text_issue_added: %s ѱ
486 text_issue_updated: %s Ѹ
486 text_issue_updated: %s Ѹ
487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
487 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
488 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
489 text_issue_category_destroy_assignments: Remove category assignments
489 text_issue_category_destroy_assignments: Remove category assignments
490 text_issue_category_reassign_to: Reassing issues to this category
490 text_issue_category_reassign_to: Reassing issues to this category
491
491
492 default_role_manager: 管理员
492 default_role_manager: 管理员
493 default_role_developper: 开发人员
493 default_role_developper: 开发人员
494 default_role_reporter: 报告人员
494 default_role_reporter: 报告人员
495 default_tracker_bug: 问题
495 default_tracker_bug: 问题
496 default_tracker_feature: 功能
496 default_tracker_feature: 功能
497 default_tracker_support: 支持
497 default_tracker_support: 支持
498 default_issue_status_new: 新建
498 default_issue_status_new: 新建
499 default_issue_status_assigned: 已分配
499 default_issue_status_assigned: 已分配
500 default_issue_status_resolved: 已解决
500 default_issue_status_resolved: 已解决
501 default_issue_status_feedback: 回复
501 default_issue_status_feedback: 回复
502 default_issue_status_closed: 已关闭
502 default_issue_status_closed: 已关闭
503 default_issue_status_rejected: 已打回
503 default_issue_status_rejected: 已打回
504 default_doc_category_user: 用户文档
504 default_doc_category_user: 用户文档
505 default_doc_category_tech: 技术文档
505 default_doc_category_tech: 技术文档
506 default_priority_low:
506 default_priority_low:
507 default_priority_normal: 普通
507 default_priority_normal: 普通
508 default_priority_high:
508 default_priority_high:
509 default_priority_urgent: 紧急
509 default_priority_urgent: 紧急
510 default_priority_immediate: 立刻
510 default_priority_immediate: 立刻
511 default_activity_design: 设计
511 default_activity_design: 设计
512 default_activity_development: 开发
512 default_activity_development: 开发
513
513
514 enumeration_issue_priorities: 任务优先级
514 enumeration_issue_priorities: 任务优先级
515 enumeration_doc_categories: 文档类别
515 enumeration_doc_categories: 文档类别
516 enumeration_activities: Activities (time tracking)
516 enumeration_activities: Activities (time tracking)
517 label_wiki_page: Wiki page
517 label_wiki_page: Wiki page
518 label_file_plural: Files
518 label_file_plural: Files
519 label_changeset_plural: Changesets
519 label_changeset_plural: Changesets
520 field_column_names: Columns
520 field_column_names: Columns
521 label_default_columns: Default columns
521 label_default_columns: Default columns
522 setting_issue_list_default_columns: Default columns displayed on the issue list
522 setting_issue_list_default_columns: Default columns displayed on the issue list
523 setting_repositories_encodings: Repositories encodings
523 setting_repositories_encodings: Repositories encodings
524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
524 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
525 label_bulk_edit_selected_issues: Bulk edit selected issues
525 label_bulk_edit_selected_issues: Bulk edit selected issues
526 label_no_change_option: (No change)
526 label_no_change_option: (No change)
527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
527 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
528 label_theme: Theme
528 label_theme: Theme
529 label_default: Default
529 label_default: Default
530 label_search_titles_only: Search titles only
530 label_search_titles_only: Search titles only
531 label_nobody: nobody
531 label_nobody: nobody
532 button_change_password: Change password
533 text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
534 label_user_mail_option_selected: "For any event on the selected projects only..."
535 label_user_mail_option_all: "For any event on all my projects"
536 label_user_mail_option_none: "Only for things I watch or I'm involved in"
@@ -1,475 +1,476
1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
2
2
3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
4 h1 {margin:0; padding:0; font-size: 24px;}
4 h1 {margin:0; padding:0; font-size: 24px;}
5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
7 h4, .wiki h3 {font-size: 12px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
7 h4, .wiki h3 {font-size: 12px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
8
8
9 /***** Layout *****/
9 /***** Layout *****/
10 #top-menu {background: #2C4056;color: #fff;height:1.5em; padding: 2px 6px 0px 6px;}
10 #top-menu {background: #2C4056;color: #fff;height:1.5em; padding: 2px 6px 0px 6px;}
11 #top-menu a {color: #fff; padding-right: 4px;}
11 #top-menu a {color: #fff; padding-right: 4px;}
12 #account {float:right;}
12 #account {float:right;}
13
13
14 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px;}
14 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px;}
15 #header a {color:#f8f8f8;}
15 #header a {color:#f8f8f8;}
16 #quick-search {float:right;}
16 #quick-search {float:right;}
17
17
18 #main-menu {position: absolute; top: 5.5em; left:6px;}
18 #main-menu {position: absolute; top: 5.5em; left:6px;}
19 #main-menu ul {margin: 0; padding: 0;}
19 #main-menu ul {margin: 0; padding: 0;}
20 #main-menu li {
20 #main-menu li {
21 float:left;
21 float:left;
22 list-style-type:none;
22 list-style-type:none;
23 margin: 0px 10px 0px 0px;
23 margin: 0px 10px 0px 0px;
24 padding: 0px 0px 0px 0px;
24 padding: 0px 0px 0px 0px;
25 white-space:nowrap;
25 white-space:nowrap;
26 }
26 }
27 #main-menu li a {
27 #main-menu li a {
28 display: block;
28 display: block;
29 color: #fff;
29 color: #fff;
30 text-decoration: none;
30 text-decoration: none;
31 margin: 0;
31 margin: 0;
32 padding: 4px 4px 4px 4px;
32 padding: 4px 4px 4px 4px;
33 background: #2C4056;
33 background: #2C4056;
34 }
34 }
35 #main-menu li a:hover {background:#759FCF;}
35 #main-menu li a:hover {background:#759FCF;}
36
36
37 #main {background: url(../images/mainbg.png) repeat-x; background-color:#EEEEEE;}
37 #main {background: url(../images/mainbg.png) repeat-x; background-color:#EEEEEE;}
38
38
39 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
39 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
40 * html #sidebar{ width: 17%; }
40 * html #sidebar{ width: 17%; }
41 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
41 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
42 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
42 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
43 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
43 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
44
44
45 #content { width: 80%; background: url(../images/contentbg.png) repeat-x; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; position: relative; z-index: 10; height:600px; min-height: 600px;}
45 #content { width: 80%; background: url(../images/contentbg.png) repeat-x; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; position: relative; z-index: 10; height:600px; min-height: 600px;}
46 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
46 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
47 html>body #content {
47 html>body #content {
48 height: auto;
48 height: auto;
49 min-height: 600px;
49 min-height: 600px;
50 }
50 }
51
51
52 #main.nosidebar #sidebar{ display: none; }
52 #main.nosidebar #sidebar{ display: none; }
53 #main.nosidebar #content{ width: auto; border-right: 0; }
53 #main.nosidebar #content{ width: auto; border-right: 0; }
54
54
55 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
55 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
56
56
57 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
57 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
58 #login-form table td {padding: 6px;}
58 #login-form table td {padding: 6px;}
59 #login-form label {font-weight: bold;}
59 #login-form label {font-weight: bold;}
60
60
61 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
61 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
62
62
63 /***** Links *****/
63 /***** Links *****/
64 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
64 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
65 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
65 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
66 a img{ border: 0; }
66 a img{ border: 0; }
67
67
68 /***** Tables *****/
68 /***** Tables *****/
69 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
69 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
70 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
70 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
71 table.list td { overflow: hidden; text-overflow: ellipsis; vertical-align: top;}
71 table.list td { overflow: hidden; text-overflow: ellipsis; vertical-align: top;}
72 table.list td.id { width: 2%; text-align: center;}
72 table.list td.id { width: 2%; text-align: center;}
73 table.list td.checkbox { width: 15px; padding: 0px;}
73 table.list td.checkbox { width: 15px; padding: 0px;}
74
74
75 tr.issue { text-align: center; white-space: nowrap; }
75 tr.issue { text-align: center; white-space: nowrap; }
76 tr.issue td.subject, tr.issue td.category { white-space: normal; }
76 tr.issue td.subject, tr.issue td.category { white-space: normal; }
77 tr.issue td.subject { text-align: left; }
77 tr.issue td.subject { text-align: left; }
78
78
79 table.list tbody tr:hover { background-color:#ffffdd; }
79 table.list tbody tr:hover { background-color:#ffffdd; }
80 table td {padding:2px;}
80 table td {padding:2px;}
81 table p {margin:0;}
81 table p {margin:0;}
82 .odd {background-color:#f6f7f8;}
82 .odd {background-color:#f6f7f8;}
83 .even {background-color: #fff;}
83 .even {background-color: #fff;}
84
84
85 .highlight { background-color: #FCFD8D;}
85 .highlight { background-color: #FCFD8D;}
86 .highlight.token-1 { background-color: #faa;}
86 .highlight.token-1 { background-color: #faa;}
87 .highlight.token-2 { background-color: #afa;}
87 .highlight.token-2 { background-color: #afa;}
88 .highlight.token-3 { background-color: #aaf;}
88 .highlight.token-3 { background-color: #aaf;}
89
89
90 .box{
90 .box{
91 padding:6px;
91 padding:6px;
92 margin-bottom: 10px;
92 margin-bottom: 10px;
93 background-color:#f6f6f6;
93 background-color:#f6f6f6;
94 color:#505050;
94 color:#505050;
95 line-height:1.5em;
95 line-height:1.5em;
96 border: 1px solid #e4e4e4;
96 border: 1px solid #e4e4e4;
97 }
97 }
98
98
99 div.square {
99 div.square {
100 border: 1px solid #999;
100 border: 1px solid #999;
101 float: left;
101 float: left;
102 margin: .3em .4em 0 .4em;
102 margin: .3em .4em 0 .4em;
103 overflow: hidden;
103 overflow: hidden;
104 width: .6em; height: .6em;
104 width: .6em; height: .6em;
105 }
105 }
106
106
107 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px;font-size:0.9em;}
107 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px;font-size:0.9em;}
108 .splitcontentleft{float:left; width:49%;}
108 .splitcontentleft{float:left; width:49%;}
109 .splitcontentright{float:right; width:49%;}
109 .splitcontentright{float:right; width:49%;}
110 form {display: inline;}
110 form {display: inline;}
111 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
111 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
112 fieldset {border: 1px solid #e4e4e4; margin:0;}
112 fieldset {border: 1px solid #e4e4e4; margin:0;}
113 legend {color: #484848;}
113 legend {color: #484848;}
114 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
114 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
115 textarea.wiki-edit { width: 99%; }
115 textarea.wiki-edit { width: 99%; }
116 li p {margin-top: 0;}
116 li p {margin-top: 0;}
117 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
117 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
118 .autoscroll {overflow-x: auto; padding:1px; width:100%;}
118 .autoscroll {overflow-x: auto; padding:1px; width:100%;}
119 #user_firstname, #user_lastname, #user_mail, #notification_option { width: 90%; }
119
120
120 /***** Tabular forms ******/
121 /***** Tabular forms ******/
121 .tabular p{
122 .tabular p{
122 margin: 0;
123 margin: 0;
123 padding: 5px 0 8px 0;
124 padding: 5px 0 8px 0;
124 padding-left: 180px; /*width of left column containing the label elements*/
125 padding-left: 180px; /*width of left column containing the label elements*/
125 height: 1%;
126 height: 1%;
126 clear:left;
127 clear:left;
127 }
128 }
128
129
129 .tabular label{
130 .tabular label{
130 font-weight: bold;
131 font-weight: bold;
131 float: left;
132 float: left;
132 text-align: right;
133 text-align: right;
133 margin-left: -180px; /*width of left column*/
134 margin-left: -180px; /*width of left column*/
134 width: 175px; /*width of labels. Should be smaller than left column to create some right
135 width: 175px; /*width of labels. Should be smaller than left column to create some right
135 margin*/
136 margin*/
136 }
137 }
137
138
138 .tabular label.floating{
139 .tabular label.floating{
139 font-weight: normal;
140 font-weight: normal;
140 margin-left: 0px;
141 margin-left: 0px;
141 text-align: left;
142 text-align: left;
142 width: 200px;
143 width: 200px;
143 }
144 }
144
145
145 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
146 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
146
147
147 #settings .tabular p{ padding-left: 300px; }
148 #settings .tabular p{ padding-left: 300px; }
148 #settings .tabular label{ margin-left: -300px; width: 295px; }
149 #settings .tabular label{ margin-left: -300px; width: 295px; }
149
150
150 .required {color: #bb0000;}
151 .required {color: #bb0000;}
151 .summary {font-style: italic;}
152 .summary {font-style: italic;}
152
153
153 div.attachments p { margin:4px 0 2px 0; }
154 div.attachments p { margin:4px 0 2px 0; }
154
155
155 /***** Flash & error messages ****/
156 /***** Flash & error messages ****/
156 #flash div, #errorExplanation, .nodata {
157 #flash div, #errorExplanation, .nodata {
157 padding: 4px 4px 4px 30px;
158 padding: 4px 4px 4px 30px;
158 margin-bottom: 12px;
159 margin-bottom: 12px;
159 font-size: 1.1em;
160 font-size: 1.1em;
160 border: 2px solid;
161 border: 2px solid;
161 }
162 }
162
163
163 #flash div {margin-top: 6px;}
164 #flash div {margin-top: 6px;}
164
165
165 #flash div.error, #errorExplanation {
166 #flash div.error, #errorExplanation {
166 background: url(../images/false.png) 8px 5px no-repeat;
167 background: url(../images/false.png) 8px 5px no-repeat;
167 background-color: #ffe3e3;
168 background-color: #ffe3e3;
168 border-color: #dd0000;
169 border-color: #dd0000;
169 color: #550000;
170 color: #550000;
170 }
171 }
171
172
172 #flash div.notice {
173 #flash div.notice {
173 background: url(../images/true.png) 8px 5px no-repeat;
174 background: url(../images/true.png) 8px 5px no-repeat;
174 background-color: #dfffdf;
175 background-color: #dfffdf;
175 border-color: #9fcf9f;
176 border-color: #9fcf9f;
176 color: #005f00;
177 color: #005f00;
177 }
178 }
178
179
179 .nodata {
180 .nodata {
180 text-align: center;
181 text-align: center;
181 background-color: #FFEBC1;
182 background-color: #FFEBC1;
182 border-color: #FDBF3B;
183 border-color: #FDBF3B;
183 color: #A6750C;
184 color: #A6750C;
184 }
185 }
185
186
186 #errorExplanation ul { font-size: 0.9em;}
187 #errorExplanation ul { font-size: 0.9em;}
187
188
188 /***** Ajax indicator ******/
189 /***** Ajax indicator ******/
189 #ajax-indicator {
190 #ajax-indicator {
190 position: absolute; /* fixed not supported by IE */
191 position: absolute; /* fixed not supported by IE */
191 background-color:#eee;
192 background-color:#eee;
192 border: 1px solid #bbb;
193 border: 1px solid #bbb;
193 top:35%;
194 top:35%;
194 left:40%;
195 left:40%;
195 width:20%;
196 width:20%;
196 font-weight:bold;
197 font-weight:bold;
197 text-align:center;
198 text-align:center;
198 padding:0.6em;
199 padding:0.6em;
199 z-index:100;
200 z-index:100;
200 filter:alpha(opacity=50);
201 filter:alpha(opacity=50);
201 -moz-opacity:0.5;
202 -moz-opacity:0.5;
202 opacity: 0.5;
203 opacity: 0.5;
203 -khtml-opacity: 0.5;
204 -khtml-opacity: 0.5;
204 }
205 }
205
206
206 html>body #ajax-indicator { position: fixed; }
207 html>body #ajax-indicator { position: fixed; }
207
208
208 #ajax-indicator span {
209 #ajax-indicator span {
209 background-position: 0% 40%;
210 background-position: 0% 40%;
210 background-repeat: no-repeat;
211 background-repeat: no-repeat;
211 background-image: url(../images/loading.gif);
212 background-image: url(../images/loading.gif);
212 padding-left: 26px;
213 padding-left: 26px;
213 vertical-align: bottom;
214 vertical-align: bottom;
214 }
215 }
215
216
216 /***** Calendar *****/
217 /***** Calendar *****/
217 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
218 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
218 table.cal thead th {width: 14%;}
219 table.cal thead th {width: 14%;}
219 table.cal tbody tr {height: 100px;}
220 table.cal tbody tr {height: 100px;}
220 table.cal th { background-color:#EEEEEE; padding: 4px; }
221 table.cal th { background-color:#EEEEEE; padding: 4px; }
221 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
222 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
222 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
223 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
223 table.cal td.odd p.day-num {color: #bbb;}
224 table.cal td.odd p.day-num {color: #bbb;}
224 table.cal td.today {background:#ffffdd;}
225 table.cal td.today {background:#ffffdd;}
225 table.cal td.today p.day-num {font-weight: bold;}
226 table.cal td.today p.day-num {font-weight: bold;}
226
227
227 /***** Tooltips ******/
228 /***** Tooltips ******/
228 .tooltip{position:relative;z-index:24;}
229 .tooltip{position:relative;z-index:24;}
229 .tooltip:hover{z-index:25;color:#000;}
230 .tooltip:hover{z-index:25;color:#000;}
230 .tooltip span.tip{display: none; text-align:left;}
231 .tooltip span.tip{display: none; text-align:left;}
231
232
232 div.tooltip:hover span.tip{
233 div.tooltip:hover span.tip{
233 display:block;
234 display:block;
234 position:absolute;
235 position:absolute;
235 top:12px; left:24px; width:270px;
236 top:12px; left:24px; width:270px;
236 border:1px solid #555;
237 border:1px solid #555;
237 background-color:#fff;
238 background-color:#fff;
238 padding: 4px;
239 padding: 4px;
239 font-size: 0.8em;
240 font-size: 0.8em;
240 color:#505050;
241 color:#505050;
241 }
242 }
242
243
243 /***** Progress bar *****/
244 /***** Progress bar *****/
244 .progress {
245 .progress {
245 border: 1px solid #D7D7D7;
246 border: 1px solid #D7D7D7;
246 border-collapse: collapse;
247 border-collapse: collapse;
247 border-spacing: 0pt;
248 border-spacing: 0pt;
248 empty-cells: show;
249 empty-cells: show;
249 padding: 3px;
250 padding: 3px;
250 width: 40em;
251 width: 40em;
251 text-align: center;
252 text-align: center;
252 }
253 }
253
254
254 .progress td { height: 1em; }
255 .progress td { height: 1em; }
255 .progress .closed { background: #BAE0BA none repeat scroll 0%; }
256 .progress .closed { background: #BAE0BA none repeat scroll 0%; }
256 .progress .open { background: #FFF none repeat scroll 0%; }
257 .progress .open { background: #FFF none repeat scroll 0%; }
257
258
258 /***** Tabs *****/
259 /***** Tabs *****/
259 #content .tabs{height: 2.6em;}
260 #content .tabs{height: 2.6em;}
260 #content .tabs ul{margin:0;}
261 #content .tabs ul{margin:0;}
261 #content .tabs ul li{
262 #content .tabs ul li{
262 float:left;
263 float:left;
263 list-style-type:none;
264 list-style-type:none;
264 white-space:nowrap;
265 white-space:nowrap;
265 margin-right:8px;
266 margin-right:8px;
266 background:#fff;
267 background:#fff;
267 }
268 }
268 #content .tabs ul li a{
269 #content .tabs ul li a{
269 display:block;
270 display:block;
270 font-size: 0.9em;
271 font-size: 0.9em;
271 text-decoration:none;
272 text-decoration:none;
272 line-height:1em;
273 line-height:1em;
273 padding:4px;
274 padding:4px;
274 border: 1px solid #c0c0c0;
275 border: 1px solid #c0c0c0;
275 }
276 }
276
277
277 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
278 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
278 background-color: #507AAA;
279 background-color: #507AAA;
279 border: 1px solid #507AAA;
280 border: 1px solid #507AAA;
280 color: #fff;
281 color: #fff;
281 text-decoration:none;
282 text-decoration:none;
282 }
283 }
283
284
284 /***** Diff *****/
285 /***** Diff *****/
285 .diff_out { background: #fcc; }
286 .diff_out { background: #fcc; }
286 .diff_in { background: #cfc; }
287 .diff_in { background: #cfc; }
287
288
288 /***** Wiki *****/
289 /***** Wiki *****/
289 div.wiki table {
290 div.wiki table {
290 border: 1px solid #505050;
291 border: 1px solid #505050;
291 border-collapse: collapse;
292 border-collapse: collapse;
292 }
293 }
293
294
294 div.wiki table, div.wiki td, div.wiki th {
295 div.wiki table, div.wiki td, div.wiki th {
295 border: 1px solid #bbb;
296 border: 1px solid #bbb;
296 padding: 4px;
297 padding: 4px;
297 }
298 }
298
299
299 div.wiki .external {
300 div.wiki .external {
300 background-position: 0% 60%;
301 background-position: 0% 60%;
301 background-repeat: no-repeat;
302 background-repeat: no-repeat;
302 padding-left: 12px;
303 padding-left: 12px;
303 background-image: url(../images/external.png);
304 background-image: url(../images/external.png);
304 }
305 }
305
306
306 div.wiki a.new {
307 div.wiki a.new {
307 color: #b73535;
308 color: #b73535;
308 }
309 }
309
310
310 div.wiki pre {
311 div.wiki pre {
311 margin: 1em 1em 1em 1.6em;
312 margin: 1em 1em 1em 1.6em;
312 padding: 2px;
313 padding: 2px;
313 background-color: #fafafa;
314 background-color: #fafafa;
314 border: 1px solid #dadada;
315 border: 1px solid #dadada;
315 width:95%;
316 width:95%;
316 overflow-x: auto;
317 overflow-x: auto;
317 }
318 }
318
319
319 div.wiki div.toc {
320 div.wiki div.toc {
320 background-color: #ffffdd;
321 background-color: #ffffdd;
321 border: 1px solid #e4e4e4;
322 border: 1px solid #e4e4e4;
322 padding: 4px;
323 padding: 4px;
323 line-height: 1.2em;
324 line-height: 1.2em;
324 margin-bottom: 12px;
325 margin-bottom: 12px;
325 margin-right: 12px;
326 margin-right: 12px;
326 display: table
327 display: table
327 }
328 }
328 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
329 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
329
330
330 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
331 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
331 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
332 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
332
333
333 div.wiki div.toc a {
334 div.wiki div.toc a {
334 display: block;
335 display: block;
335 font-size: 0.9em;
336 font-size: 0.9em;
336 font-weight: normal;
337 font-weight: normal;
337 text-decoration: none;
338 text-decoration: none;
338 color: #606060;
339 color: #606060;
339 }
340 }
340 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
341 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
341
342
342 div.wiki div.toc a.heading2 { margin-left: 6px; }
343 div.wiki div.toc a.heading2 { margin-left: 6px; }
343 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
344 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
344
345
345 /***** My page layout *****/
346 /***** My page layout *****/
346 .block-receiver {
347 .block-receiver {
347 border:1px dashed #c0c0c0;
348 border:1px dashed #c0c0c0;
348 margin-bottom: 20px;
349 margin-bottom: 20px;
349 padding: 15px 0 15px 0;
350 padding: 15px 0 15px 0;
350 }
351 }
351
352
352 .mypage-box {
353 .mypage-box {
353 margin:0 0 20px 0;
354 margin:0 0 20px 0;
354 color:#505050;
355 color:#505050;
355 line-height:1.5em;
356 line-height:1.5em;
356 }
357 }
357
358
358 .handle {
359 .handle {
359 cursor: move;
360 cursor: move;
360 }
361 }
361
362
362 a.close-icon {
363 a.close-icon {
363 display:block;
364 display:block;
364 margin-top:3px;
365 margin-top:3px;
365 overflow:hidden;
366 overflow:hidden;
366 width:12px;
367 width:12px;
367 height:12px;
368 height:12px;
368 background-repeat: no-repeat;
369 background-repeat: no-repeat;
369 cursor:pointer;
370 cursor:pointer;
370 background-image:url('../images/close.png');
371 background-image:url('../images/close.png');
371 }
372 }
372
373
373 a.close-icon:hover {
374 a.close-icon:hover {
374 background-image:url('../images/close_hl.png');
375 background-image:url('../images/close_hl.png');
375 }
376 }
376
377
377 /***** Gantt chart *****/
378 /***** Gantt chart *****/
378 .gantt_hdr {
379 .gantt_hdr {
379 position:absolute;
380 position:absolute;
380 top:0;
381 top:0;
381 height:16px;
382 height:16px;
382 border-top: 1px solid #c0c0c0;
383 border-top: 1px solid #c0c0c0;
383 border-bottom: 1px solid #c0c0c0;
384 border-bottom: 1px solid #c0c0c0;
384 border-right: 1px solid #c0c0c0;
385 border-right: 1px solid #c0c0c0;
385 text-align: center;
386 text-align: center;
386 overflow: hidden;
387 overflow: hidden;
387 }
388 }
388
389
389 .task {
390 .task {
390 position: absolute;
391 position: absolute;
391 height:8px;
392 height:8px;
392 font-size:0.8em;
393 font-size:0.8em;
393 color:#888;
394 color:#888;
394 padding:0;
395 padding:0;
395 margin:0;
396 margin:0;
396 line-height:0.8em;
397 line-height:0.8em;
397 }
398 }
398
399
399 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
400 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
400 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
401 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
401 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
402 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
402 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
403 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
403
404
404 /***** Icons *****/
405 /***** Icons *****/
405 .icon {
406 .icon {
406 background-position: 0% 40%;
407 background-position: 0% 40%;
407 background-repeat: no-repeat;
408 background-repeat: no-repeat;
408 padding-left: 20px;
409 padding-left: 20px;
409 padding-top: 2px;
410 padding-top: 2px;
410 padding-bottom: 3px;
411 padding-bottom: 3px;
411 }
412 }
412
413
413 .icon22 {
414 .icon22 {
414 background-position: 0% 40%;
415 background-position: 0% 40%;
415 background-repeat: no-repeat;
416 background-repeat: no-repeat;
416 padding-left: 26px;
417 padding-left: 26px;
417 line-height: 22px;
418 line-height: 22px;
418 vertical-align: middle;
419 vertical-align: middle;
419 }
420 }
420
421
421 .icon-add { background-image: url(../images/add.png); }
422 .icon-add { background-image: url(../images/add.png); }
422 .icon-edit { background-image: url(../images/edit.png); }
423 .icon-edit { background-image: url(../images/edit.png); }
423 .icon-del { background-image: url(../images/delete.png); }
424 .icon-del { background-image: url(../images/delete.png); }
424 .icon-move { background-image: url(../images/move.png); }
425 .icon-move { background-image: url(../images/move.png); }
425 .icon-save { background-image: url(../images/save.png); }
426 .icon-save { background-image: url(../images/save.png); }
426 .icon-cancel { background-image: url(../images/cancel.png); }
427 .icon-cancel { background-image: url(../images/cancel.png); }
427 .icon-pdf { background-image: url(../images/pdf.png); }
428 .icon-pdf { background-image: url(../images/pdf.png); }
428 .icon-csv { background-image: url(../images/csv.png); }
429 .icon-csv { background-image: url(../images/csv.png); }
429 .icon-html { background-image: url(../images/html.png); }
430 .icon-html { background-image: url(../images/html.png); }
430 .icon-image { background-image: url(../images/image.png); }
431 .icon-image { background-image: url(../images/image.png); }
431 .icon-txt { background-image: url(../images/txt.png); }
432 .icon-txt { background-image: url(../images/txt.png); }
432 .icon-file { background-image: url(../images/file.png); }
433 .icon-file { background-image: url(../images/file.png); }
433 .icon-folder { background-image: url(../images/folder.png); }
434 .icon-folder { background-image: url(../images/folder.png); }
434 .icon-package { background-image: url(../images/package.png); }
435 .icon-package { background-image: url(../images/package.png); }
435 .icon-home { background-image: url(../images/home.png); }
436 .icon-home { background-image: url(../images/home.png); }
436 .icon-user { background-image: url(../images/user.png); }
437 .icon-user { background-image: url(../images/user.png); }
437 .icon-mypage { background-image: url(../images/user_page.png); }
438 .icon-mypage { background-image: url(../images/user_page.png); }
438 .icon-admin { background-image: url(../images/admin.png); }
439 .icon-admin { background-image: url(../images/admin.png); }
439 .icon-projects { background-image: url(../images/projects.png); }
440 .icon-projects { background-image: url(../images/projects.png); }
440 .icon-logout { background-image: url(../images/logout.png); }
441 .icon-logout { background-image: url(../images/logout.png); }
441 .icon-help { background-image: url(../images/help.png); }
442 .icon-help { background-image: url(../images/help.png); }
442 .icon-attachment { background-image: url(../images/attachment.png); }
443 .icon-attachment { background-image: url(../images/attachment.png); }
443 .icon-index { background-image: url(../images/index.png); }
444 .icon-index { background-image: url(../images/index.png); }
444 .icon-history { background-image: url(../images/history.png); }
445 .icon-history { background-image: url(../images/history.png); }
445 .icon-feed { background-image: url(../images/feed.png); }
446 .icon-feed { background-image: url(../images/feed.png); }
446 .icon-time { background-image: url(../images/time.png); }
447 .icon-time { background-image: url(../images/time.png); }
447 .icon-stats { background-image: url(../images/stats.png); }
448 .icon-stats { background-image: url(../images/stats.png); }
448 .icon-warning { background-image: url(../images/warning.png); }
449 .icon-warning { background-image: url(../images/warning.png); }
449 .icon-fav { background-image: url(../images/fav.png); }
450 .icon-fav { background-image: url(../images/fav.png); }
450 .icon-fav-off { background-image: url(../images/fav_off.png); }
451 .icon-fav-off { background-image: url(../images/fav_off.png); }
451 .icon-reload { background-image: url(../images/reload.png); }
452 .icon-reload { background-image: url(../images/reload.png); }
452 .icon-lock { background-image: url(../images/locked.png); }
453 .icon-lock { background-image: url(../images/locked.png); }
453 .icon-unlock { background-image: url(../images/unlock.png); }
454 .icon-unlock { background-image: url(../images/unlock.png); }
454 .icon-note { background-image: url(../images/note.png); }
455 .icon-note { background-image: url(../images/note.png); }
455
456
456 .icon22-projects { background-image: url(../images/22x22/projects.png); }
457 .icon22-projects { background-image: url(../images/22x22/projects.png); }
457 .icon22-users { background-image: url(../images/22x22/users.png); }
458 .icon22-users { background-image: url(../images/22x22/users.png); }
458 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
459 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
459 .icon22-role { background-image: url(../images/22x22/role.png); }
460 .icon22-role { background-image: url(../images/22x22/role.png); }
460 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
461 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
461 .icon22-options { background-image: url(../images/22x22/options.png); }
462 .icon22-options { background-image: url(../images/22x22/options.png); }
462 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
463 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
463 .icon22-authent { background-image: url(../images/22x22/authent.png); }
464 .icon22-authent { background-image: url(../images/22x22/authent.png); }
464 .icon22-info { background-image: url(../images/22x22/info.png); }
465 .icon22-info { background-image: url(../images/22x22/info.png); }
465 .icon22-comment { background-image: url(../images/22x22/comment.png); }
466 .icon22-comment { background-image: url(../images/22x22/comment.png); }
466 .icon22-package { background-image: url(../images/22x22/package.png); }
467 .icon22-package { background-image: url(../images/22x22/package.png); }
467 .icon22-settings { background-image: url(../images/22x22/settings.png); }
468 .icon22-settings { background-image: url(../images/22x22/settings.png); }
468 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
469 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
469
470
470 /***** Media print specific styles *****/
471 /***** Media print specific styles *****/
471 @media print {
472 @media print {
472 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual { display:none; }
473 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual { display:none; }
473 #main { background: #fff; }
474 #main { background: #fff; }
474 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
475 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
475 }
476 }
@@ -1,90 +1,91
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 require File.dirname(__FILE__) + '/../test_helper'
18 require File.dirname(__FILE__) + '/../test_helper'
19 require 'my_controller'
19 require 'my_controller'
20
20
21 # Re-raise errors caught by the controller.
21 # Re-raise errors caught by the controller.
22 class MyController; def rescue_action(e) raise e end; end
22 class MyController; def rescue_action(e) raise e end; end
23
23
24 class MyControllerTest < Test::Unit::TestCase
24 class MyControllerTest < Test::Unit::TestCase
25 fixtures :users
25 fixtures :users
26
26
27 def setup
27 def setup
28 @controller = MyController.new
28 @controller = MyController.new
29 @request = ActionController::TestRequest.new
29 @request = ActionController::TestRequest.new
30 @request.session[:user_id] = 2
30 @request.session[:user_id] = 2
31 @response = ActionController::TestResponse.new
31 @response = ActionController::TestResponse.new
32 end
32 end
33
33
34 def test_index
34 def test_index
35 get :index
35 get :index
36 assert_response :success
36 assert_response :success
37 assert_template 'page'
37 assert_template 'page'
38 end
38 end
39
39
40 def test_page
40 def test_page
41 get :page
41 get :page
42 assert_response :success
42 assert_response :success
43 assert_template 'page'
43 assert_template 'page'
44 end
44 end
45
45
46 def test_get_account
46 def test_get_account
47 get :account
47 get :account
48 assert_response :success
48 assert_response :success
49 assert_template 'account'
49 assert_template 'account'
50 assert_equal User.find(2), assigns(:user)
50 assert_equal User.find(2), assigns(:user)
51 end
51 end
52
52
53 def test_update_account
53 def test_update_account
54 post :account, :user => {:firstname => "Joe", :login => "root", :admin => 1}
54 post :account, :user => {:firstname => "Joe", :login => "root", :admin => 1}
55 assert_redirected_to 'my/account'
55 assert_redirected_to 'my/account'
56 user = User.find(2)
56 user = User.find(2)
57 assert_equal user, assigns(:user)
57 assert_equal user, assigns(:user)
58 assert_equal "Joe", user.firstname
58 assert_equal "Joe", user.firstname
59 assert_equal "jsmith", user.login
59 assert_equal "jsmith", user.login
60 assert !user.admin?
60 assert !user.admin?
61 end
61 end
62
62
63 def test_change_password
63 def test_change_password
64 get :account
64 get :password
65 assert_response :success
65 assert_response :success
66 assert_template 'account'
66 assert_template 'password'
67
67
68 # non matching password confirmation
68 # non matching password confirmation
69 post :change_password, :password => 'jsmith',
69 post :password, :password => 'jsmith',
70 :new_password => 'hello',
70 :new_password => 'hello',
71 :new_password_confirmation => 'hello2'
71 :new_password_confirmation => 'hello2'
72 assert_response :success
72 assert_response :success
73 assert_template 'account'
73 assert_template 'password'
74 assert_tag :tag => "div", :attributes => { :class => "errorExplanation" }
74 assert_tag :tag => "div", :attributes => { :class => "errorExplanation" }
75
75
76 # wrong password
76 # wrong password
77 post :change_password, :password => 'wrongpassword',
77 post :password, :password => 'wrongpassword',
78 :new_password => 'hello',
78 :new_password => 'hello',
79 :new_password_confirmation => 'hello'
79 :new_password_confirmation => 'hello'
80 assert_redirected_to 'my/account'
80 assert_response :success
81 assert_template 'password'
81 assert_equal 'Wrong password', flash[:error]
82 assert_equal 'Wrong password', flash[:error]
82
83
83 # good password
84 # good password
84 post :change_password, :password => 'jsmith',
85 post :password, :password => 'jsmith',
85 :new_password => 'hello',
86 :new_password => 'hello',
86 :new_password_confirmation => 'hello'
87 :new_password_confirmation => 'hello'
87 assert_redirected_to 'my/account'
88 assert_redirected_to 'my/account'
88 assert User.try_to_login('jsmith', 'hello')
89 assert User.try_to_login('jsmith', 'hello')
89 end
90 end
90 end
91 end
@@ -1,108 +1,132
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 require File.dirname(__FILE__) + '/../test_helper'
18 require File.dirname(__FILE__) + '/../test_helper'
19
19
20 class UserTest < Test::Unit::TestCase
20 class UserTest < Test::Unit::TestCase
21 fixtures :users, :members, :projects
21 fixtures :users, :members, :projects
22
22
23 def setup
23 def setup
24 @admin = User.find(1)
24 @admin = User.find(1)
25 @jsmith = User.find(2)
25 @jsmith = User.find(2)
26 @dlopper = User.find(3)
26 @dlopper = User.find(3)
27 end
27 end
28
28
29 def test_truth
29 def test_truth
30 assert_kind_of User, @jsmith
30 assert_kind_of User, @jsmith
31 end
31 end
32
32
33 def test_create
33 def test_create
34 user = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo")
34 user = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo")
35
35
36 user.login = "jsmith"
36 user.login = "jsmith"
37 user.password, user.password_confirmation = "password", "password"
37 user.password, user.password_confirmation = "password", "password"
38 # login uniqueness
38 # login uniqueness
39 assert !user.save
39 assert !user.save
40 assert_equal 1, user.errors.count
40 assert_equal 1, user.errors.count
41
41
42 user.login = "newuser"
42 user.login = "newuser"
43 user.password, user.password_confirmation = "passwd", "password"
43 user.password, user.password_confirmation = "passwd", "password"
44 # password confirmation
44 # password confirmation
45 assert !user.save
45 assert !user.save
46 assert_equal 1, user.errors.count
46 assert_equal 1, user.errors.count
47
47
48 user.password, user.password_confirmation = "password", "password"
48 user.password, user.password_confirmation = "password", "password"
49 assert user.save
49 assert user.save
50 end
50 end
51
51
52 def test_update
52 def test_update
53 assert_equal "admin", @admin.login
53 assert_equal "admin", @admin.login
54 @admin.login = "john"
54 @admin.login = "john"
55 assert @admin.save, @admin.errors.full_messages.join("; ")
55 assert @admin.save, @admin.errors.full_messages.join("; ")
56 @admin.reload
56 @admin.reload
57 assert_equal "john", @admin.login
57 assert_equal "john", @admin.login
58 end
58 end
59
59
60 def test_validate
60 def test_validate
61 @admin.login = ""
61 @admin.login = ""
62 assert !@admin.save
62 assert !@admin.save
63 assert_equal 2, @admin.errors.count
63 assert_equal 2, @admin.errors.count
64 end
64 end
65
65
66 def test_password
66 def test_password
67 user = User.try_to_login("admin", "admin")
67 user = User.try_to_login("admin", "admin")
68 assert_kind_of User, user
68 assert_kind_of User, user
69 assert_equal "admin", user.login
69 assert_equal "admin", user.login
70 user.password = "hello"
70 user.password = "hello"
71 assert user.save
71 assert user.save
72
72
73 user = User.try_to_login("admin", "hello")
73 user = User.try_to_login("admin", "hello")
74 assert_kind_of User, user
74 assert_kind_of User, user
75 assert_equal "admin", user.login
75 assert_equal "admin", user.login
76 assert_equal User.hash_password("hello"), user.hashed_password
76 assert_equal User.hash_password("hello"), user.hashed_password
77 end
77 end
78
78
79 def test_lock
79 def test_lock
80 user = User.try_to_login("jsmith", "jsmith")
80 user = User.try_to_login("jsmith", "jsmith")
81 assert_equal @jsmith, user
81 assert_equal @jsmith, user
82
82
83 @jsmith.status = User::STATUS_LOCKED
83 @jsmith.status = User::STATUS_LOCKED
84 assert @jsmith.save
84 assert @jsmith.save
85
85
86 user = User.try_to_login("jsmith", "jsmith")
86 user = User.try_to_login("jsmith", "jsmith")
87 assert_equal nil, user
87 assert_equal nil, user
88 end
88 end
89
89
90 def test_rss_key
90 def test_rss_key
91 assert_nil @jsmith.rss_token
91 assert_nil @jsmith.rss_token
92 key = @jsmith.rss_key
92 key = @jsmith.rss_key
93 assert_equal 40, key.length
93 assert_equal 40, key.length
94
94
95 @jsmith.reload
95 @jsmith.reload
96 assert_equal key, @jsmith.rss_key
96 assert_equal key, @jsmith.rss_key
97 end
97 end
98
98
99 def test_role_for_project
99 def test_role_for_project
100 # user with a role
100 # user with a role
101 role = @jsmith.role_for_project(Project.find(1))
101 role = @jsmith.role_for_project(Project.find(1))
102 assert_kind_of Role, role
102 assert_kind_of Role, role
103 assert_equal "Manager", role.name
103 assert_equal "Manager", role.name
104
104
105 # user with no role
105 # user with no role
106 assert !@dlopper.role_for_project(Project.find(2)).member?
106 assert !@dlopper.role_for_project(Project.find(2)).member?
107 end
107 end
108
109 def test_mail_notification_all
110 @jsmith.mail_notification = true
111 @jsmith.notified_project_ids = []
112 @jsmith.save
113 @jsmith.reload
114 assert @jsmith.projects.first.recipients.include?(@jsmith.mail)
115 end
116
117 def test_mail_notification_selected
118 @jsmith.mail_notification = false
119 @jsmith.notified_project_ids = [@jsmith.projects.first.id]
120 @jsmith.save
121 @jsmith.reload
122 assert @jsmith.projects.first.recipients.include?(@jsmith.mail)
123 end
124
125 def test_mail_notification_none
126 @jsmith.mail_notification = false
127 @jsmith.notified_project_ids = []
128 @jsmith.save
129 @jsmith.reload
130 assert !@jsmith.projects.first.recipients.include?(@jsmith.mail)
131 end
108 end
132 end
General Comments 0
You need to be logged in to leave comments. Login now