##// END OF EJS Templates
Initial commit for svn repository management and access control:...
Jean-Philippe Lang -
r393:4ff8386e3dfe
parent child
Show More
@@ -0,0 +1,25
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 class SysApi < ActionWebService::API::Base
19 api_method :projects,
20 :expects => [],
21 :returns => [[Project]]
22 api_method :repository_created,
23 :expects => [:int, :string],
24 :returns => [:int]
25 end
@@ -0,0 +1,44
1 # redMine - project management software
2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 class SysController < ActionController::Base
19 wsdl_service_name 'Sys'
20 web_service_api SysApi
21 web_service_scaffold :invoke
22
23 before_invocation :check_enabled
24
25 def projects
26 Project.find(:all, :include => :repository)
27 end
28
29 def repository_created(project_id, url)
30 project = Project.find_by_id(project_id)
31 return 0 unless project && project.repository.nil?
32 logger.debug "Repository for #{project.name} created"
33 repository = Repository.new(:project => project, :url => url)
34 repository.root_url = url
35 repository.save
36 repository.id
37 end
38
39 protected
40
41 def check_enabled(name, args)
42 Setting.sys_api_enabled?
43 end
44 end
@@ -0,0 +1,24
1 /* ssh views */
2
3 CREATE OR REPLACE VIEW ssh_users as
4 select login as username, hashed_password as password
5 from users
6 where status = 1;
7
8
9 /* nss views */
10
11 CREATE OR REPLACE VIEW nss_groups AS
12 select identifier AS name, (id + 5000) AS gid, 'x' AS password
13 from projects;
14
15 CREATE OR REPLACE VIEW nss_users AS
16 select login AS username, CONCAT_WS(' ', firstname, lastname) as realname, (id + 5000) AS uid, 'x' AS password
17 from users
18 where status = 1;
19
20 CREATE OR REPLACE VIEW nss_grouplist AS
21 select (members.project_id + 5000) AS gid, users.login AS username
22 from users, members
23 where users.id = members.user_id
24 and users.status = 1;
@@ -0,0 +1,75
1 #!/usr/bin/perl
2 #
3 # redMine is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16
17 use strict;
18 use SOAP::Lite;
19
20 my $wdsl = 'http://192.168.0.10:3000/sys/service.wsdl';
21 my $service = SOAP::Lite->service($wdsl);
22 my $repos_base = '/var/svn';
23
24 my $projects = $service->Projects('');
25
26 foreach my $project (@{$projects}) {
27 my $repos_name = $project->{identifier};
28
29 if ($repos_name eq "") {
30 print("\tno identifier for project $project->{name}\n");
31 next;
32 }
33
34 unless ($repos_name =~ /^[a-z0-9\-]+$/) {
35 print("\tinvalid identifier for project $project->{name}\n");
36 next;
37 }
38
39 my $repos_path = "$repos_base/$repos_name";
40
41 if (-e $repos_path) {
42 # check unix right and change them if needed
43 my $other_read = (stat($repos_path))[2] & 00007;
44 my $right;
45
46 if ($project->{is_public} and not $other_read) {
47 $right = "0775";
48 } elsif (not $project->{is_public} and $other_read) {
49 $right = "0770";
50 } else {
51 next;
52 }
53
54 # change mode
55 system('chmod', '-R', $right, $repos_path) == 0 or
56 warn("\tunable to change mode on $repos_path : $?\n"), next;
57
58 print "\tmode change on $repos_path\n";
59
60 } else {
61 # change umask to suit the repository's privacy
62 $project->{is_public} ? umask 0002 : umask 0007;
63
64 # create the repository
65 system('svnadmin', 'create', $repos_path) == 0 or
66 warn("\tsystem svnadmin failed unable to create $repos_path\n"), next;
67
68 # set the group owner
69 system('chown', '-R', "root:$repos_name", $repos_path) == 0 or
70 warn("\tunable to create $repos_path : $?\n"), next;
71
72 print "\trepository $repos_path created\n";
73 my $call = $service->RepositoryCreated($project->{id}, "svn://host/$repos_name");
74 }
75 }
@@ -0,0 +1,25
1 #!/usr/bin/perl
2 #
3 # redMine is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16
17 # modify to suit your repository base
18 my $repos_base = '/var/svn';
19
20 my $path = '/usr/bin/';
21 my %kwown_commands = map { $_ => 1 } qw/svnserve/;
22
23 umask 0002;
24
25 exec ('/usr/bin/svnserve', '-r', $repos_base, '-t');
@@ -1,69 +1,79
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 has_many :versions, :dependent => :destroy, :order => "#{Version.table_name}.effective_date DESC, #{Version.table_name}.name DESC"
19 has_many :versions, :dependent => :destroy, :order => "#{Version.table_name}.effective_date DESC, #{Version.table_name}.name DESC"
20 has_many :members, :dependent => :delete_all, :include => :user, :conditions => "#{User.table_name}.status=#{User::STATUS_ACTIVE}"
20 has_many :members, :dependent => :delete_all, :include => :user, :conditions => "#{User.table_name}.status=#{User::STATUS_ACTIVE}"
21 has_many :users, :through => :members
21 has_many :users, :through => :members
22 has_many :custom_values, :dependent => :delete_all, :as => :customized
22 has_many :custom_values, :dependent => :delete_all, :as => :customized
23 has_many :issues, :dependent => :destroy, :order => "#{Issue.table_name}.created_on DESC", :include => [:status, :tracker]
23 has_many :issues, :dependent => :destroy, :order => "#{Issue.table_name}.created_on DESC", :include => [:status, :tracker]
24 has_many :time_entries, :dependent => :delete_all
24 has_many :time_entries, :dependent => :delete_all
25 has_many :queries, :dependent => :delete_all
25 has_many :queries, :dependent => :delete_all
26 has_many :documents, :dependent => :destroy
26 has_many :documents, :dependent => :destroy
27 has_many :news, :dependent => :delete_all, :include => :author
27 has_many :news, :dependent => :delete_all, :include => :author
28 has_many :issue_categories, :dependent => :delete_all, :order => "#{IssueCategory.table_name}.name"
28 has_many :issue_categories, :dependent => :delete_all, :order => "#{IssueCategory.table_name}.name"
29 has_one :repository, :dependent => :destroy
29 has_one :repository, :dependent => :destroy
30 has_one :wiki, :dependent => :destroy
30 has_one :wiki, :dependent => :destroy
31 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'
31 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'
32 acts_as_tree :order => "name", :counter_cache => true
32 acts_as_tree :order => "name", :counter_cache => true
33
33
34 validates_presence_of :name, :description
34 validates_presence_of :name, :description, :identifier
35 validates_uniqueness_of :name
35 validates_uniqueness_of :name, :identifier
36 validates_associated :custom_values, :on => :update
36 validates_associated :custom_values, :on => :update
37 validates_associated :repository, :wiki
37 validates_associated :repository, :wiki
38 validates_format_of :name, :with => /^[\w\s\'\-]*$/i
38 validates_format_of :name, :with => /^[\w\s\'\-]*$/i
39
39 validates_length_of :identifier, :maximum => 12
40 validates_format_of :identifier, :with => /^[a-z0-9\-]*$/
41
42 def identifier=(identifier)
43 super unless identifier_frozen?
44 end
45
46 def identifier_frozen?
47 errors[:identifier].nil? && !(new_record? || identifier.blank?)
48 end
49
40 # returns latest created projects
50 # returns latest created projects
41 # non public projects will be returned only if user is a member of those
51 # non public projects will be returned only if user is a member of those
42 def self.latest(user=nil, count=5)
52 def self.latest(user=nil, count=5)
43 find(:all, :limit => count, :conditions => visible_by(user), :order => "created_on DESC")
53 find(:all, :limit => count, :conditions => visible_by(user), :order => "created_on DESC")
44 end
54 end
45
55
46 def self.visible_by(user=nil)
56 def self.visible_by(user=nil)
47 if user && !user.memberships.empty?
57 if user && !user.memberships.empty?
48 return ["#{Project.table_name}.is_public = ? or #{Project.table_name}.id IN (#{user.memberships.collect{|m| m.project_id}.join(',')})", true]
58 return ["#{Project.table_name}.is_public = ? or #{Project.table_name}.id IN (#{user.memberships.collect{|m| m.project_id}.join(',')})", true]
49 else
59 else
50 return ["#{Project.table_name}.is_public = ?", true]
60 return ["#{Project.table_name}.is_public = ?", true]
51 end
61 end
52 end
62 end
53
63
54 # Returns an array of all custom fields enabled for project issues
64 # Returns an array of all custom fields enabled for project issues
55 # (explictly associated custom fields and custom fields enabled for all projects)
65 # (explictly associated custom fields and custom fields enabled for all projects)
56 def custom_fields_for_issues(tracker)
66 def custom_fields_for_issues(tracker)
57 all_custom_fields.select {|c| tracker.custom_fields.include? c }
67 all_custom_fields.select {|c| tracker.custom_fields.include? c }
58 end
68 end
59
69
60 def all_custom_fields
70 def all_custom_fields
61 @all_custom_fields ||= (IssueCustomField.for_all + custom_fields).uniq
71 @all_custom_fields ||= (IssueCustomField.for_all + custom_fields).uniq
62 end
72 end
63
73
64 protected
74 protected
65 def validate
75 def validate
66 errors.add(parent_id, " must be a root project") if parent and parent.parent
76 errors.add(parent_id, " must be a root project") if parent and parent.parent
67 errors.add_to_base("A project with subprojects can't be a subproject") if parent and children.size > 0
77 errors.add_to_base("A project with subprojects can't be a subproject") if parent and children.size > 0
68 end
78 end
69 end
79 end
@@ -1,60 +1,61
1 <%= error_messages_for 'project' %>
1 <%= error_messages_for 'project' %>
2
2
3 <div class="box">
3 <div class="box">
4 <!--[form:project]-->
4 <!--[form:project]-->
5 <p><%= f.text_field :name, :required => true %></p>
5 <p><%= f.text_field :name, :required => true %></p>
6
6
7 <% if admin_loggedin? and !@root_projects.empty? %>
7 <% if admin_loggedin? and !@root_projects.empty? %>
8 <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p>
8 <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p>
9 <% end %>
9 <% end %>
10
10
11 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p>
11 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p>
12 <p><%= f.text_field :identifier, :required => true, :size => 15, :disabled => @project.identifier_frozen? %><br /><em><%= l(:text_project_identifier_info) unless @project.identifier_frozen? %></em></p>
12 <p><%= f.text_field :homepage, :size => 40 %></p>
13 <p><%= f.text_field :homepage, :size => 40 %></p>
13 <p><%= f.check_box :is_public %></p>
14 <p><%= f.check_box :is_public %></p>
14
15
15 <% for @custom_value in @custom_values %>
16 <% for @custom_value in @custom_values %>
16 <p><%= custom_field_tag_with_label @custom_value %></p>
17 <p><%= custom_field_tag_with_label @custom_value %></p>
17 <% end %>
18 <% end %>
18
19
19 <% unless @custom_fields.empty? %>
20 <% unless @custom_fields.empty? %>
20 <p><label><%=l(:label_custom_field_plural)%></label>
21 <p><label><%=l(:label_custom_field_plural)%></label>
21 <% for custom_field in @custom_fields %>
22 <% for custom_field in @custom_fields %>
22 <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
23 <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
23 <%= custom_field.name %>
24 <%= custom_field.name %>
24 <% end %></p>
25 <% end %></p>
25 <% end %>
26 <% end %>
26 <!--[eoform:project]-->
27 <!--[eoform:project]-->
27 </div>
28 </div>
28
29
29 <div class="box"><h3><%= check_box_tag "repository_enabled", 1, !@project.repository.nil?, :onclick => "Element.toggle('repository');" %> <%= l(:label_repository) %></h3>
30 <div class="box"><h3><%= check_box_tag "repository_enabled", 1, !@project.repository.nil?, :onclick => "Element.toggle('repository');" %> <%= l(:label_repository) %></h3>
30 <%= hidden_field_tag "repository_enabled", 0 %>
31 <%= hidden_field_tag "repository_enabled", 0 %>
31 <div id="repository">
32 <div id="repository">
32 <% fields_for :repository, @project.repository, { :builder => TabularFormBuilder, :lang => current_language} do |repository| %>
33 <% fields_for :repository, @project.repository, { :builder => TabularFormBuilder, :lang => current_language} do |repository| %>
33 <p><%= repository.text_field :url, :size => 60, :required => true, :disabled => (@project.repository && !@project.repository.root_url.blank?) %><br />(http://, https://, svn://, file:///)</p>
34 <p><%= repository.text_field :url, :size => 60, :required => true, :disabled => (@project.repository && !@project.repository.root_url.blank?) %><br />(http://, https://, svn://, file:///)</p>
34 <p><%= repository.text_field :login, :size => 30 %></p>
35 <p><%= repository.text_field :login, :size => 30 %></p>
35 <p><%= repository.password_field :password, :size => 30 %></p>
36 <p><%= repository.password_field :password, :size => 30 %></p>
36 <% end %>
37 <% end %>
37 </div>
38 </div>
38 <%= javascript_tag "Element.hide('repository');" if @project.repository.nil? %>
39 <%= javascript_tag "Element.hide('repository');" if @project.repository.nil? %>
39 </div>
40 </div>
40
41
41 <div class="box">
42 <div class="box">
42 <h3><%= check_box_tag "wiki_enabled", 1, !@project.wiki.nil?, :onclick => "Element.toggle('wiki');" %> <%= l(:label_wiki) %></h3>
43 <h3><%= check_box_tag "wiki_enabled", 1, !@project.wiki.nil?, :onclick => "Element.toggle('wiki');" %> <%= l(:label_wiki) %></h3>
43 <%= hidden_field_tag "wiki_enabled", 0 %>
44 <%= hidden_field_tag "wiki_enabled", 0 %>
44 <div id="wiki">
45 <div id="wiki">
45 <% fields_for :wiki, @project.wiki, { :builder => TabularFormBuilder, :lang => current_language} do |wiki| %>
46 <% fields_for :wiki, @project.wiki, { :builder => TabularFormBuilder, :lang => current_language} do |wiki| %>
46 <p><%= wiki.text_field :start_page, :size => 60, :required => true %></p>
47 <p><%= wiki.text_field :start_page, :size => 60, :required => true %></p>
47 <% # content_tag("div", "", :id => "wiki_start_page_auto_complete", :class => "auto_complete") +
48 <% # content_tag("div", "", :id => "wiki_start_page_auto_complete", :class => "auto_complete") +
48 # auto_complete_field("wiki_start_page", { :url => { :controller => 'wiki', :action => 'auto_complete_for_wiki_page', :id => @project } })
49 # auto_complete_field("wiki_start_page", { :url => { :controller => 'wiki', :action => 'auto_complete_for_wiki_page', :id => @project } })
49 %>
50 %>
50 <% end %>
51 <% end %>
51 </div>
52 </div>
52 <%= javascript_tag "Element.hide('wiki');" if @project.wiki.nil? %>
53 <%= javascript_tag "Element.hide('wiki');" if @project.wiki.nil? %>
53 </div>
54 </div>
54
55
55 <% content_for :header_tags do %>
56 <% content_for :header_tags do %>
56 <%= javascript_include_tag 'calendar/calendar' %>
57 <%= javascript_include_tag 'calendar/calendar' %>
57 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
58 <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
58 <%= javascript_include_tag 'calendar/calendar-setup' %>
59 <%= javascript_include_tag 'calendar/calendar-setup' %>
59 <%= stylesheet_link_tag 'calendar' %>
60 <%= stylesheet_link_tag 'calendar' %>
60 <% end %> No newline at end of file
61 <% end %>
@@ -1,54 +1,57
1 <h2><%= l(:label_settings) %></h2>
1 <h2><%= l(:label_settings) %></h2>
2
2
3 <div id="settings">
3 <div id="settings">
4 <% form_tag({:action => 'edit'}, :class => "tabular") do %>
4 <% form_tag({:action => 'edit'}, :class => "tabular") do %>
5 <div class="box">
5 <div class="box">
6 <p><label><%= l(:setting_app_title) %></label>
6 <p><label><%= l(:setting_app_title) %></label>
7 <%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
7 <%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
8
8
9 <p><label><%= l(:setting_app_subtitle) %></label>
9 <p><label><%= l(:setting_app_subtitle) %></label>
10 <%= text_field_tag 'settings[app_subtitle]', Setting.app_subtitle, :size => 60 %></p>
10 <%= text_field_tag 'settings[app_subtitle]', Setting.app_subtitle, :size => 60 %></p>
11
11
12 <p><label><%= l(:setting_welcome_text) %></label>
12 <p><label><%= l(:setting_welcome_text) %></label>
13 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5 %></p>
13 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5 %></p>
14
14
15 <p><label><%= l(:setting_default_language) %></label>
15 <p><label><%= l(:setting_default_language) %></label>
16 <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p>
16 <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p>
17
17
18 <p><label><%= l(:setting_login_required) %></label>
18 <p><label><%= l(:setting_login_required) %></label>
19 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
19 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
20
20
21 <p><label><%= l(:setting_self_registration) %></label>
21 <p><label><%= l(:setting_self_registration) %></label>
22 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
22 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
23
23
24 <p><label><%= l(:label_password_lost) %></label>
24 <p><label><%= l(:label_password_lost) %></label>
25 <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p>
25 <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p>
26
26
27 <p><label><%= l(:setting_attachment_max_size) %></label>
27 <p><label><%= l(:setting_attachment_max_size) %></label>
28 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
28 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
29
29
30 <p><label><%= l(:setting_issues_export_limit) %></label>
30 <p><label><%= l(:setting_issues_export_limit) %></label>
31 <%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p>
31 <%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p>
32
32
33 <p><label><%= l(:setting_mail_from) %></label>
33 <p><label><%= l(:setting_mail_from) %></label>
34 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
34 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
35
35
36 <p><label><%= l(:setting_host_name) %></label>
36 <p><label><%= l(:setting_host_name) %></label>
37 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
37 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
38
38
39 <p><label><%= l(:setting_text_formatting) %></label>
39 <p><label><%= l(:setting_text_formatting) %></label>
40 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
40 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
41
41
42 <p><label><%= l(:setting_wiki_compression) %></label>
42 <p><label><%= l(:setting_wiki_compression) %></label>
43 <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p>
43 <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p>
44
44
45 <p><label><%= l(:setting_feeds_limit) %></label>
45 <p><label><%= l(:setting_feeds_limit) %></label>
46 <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p>
46 <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p>
47
47
48 <p><label><%= l(:setting_autofetch_changesets) %></label>
48 <p><label><%= l(:setting_autofetch_changesets) %></label>
49 <%= check_box_tag 'settings[autofetch_changesets]', 1, Setting.autofetch_changesets? %><%= hidden_field_tag 'settings[autofetch_changesets]', 0 %></p>
49 <%= check_box_tag 'settings[autofetch_changesets]', 1, Setting.autofetch_changesets? %><%= hidden_field_tag 'settings[autofetch_changesets]', 0 %></p>
50
50
51 <p><label><%= l(:setting_sys_api_enabled) %></label>
52 <%= check_box_tag 'settings[sys_api_enabled]', 1, Setting.sys_api_enabled? %><%= hidden_field_tag 'settings[sys_api_enabled]', 0 %></p>
53
51 </div>
54 </div>
52 <%= submit_tag l(:button_save) %>
55 <%= submit_tag l(:button_save) %>
53 </div>
56 </div>
54 <% end %> No newline at end of file
57 <% end %>
@@ -1,54 +1,56
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
18
19 # DO NOT MODIFY THIS FILE !!!
19 # DO NOT MODIFY THIS FILE !!!
20 # Settings can be defined through the application in Admin -> Settings
20 # Settings can be defined through the application in Admin -> Settings
21
21
22 app_title:
22 app_title:
23 default: redMine
23 default: redMine
24 app_subtitle:
24 app_subtitle:
25 default: Project management
25 default: Project management
26 welcome_text:
26 welcome_text:
27 default:
27 default:
28 login_required:
28 login_required:
29 default: 0
29 default: 0
30 self_registration:
30 self_registration:
31 default: 1
31 default: 1
32 lost_password:
32 lost_password:
33 default: 1
33 default: 1
34 attachment_max_size:
34 attachment_max_size:
35 format: int
35 format: int
36 default: 5120
36 default: 5120
37 issues_export_limit:
37 issues_export_limit:
38 format: int
38 format: int
39 default: 500
39 default: 500
40 mail_from:
40 mail_from:
41 default: redmine@somenet.foo
41 default: redmine@somenet.foo
42 text_formatting:
42 text_formatting:
43 default: textile
43 default: textile
44 wiki_compression:
44 wiki_compression:
45 default: ""
45 default: ""
46 default_language:
46 default_language:
47 default: en
47 default: en
48 host_name:
48 host_name:
49 default: localhost:3000
49 default: localhost:3000
50 feeds_limit:
50 feeds_limit:
51 format: int
51 format: int
52 default: 15
52 default: 15
53 autofetch_changesets:
53 autofetch_changesets:
54 default: 1
54 default: 1
55 sys_api_enabled:
56 default: 0
@@ -1,422 +1,425
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
36
37 general_fmt_age: %d Jahr
37 general_fmt_age: %d Jahr
38 general_fmt_age_plural: %d Jahre
38 general_fmt_age_plural: %d Jahre
39 general_fmt_date: %%d.%%m.%%y
39 general_fmt_date: %%d.%%m.%%y
40 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
40 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
41 general_fmt_datetime_short: %%d.%%m, %%H:%%M
41 general_fmt_datetime_short: %%d.%%m, %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'Nein'
43 general_text_No: 'Nein'
44 general_text_Yes: 'Ja'
44 general_text_Yes: 'Ja'
45 general_text_no: 'nein'
45 general_text_no: 'nein'
46 general_text_yes: 'ja'
46 general_text_yes: 'ja'
47 general_lang_de: 'Deutsch'
47 general_lang_de: 'Deutsch'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
52
52
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
54 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
54 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
55 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
55 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
56 notice_account_wrong_password: Falsches Kennwort
56 notice_account_wrong_password: Falsches Kennwort
57 notice_account_register_done: Konto wurde erfolgreich angelegt.
57 notice_account_register_done: Konto wurde erfolgreich angelegt.
58 notice_account_unknown_email: Unbekannter Benutzer.
58 notice_account_unknown_email: Unbekannter Benutzer.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
60 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
60 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
61 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
61 notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen.
62 notice_successful_create: Erfolgreich angelegt
62 notice_successful_create: Erfolgreich angelegt
63 notice_successful_update: Erfolgreiche Aktualisierung.
63 notice_successful_update: Erfolgreiche Aktualisierung.
64 notice_successful_delete: Erfolgreiche Löschung.
64 notice_successful_delete: Erfolgreiche Löschung.
65 notice_successful_connection: Verbindung erfolgreich.
65 notice_successful_connection: Verbindung erfolgreich.
66 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
66 notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden.
67 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
67 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
68 notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN.
68 notice_scm_error: Eintrag und/oder Revision besteht nicht im SVN.
69
69
70 mail_subject_lost_password: Ihr redMine Kennwort
70 mail_subject_lost_password: Ihr redMine Kennwort
71 mail_subject_register: redMine Kontoaktivierung
71 mail_subject_register: redMine Kontoaktivierung
72
72
73 gui_validation_error: 1 Fehler
73 gui_validation_error: 1 Fehler
74 gui_validation_error_plural: %d Fehler
74 gui_validation_error_plural: %d Fehler
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Beschreibung
77 field_description: Beschreibung
78 field_summary: Zusammenfassung
78 field_summary: Zusammenfassung
79 field_is_required: Erforderlich
79 field_is_required: Erforderlich
80 field_firstname: Vorname
80 field_firstname: Vorname
81 field_lastname: Nachname
81 field_lastname: Nachname
82 field_mail: Email
82 field_mail: Email
83 field_filename: Datei
83 field_filename: Datei
84 field_filesize: Größe
84 field_filesize: Größe
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Angelegt
87 field_created_on: Angelegt
88 field_updated_on: Aktualisiert
88 field_updated_on: Aktualisiert
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Für alle Projekte
90 field_is_for_all: Für alle Projekte
91 field_possible_values: Mögliche Werte
91 field_possible_values: Mögliche Werte
92 field_regexp: Regulärer Ausdruck
92 field_regexp: Regulärer Ausdruck
93 field_min_length: Minimale Länge
93 field_min_length: Minimale Länge
94 field_max_length: Maximale Länge
94 field_max_length: Maximale Länge
95 field_value: Wert
95 field_value: Wert
96 field_category: Kategorie
96 field_category: Kategorie
97 field_title: Titel
97 field_title: Titel
98 field_project: Projekt
98 field_project: Projekt
99 field_issue: Ticket
99 field_issue: Ticket
100 field_status: Status
100 field_status: Status
101 field_notes: Kommentare
101 field_notes: Kommentare
102 field_is_closed: Problem erledigt
102 field_is_closed: Problem erledigt
103 field_is_default: Default
103 field_is_default: Default
104 field_html_color: Farbe
104 field_html_color: Farbe
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Thema
106 field_subject: Thema
107 field_due_date: Abgabedatum
107 field_due_date: Abgabedatum
108 field_assigned_to: Zugewiesen an
108 field_assigned_to: Zugewiesen an
109 field_priority: Priorität
109 field_priority: Priorität
110 field_fixed_version: Erledigt in Version
110 field_fixed_version: Erledigt in Version
111 field_user: Benutzer
111 field_user: Benutzer
112 field_role: Rolle
112 field_role: Rolle
113 field_homepage: Startseite
113 field_homepage: Startseite
114 field_is_public: Öffentlich
114 field_is_public: Öffentlich
115 field_parent: Unterprojekt von
115 field_parent: Unterprojekt von
116 field_is_in_chlog: Ansicht im Change-Log
116 field_is_in_chlog: Ansicht im Change-Log
117 field_is_in_roadmap: Ansicht in der Roadmap
117 field_is_in_roadmap: Ansicht in der Roadmap
118 field_login: Mitgliedsname
118 field_login: Mitgliedsname
119 field_mail_notification: Mailbenachrichtigung
119 field_mail_notification: Mailbenachrichtigung
120 field_admin: Administrator
120 field_admin: Administrator
121 field_last_login_on: Letzte Anmeldung
121 field_last_login_on: Letzte Anmeldung
122 field_language: Sprache
122 field_language: Sprache
123 field_effective_date: Datum
123 field_effective_date: Datum
124 field_password: Kennwort
124 field_password: Kennwort
125 field_new_password: Neues Kennwort
125 field_new_password: Neues Kennwort
126 field_password_confirmation: Bestätigung
126 field_password_confirmation: Bestätigung
127 field_version: Version
127 field_version: Version
128 field_type: Typ
128 field_type: Typ
129 field_host: Host
129 field_host: Host
130 field_port: Port
130 field_port: Port
131 field_account: Konto
131 field_account: Konto
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Mitgliedsnameattribut
133 field_attr_login: Mitgliedsnameattribut
134 field_attr_firstname: Vornamensattribut
134 field_attr_firstname: Vornamensattribut
135 field_attr_lastname: Namenattribut
135 field_attr_lastname: Namenattribut
136 field_attr_mail: Emailattribut
136 field_attr_mail: Emailattribut
137 field_onthefly: On-the-fly Benutzerkreation
137 field_onthefly: On-the-fly Benutzerkreation
138 field_start_date: Beginn
138 field_start_date: Beginn
139 field_done_ratio: %% erledigt
139 field_done_ratio: %% erledigt
140 field_auth_source: Authentifizierungs-Modus
140 field_auth_source: Authentifizierungs-Modus
141 field_hide_mail: Email Adresse nicht anzeigen
141 field_hide_mail: Email Adresse nicht anzeigen
142 field_comment: Kommentar
142 field_comment: Kommentar
143 field_url: URL
143 field_url: URL
144 field_start_page: Hauptseite
144 field_start_page: Hauptseite
145 field_subproject: Subprojekt von
145 field_subproject: Subprojekt von
146 field_hours: Stunden
146 field_hours: Stunden
147 field_activity: Aktivität
147 field_activity: Aktivität
148 field_spent_on: Datum
148 field_spent_on: Datum
149 field_identifier: Identifier
149
150
150 setting_app_title: Applikation Titel
151 setting_app_title: Applikation Titel
151 setting_app_subtitle: Applikation Untertitel
152 setting_app_subtitle: Applikation Untertitel
152 setting_welcome_text: Willkommenstext
153 setting_welcome_text: Willkommenstext
153 setting_default_language: Default Sprache
154 setting_default_language: Default Sprache
154 setting_login_required: Authent. erfordert
155 setting_login_required: Authent. erfordert
155 setting_self_registration: Anmeldung ermöglicht
156 setting_self_registration: Anmeldung ermöglicht
156 setting_attachment_max_size: max. Dateigröße
157 setting_attachment_max_size: max. Dateigröße
157 setting_issues_export_limit: Limit Export Tickets
158 setting_issues_export_limit: Limit Export Tickets
158 setting_mail_from: Mail Absender
159 setting_mail_from: Mail Absender
159 setting_host_name: Host Name
160 setting_host_name: Host Name
160 setting_text_formatting: Textformatierung
161 setting_text_formatting: Textformatierung
161 setting_wiki_compression: Wiki-Historie komprimieren
162 setting_wiki_compression: Wiki-Historie komprimieren
162 setting_feeds_limit: Limit Feed Inhalt
163 setting_feeds_limit: Limit Feed Inhalt
163 setting_autofetch_changesets: Autofetch SVN commits
164 setting_autofetch_changesets: Autofetch SVN commits
165 setting_sys_api_enabled: Enable WS for repository management
164
166
165 label_user: Benutzer
167 label_user: Benutzer
166 label_user_plural: Benutzer
168 label_user_plural: Benutzer
167 label_user_new: Neuer Benutzer
169 label_user_new: Neuer Benutzer
168 label_project: Projekt
170 label_project: Projekt
169 label_project_new: Neues Projekt
171 label_project_new: Neues Projekt
170 label_project_plural: Projekte
172 label_project_plural: Projekte
171 label_project_latest: Neueste Projekte
173 label_project_latest: Neueste Projekte
172 label_issue: Ticket
174 label_issue: Ticket
173 label_issue_new: Neues Ticket
175 label_issue_new: Neues Ticket
174 label_issue_plural: Tickets
176 label_issue_plural: Tickets
175 label_issue_view_all: Alle Tickets ansehen
177 label_issue_view_all: Alle Tickets ansehen
176 label_document: Dokument
178 label_document: Dokument
177 label_document_new: Neues Dokument
179 label_document_new: Neues Dokument
178 label_document_plural: Dokumente
180 label_document_plural: Dokumente
179 label_role: Rolle
181 label_role: Rolle
180 label_role_plural: Rollen
182 label_role_plural: Rollen
181 label_role_new: Neue Rolle
183 label_role_new: Neue Rolle
182 label_role_and_permissions: Rollen und Rechte
184 label_role_and_permissions: Rollen und Rechte
183 label_member: Mitglied
185 label_member: Mitglied
184 label_member_new: Neues Mitglied
186 label_member_new: Neues Mitglied
185 label_member_plural: Mitglieder
187 label_member_plural: Mitglieder
186 label_tracker: Tracker
188 label_tracker: Tracker
187 label_tracker_plural: Tracker
189 label_tracker_plural: Tracker
188 label_tracker_new: Neuer Tracker
190 label_tracker_new: Neuer Tracker
189 label_workflow: Workflow
191 label_workflow: Workflow
190 label_issue_status: Ticket-Status
192 label_issue_status: Ticket-Status
191 label_issue_status_plural: Ticket-Status
193 label_issue_status_plural: Ticket-Status
192 label_issue_status_new: Neuer Status
194 label_issue_status_new: Neuer Status
193 label_issue_category: Ticket-Kategorie
195 label_issue_category: Ticket-Kategorie
194 label_issue_category_plural: Ticket-Kategorien
196 label_issue_category_plural: Ticket-Kategorien
195 label_issue_category_new: Neue Kategorie
197 label_issue_category_new: Neue Kategorie
196 label_custom_field: Benutzerdefiniertes Feld
198 label_custom_field: Benutzerdefiniertes Feld
197 label_custom_field_plural: Benutzerdefinierte Felder
199 label_custom_field_plural: Benutzerdefinierte Felder
198 label_custom_field_new: Neues Feld
200 label_custom_field_new: Neues Feld
199 label_enumerations: Aufzählungen
201 label_enumerations: Aufzählungen
200 label_enumeration_new: Neuer Wert
202 label_enumeration_new: Neuer Wert
201 label_information: Information
203 label_information: Information
202 label_information_plural: Informationen
204 label_information_plural: Informationen
203 label_please_login: Anmelden
205 label_please_login: Anmelden
204 label_register: Anmelden
206 label_register: Anmelden
205 label_password_lost: Kennwort vergessen
207 label_password_lost: Kennwort vergessen
206 label_home: Hauptseite
208 label_home: Hauptseite
207 label_my_page: Meine Seite
209 label_my_page: Meine Seite
208 label_my_account: Mein Konto
210 label_my_account: Mein Konto
209 label_my_projects: Meine Projekte
211 label_my_projects: Meine Projekte
210 label_administration: Administration
212 label_administration: Administration
211 label_login: Einloggen
213 label_login: Einloggen
212 label_logout: Abmelden
214 label_logout: Abmelden
213 label_help: Hilfe
215 label_help: Hilfe
214 label_reported_issues: Gemeldete Tickets
216 label_reported_issues: Gemeldete Tickets
215 label_assigned_to_me_issues: Mir zugewiesen
217 label_assigned_to_me_issues: Mir zugewiesen
216 label_last_login: Letzte Anmeldung
218 label_last_login: Letzte Anmeldung
217 label_last_updates: zuletzt aktualisiert
219 label_last_updates: zuletzt aktualisiert
218 label_last_updates_plural: %d zuletzt aktualisierten
220 label_last_updates_plural: %d zuletzt aktualisierten
219 label_registered_on: Angemeldet am
221 label_registered_on: Angemeldet am
220 label_activity: Aktivität
222 label_activity: Aktivität
221 label_new: Neu
223 label_new: Neu
222 label_logged_as: Angemeldet als
224 label_logged_as: Angemeldet als
223 label_environment: Environment
225 label_environment: Environment
224 label_authentication: Authentifizierung
226 label_authentication: Authentifizierung
225 label_auth_source: Authentifizierungs-Modus
227 label_auth_source: Authentifizierungs-Modus
226 label_auth_source_new: Neuer Authentifizierungs-Modus
228 label_auth_source_new: Neuer Authentifizierungs-Modus
227 label_auth_source_plural: Authentifizierungs-Arten
229 label_auth_source_plural: Authentifizierungs-Arten
228 label_subproject_plural: Sub Projekte
230 label_subproject_plural: Sub Projekte
229 label_min_max_length: Min - Max Länge
231 label_min_max_length: Min - Max Länge
230 label_list: Liste
232 label_list: Liste
231 label_date: Datum
233 label_date: Datum
232 label_integer: Zahl
234 label_integer: Zahl
233 label_boolean: Boolean
235 label_boolean: Boolean
234 label_string: Text
236 label_string: Text
235 label_text: Langer Text
237 label_text: Langer Text
236 label_attribute: Attribut
238 label_attribute: Attribut
237 label_attribute_plural: Attribute
239 label_attribute_plural: Attribute
238 label_download: %d Download
240 label_download: %d Download
239 label_download_plural: %d Downloads
241 label_download_plural: %d Downloads
240 label_no_data: Nichts anzuzeigen
242 label_no_data: Nichts anzuzeigen
241 label_change_status: Statuswechsel
243 label_change_status: Statuswechsel
242 label_history: Historie
244 label_history: Historie
243 label_attachment: Datei
245 label_attachment: Datei
244 label_attachment_new: Neue Datei
246 label_attachment_new: Neue Datei
245 label_attachment_delete: Anhang löschen
247 label_attachment_delete: Anhang löschen
246 label_attachment_plural: Dateien
248 label_attachment_plural: Dateien
247 label_report: Bericht
249 label_report: Bericht
248 label_report_plural: Berichte
250 label_report_plural: Berichte
249 label_news: News
251 label_news: News
250 label_news_new: News hinzufügen
252 label_news_new: News hinzufügen
251 label_news_plural: News
253 label_news_plural: News
252 label_news_latest: Letzte News
254 label_news_latest: Letzte News
253 label_news_view_all: Alle News anzeigen
255 label_news_view_all: Alle News anzeigen
254 label_change_log: Change-Log
256 label_change_log: Change-Log
255 label_settings: Konfiguration
257 label_settings: Konfiguration
256 label_overview: Übersicht
258 label_overview: Übersicht
257 label_version: Version
259 label_version: Version
258 label_version_new: Neue Version
260 label_version_new: Neue Version
259 label_version_plural: Versionen
261 label_version_plural: Versionen
260 label_confirmation: Bestätigung
262 label_confirmation: Bestätigung
261 label_export_to: Export zu
263 label_export_to: Export zu
262 label_read: Lesen...
264 label_read: Lesen...
263 label_public_projects: Öffentliche Projekte
265 label_public_projects: Öffentliche Projekte
264 label_open_issues: offen
266 label_open_issues: offen
265 label_open_issues_plural: offen
267 label_open_issues_plural: offen
266 label_closed_issues: geschlossen
268 label_closed_issues: geschlossen
267 label_closed_issues_plural: geschlossen
269 label_closed_issues_plural: geschlossen
268 label_total: Gesamtzahl
270 label_total: Gesamtzahl
269 label_permissions: Berechtigungen
271 label_permissions: Berechtigungen
270 label_current_status: Gegenwärtiger Status
272 label_current_status: Gegenwärtiger Status
271 label_new_statuses_allowed: Neue Berechtigungen
273 label_new_statuses_allowed: Neue Berechtigungen
272 label_all: alle
274 label_all: alle
273 label_none: kein
275 label_none: kein
274 label_next: Weiter
276 label_next: Weiter
275 label_previous: Zurück
277 label_previous: Zurück
276 label_used_by: Benutzt von
278 label_used_by: Benutzt von
277 label_details: Details...
279 label_details: Details...
278 label_add_note: Kommentar hinzufügen
280 label_add_note: Kommentar hinzufügen
279 label_per_page: Pro Seite
281 label_per_page: Pro Seite
280 label_calendar: Kalender
282 label_calendar: Kalender
281 label_months_from: Monate ab
283 label_months_from: Monate ab
282 label_gantt: Gantt
284 label_gantt: Gantt
283 label_internal: Intern
285 label_internal: Intern
284 label_last_changes: %d letzte Änderungen
286 label_last_changes: %d letzte Änderungen
285 label_change_view_all: Alle Änderungen ansehen
287 label_change_view_all: Alle Änderungen ansehen
286 label_personalize_page: Diese Seite anpassen
288 label_personalize_page: Diese Seite anpassen
287 label_comment: Kommentar
289 label_comment: Kommentar
288 label_comment_plural: Kommentare
290 label_comment_plural: Kommentare
289 label_comment_add: Kommentar hinzufügen
291 label_comment_add: Kommentar hinzufügen
290 label_comment_added: Kommentar hinzugefügt
292 label_comment_added: Kommentar hinzugefügt
291 label_comment_delete: Kommentar löschen
293 label_comment_delete: Kommentar löschen
292 label_query: Benutzerdefinierte Abfrage
294 label_query: Benutzerdefinierte Abfrage
293 label_query_plural: Benutzerdefinierte Berichte
295 label_query_plural: Benutzerdefinierte Berichte
294 label_query_new: Neuer Bericht
296 label_query_new: Neuer Bericht
295 label_filter_add: Filter hinzufügen
297 label_filter_add: Filter hinzufügen
296 label_filter_plural: Filter
298 label_filter_plural: Filter
297 label_equals: ist
299 label_equals: ist
298 label_not_equals: ist nicht
300 label_not_equals: ist nicht
299 label_in_less_than: in weniger als
301 label_in_less_than: in weniger als
300 label_in_more_than: in mehr als
302 label_in_more_than: in mehr als
301 label_in: an
303 label_in: an
302 label_today: heute
304 label_today: heute
303 label_less_than_ago: vor weniger als
305 label_less_than_ago: vor weniger als
304 label_more_than_ago: vor mehr als
306 label_more_than_ago: vor mehr als
305 label_ago: vor
307 label_ago: vor
306 label_contains: enthält
308 label_contains: enthält
307 label_not_contains: enthält nicht
309 label_not_contains: enthält nicht
308 label_day_plural: Tage
310 label_day_plural: Tage
309 label_repository: SVN Projektarchiv
311 label_repository: SVN Projektarchiv
310 label_browse: Codebrowser
312 label_browse: Codebrowser
311 label_modification: %d Änderung
313 label_modification: %d Änderung
312 label_modification_plural: %d Änderungen
314 label_modification_plural: %d Änderungen
313 label_revision: Revision
315 label_revision: Revision
314 label_revision_plural: Revisionen
316 label_revision_plural: Revisionen
315 label_added: hinzugefügt
317 label_added: hinzugefügt
316 label_modified: geändert
318 label_modified: geändert
317 label_deleted: gelöscht
319 label_deleted: gelöscht
318 label_latest_revision: Aktuellste Revision
320 label_latest_revision: Aktuellste Revision
319 label_latest_revision_plural: Aktuellste Revisionen
321 label_latest_revision_plural: Aktuellste Revisionen
320 label_view_revisions: Revisionen anzeigen
322 label_view_revisions: Revisionen anzeigen
321 label_max_size: Maximale Größe
323 label_max_size: Maximale Größe
322 label_on: von
324 label_on: von
323 label_sort_highest: Anfang
325 label_sort_highest: Anfang
324 label_sort_higher: eins höher
326 label_sort_higher: eins höher
325 label_sort_lower: eins tiefer
327 label_sort_lower: eins tiefer
326 label_sort_lowest: Ende
328 label_sort_lowest: Ende
327 label_roadmap: Roadmap
329 label_roadmap: Roadmap
328 label_roadmap_due_in: Fällig in
330 label_roadmap_due_in: Fällig in
329 label_roadmap_no_issues: Keine Tickets für diese Version
331 label_roadmap_no_issues: Keine Tickets für diese Version
330 label_search: Suche
332 label_search: Suche
331 label_result: %d Resultat
333 label_result: %d Resultat
332 label_result_plural: %d Resultate
334 label_result_plural: %d Resultate
333 label_all_words: Alle Wörter
335 label_all_words: Alle Wörter
334 label_wiki: Wiki
336 label_wiki: Wiki
335 label_wiki_edit: Wiki Bearbeitung
337 label_wiki_edit: Wiki Bearbeitung
336 label_wiki_edit_plural: Wiki Bearbeitungen
338 label_wiki_edit_plural: Wiki Bearbeitungen
337 label_page_index: Index
339 label_page_index: Index
338 label_current_version: Gegenwärtige Version
340 label_current_version: Gegenwärtige Version
339 label_preview: Vorschau
341 label_preview: Vorschau
340 label_feed_plural: Feeds
342 label_feed_plural: Feeds
341 label_changes_details: Details aller Änderungen
343 label_changes_details: Details aller Änderungen
342 label_issue_tracking: Tickets
344 label_issue_tracking: Tickets
343 label_spent_time: Aufgewendete Zeit
345 label_spent_time: Aufgewendete Zeit
344 label_f_hour: %.2f Stunde
346 label_f_hour: %.2f Stunde
345 label_f_hour_plural: %.2f Stunden
347 label_f_hour_plural: %.2f Stunden
346 label_time_tracking: Zeiterfassung
348 label_time_tracking: Zeiterfassung
347 label_change_plural: Änderungen
349 label_change_plural: Änderungen
348 label_statistics: Statistiken
350 label_statistics: Statistiken
349 label_commits_per_month: Übertragungen pro Monat
351 label_commits_per_month: Übertragungen pro Monat
350 label_commits_per_author: Übertragungen pro Autor
352 label_commits_per_author: Übertragungen pro Autor
351 label_view_diff: View differences
353 label_view_diff: View differences
352 label_diff_inline: inline
354 label_diff_inline: inline
353 label_diff_side_by_side: side by side
355 label_diff_side_by_side: side by side
354 label_options: Options
356 label_options: Options
355
357
356 button_login: Einloggen
358 button_login: Einloggen
357 button_submit: OK
359 button_submit: OK
358 button_save: Speichern
360 button_save: Speichern
359 button_check_all: Alles auswählen
361 button_check_all: Alles auswählen
360 button_uncheck_all: Alles abwählen
362 button_uncheck_all: Alles abwählen
361 button_delete: Löschen
363 button_delete: Löschen
362 button_create: Anlegen
364 button_create: Anlegen
363 button_test: Testen
365 button_test: Testen
364 button_edit: Bearbeiten
366 button_edit: Bearbeiten
365 button_add: Hinzufügen
367 button_add: Hinzufügen
366 button_change: Wechseln
368 button_change: Wechseln
367 button_apply: Anwenden
369 button_apply: Anwenden
368 button_clear: Zurücksetzen
370 button_clear: Zurücksetzen
369 button_lock: Sperren
371 button_lock: Sperren
370 button_unlock: Entsperren
372 button_unlock: Entsperren
371 button_download: Download
373 button_download: Download
372 button_list: Liste
374 button_list: Liste
373 button_view: Siehe
375 button_view: Siehe
374 button_move: Verschieben
376 button_move: Verschieben
375 button_back: Zurück
377 button_back: Zurück
376 button_cancel: Abbrechen
378 button_cancel: Abbrechen
377 button_activate: Aktivieren
379 button_activate: Aktivieren
378 button_sort: Sortieren
380 button_sort: Sortieren
379 button_log_time: Log time
381 button_log_time: Log time
380
382
381 status_active: aktiv
383 status_active: aktiv
382 status_registered: angemeldet
384 status_registered: angemeldet
383 status_locked: gesperrt
385 status_locked: gesperrt
384
386
385 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
387 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
386 text_regexp_info: eg. ^[A-Z0-9]+$
388 text_regexp_info: eg. ^[A-Z0-9]+$
387 text_min_max_length_info: 0 heißt keine Beschränkung
389 text_min_max_length_info: 0 heißt keine Beschränkung
388 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
390 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
389 text_workflow_edit: Workflow zum Bearbeiten auswählen
391 text_workflow_edit: Workflow zum Bearbeiten auswählen
390 text_are_you_sure: Sind Sie sicher?
392 text_are_you_sure: Sind Sie sicher?
391 text_journal_changed: geändert von %s zu %s
393 text_journal_changed: geändert von %s zu %s
392 text_journal_set_to: gestellt zu %s
394 text_journal_set_to: gestellt zu %s
393 text_journal_deleted: gelöscht
395 text_journal_deleted: gelöscht
394 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
396 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
395 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
397 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
396 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
398 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
399 text_project_identifier_info: '12 characters maximum. Letters (a-z), numbers (0-9) and dashes allowed.<br />Once saved, the identifier can not be changed.'
397
400
398 default_role_manager: Manager
401 default_role_manager: Manager
399 default_role_developper: Developer
402 default_role_developper: Developer
400 default_role_reporter: Reporter
403 default_role_reporter: Reporter
401 default_tracker_bug: Fehler
404 default_tracker_bug: Fehler
402 default_tracker_feature: Feature
405 default_tracker_feature: Feature
403 default_tracker_support: Support
406 default_tracker_support: Support
404 default_issue_status_new: Neu
407 default_issue_status_new: Neu
405 default_issue_status_assigned: Zugewiesen
408 default_issue_status_assigned: Zugewiesen
406 default_issue_status_resolved: Gelöst
409 default_issue_status_resolved: Gelöst
407 default_issue_status_feedback: Feedback
410 default_issue_status_feedback: Feedback
408 default_issue_status_closed: Erledigt
411 default_issue_status_closed: Erledigt
409 default_issue_status_rejected: Abgewiesen
412 default_issue_status_rejected: Abgewiesen
410 default_doc_category_user: Benutzerdokumentation
413 default_doc_category_user: Benutzerdokumentation
411 default_doc_category_tech: Technische Dokumentation
414 default_doc_category_tech: Technische Dokumentation
412 default_priority_low: Niedrig
415 default_priority_low: Niedrig
413 default_priority_normal: Normal
416 default_priority_normal: Normal
414 default_priority_high: Hoch
417 default_priority_high: Hoch
415 default_priority_urgent: Dringend
418 default_priority_urgent: Dringend
416 default_priority_immediate: Sofort
419 default_priority_immediate: Sofort
417 default_activity_design: Design
420 default_activity_design: Design
418 default_activity_development: Development
421 default_activity_development: Development
419
422
420 enumeration_issue_priorities: Ticket-Prioritäten
423 enumeration_issue_priorities: Ticket-Prioritäten
421 enumeration_doc_categories: Dokumentenkategorien
424 enumeration_doc_categories: Dokumentenkategorien
422 enumeration_activities: Aktivitäten (Zeiterfassung)
425 enumeration_activities: Aktivitäten (Zeiterfassung)
@@ -1,422 +1,425
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
35 activerecord_error_greater_than_start_date: must be greater than start date
36
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%m/%%d/%%Y
39 general_fmt_date: %%m/%%d/%%Y
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Yes'
44 general_text_Yes: 'Yes'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'yes'
46 general_text_yes: 'yes'
47 general_lang_en: 'English'
47 general_lang_en: 'English'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Your redMine password
70 mail_subject_lost_password: Your redMine password
71 mail_subject_register: redMine account activation
71 mail_subject_register: redMine account activation
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errors
74 gui_validation_error_plural: %d errors
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Description
77 field_description: Description
78 field_summary: Summary
78 field_summary: Summary
79 field_is_required: Required
79 field_is_required: Required
80 field_firstname: Firstname
80 field_firstname: Firstname
81 field_lastname: Lastname
81 field_lastname: Lastname
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Size
84 field_filesize: Size
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Author
86 field_author: Author
87 field_created_on: Created
87 field_created_on: Created
88 field_updated_on: Updated
88 field_updated_on: Updated
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: For all projects
90 field_is_for_all: For all projects
91 field_possible_values: Possible values
91 field_possible_values: Possible values
92 field_regexp: Regular expression
92 field_regexp: Regular expression
93 field_min_length: Minimum length
93 field_min_length: Minimum length
94 field_max_length: Maximum length
94 field_max_length: Maximum length
95 field_value: Value
95 field_value: Value
96 field_category: Category
96 field_category: Category
97 field_title: Title
97 field_title: Title
98 field_project: Project
98 field_project: Project
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Status
100 field_status: Status
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Issue closed
102 field_is_closed: Issue closed
103 field_is_default: Default status
103 field_is_default: Default status
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Subject
106 field_subject: Subject
107 field_due_date: Due date
107 field_due_date: Due date
108 field_assigned_to: Assigned to
108 field_assigned_to: Assigned to
109 field_priority: Priority
109 field_priority: Priority
110 field_fixed_version: Fixed version
110 field_fixed_version: Fixed version
111 field_user: User
111 field_user: User
112 field_role: Role
112 field_role: Role
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Subproject of
115 field_parent: Subproject of
116 field_is_in_chlog: Issues displayed in changelog
116 field_is_in_chlog: Issues displayed in changelog
117 field_is_in_roadmap: Issues displayed in roadmap
117 field_is_in_roadmap: Issues displayed in roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Mail notifications
119 field_mail_notification: Mail notifications
120 field_admin: Administrator
120 field_admin: Administrator
121 field_last_login_on: Last connection
121 field_last_login_on: Last connection
122 field_language: Language
122 field_language: Language
123 field_effective_date: Date
123 field_effective_date: Date
124 field_password: Password
124 field_password: Password
125 field_new_password: New password
125 field_new_password: New password
126 field_password_confirmation: Confirmation
126 field_password_confirmation: Confirmation
127 field_version: Version
127 field_version: Version
128 field_type: Type
128 field_type: Type
129 field_host: Host
129 field_host: Host
130 field_port: Port
130 field_port: Port
131 field_account: Account
131 field_account: Account
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Login attribute
133 field_attr_login: Login attribute
134 field_attr_firstname: Firstname attribute
134 field_attr_firstname: Firstname attribute
135 field_attr_lastname: Lastname attribute
135 field_attr_lastname: Lastname attribute
136 field_attr_mail: Email attribute
136 field_attr_mail: Email attribute
137 field_onthefly: On-the-fly user creation
137 field_onthefly: On-the-fly user creation
138 field_start_date: Start
138 field_start_date: Start
139 field_done_ratio: %% Done
139 field_done_ratio: %% Done
140 field_auth_source: Authentication mode
140 field_auth_source: Authentication mode
141 field_hide_mail: Hide my email address
141 field_hide_mail: Hide my email address
142 field_comment: Comment
142 field_comment: Comment
143 field_url: URL
143 field_url: URL
144 field_start_page: Start page
144 field_start_page: Start page
145 field_subproject: Subproject
145 field_subproject: Subproject
146 field_hours: Hours
146 field_hours: Hours
147 field_activity: Activity
147 field_activity: Activity
148 field_spent_on: Date
148 field_spent_on: Date
149 field_identifier: Identifier
149
150
150 setting_app_title: Application title
151 setting_app_title: Application title
151 setting_app_subtitle: Application subtitle
152 setting_app_subtitle: Application subtitle
152 setting_welcome_text: Welcome text
153 setting_welcome_text: Welcome text
153 setting_default_language: Default language
154 setting_default_language: Default language
154 setting_login_required: Authent. required
155 setting_login_required: Authent. required
155 setting_self_registration: Self-registration enabled
156 setting_self_registration: Self-registration enabled
156 setting_attachment_max_size: Attachment max. size
157 setting_attachment_max_size: Attachment max. size
157 setting_issues_export_limit: Issues export limit
158 setting_issues_export_limit: Issues export limit
158 setting_mail_from: Emission mail address
159 setting_mail_from: Emission mail address
159 setting_host_name: Host name
160 setting_host_name: Host name
160 setting_text_formatting: Text formatting
161 setting_text_formatting: Text formatting
161 setting_wiki_compression: Wiki history compression
162 setting_wiki_compression: Wiki history compression
162 setting_feeds_limit: Feed content limit
163 setting_feeds_limit: Feed content limit
163 setting_autofetch_changesets: Autofetch SVN commits
164 setting_autofetch_changesets: Autofetch SVN commits
165 setting_sys_api_enabled: Enable WS for repository management
164
166
165 label_user: User
167 label_user: User
166 label_user_plural: Users
168 label_user_plural: Users
167 label_user_new: New user
169 label_user_new: New user
168 label_project: Project
170 label_project: Project
169 label_project_new: New project
171 label_project_new: New project
170 label_project_plural: Projects
172 label_project_plural: Projects
171 label_project_latest: Latest projects
173 label_project_latest: Latest projects
172 label_issue: Issue
174 label_issue: Issue
173 label_issue_new: New issue
175 label_issue_new: New issue
174 label_issue_plural: Issues
176 label_issue_plural: Issues
175 label_issue_view_all: View all issues
177 label_issue_view_all: View all issues
176 label_document: Document
178 label_document: Document
177 label_document_new: New document
179 label_document_new: New document
178 label_document_plural: Documents
180 label_document_plural: Documents
179 label_role: Role
181 label_role: Role
180 label_role_plural: Roles
182 label_role_plural: Roles
181 label_role_new: New role
183 label_role_new: New role
182 label_role_and_permissions: Roles and permissions
184 label_role_and_permissions: Roles and permissions
183 label_member: Member
185 label_member: Member
184 label_member_new: New member
186 label_member_new: New member
185 label_member_plural: Members
187 label_member_plural: Members
186 label_tracker: Tracker
188 label_tracker: Tracker
187 label_tracker_plural: Trackers
189 label_tracker_plural: Trackers
188 label_tracker_new: New tracker
190 label_tracker_new: New tracker
189 label_workflow: Workflow
191 label_workflow: Workflow
190 label_issue_status: Issue status
192 label_issue_status: Issue status
191 label_issue_status_plural: Issue statuses
193 label_issue_status_plural: Issue statuses
192 label_issue_status_new: New status
194 label_issue_status_new: New status
193 label_issue_category: Issue category
195 label_issue_category: Issue category
194 label_issue_category_plural: Issue categories
196 label_issue_category_plural: Issue categories
195 label_issue_category_new: New category
197 label_issue_category_new: New category
196 label_custom_field: Custom field
198 label_custom_field: Custom field
197 label_custom_field_plural: Custom fields
199 label_custom_field_plural: Custom fields
198 label_custom_field_new: New custom field
200 label_custom_field_new: New custom field
199 label_enumerations: Enumerations
201 label_enumerations: Enumerations
200 label_enumeration_new: New value
202 label_enumeration_new: New value
201 label_information: Information
203 label_information: Information
202 label_information_plural: Information
204 label_information_plural: Information
203 label_please_login: Please login
205 label_please_login: Please login
204 label_register: Register
206 label_register: Register
205 label_password_lost: Lost password
207 label_password_lost: Lost password
206 label_home: Home
208 label_home: Home
207 label_my_page: My page
209 label_my_page: My page
208 label_my_account: My account
210 label_my_account: My account
209 label_my_projects: My projects
211 label_my_projects: My projects
210 label_administration: Administration
212 label_administration: Administration
211 label_login: Login
213 label_login: Login
212 label_logout: Logout
214 label_logout: Logout
213 label_help: Help
215 label_help: Help
214 label_reported_issues: Reported issues
216 label_reported_issues: Reported issues
215 label_assigned_to_me_issues: Issues assigned to me
217 label_assigned_to_me_issues: Issues assigned to me
216 label_last_login: Last connection
218 label_last_login: Last connection
217 label_last_updates: Last updated
219 label_last_updates: Last updated
218 label_last_updates_plural: %d last updated
220 label_last_updates_plural: %d last updated
219 label_registered_on: Registered on
221 label_registered_on: Registered on
220 label_activity: Activity
222 label_activity: Activity
221 label_new: New
223 label_new: New
222 label_logged_as: Logged as
224 label_logged_as: Logged as
223 label_environment: Environment
225 label_environment: Environment
224 label_authentication: Authentication
226 label_authentication: Authentication
225 label_auth_source: Authentication mode
227 label_auth_source: Authentication mode
226 label_auth_source_new: New authentication mode
228 label_auth_source_new: New authentication mode
227 label_auth_source_plural: Authentication modes
229 label_auth_source_plural: Authentication modes
228 label_subproject_plural: Subprojects
230 label_subproject_plural: Subprojects
229 label_min_max_length: Min - Max length
231 label_min_max_length: Min - Max length
230 label_list: List
232 label_list: List
231 label_date: Date
233 label_date: Date
232 label_integer: Integer
234 label_integer: Integer
233 label_boolean: Boolean
235 label_boolean: Boolean
234 label_string: Text
236 label_string: Text
235 label_text: Long text
237 label_text: Long text
236 label_attribute: Attribute
238 label_attribute: Attribute
237 label_attribute_plural: Attributes
239 label_attribute_plural: Attributes
238 label_download: %d Download
240 label_download: %d Download
239 label_download_plural: %d Downloads
241 label_download_plural: %d Downloads
240 label_no_data: No data to display
242 label_no_data: No data to display
241 label_change_status: Change status
243 label_change_status: Change status
242 label_history: History
244 label_history: History
243 label_attachment: File
245 label_attachment: File
244 label_attachment_new: New file
246 label_attachment_new: New file
245 label_attachment_delete: Delete file
247 label_attachment_delete: Delete file
246 label_attachment_plural: Files
248 label_attachment_plural: Files
247 label_report: Report
249 label_report: Report
248 label_report_plural: Reports
250 label_report_plural: Reports
249 label_news: News
251 label_news: News
250 label_news_new: Add news
252 label_news_new: Add news
251 label_news_plural: News
253 label_news_plural: News
252 label_news_latest: Latest news
254 label_news_latest: Latest news
253 label_news_view_all: View all news
255 label_news_view_all: View all news
254 label_change_log: Change log
256 label_change_log: Change log
255 label_settings: Settings
257 label_settings: Settings
256 label_overview: Overview
258 label_overview: Overview
257 label_version: Version
259 label_version: Version
258 label_version_new: New version
260 label_version_new: New version
259 label_version_plural: Versions
261 label_version_plural: Versions
260 label_confirmation: Confirmation
262 label_confirmation: Confirmation
261 label_export_to: Export to
263 label_export_to: Export to
262 label_read: Read...
264 label_read: Read...
263 label_public_projects: Public projects
265 label_public_projects: Public projects
264 label_open_issues: open
266 label_open_issues: open
265 label_open_issues_plural: open
267 label_open_issues_plural: open
266 label_closed_issues: closed
268 label_closed_issues: closed
267 label_closed_issues_plural: closed
269 label_closed_issues_plural: closed
268 label_total: Total
270 label_total: Total
269 label_permissions: Permissions
271 label_permissions: Permissions
270 label_current_status: Current status
272 label_current_status: Current status
271 label_new_statuses_allowed: New statuses allowed
273 label_new_statuses_allowed: New statuses allowed
272 label_all: all
274 label_all: all
273 label_none: none
275 label_none: none
274 label_next: Next
276 label_next: Next
275 label_previous: Previous
277 label_previous: Previous
276 label_used_by: Used by
278 label_used_by: Used by
277 label_details: Details...
279 label_details: Details...
278 label_add_note: Add a note
280 label_add_note: Add a note
279 label_per_page: Per page
281 label_per_page: Per page
280 label_calendar: Calendar
282 label_calendar: Calendar
281 label_months_from: months from
283 label_months_from: months from
282 label_gantt: Gantt
284 label_gantt: Gantt
283 label_internal: Internal
285 label_internal: Internal
284 label_last_changes: last %d changes
286 label_last_changes: last %d changes
285 label_change_view_all: View all changes
287 label_change_view_all: View all changes
286 label_personalize_page: Personalize this page
288 label_personalize_page: Personalize this page
287 label_comment: Comment
289 label_comment: Comment
288 label_comment_plural: Comments
290 label_comment_plural: Comments
289 label_comment_add: Add a comment
291 label_comment_add: Add a comment
290 label_comment_added: Comment added
292 label_comment_added: Comment added
291 label_comment_delete: Delete comments
293 label_comment_delete: Delete comments
292 label_query: Custom query
294 label_query: Custom query
293 label_query_plural: Custom queries
295 label_query_plural: Custom queries
294 label_query_new: New query
296 label_query_new: New query
295 label_filter_add: Add filter
297 label_filter_add: Add filter
296 label_filter_plural: Filters
298 label_filter_plural: Filters
297 label_equals: is
299 label_equals: is
298 label_not_equals: is not
300 label_not_equals: is not
299 label_in_less_than: in less than
301 label_in_less_than: in less than
300 label_in_more_than: in more than
302 label_in_more_than: in more than
301 label_in: in
303 label_in: in
302 label_today: today
304 label_today: today
303 label_less_than_ago: less than days ago
305 label_less_than_ago: less than days ago
304 label_more_than_ago: more than days ago
306 label_more_than_ago: more than days ago
305 label_ago: days ago
307 label_ago: days ago
306 label_contains: contains
308 label_contains: contains
307 label_not_contains: doesn't contain
309 label_not_contains: doesn't contain
308 label_day_plural: days
310 label_day_plural: days
309 label_repository: SVN Repository
311 label_repository: SVN Repository
310 label_browse: Browse
312 label_browse: Browse
311 label_modification: %d change
313 label_modification: %d change
312 label_modification_plural: %d changes
314 label_modification_plural: %d changes
313 label_revision: Revision
315 label_revision: Revision
314 label_revision_plural: Revisions
316 label_revision_plural: Revisions
315 label_added: added
317 label_added: added
316 label_modified: modified
318 label_modified: modified
317 label_deleted: deleted
319 label_deleted: deleted
318 label_latest_revision: Latest revision
320 label_latest_revision: Latest revision
319 label_latest_revision_plural: Latest revisions
321 label_latest_revision_plural: Latest revisions
320 label_view_revisions: View revisions
322 label_view_revisions: View revisions
321 label_max_size: Maximum size
323 label_max_size: Maximum size
322 label_on: 'on'
324 label_on: 'on'
323 label_sort_highest: Move to top
325 label_sort_highest: Move to top
324 label_sort_higher: Move up
326 label_sort_higher: Move up
325 label_sort_lower: Move down
327 label_sort_lower: Move down
326 label_sort_lowest: Move to bottom
328 label_sort_lowest: Move to bottom
327 label_roadmap: Roadmap
329 label_roadmap: Roadmap
328 label_roadmap_due_in: Due in
330 label_roadmap_due_in: Due in
329 label_roadmap_no_issues: No issues for this version
331 label_roadmap_no_issues: No issues for this version
330 label_search: Search
332 label_search: Search
331 label_result: %d result
333 label_result: %d result
332 label_result_plural: %d results
334 label_result_plural: %d results
333 label_all_words: All words
335 label_all_words: All words
334 label_wiki: Wiki
336 label_wiki: Wiki
335 label_wiki_edit: Wiki edit
337 label_wiki_edit: Wiki edit
336 label_wiki_edit_plural: Wiki edits
338 label_wiki_edit_plural: Wiki edits
337 label_page_index: Index
339 label_page_index: Index
338 label_current_version: Current version
340 label_current_version: Current version
339 label_preview: Preview
341 label_preview: Preview
340 label_feed_plural: Feeds
342 label_feed_plural: Feeds
341 label_changes_details: Details of all changes
343 label_changes_details: Details of all changes
342 label_issue_tracking: Issue tracking
344 label_issue_tracking: Issue tracking
343 label_spent_time: Spent time
345 label_spent_time: Spent time
344 label_f_hour: %.2f hour
346 label_f_hour: %.2f hour
345 label_f_hour_plural: %.2f hours
347 label_f_hour_plural: %.2f hours
346 label_time_tracking: Time tracking
348 label_time_tracking: Time tracking
347 label_change_plural: Changes
349 label_change_plural: Changes
348 label_statistics: Statistics
350 label_statistics: Statistics
349 label_commits_per_month: Commits per month
351 label_commits_per_month: Commits per month
350 label_commits_per_author: Commits per author
352 label_commits_per_author: Commits per author
351 label_view_diff: View differences
353 label_view_diff: View differences
352 label_diff_inline: inline
354 label_diff_inline: inline
353 label_diff_side_by_side: side by side
355 label_diff_side_by_side: side by side
354 label_options: Options
356 label_options: Options
355
357
356 button_login: Login
358 button_login: Login
357 button_submit: Submit
359 button_submit: Submit
358 button_save: Save
360 button_save: Save
359 button_check_all: Check all
361 button_check_all: Check all
360 button_uncheck_all: Uncheck all
362 button_uncheck_all: Uncheck all
361 button_delete: Delete
363 button_delete: Delete
362 button_create: Create
364 button_create: Create
363 button_test: Test
365 button_test: Test
364 button_edit: Edit
366 button_edit: Edit
365 button_add: Add
367 button_add: Add
366 button_change: Change
368 button_change: Change
367 button_apply: Apply
369 button_apply: Apply
368 button_clear: Clear
370 button_clear: Clear
369 button_lock: Lock
371 button_lock: Lock
370 button_unlock: Unlock
372 button_unlock: Unlock
371 button_download: Download
373 button_download: Download
372 button_list: List
374 button_list: List
373 button_view: View
375 button_view: View
374 button_move: Move
376 button_move: Move
375 button_back: Back
377 button_back: Back
376 button_cancel: Cancel
378 button_cancel: Cancel
377 button_activate: Activate
379 button_activate: Activate
378 button_sort: Sort
380 button_sort: Sort
379 button_log_time: Log time
381 button_log_time: Log time
380
382
381 status_active: active
383 status_active: active
382 status_registered: registered
384 status_registered: registered
383 status_locked: locked
385 status_locked: locked
384
386
385 text_select_mail_notifications: Select actions for which mail notifications should be sent.
387 text_select_mail_notifications: Select actions for which mail notifications should be sent.
386 text_regexp_info: eg. ^[A-Z0-9]+$
388 text_regexp_info: eg. ^[A-Z0-9]+$
387 text_min_max_length_info: 0 means no restriction
389 text_min_max_length_info: 0 means no restriction
388 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
390 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
389 text_workflow_edit: Select a role and a tracker to edit the workflow
391 text_workflow_edit: Select a role and a tracker to edit the workflow
390 text_are_you_sure: Are you sure ?
392 text_are_you_sure: Are you sure ?
391 text_journal_changed: changed from %s to %s
393 text_journal_changed: changed from %s to %s
392 text_journal_set_to: set to %s
394 text_journal_set_to: set to %s
393 text_journal_deleted: deleted
395 text_journal_deleted: deleted
394 text_tip_task_begin_day: task beginning this day
396 text_tip_task_begin_day: task beginning this day
395 text_tip_task_end_day: task ending this day
397 text_tip_task_end_day: task ending this day
396 text_tip_task_begin_end_day: task beginning and ending this day
398 text_tip_task_begin_end_day: task beginning and ending this day
399 text_project_identifier_info: '12 characters maximum. Letters (a-z), numbers (0-9) and dashes allowed.<br />Once saved, the identifier can not be changed.'
397
400
398 default_role_manager: Manager
401 default_role_manager: Manager
399 default_role_developper: Developer
402 default_role_developper: Developer
400 default_role_reporter: Reporter
403 default_role_reporter: Reporter
401 default_tracker_bug: Bug
404 default_tracker_bug: Bug
402 default_tracker_feature: Feature
405 default_tracker_feature: Feature
403 default_tracker_support: Support
406 default_tracker_support: Support
404 default_issue_status_new: New
407 default_issue_status_new: New
405 default_issue_status_assigned: Assigned
408 default_issue_status_assigned: Assigned
406 default_issue_status_resolved: Resolved
409 default_issue_status_resolved: Resolved
407 default_issue_status_feedback: Feedback
410 default_issue_status_feedback: Feedback
408 default_issue_status_closed: Closed
411 default_issue_status_closed: Closed
409 default_issue_status_rejected: Rejected
412 default_issue_status_rejected: Rejected
410 default_doc_category_user: User documentation
413 default_doc_category_user: User documentation
411 default_doc_category_tech: Technical documentation
414 default_doc_category_tech: Technical documentation
412 default_priority_low: Low
415 default_priority_low: Low
413 default_priority_normal: Normal
416 default_priority_normal: Normal
414 default_priority_high: High
417 default_priority_high: High
415 default_priority_urgent: Urgent
418 default_priority_urgent: Urgent
416 default_priority_immediate: Immediate
419 default_priority_immediate: Immediate
417 default_activity_design: Design
420 default_activity_design: Design
418 default_activity_development: Development
421 default_activity_development: Development
419
422
420 enumeration_issue_priorities: Issue priorities
423 enumeration_issue_priorities: Issue priorities
421 enumeration_doc_categories: Document categories
424 enumeration_doc_categories: Document categories
422 enumeration_activities: Activities (time tracking)
425 enumeration_activities: Activities (time tracking)
@@ -1,422 +1,425
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: no es una fecha válida
34 activerecord_error_not_a_date: no es una fecha válida
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36
36
37 general_fmt_age: %d año
37 general_fmt_age: %d año
38 general_fmt_age_plural: %d años
38 general_fmt_age_plural: %d años
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Sí'
44 general_text_Yes: 'Sí'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'sí'
46 general_text_yes: 'sí'
47 general_lang_es: 'Español'
47 general_lang_es: 'Español'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
69
69
70 mail_subject_lost_password: Tu contraseña del redMine
70 mail_subject_lost_password: Tu contraseña del redMine
71 mail_subject_register: Activación de la cuenta del redMine
71 mail_subject_register: Activación de la cuenta del redMine
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errores
74 gui_validation_error_plural: %d errores
75
75
76 field_name: Nombre
76 field_name: Nombre
77 field_description: Descripción
77 field_description: Descripción
78 field_summary: Resumen
78 field_summary: Resumen
79 field_is_required: Obligatorio
79 field_is_required: Obligatorio
80 field_firstname: Nombre
80 field_firstname: Nombre
81 field_lastname: Apellido
81 field_lastname: Apellido
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichero
83 field_filename: Fichero
84 field_filesize: Tamaño
84 field_filesize: Tamaño
85 field_downloads: Telecargas
85 field_downloads: Telecargas
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Creado
87 field_created_on: Creado
88 field_updated_on: Actualizado
88 field_updated_on: Actualizado
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Para todos los proyectos
90 field_is_for_all: Para todos los proyectos
91 field_possible_values: Valores posibles
91 field_possible_values: Valores posibles
92 field_regexp: Expresión regular
92 field_regexp: Expresión regular
93 field_min_length: Longitud mínima
93 field_min_length: Longitud mínima
94 field_max_length: Longitud máxima
94 field_max_length: Longitud máxima
95 field_value: Valor
95 field_value: Valor
96 field_category: Categoría
96 field_category: Categoría
97 field_title: Título
97 field_title: Título
98 field_project: Proyecto
98 field_project: Proyecto
99 field_issue: Petición
99 field_issue: Petición
100 field_status: Estatuto
100 field_status: Estatuto
101 field_notes: Notas
101 field_notes: Notas
102 field_is_closed: Petición resuelta
102 field_is_closed: Petición resuelta
103 field_is_default: Estatuto por defecto
103 field_is_default: Estatuto por defecto
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Tema
106 field_subject: Tema
107 field_due_date: Fecha debida
107 field_due_date: Fecha debida
108 field_assigned_to: Asignado a
108 field_assigned_to: Asignado a
109 field_priority: Prioridad
109 field_priority: Prioridad
110 field_fixed_version: Versión corregida
110 field_fixed_version: Versión corregida
111 field_user: Usuario
111 field_user: Usuario
112 field_role: Papel
112 field_role: Papel
113 field_homepage: Sitio web
113 field_homepage: Sitio web
114 field_is_public: Público
114 field_is_public: Público
115 field_parent: Proyecto secundario de
115 field_parent: Proyecto secundario de
116 field_is_in_chlog: Consultar las peticiones en el histórico
116 field_is_in_chlog: Consultar las peticiones en el histórico
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
118 field_login: Identificador
118 field_login: Identificador
119 field_mail_notification: Notificación por mail
119 field_mail_notification: Notificación por mail
120 field_admin: Administrador
120 field_admin: Administrador
121 field_last_login_on: Última conexión
121 field_last_login_on: Última conexión
122 field_language: Lengua
122 field_language: Lengua
123 field_effective_date: Fecha
123 field_effective_date: Fecha
124 field_password: Contraseña
124 field_password: Contraseña
125 field_new_password: Nueva contraseña
125 field_new_password: Nueva contraseña
126 field_password_confirmation: Confirmación
126 field_password_confirmation: Confirmación
127 field_version: Versión
127 field_version: Versión
128 field_type: Tipo
128 field_type: Tipo
129 field_host: Anfitrión
129 field_host: Anfitrión
130 field_port: Puerto
130 field_port: Puerto
131 field_account: Cuenta
131 field_account: Cuenta
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Cualidad del identificador
133 field_attr_login: Cualidad del identificador
134 field_attr_firstname: Cualidad del nombre
134 field_attr_firstname: Cualidad del nombre
135 field_attr_lastname: Cualidad del apellido
135 field_attr_lastname: Cualidad del apellido
136 field_attr_mail: Cualidad del Email
136 field_attr_mail: Cualidad del Email
137 field_onthefly: Creación del usuario On-the-fly
137 field_onthefly: Creación del usuario On-the-fly
138 field_start_date: Comienzo
138 field_start_date: Comienzo
139 field_done_ratio: %% Realizado
139 field_done_ratio: %% Realizado
140 field_auth_source: Modo de la autentificación
140 field_auth_source: Modo de la autentificación
141 field_hide_mail: Ocultar mi email address
141 field_hide_mail: Ocultar mi email address
142 field_comment: Comentario
142 field_comment: Comentario
143 field_url: URL
143 field_url: URL
144 field_start_page: Página principal
144 field_start_page: Página principal
145 field_subproject: Proyecto secundario
145 field_subproject: Proyecto secundario
146 field_hours: Hours
146 field_hours: Hours
147 field_activity: Activity
147 field_activity: Activity
148 field_spent_on: Fecha
148 field_spent_on: Fecha
149 field_identifier: Identifier
149
150
150 setting_app_title: Título del aplicación
151 setting_app_title: Título del aplicación
151 setting_app_subtitle: Subtítulo del aplicación
152 setting_app_subtitle: Subtítulo del aplicación
152 setting_welcome_text: Texto acogida
153 setting_welcome_text: Texto acogida
153 setting_default_language: Lengua del defecto
154 setting_default_language: Lengua del defecto
154 setting_login_required: Autentif. requerida
155 setting_login_required: Autentif. requerida
155 setting_self_registration: Registro permitido
156 setting_self_registration: Registro permitido
156 setting_attachment_max_size: Tamaño máximo del fichero
157 setting_attachment_max_size: Tamaño máximo del fichero
157 setting_issues_export_limit: Issues export limit
158 setting_issues_export_limit: Issues export limit
158 setting_mail_from: Email de la emisión
159 setting_mail_from: Email de la emisión
159 setting_host_name: Nombre de anfitrión
160 setting_host_name: Nombre de anfitrión
160 setting_text_formatting: Formato de texto
161 setting_text_formatting: Formato de texto
161 setting_wiki_compression: Compresión de la historia de Wiki
162 setting_wiki_compression: Compresión de la historia de Wiki
162 setting_feeds_limit: Feed content limit
163 setting_feeds_limit: Feed content limit
163 setting_autofetch_changesets: Autofetch SVN commits
164 setting_autofetch_changesets: Autofetch SVN commits
165 setting_sys_api_enabled: Enable WS for repository management
164
166
165 label_user: Usuario
167 label_user: Usuario
166 label_user_plural: Usuarios
168 label_user_plural: Usuarios
167 label_user_new: Nuevo usuario
169 label_user_new: Nuevo usuario
168 label_project: Proyecto
170 label_project: Proyecto
169 label_project_new: Nuevo proyecto
171 label_project_new: Nuevo proyecto
170 label_project_plural: Proyectos
172 label_project_plural: Proyectos
171 label_project_latest: Los proyectos más últimos
173 label_project_latest: Los proyectos más últimos
172 label_issue: Petición
174 label_issue: Petición
173 label_issue_new: Nueva petición
175 label_issue_new: Nueva petición
174 label_issue_plural: Peticiones
176 label_issue_plural: Peticiones
175 label_issue_view_all: Ver todas las peticiones
177 label_issue_view_all: Ver todas las peticiones
176 label_document: Documento
178 label_document: Documento
177 label_document_new: Nuevo documento
179 label_document_new: Nuevo documento
178 label_document_plural: Documentos
180 label_document_plural: Documentos
179 label_role: Papel
181 label_role: Papel
180 label_role_plural: Papeles
182 label_role_plural: Papeles
181 label_role_new: Nuevo papel
183 label_role_new: Nuevo papel
182 label_role_and_permissions: Papeles y permisos
184 label_role_and_permissions: Papeles y permisos
183 label_member: Miembro
185 label_member: Miembro
184 label_member_new: Nuevo miembro
186 label_member_new: Nuevo miembro
185 label_member_plural: Miembros
187 label_member_plural: Miembros
186 label_tracker: Tracker
188 label_tracker: Tracker
187 label_tracker_plural: Trackers
189 label_tracker_plural: Trackers
188 label_tracker_new: Nuevo tracker
190 label_tracker_new: Nuevo tracker
189 label_workflow: Workflow
191 label_workflow: Workflow
190 label_issue_status: Estatuto de petición
192 label_issue_status: Estatuto de petición
191 label_issue_status_plural: Estatutos de las peticiones
193 label_issue_status_plural: Estatutos de las peticiones
192 label_issue_status_new: Nuevo estatuto
194 label_issue_status_new: Nuevo estatuto
193 label_issue_category: Categoría de las peticiones
195 label_issue_category: Categoría de las peticiones
194 label_issue_category_plural: Categorías de las peticiones
196 label_issue_category_plural: Categorías de las peticiones
195 label_issue_category_new: Nueva categoría
197 label_issue_category_new: Nueva categoría
196 label_custom_field: Campo personalizado
198 label_custom_field: Campo personalizado
197 label_custom_field_plural: Campos personalizados
199 label_custom_field_plural: Campos personalizados
198 label_custom_field_new: Nuevo campo personalizado
200 label_custom_field_new: Nuevo campo personalizado
199 label_enumerations: Listas de valores
201 label_enumerations: Listas de valores
200 label_enumeration_new: Nuevo valor
202 label_enumeration_new: Nuevo valor
201 label_information: Informacion
203 label_information: Informacion
202 label_information_plural: Informaciones
204 label_information_plural: Informaciones
203 label_please_login: Conexión
205 label_please_login: Conexión
204 label_register: Registrar
206 label_register: Registrar
205 label_password_lost: ¿Olvidaste la contraseña?
207 label_password_lost: ¿Olvidaste la contraseña?
206 label_home: Acogida
208 label_home: Acogida
207 label_my_page: Mi página
209 label_my_page: Mi página
208 label_my_account: Mi cuenta
210 label_my_account: Mi cuenta
209 label_my_projects: Mis proyectos
211 label_my_projects: Mis proyectos
210 label_administration: Administración
212 label_administration: Administración
211 label_login: Conexión
213 label_login: Conexión
212 label_logout: Desconexión
214 label_logout: Desconexión
213 label_help: Ayuda
215 label_help: Ayuda
214 label_reported_issues: Peticiones registradas
216 label_reported_issues: Peticiones registradas
215 label_assigned_to_me_issues: Peticiones que me están asignadas
217 label_assigned_to_me_issues: Peticiones que me están asignadas
216 label_last_login: Última conexión
218 label_last_login: Última conexión
217 label_last_updates: Actualizado
219 label_last_updates: Actualizado
218 label_last_updates_plural: %d Actualizados
220 label_last_updates_plural: %d Actualizados
219 label_registered_on: Inscrito el
221 label_registered_on: Inscrito el
220 label_activity: Actividad
222 label_activity: Actividad
221 label_new: Nuevo
223 label_new: Nuevo
222 label_logged_as: Conectado como
224 label_logged_as: Conectado como
223 label_environment: Environment
225 label_environment: Environment
224 label_authentication: Autentificación
226 label_authentication: Autentificación
225 label_auth_source: Modo de la autentificación
227 label_auth_source: Modo de la autentificación
226 label_auth_source_new: Nuevo modo de la autentificación
228 label_auth_source_new: Nuevo modo de la autentificación
227 label_auth_source_plural: Modos de la autentificación
229 label_auth_source_plural: Modos de la autentificación
228 label_subproject_plural: Proyectos secundarios
230 label_subproject_plural: Proyectos secundarios
229 label_min_max_length: Longitud mín - máx
231 label_min_max_length: Longitud mín - máx
230 label_list: Lista
232 label_list: Lista
231 label_date: Fecha
233 label_date: Fecha
232 label_integer: Número
234 label_integer: Número
233 label_boolean: Boleano
235 label_boolean: Boleano
234 label_string: Texto
236 label_string: Texto
235 label_text: Texto largo
237 label_text: Texto largo
236 label_attribute: Cualidad
238 label_attribute: Cualidad
237 label_attribute_plural: Cualidades
239 label_attribute_plural: Cualidades
238 label_download: %d Telecarga
240 label_download: %d Telecarga
239 label_download_plural: %d Telecargas
241 label_download_plural: %d Telecargas
240 label_no_data: Ningunos datos a exhibir
242 label_no_data: Ningunos datos a exhibir
241 label_change_status: Cambiar el estatuto
243 label_change_status: Cambiar el estatuto
242 label_history: Histórico
244 label_history: Histórico
243 label_attachment: Fichero
245 label_attachment: Fichero
244 label_attachment_new: Nuevo fichero
246 label_attachment_new: Nuevo fichero
245 label_attachment_delete: Suprimir el fichero
247 label_attachment_delete: Suprimir el fichero
246 label_attachment_plural: Ficheros
248 label_attachment_plural: Ficheros
247 label_report: Informe
249 label_report: Informe
248 label_report_plural: Informes
250 label_report_plural: Informes
249 label_news: Noticia
251 label_news: Noticia
250 label_news_new: Nueva noticia
252 label_news_new: Nueva noticia
251 label_news_plural: Noticias
253 label_news_plural: Noticias
252 label_news_latest: Últimas noticias
254 label_news_latest: Últimas noticias
253 label_news_view_all: Ver todas las noticias
255 label_news_view_all: Ver todas las noticias
254 label_change_log: Cambios
256 label_change_log: Cambios
255 label_settings: Configuración
257 label_settings: Configuración
256 label_overview: Vistazo
258 label_overview: Vistazo
257 label_version: Versión
259 label_version: Versión
258 label_version_new: Nueva versión
260 label_version_new: Nueva versión
259 label_version_plural: Versiónes
261 label_version_plural: Versiónes
260 label_confirmation: Confirmación
262 label_confirmation: Confirmación
261 label_export_to: Exportar a
263 label_export_to: Exportar a
262 label_read: Leer...
264 label_read: Leer...
263 label_public_projects: Proyectos publicos
265 label_public_projects: Proyectos publicos
264 label_open_issues: abierta
266 label_open_issues: abierta
265 label_open_issues_plural: abiertas
267 label_open_issues_plural: abiertas
266 label_closed_issues: cerrada
268 label_closed_issues: cerrada
267 label_closed_issues_plural: cerradas
269 label_closed_issues_plural: cerradas
268 label_total: Total
270 label_total: Total
269 label_permissions: Permisos
271 label_permissions: Permisos
270 label_current_status: Estado actual
272 label_current_status: Estado actual
271 label_new_statuses_allowed: Nuevos estatutos autorizados
273 label_new_statuses_allowed: Nuevos estatutos autorizados
272 label_all: todos
274 label_all: todos
273 label_none: ninguno
275 label_none: ninguno
274 label_next: Próximo
276 label_next: Próximo
275 label_previous: Precedente
277 label_previous: Precedente
276 label_used_by: Utilizado por
278 label_used_by: Utilizado por
277 label_details: Detalles...
279 label_details: Detalles...
278 label_add_note: Agregar una nota
280 label_add_note: Agregar una nota
279 label_per_page: Por la página
281 label_per_page: Por la página
280 label_calendar: Calendario
282 label_calendar: Calendario
281 label_months_from: meses de
283 label_months_from: meses de
282 label_gantt: Gantt
284 label_gantt: Gantt
283 label_internal: Interno
285 label_internal: Interno
284 label_last_changes: %d cambios del último
286 label_last_changes: %d cambios del último
285 label_change_view_all: Ver todos los cambios
287 label_change_view_all: Ver todos los cambios
286 label_personalize_page: Personalizar esta página
288 label_personalize_page: Personalizar esta página
287 label_comment: Comentario
289 label_comment: Comentario
288 label_comment_plural: Comentarios
290 label_comment_plural: Comentarios
289 label_comment_add: Agregar un comentario
291 label_comment_add: Agregar un comentario
290 label_comment_added: Comentario agregó
292 label_comment_added: Comentario agregó
291 label_comment_delete: Suprimir comentarios
293 label_comment_delete: Suprimir comentarios
292 label_query: Pregunta personalizada
294 label_query: Pregunta personalizada
293 label_query_plural: Preguntas personalizadas
295 label_query_plural: Preguntas personalizadas
294 label_query_new: Nueva preguntas
296 label_query_new: Nueva preguntas
295 label_filter_add: Agregar el filtro
297 label_filter_add: Agregar el filtro
296 label_filter_plural: Filtros
298 label_filter_plural: Filtros
297 label_equals: igual
299 label_equals: igual
298 label_not_equals: no igual
300 label_not_equals: no igual
299 label_in_less_than: en menos que
301 label_in_less_than: en menos que
300 label_in_more_than: en más que
302 label_in_more_than: en más que
301 label_in: en
303 label_in: en
302 label_today: hoy
304 label_today: hoy
303 label_less_than_ago: hace menos de
305 label_less_than_ago: hace menos de
304 label_more_than_ago: hace más de
306 label_more_than_ago: hace más de
305 label_ago: hace
307 label_ago: hace
306 label_contains: contiene
308 label_contains: contiene
307 label_not_contains: no contiene
309 label_not_contains: no contiene
308 label_day_plural: días
310 label_day_plural: días
309 label_repository: Depósito SVN
311 label_repository: Depósito SVN
310 label_browse: Hojear
312 label_browse: Hojear
311 label_modification: %d modificación
313 label_modification: %d modificación
312 label_modification_plural: %d modificaciones
314 label_modification_plural: %d modificaciones
313 label_revision: Revisión
315 label_revision: Revisión
314 label_revision_plural: Revisiones
316 label_revision_plural: Revisiones
315 label_added: agregado
317 label_added: agregado
316 label_modified: modificado
318 label_modified: modificado
317 label_deleted: suprimido
319 label_deleted: suprimido
318 label_latest_revision: La revisión más última
320 label_latest_revision: La revisión más última
319 label_latest_revision_plural: Latest revisions
321 label_latest_revision_plural: Latest revisions
320 label_view_revisions: Ver las revisiones
322 label_view_revisions: Ver las revisiones
321 label_max_size: Tamaño máximo
323 label_max_size: Tamaño máximo
322 label_on: en
324 label_on: en
323 label_sort_highest: Primero
325 label_sort_highest: Primero
324 label_sort_higher: Subir
326 label_sort_higher: Subir
325 label_sort_lower: Bajar
327 label_sort_lower: Bajar
326 label_sort_lowest: Último
328 label_sort_lowest: Último
327 label_roadmap: Roadmap
329 label_roadmap: Roadmap
328 label_roadmap_due_in: Due in
330 label_roadmap_due_in: Due in
329 label_roadmap_no_issues: No issues for this version
331 label_roadmap_no_issues: No issues for this version
330 label_search: Búsqueda
332 label_search: Búsqueda
331 label_result: %d resultado
333 label_result: %d resultado
332 label_result_plural: %d resultados
334 label_result_plural: %d resultados
333 label_all_words: Todas las palabras
335 label_all_words: Todas las palabras
334 label_wiki: Wiki
336 label_wiki: Wiki
335 label_wiki_edit: Wiki edit
337 label_wiki_edit: Wiki edit
336 label_wiki_edit_plural: Wiki edits
338 label_wiki_edit_plural: Wiki edits
337 label_page_index: Índice
339 label_page_index: Índice
338 label_current_version: Versión actual
340 label_current_version: Versión actual
339 label_preview: Previo
341 label_preview: Previo
340 label_feed_plural: Feeds
342 label_feed_plural: Feeds
341 label_changes_details: Detalles de todos los cambios
343 label_changes_details: Detalles de todos los cambios
342 label_issue_tracking: Issue tracking
344 label_issue_tracking: Issue tracking
343 label_spent_time: Spent time
345 label_spent_time: Spent time
344 label_f_hour: %.2f hour
346 label_f_hour: %.2f hour
345 label_f_hour_plural: %.2f hours
347 label_f_hour_plural: %.2f hours
346 label_time_tracking: Time tracking
348 label_time_tracking: Time tracking
347 label_change_plural: Changes
349 label_change_plural: Changes
348 label_statistics: Statistics
350 label_statistics: Statistics
349 label_commits_per_month: Commits per month
351 label_commits_per_month: Commits per month
350 label_commits_per_author: Commits per author
352 label_commits_per_author: Commits per author
351 label_view_diff: View differences
353 label_view_diff: View differences
352 label_diff_inline: inline
354 label_diff_inline: inline
353 label_diff_side_by_side: side by side
355 label_diff_side_by_side: side by side
354 label_options: Options
356 label_options: Options
355
357
356 button_login: Conexión
358 button_login: Conexión
357 button_submit: Someter
359 button_submit: Someter
358 button_save: Validar
360 button_save: Validar
359 button_check_all: Seleccionar todo
361 button_check_all: Seleccionar todo
360 button_uncheck_all: No seleccionar nada
362 button_uncheck_all: No seleccionar nada
361 button_delete: Suprimir
363 button_delete: Suprimir
362 button_create: Crear
364 button_create: Crear
363 button_test: Testar
365 button_test: Testar
364 button_edit: Modificar
366 button_edit: Modificar
365 button_add: Añadir
367 button_add: Añadir
366 button_change: Cambiar
368 button_change: Cambiar
367 button_apply: Aplicar
369 button_apply: Aplicar
368 button_clear: Anular
370 button_clear: Anular
369 button_lock: Bloquear
371 button_lock: Bloquear
370 button_unlock: Desbloquear
372 button_unlock: Desbloquear
371 button_download: Telecargar
373 button_download: Telecargar
372 button_list: Listar
374 button_list: Listar
373 button_view: Ver
375 button_view: Ver
374 button_move: Mover
376 button_move: Mover
375 button_back: Atrás
377 button_back: Atrás
376 button_cancel: Cancelar
378 button_cancel: Cancelar
377 button_activate: Activar
379 button_activate: Activar
378 button_sort: Clasificar
380 button_sort: Clasificar
379 button_log_time: Log time
381 button_log_time: Log time
380
382
381 status_active: active
383 status_active: active
382 status_registered: registered
384 status_registered: registered
383 status_locked: locked
385 status_locked: locked
384
386
385 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
387 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
386 text_regexp_info: eg. ^[A-Z0-9]+$
388 text_regexp_info: eg. ^[A-Z0-9]+$
387 text_min_max_length_info: 0 para ninguna restricción
389 text_min_max_length_info: 0 para ninguna restricción
388 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
390 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
389 text_workflow_edit: Seleccionar un workflow para actualizar
391 text_workflow_edit: Seleccionar un workflow para actualizar
390 text_are_you_sure: ¿ Estás seguro ?
392 text_are_you_sure: ¿ Estás seguro ?
391 text_journal_changed: cambiado de %s a %s
393 text_journal_changed: cambiado de %s a %s
392 text_journal_set_to: fijado a %s
394 text_journal_set_to: fijado a %s
393 text_journal_deleted: suprimido
395 text_journal_deleted: suprimido
394 text_tip_task_begin_day: tarea que comienza este día
396 text_tip_task_begin_day: tarea que comienza este día
395 text_tip_task_end_day: tarea que termina este día
397 text_tip_task_end_day: tarea que termina este día
396 text_tip_task_begin_end_day: tarea que comienza y termina este día
398 text_tip_task_begin_end_day: tarea que comienza y termina este día
399 text_project_identifier_info: '12 characters maximum. Letters (a-z), numbers (0-9) and dashes allowed.<br />Once saved, the identifier can not be changed.'
397
400
398 default_role_manager: Manager
401 default_role_manager: Manager
399 default_role_developper: Desarrollador
402 default_role_developper: Desarrollador
400 default_role_reporter: Informador
403 default_role_reporter: Informador
401 default_tracker_bug: Anomalía
404 default_tracker_bug: Anomalía
402 default_tracker_feature: Evolución
405 default_tracker_feature: Evolución
403 default_tracker_support: Asistencia
406 default_tracker_support: Asistencia
404 default_issue_status_new: Nuevo
407 default_issue_status_new: Nuevo
405 default_issue_status_assigned: Asignada
408 default_issue_status_assigned: Asignada
406 default_issue_status_resolved: Resuelta
409 default_issue_status_resolved: Resuelta
407 default_issue_status_feedback: Comentario
410 default_issue_status_feedback: Comentario
408 default_issue_status_closed: Cerrada
411 default_issue_status_closed: Cerrada
409 default_issue_status_rejected: Rechazada
412 default_issue_status_rejected: Rechazada
410 default_doc_category_user: Documentación del usuario
413 default_doc_category_user: Documentación del usuario
411 default_doc_category_tech: Documentación tecnica
414 default_doc_category_tech: Documentación tecnica
412 default_priority_low: Bajo
415 default_priority_low: Bajo
413 default_priority_normal: Normal
416 default_priority_normal: Normal
414 default_priority_high: Alto
417 default_priority_high: Alto
415 default_priority_urgent: Urgente
418 default_priority_urgent: Urgente
416 default_priority_immediate: Ahora
419 default_priority_immediate: Ahora
417 default_activity_design: Design
420 default_activity_design: Design
418 default_activity_development: Development
421 default_activity_development: Development
419
422
420 enumeration_issue_priorities: Prioridad de las peticiones
423 enumeration_issue_priorities: Prioridad de las peticiones
421 enumeration_doc_categories: Categorías del documento
424 enumeration_doc_categories: Categorías del documento
422 enumeration_activities: Activities (time tracking)
425 enumeration_activities: Activities (time tracking)
@@ -1,422 +1,425
1 _gloc_rule_default: '|n| n<=1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n<=1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
20 actionview_instancetag_blank_option: Choisir
21
21
22 activerecord_error_inclusion: n'est pas inclus dans la liste
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36
36
37 general_fmt_age: %d an
37 general_fmt_age: %d an
38 general_fmt_age_plural: %d ans
38 general_fmt_age_plural: %d ans
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'Non'
43 general_text_No: 'Non'
44 general_text_Yes: 'Oui'
44 general_text_Yes: 'Oui'
45 general_text_no: 'non'
45 general_text_no: 'non'
46 general_text_yes: 'oui'
46 general_text_yes: 'oui'
47 general_lang_fr: 'Français'
47 general_lang_fr: 'Français'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
52
52
53 notice_account_updated: Le compte a été mis à jour avec succès.
53 notice_account_updated: Le compte a été mis à jour avec succès.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
56 notice_account_wrong_password: Mot de passe incorrect
56 notice_account_wrong_password: Mot de passe incorrect
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
62 notice_successful_create: Création effectuée avec succès.
62 notice_successful_create: Création effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
65 notice_successful_connection: Connection réussie.
65 notice_successful_connection: Connection réussie.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
69
69
70 mail_subject_lost_password: Votre mot de passe redMine
70 mail_subject_lost_password: Votre mot de passe redMine
71 mail_subject_register: Activation de votre compte redMine
71 mail_subject_register: Activation de votre compte redMine
72
72
73 gui_validation_error: 1 erreur
73 gui_validation_error: 1 erreur
74 gui_validation_error_plural: %d erreurs
74 gui_validation_error_plural: %d erreurs
75
75
76 field_name: Nom
76 field_name: Nom
77 field_description: Description
77 field_description: Description
78 field_summary: Résumé
78 field_summary: Résumé
79 field_is_required: Obligatoire
79 field_is_required: Obligatoire
80 field_firstname: Prénom
80 field_firstname: Prénom
81 field_lastname: Nom
81 field_lastname: Nom
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichier
83 field_filename: Fichier
84 field_filesize: Taille
84 field_filesize: Taille
85 field_downloads: Téléchargements
85 field_downloads: Téléchargements
86 field_author: Auteur
86 field_author: Auteur
87 field_created_on: Créé
87 field_created_on: Créé
88 field_updated_on: Mis à jour
88 field_updated_on: Mis à jour
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Pour tous les projets
90 field_is_for_all: Pour tous les projets
91 field_possible_values: Valeurs possibles
91 field_possible_values: Valeurs possibles
92 field_regexp: Expression régulière
92 field_regexp: Expression régulière
93 field_min_length: Longueur minimum
93 field_min_length: Longueur minimum
94 field_max_length: Longueur maximum
94 field_max_length: Longueur maximum
95 field_value: Valeur
95 field_value: Valeur
96 field_category: Catégorie
96 field_category: Catégorie
97 field_title: Titre
97 field_title: Titre
98 field_project: Projet
98 field_project: Projet
99 field_issue: Demande
99 field_issue: Demande
100 field_status: Statut
100 field_status: Statut
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Demande fermée
102 field_is_closed: Demande fermée
103 field_is_default: Statut par défaut
103 field_is_default: Statut par défaut
104 field_html_color: Couleur
104 field_html_color: Couleur
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Sujet
106 field_subject: Sujet
107 field_due_date: Date d'échéance
107 field_due_date: Date d'échéance
108 field_assigned_to: Assigné à
108 field_assigned_to: Assigné à
109 field_priority: Priorité
109 field_priority: Priorité
110 field_fixed_version: Version corrigée
110 field_fixed_version: Version corrigée
111 field_user: Utilisateur
111 field_user: Utilisateur
112 field_role: Rôle
112 field_role: Rôle
113 field_homepage: Site web
113 field_homepage: Site web
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Sous-projet de
115 field_parent: Sous-projet de
116 field_is_in_chlog: Demandes affichées dans l'historique
116 field_is_in_chlog: Demandes affichées dans l'historique
117 field_is_in_roadmap: Demandes affichées dans la roadmap
117 field_is_in_roadmap: Demandes affichées dans la roadmap
118 field_login: Identifiant
118 field_login: Identifiant
119 field_mail_notification: Notifications par mail
119 field_mail_notification: Notifications par mail
120 field_admin: Administrateur
120 field_admin: Administrateur
121 field_last_login_on: Dernière connexion
121 field_last_login_on: Dernière connexion
122 field_language: Langue
122 field_language: Langue
123 field_effective_date: Date
123 field_effective_date: Date
124 field_password: Mot de passe
124 field_password: Mot de passe
125 field_new_password: Nouveau mot de passe
125 field_new_password: Nouveau mot de passe
126 field_password_confirmation: Confirmation
126 field_password_confirmation: Confirmation
127 field_version: Version
127 field_version: Version
128 field_type: Type
128 field_type: Type
129 field_host: Hôte
129 field_host: Hôte
130 field_port: Port
130 field_port: Port
131 field_account: Compte
131 field_account: Compte
132 field_base_dn: Base DN
132 field_base_dn: Base DN
133 field_attr_login: Attribut Identifiant
133 field_attr_login: Attribut Identifiant
134 field_attr_firstname: Attribut Prénom
134 field_attr_firstname: Attribut Prénom
135 field_attr_lastname: Attribut Nom
135 field_attr_lastname: Attribut Nom
136 field_attr_mail: Attribut Email
136 field_attr_mail: Attribut Email
137 field_onthefly: Création des utilisateurs à la volée
137 field_onthefly: Création des utilisateurs à la volée
138 field_start_date: Début
138 field_start_date: Début
139 field_done_ratio: %% Réalisé
139 field_done_ratio: %% Réalisé
140 field_auth_source: Mode d'authentification
140 field_auth_source: Mode d'authentification
141 field_hide_mail: Cacher mon adresse mail
141 field_hide_mail: Cacher mon adresse mail
142 field_comment: Commentaire
142 field_comment: Commentaire
143 field_url: URL
143 field_url: URL
144 field_start_page: Page de démarrage
144 field_start_page: Page de démarrage
145 field_subproject: Sous-projet
145 field_subproject: Sous-projet
146 field_hours: Heures
146 field_hours: Heures
147 field_activity: Activité
147 field_activity: Activité
148 field_spent_on: Date
148 field_spent_on: Date
149 field_identifier: Identifiant
149
150
150 setting_app_title: Titre de l'application
151 setting_app_title: Titre de l'application
151 setting_app_subtitle: Sous-titre de l'application
152 setting_app_subtitle: Sous-titre de l'application
152 setting_welcome_text: Texte d'accueil
153 setting_welcome_text: Texte d'accueil
153 setting_default_language: Langue par défaut
154 setting_default_language: Langue par défaut
154 setting_login_required: Authentif. obligatoire
155 setting_login_required: Authentif. obligatoire
155 setting_self_registration: Enregistrement autorisé
156 setting_self_registration: Enregistrement autorisé
156 setting_attachment_max_size: Taille max des fichiers
157 setting_attachment_max_size: Taille max des fichiers
157 setting_issues_export_limit: Limite export demandes
158 setting_issues_export_limit: Limite export demandes
158 setting_mail_from: Adresse d'émission
159 setting_mail_from: Adresse d'émission
159 setting_host_name: Nom d'hôte
160 setting_host_name: Nom d'hôte
160 setting_text_formatting: Formatage du texte
161 setting_text_formatting: Formatage du texte
161 setting_wiki_compression: Compression historique wiki
162 setting_wiki_compression: Compression historique wiki
162 setting_feeds_limit: Limite du contenu des flux RSS
163 setting_feeds_limit: Limite du contenu des flux RSS
163 setting_autofetch_changesets: Récupération auto. des commits SVN
164 setting_autofetch_changesets: Récupération auto. des commits SVN
165 setting_sys_api_enabled: Activer les WS pour la gestion des dépôts
164
166
165 label_user: Utilisateur
167 label_user: Utilisateur
166 label_user_plural: Utilisateurs
168 label_user_plural: Utilisateurs
167 label_user_new: Nouvel utilisateur
169 label_user_new: Nouvel utilisateur
168 label_project: Projet
170 label_project: Projet
169 label_project_new: Nouveau projet
171 label_project_new: Nouveau projet
170 label_project_plural: Projets
172 label_project_plural: Projets
171 label_project_latest: Derniers projets
173 label_project_latest: Derniers projets
172 label_issue: Demande
174 label_issue: Demande
173 label_issue_new: Nouvelle demande
175 label_issue_new: Nouvelle demande
174 label_issue_plural: Demandes
176 label_issue_plural: Demandes
175 label_issue_view_all: Voir toutes les demandes
177 label_issue_view_all: Voir toutes les demandes
176 label_document: Document
178 label_document: Document
177 label_document_new: Nouveau document
179 label_document_new: Nouveau document
178 label_document_plural: Documents
180 label_document_plural: Documents
179 label_role: Rôle
181 label_role: Rôle
180 label_role_plural: Rôles
182 label_role_plural: Rôles
181 label_role_new: Nouveau rôle
183 label_role_new: Nouveau rôle
182 label_role_and_permissions: Rôles et permissions
184 label_role_and_permissions: Rôles et permissions
183 label_member: Membre
185 label_member: Membre
184 label_member_new: Nouveau membre
186 label_member_new: Nouveau membre
185 label_member_plural: Membres
187 label_member_plural: Membres
186 label_tracker: Tracker
188 label_tracker: Tracker
187 label_tracker_plural: Trackers
189 label_tracker_plural: Trackers
188 label_tracker_new: Nouveau tracker
190 label_tracker_new: Nouveau tracker
189 label_workflow: Workflow
191 label_workflow: Workflow
190 label_issue_status: Statut de demandes
192 label_issue_status: Statut de demandes
191 label_issue_status_plural: Statuts de demandes
193 label_issue_status_plural: Statuts de demandes
192 label_issue_status_new: Nouveau statut
194 label_issue_status_new: Nouveau statut
193 label_issue_category: Catégorie de demandes
195 label_issue_category: Catégorie de demandes
194 label_issue_category_plural: Catégories de demandes
196 label_issue_category_plural: Catégories de demandes
195 label_issue_category_new: Nouvelle catégorie
197 label_issue_category_new: Nouvelle catégorie
196 label_custom_field: Champ personnalisé
198 label_custom_field: Champ personnalisé
197 label_custom_field_plural: Champs personnalisés
199 label_custom_field_plural: Champs personnalisés
198 label_custom_field_new: Nouveau champ personnalisé
200 label_custom_field_new: Nouveau champ personnalisé
199 label_enumerations: Listes de valeurs
201 label_enumerations: Listes de valeurs
200 label_enumeration_new: Nouvelle valeur
202 label_enumeration_new: Nouvelle valeur
201 label_information: Information
203 label_information: Information
202 label_information_plural: Informations
204 label_information_plural: Informations
203 label_please_login: Identification
205 label_please_login: Identification
204 label_register: S'enregistrer
206 label_register: S'enregistrer
205 label_password_lost: Mot de passe perdu
207 label_password_lost: Mot de passe perdu
206 label_home: Accueil
208 label_home: Accueil
207 label_my_page: Ma page
209 label_my_page: Ma page
208 label_my_account: Mon compte
210 label_my_account: Mon compte
209 label_my_projects: Mes projets
211 label_my_projects: Mes projets
210 label_administration: Administration
212 label_administration: Administration
211 label_login: Connexion
213 label_login: Connexion
212 label_logout: Déconnexion
214 label_logout: Déconnexion
213 label_help: Aide
215 label_help: Aide
214 label_reported_issues: Demandes soumises
216 label_reported_issues: Demandes soumises
215 label_assigned_to_me_issues: Demandes qui me sont assignées
217 label_assigned_to_me_issues: Demandes qui me sont assignées
216 label_last_login: Dernière connexion
218 label_last_login: Dernière connexion
217 label_last_updates: Dernière mise à jour
219 label_last_updates: Dernière mise à jour
218 label_last_updates_plural: %d dernières mises à jour
220 label_last_updates_plural: %d dernières mises à jour
219 label_registered_on: Inscrit le
221 label_registered_on: Inscrit le
220 label_activity: Activité
222 label_activity: Activité
221 label_new: Nouveau
223 label_new: Nouveau
222 label_logged_as: Connecté en tant que
224 label_logged_as: Connecté en tant que
223 label_environment: Environnement
225 label_environment: Environnement
224 label_authentication: Authentification
226 label_authentication: Authentification
225 label_auth_source: Mode d'authentification
227 label_auth_source: Mode d'authentification
226 label_auth_source_new: Nouveau mode d'authentification
228 label_auth_source_new: Nouveau mode d'authentification
227 label_auth_source_plural: Modes d'authentification
229 label_auth_source_plural: Modes d'authentification
228 label_subproject_plural: Sous-projets
230 label_subproject_plural: Sous-projets
229 label_min_max_length: Longueurs mini - maxi
231 label_min_max_length: Longueurs mini - maxi
230 label_list: Liste
232 label_list: Liste
231 label_date: Date
233 label_date: Date
232 label_integer: Entier
234 label_integer: Entier
233 label_boolean: Booléen
235 label_boolean: Booléen
234 label_string: Texte
236 label_string: Texte
235 label_text: Texte long
237 label_text: Texte long
236 label_attribute: Attribut
238 label_attribute: Attribut
237 label_attribute_plural: Attributs
239 label_attribute_plural: Attributs
238 label_download: %d Téléchargement
240 label_download: %d Téléchargement
239 label_download_plural: %d Téléchargements
241 label_download_plural: %d Téléchargements
240 label_no_data: Aucune donnée à afficher
242 label_no_data: Aucune donnée à afficher
241 label_change_status: Changer le statut
243 label_change_status: Changer le statut
242 label_history: Historique
244 label_history: Historique
243 label_attachment: Fichier
245 label_attachment: Fichier
244 label_attachment_new: Nouveau fichier
246 label_attachment_new: Nouveau fichier
245 label_attachment_delete: Supprimer le fichier
247 label_attachment_delete: Supprimer le fichier
246 label_attachment_plural: Fichiers
248 label_attachment_plural: Fichiers
247 label_report: Rapport
249 label_report: Rapport
248 label_report_plural: Rapports
250 label_report_plural: Rapports
249 label_news: Annonce
251 label_news: Annonce
250 label_news_new: Nouvelle annonce
252 label_news_new: Nouvelle annonce
251 label_news_plural: Annonces
253 label_news_plural: Annonces
252 label_news_latest: Dernières annonces
254 label_news_latest: Dernières annonces
253 label_news_view_all: Voir toutes les annonces
255 label_news_view_all: Voir toutes les annonces
254 label_change_log: Historique
256 label_change_log: Historique
255 label_settings: Configuration
257 label_settings: Configuration
256 label_overview: Aperçu
258 label_overview: Aperçu
257 label_version: Version
259 label_version: Version
258 label_version_new: Nouvelle version
260 label_version_new: Nouvelle version
259 label_version_plural: Versions
261 label_version_plural: Versions
260 label_confirmation: Confirmation
262 label_confirmation: Confirmation
261 label_export_to: Exporter en
263 label_export_to: Exporter en
262 label_read: Lire...
264 label_read: Lire...
263 label_public_projects: Projets publics
265 label_public_projects: Projets publics
264 label_open_issues: ouvert
266 label_open_issues: ouvert
265 label_open_issues_plural: ouverts
267 label_open_issues_plural: ouverts
266 label_closed_issues: fermé
268 label_closed_issues: fermé
267 label_closed_issues_plural: fermés
269 label_closed_issues_plural: fermés
268 label_total: Total
270 label_total: Total
269 label_permissions: Permissions
271 label_permissions: Permissions
270 label_current_status: Statut actuel
272 label_current_status: Statut actuel
271 label_new_statuses_allowed: Nouveaux statuts autorisés
273 label_new_statuses_allowed: Nouveaux statuts autorisés
272 label_all: tous
274 label_all: tous
273 label_none: aucun
275 label_none: aucun
274 label_next: Suivant
276 label_next: Suivant
275 label_previous: Précédent
277 label_previous: Précédent
276 label_used_by: Utilisé par
278 label_used_by: Utilisé par
277 label_details: Détails...
279 label_details: Détails...
278 label_add_note: Ajouter une note
280 label_add_note: Ajouter une note
279 label_per_page: Par page
281 label_per_page: Par page
280 label_calendar: Calendrier
282 label_calendar: Calendrier
281 label_months_from: mois depuis
283 label_months_from: mois depuis
282 label_gantt: Gantt
284 label_gantt: Gantt
283 label_internal: Interne
285 label_internal: Interne
284 label_last_changes: %d derniers changements
286 label_last_changes: %d derniers changements
285 label_change_view_all: Voir tous les changements
287 label_change_view_all: Voir tous les changements
286 label_personalize_page: Personnaliser cette page
288 label_personalize_page: Personnaliser cette page
287 label_comment: Commentaire
289 label_comment: Commentaire
288 label_comment_plural: Commentaires
290 label_comment_plural: Commentaires
289 label_comment_add: Ajouter un commentaire
291 label_comment_add: Ajouter un commentaire
290 label_comment_added: Commentaire ajouté
292 label_comment_added: Commentaire ajouté
291 label_comment_delete: Supprimer les commentaires
293 label_comment_delete: Supprimer les commentaires
292 label_query: Rapport personnalisé
294 label_query: Rapport personnalisé
293 label_query_plural: Rapports personnalisés
295 label_query_plural: Rapports personnalisés
294 label_query_new: Nouveau rapport
296 label_query_new: Nouveau rapport
295 label_filter_add: Ajouter le filtre
297 label_filter_add: Ajouter le filtre
296 label_filter_plural: Filtres
298 label_filter_plural: Filtres
297 label_equals: égal
299 label_equals: égal
298 label_not_equals: différent
300 label_not_equals: différent
299 label_in_less_than: dans moins de
301 label_in_less_than: dans moins de
300 label_in_more_than: dans plus de
302 label_in_more_than: dans plus de
301 label_in: dans
303 label_in: dans
302 label_today: aujourd'hui
304 label_today: aujourd'hui
303 label_less_than_ago: il y a moins de
305 label_less_than_ago: il y a moins de
304 label_more_than_ago: il y a plus de
306 label_more_than_ago: il y a plus de
305 label_ago: il y a
307 label_ago: il y a
306 label_contains: contient
308 label_contains: contient
307 label_not_contains: ne contient pas
309 label_not_contains: ne contient pas
308 label_day_plural: jours
310 label_day_plural: jours
309 label_repository: Dépôt SVN
311 label_repository: Dépôt SVN
310 label_browse: Parcourir
312 label_browse: Parcourir
311 label_modification: %d modification
313 label_modification: %d modification
312 label_modification_plural: %d modifications
314 label_modification_plural: %d modifications
313 label_revision: Révision
315 label_revision: Révision
314 label_revision_plural: Révisions
316 label_revision_plural: Révisions
315 label_added: ajouté
317 label_added: ajouté
316 label_modified: modifié
318 label_modified: modifié
317 label_deleted: supprimé
319 label_deleted: supprimé
318 label_latest_revision: Dernière révision
320 label_latest_revision: Dernière révision
319 label_latest_revision_plural: Dernières révisions
321 label_latest_revision_plural: Dernières révisions
320 label_view_revisions: Voir les révisions
322 label_view_revisions: Voir les révisions
321 label_max_size: Taille maximale
323 label_max_size: Taille maximale
322 label_on: sur
324 label_on: sur
323 label_sort_highest: Remonter en premier
325 label_sort_highest: Remonter en premier
324 label_sort_higher: Remonter
326 label_sort_higher: Remonter
325 label_sort_lower: Descendre
327 label_sort_lower: Descendre
326 label_sort_lowest: Descendre en dernier
328 label_sort_lowest: Descendre en dernier
327 label_roadmap: Roadmap
329 label_roadmap: Roadmap
328 label_roadmap_due_in: Echéance dans
330 label_roadmap_due_in: Echéance dans
329 label_roadmap_no_issues: Aucune demande pour cette version
331 label_roadmap_no_issues: Aucune demande pour cette version
330 label_search: Recherche
332 label_search: Recherche
331 label_result: %d résultat
333 label_result: %d résultat
332 label_result_plural: %d résultats
334 label_result_plural: %d résultats
333 label_all_words: Tous les mots
335 label_all_words: Tous les mots
334 label_wiki: Wiki
336 label_wiki: Wiki
335 label_wiki_edit: Révision wiki
337 label_wiki_edit: Révision wiki
336 label_wiki_edit_plural: Révisions wiki
338 label_wiki_edit_plural: Révisions wiki
337 label_page_index: Index
339 label_page_index: Index
338 label_current_version: Version actuelle
340 label_current_version: Version actuelle
339 label_preview: Prévisualisation
341 label_preview: Prévisualisation
340 label_feed_plural: Flux RSS
342 label_feed_plural: Flux RSS
341 label_changes_details: Détails de tous les changements
343 label_changes_details: Détails de tous les changements
342 label_issue_tracking: Suivi des demandes
344 label_issue_tracking: Suivi des demandes
343 label_spent_time: Temps passé
345 label_spent_time: Temps passé
344 label_f_hour: %.2f heure
346 label_f_hour: %.2f heure
345 label_f_hour_plural: %.2f heures
347 label_f_hour_plural: %.2f heures
346 label_time_tracking: Suivi du temps
348 label_time_tracking: Suivi du temps
347 label_change_plural: Changements
349 label_change_plural: Changements
348 label_statistics: Statistiques
350 label_statistics: Statistiques
349 label_commits_per_month: Commits par mois
351 label_commits_per_month: Commits par mois
350 label_commits_per_author: Commits par auteur
352 label_commits_per_author: Commits par auteur
351 label_view_diff: Voir les différences
353 label_view_diff: Voir les différences
352 label_diff_inline: en ligne
354 label_diff_inline: en ligne
353 label_diff_side_by_side: côte à côte
355 label_diff_side_by_side: côte à côte
354 label_options: Options
356 label_options: Options
355
357
356 button_login: Connexion
358 button_login: Connexion
357 button_submit: Soumettre
359 button_submit: Soumettre
358 button_save: Sauvegarder
360 button_save: Sauvegarder
359 button_check_all: Tout cocher
361 button_check_all: Tout cocher
360 button_uncheck_all: Tout décocher
362 button_uncheck_all: Tout décocher
361 button_delete: Supprimer
363 button_delete: Supprimer
362 button_create: Créer
364 button_create: Créer
363 button_test: Tester
365 button_test: Tester
364 button_edit: Modifier
366 button_edit: Modifier
365 button_add: Ajouter
367 button_add: Ajouter
366 button_change: Changer
368 button_change: Changer
367 button_apply: Appliquer
369 button_apply: Appliquer
368 button_clear: Effacer
370 button_clear: Effacer
369 button_lock: Verrouiller
371 button_lock: Verrouiller
370 button_unlock: Déverrouiller
372 button_unlock: Déverrouiller
371 button_download: Télécharger
373 button_download: Télécharger
372 button_list: Lister
374 button_list: Lister
373 button_view: Voir
375 button_view: Voir
374 button_move: Déplacer
376 button_move: Déplacer
375 button_back: Retour
377 button_back: Retour
376 button_cancel: Annuler
378 button_cancel: Annuler
377 button_activate: Activer
379 button_activate: Activer
378 button_sort: Trier
380 button_sort: Trier
379 button_log_time: Saisir temps
381 button_log_time: Saisir temps
380
382
381 status_active: actif
383 status_active: actif
382 status_registered: enregistré
384 status_registered: enregistré
383 status_locked: vérouillé
385 status_locked: vérouillé
384
386
385 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
387 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
386 text_regexp_info: ex. ^[A-Z0-9]+$
388 text_regexp_info: ex. ^[A-Z0-9]+$
387 text_min_max_length_info: 0 pour aucune restriction
389 text_min_max_length_info: 0 pour aucune restriction
388 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
390 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
389 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
391 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
390 text_are_you_sure: Etes-vous sûr ?
392 text_are_you_sure: Etes-vous sûr ?
391 text_journal_changed: changé de %s à %s
393 text_journal_changed: changé de %s à %s
392 text_journal_set_to: mis à %s
394 text_journal_set_to: mis à %s
393 text_journal_deleted: supprimé
395 text_journal_deleted: supprimé
394 text_tip_task_begin_day: tâche commençant ce jour
396 text_tip_task_begin_day: tâche commençant ce jour
395 text_tip_task_end_day: tâche finissant ce jour
397 text_tip_task_end_day: tâche finissant ce jour
396 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
398 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
399 text_project_identifier_info: '12 caractères maximum. Lettres (a-z), chiffres (0-9) et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
397
400
398 default_role_manager: Manager
401 default_role_manager: Manager
399 default_role_developper: Développeur
402 default_role_developper: Développeur
400 default_role_reporter: Rapporteur
403 default_role_reporter: Rapporteur
401 default_tracker_bug: Anomalie
404 default_tracker_bug: Anomalie
402 default_tracker_feature: Evolution
405 default_tracker_feature: Evolution
403 default_tracker_support: Assistance
406 default_tracker_support: Assistance
404 default_issue_status_new: Nouveau
407 default_issue_status_new: Nouveau
405 default_issue_status_assigned: Assigné
408 default_issue_status_assigned: Assigné
406 default_issue_status_resolved: Résolu
409 default_issue_status_resolved: Résolu
407 default_issue_status_feedback: Commentaire
410 default_issue_status_feedback: Commentaire
408 default_issue_status_closed: Fermé
411 default_issue_status_closed: Fermé
409 default_issue_status_rejected: Rejeté
412 default_issue_status_rejected: Rejeté
410 default_doc_category_user: Documentation utilisateur
413 default_doc_category_user: Documentation utilisateur
411 default_doc_category_tech: Documentation technique
414 default_doc_category_tech: Documentation technique
412 default_priority_low: Bas
415 default_priority_low: Bas
413 default_priority_normal: Normal
416 default_priority_normal: Normal
414 default_priority_high: Haut
417 default_priority_high: Haut
415 default_priority_urgent: Urgent
418 default_priority_urgent: Urgent
416 default_priority_immediate: Immédiat
419 default_priority_immediate: Immédiat
417 default_activity_design: Conception
420 default_activity_design: Conception
418 default_activity_development: Développement
421 default_activity_development: Développement
419
422
420 enumeration_issue_priorities: Priorités des demandes
423 enumeration_issue_priorities: Priorités des demandes
421 enumeration_doc_categories: Catégories des documents
424 enumeration_doc_categories: Catégories des documents
422 enumeration_activities: Activités (suivi du temps)
425 enumeration_activities: Activités (suivi du temps)
@@ -1,422 +1,425
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Si'
44 general_text_Yes: 'Si'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'si'
46 general_text_yes: 'si'
47 general_lang_it: 'Italiano'
47 general_lang_it: 'Italiano'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
52
52
53 notice_account_updated: L'utenza è stata aggiornata.
53 notice_account_updated: L'utenza è stata aggiornata.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
55 notice_account_password_updated: La password è stata aggiornata.
55 notice_account_password_updated: La password è stata aggiornata.
56 notice_account_wrong_password: Password errata
56 notice_account_wrong_password: Password errata
57 notice_account_register_done: L'utenza è stata creata.
57 notice_account_register_done: L'utenza è stata creata.
58 notice_account_unknown_email: Utente sconosciuto.
58 notice_account_unknown_email: Utente sconosciuto.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Password redMine
70 mail_subject_lost_password: Password redMine
71 mail_subject_register: Attivazione utenza redMine
71 mail_subject_register: Attivazione utenza redMine
72
72
73 gui_validation_error: 1 errore
73 gui_validation_error: 1 errore
74 gui_validation_error_plural: %d errori
74 gui_validation_error_plural: %d errori
75
75
76 field_name: Nome
76 field_name: Nome
77 field_description: Descrizione
77 field_description: Descrizione
78 field_summary: Sommario
78 field_summary: Sommario
79 field_is_required: Richiesto
79 field_is_required: Richiesto
80 field_firstname: Nome
80 field_firstname: Nome
81 field_lastname: Cognome
81 field_lastname: Cognome
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Dimensione
84 field_filesize: Dimensione
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autore
86 field_author: Autore
87 field_created_on: Creato
87 field_created_on: Creato
88 field_updated_on: Aggiornato
88 field_updated_on: Aggiornato
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Per tutti i progetti
90 field_is_for_all: Per tutti i progetti
91 field_possible_values: Valori possibili
91 field_possible_values: Valori possibili
92 field_regexp: Espressione regolare
92 field_regexp: Espressione regolare
93 field_min_length: Lunghezza minima
93 field_min_length: Lunghezza minima
94 field_max_length: Lunghezza massima
94 field_max_length: Lunghezza massima
95 field_value: Valore
95 field_value: Valore
96 field_category: Categoria
96 field_category: Categoria
97 field_title: Titolo
97 field_title: Titolo
98 field_project: Progetto
98 field_project: Progetto
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Stato
100 field_status: Stato
101 field_notes: Note
101 field_notes: Note
102 field_is_closed: Chiude il contesto
102 field_is_closed: Chiude il contesto
103 field_is_default: Stato predefinito
103 field_is_default: Stato predefinito
104 field_html_color: Colore
104 field_html_color: Colore
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Oggetto
106 field_subject: Oggetto
107 field_due_date: Data ultima
107 field_due_date: Data ultima
108 field_assigned_to: Assegnato a
108 field_assigned_to: Assegnato a
109 field_priority: Priorita'
109 field_priority: Priorita'
110 field_fixed_version: Versione di fix
110 field_fixed_version: Versione di fix
111 field_user: Utente
111 field_user: Utente
112 field_role: Ruolo
112 field_role: Ruolo
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Pubblico
114 field_is_public: Pubblico
115 field_parent: Sottoprogetto di
115 field_parent: Sottoprogetto di
116 field_is_in_chlog: Contesti mostrati nel changelog
116 field_is_in_chlog: Contesti mostrati nel changelog
117 field_is_in_roadmap: Contesti mostrati nel roadmap
117 field_is_in_roadmap: Contesti mostrati nel roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Notifiche via e-mail
119 field_mail_notification: Notifiche via e-mail
120 field_admin: Amministratore
120 field_admin: Amministratore
121 field_last_login_on: Ultima connessione
121 field_last_login_on: Ultima connessione
122 field_language: Lingua
122 field_language: Lingua
123 field_effective_date: Data
123 field_effective_date: Data
124 field_password: Password
124 field_password: Password
125 field_new_password: Nuova password
125 field_new_password: Nuova password
126 field_password_confirmation: Conferma
126 field_password_confirmation: Conferma
127 field_version: Versione
127 field_version: Versione
128 field_type: Tipo
128 field_type: Tipo
129 field_host: Host
129 field_host: Host
130 field_port: Porta
130 field_port: Porta
131 field_account: Utenza
131 field_account: Utenza
132 field_base_dn: DN base
132 field_base_dn: DN base
133 field_attr_login: Attributo login
133 field_attr_login: Attributo login
134 field_attr_firstname: Attributo nome
134 field_attr_firstname: Attributo nome
135 field_attr_lastname: Attributo cognome
135 field_attr_lastname: Attributo cognome
136 field_attr_mail: Attributo e-mail
136 field_attr_mail: Attributo e-mail
137 field_onthefly: Creazione utenza "al volo"
137 field_onthefly: Creazione utenza "al volo"
138 field_start_date: Inizio
138 field_start_date: Inizio
139 field_done_ratio: %% completo
139 field_done_ratio: %% completo
140 field_auth_source: Modalità di autenticazione
140 field_auth_source: Modalità di autenticazione
141 field_hide_mail: Nascondi il mio indirizzo di e-mail
141 field_hide_mail: Nascondi il mio indirizzo di e-mail
142 field_comment: Commento
142 field_comment: Commento
143 field_url: URL
143 field_url: URL
144 field_start_page: Pagina principale
144 field_start_page: Pagina principale
145 field_subproject: Sottoprogetto
145 field_subproject: Sottoprogetto
146 field_hours: Hours
146 field_hours: Hours
147 field_activity: Activity
147 field_activity: Activity
148 field_spent_on: Data
148 field_spent_on: Data
149 field_identifier: Identifier
149
150
150 setting_app_title: Titolo applicazione
151 setting_app_title: Titolo applicazione
151 setting_app_subtitle: Sottotitolo applicazione
152 setting_app_subtitle: Sottotitolo applicazione
152 setting_welcome_text: Testo di benvenuto
153 setting_welcome_text: Testo di benvenuto
153 setting_default_language: Lingua di default
154 setting_default_language: Lingua di default
154 setting_login_required: Autenticazione richiesta
155 setting_login_required: Autenticazione richiesta
155 setting_self_registration: Auto-registrazione abilitata
156 setting_self_registration: Auto-registrazione abilitata
156 setting_attachment_max_size: Massima dimensione allegati
157 setting_attachment_max_size: Massima dimensione allegati
157 setting_issues_export_limit: Limite esportazione contesti
158 setting_issues_export_limit: Limite esportazione contesti
158 setting_mail_from: Indirizzo sorgente e-mail
159 setting_mail_from: Indirizzo sorgente e-mail
159 setting_host_name: Nome host
160 setting_host_name: Nome host
160 setting_text_formatting: Formattazione testo
161 setting_text_formatting: Formattazione testo
161 setting_wiki_compression: Compressione di storia di Wiki
162 setting_wiki_compression: Compressione di storia di Wiki
162 setting_feeds_limit: Feed content limit
163 setting_feeds_limit: Feed content limit
163 setting_autofetch_changesets: Autofetch SVN commits
164 setting_autofetch_changesets: Autofetch SVN commits
165 setting_sys_api_enabled: Enable WS for repository management
164
166
165 label_user: Utente
167 label_user: Utente
166 label_user_plural: Utenti
168 label_user_plural: Utenti
167 label_user_new: Nuovo utente
169 label_user_new: Nuovo utente
168 label_project: Progetto
170 label_project: Progetto
169 label_project_new: New project
171 label_project_new: New project
170 label_project_plural: Progetti
172 label_project_plural: Progetti
171 label_project_latest: Ultimi progetti registrati
173 label_project_latest: Ultimi progetti registrati
172 label_issue: Contesto
174 label_issue: Contesto
173 label_issue_new: Nuovo contesto
175 label_issue_new: Nuovo contesto
174 label_issue_plural: Contesti
176 label_issue_plural: Contesti
175 label_issue_view_all: Mostra tutti i contesti
177 label_issue_view_all: Mostra tutti i contesti
176 label_document: Documento
178 label_document: Documento
177 label_document_new: Nuovo documento
179 label_document_new: Nuovo documento
178 label_document_plural: Documenti
180 label_document_plural: Documenti
179 label_role: Ruolo
181 label_role: Ruolo
180 label_role_plural: Ruoli
182 label_role_plural: Ruoli
181 label_role_new: Nuovo ruolo
183 label_role_new: Nuovo ruolo
182 label_role_and_permissions: Ruoli e permessi
184 label_role_and_permissions: Ruoli e permessi
183 label_member: Membro
185 label_member: Membro
184 label_member_new: Nuovo membro
186 label_member_new: Nuovo membro
185 label_member_plural: Membri
187 label_member_plural: Membri
186 label_tracker: Tracker
188 label_tracker: Tracker
187 label_tracker_plural: Trackers
189 label_tracker_plural: Trackers
188 label_tracker_new: Nuovo tracker
190 label_tracker_new: Nuovo tracker
189 label_workflow: Workflow
191 label_workflow: Workflow
190 label_issue_status: Stato contesti
192 label_issue_status: Stato contesti
191 label_issue_status_plural: Stati contesto
193 label_issue_status_plural: Stati contesto
192 label_issue_status_new: Nuovo stato
194 label_issue_status_new: Nuovo stato
193 label_issue_category: Categorie contesti
195 label_issue_category: Categorie contesti
194 label_issue_category_plural: Categorie contesto
196 label_issue_category_plural: Categorie contesto
195 label_issue_category_new: Nuova categoria
197 label_issue_category_new: Nuova categoria
196 label_custom_field: Campo personalizzato
198 label_custom_field: Campo personalizzato
197 label_custom_field_plural: Campi personalizzati
199 label_custom_field_plural: Campi personalizzati
198 label_custom_field_new: Nuovo campo personalizzato
200 label_custom_field_new: Nuovo campo personalizzato
199 label_enumerations: Enumerazioni
201 label_enumerations: Enumerazioni
200 label_enumeration_new: Nuovo valore
202 label_enumeration_new: Nuovo valore
201 label_information: Informazione
203 label_information: Informazione
202 label_information_plural: Informazioni
204 label_information_plural: Informazioni
203 label_please_login: Autenticarsi
205 label_please_login: Autenticarsi
204 label_register: Registrati
206 label_register: Registrati
205 label_password_lost: Password dimenticata
207 label_password_lost: Password dimenticata
206 label_home: Home
208 label_home: Home
207 label_my_page: Pagina personale
209 label_my_page: Pagina personale
208 label_my_account: La mia utenza
210 label_my_account: La mia utenza
209 label_my_projects: I miei progetti
211 label_my_projects: I miei progetti
210 label_administration: Amministrazione
212 label_administration: Amministrazione
211 label_login: Login
213 label_login: Login
212 label_logout: Logout
214 label_logout: Logout
213 label_help: Aiuto
215 label_help: Aiuto
214 label_reported_issues: Contesti segnalati
216 label_reported_issues: Contesti segnalati
215 label_assigned_to_me_issues: I miei contesti
217 label_assigned_to_me_issues: I miei contesti
216 label_last_login: Ultimo collegamento
218 label_last_login: Ultimo collegamento
217 label_last_updates: Ultimo aggiornamento
219 label_last_updates: Ultimo aggiornamento
218 label_last_updates_plural: %d ultimo aggiornamento
220 label_last_updates_plural: %d ultimo aggiornamento
219 label_registered_on: Registrato il
221 label_registered_on: Registrato il
220 label_activity: Attività
222 label_activity: Attività
221 label_new: Nuovo
223 label_new: Nuovo
222 label_logged_as: Autenticato come
224 label_logged_as: Autenticato come
223 label_environment: Ambiente
225 label_environment: Ambiente
224 label_authentication: Autenticazione
226 label_authentication: Autenticazione
225 label_auth_source: Modalità di autenticazione
227 label_auth_source: Modalità di autenticazione
226 label_auth_source_new: Nuova modalità di autenticazione
228 label_auth_source_new: Nuova modalità di autenticazione
227 label_auth_source_plural: Modalità di autenticazione
229 label_auth_source_plural: Modalità di autenticazione
228 label_subproject_plural: Sottoprogetti
230 label_subproject_plural: Sottoprogetti
229 label_min_max_length: Lunghezza minima - massima
231 label_min_max_length: Lunghezza minima - massima
230 label_list: Elenco
232 label_list: Elenco
231 label_date: Data
233 label_date: Data
232 label_integer: Intero
234 label_integer: Intero
233 label_boolean: Booleano
235 label_boolean: Booleano
234 label_string: Testo
236 label_string: Testo
235 label_text: Testo esteso
237 label_text: Testo esteso
236 label_attribute: Attributo
238 label_attribute: Attributo
237 label_attribute_plural: Attributi
239 label_attribute_plural: Attributi
238 label_download: %d Download
240 label_download: %d Download
239 label_download_plural: %d Download
241 label_download_plural: %d Download
240 label_no_data: Nessun dato disponibile
242 label_no_data: Nessun dato disponibile
241 label_change_status: Cambia stato
243 label_change_status: Cambia stato
242 label_history: Cronologia
244 label_history: Cronologia
243 label_attachment: File
245 label_attachment: File
244 label_attachment_new: Nuovo file
246 label_attachment_new: Nuovo file
245 label_attachment_delete: Elimina file
247 label_attachment_delete: Elimina file
246 label_attachment_plural: File
248 label_attachment_plural: File
247 label_report: Report
249 label_report: Report
248 label_report_plural: Report
250 label_report_plural: Report
249 label_news: Notizia
251 label_news: Notizia
250 label_news_new: Aggiungi notizia
252 label_news_new: Aggiungi notizia
251 label_news_plural: Notizie
253 label_news_plural: Notizie
252 label_news_latest: Utime notizie
254 label_news_latest: Utime notizie
253 label_news_view_all: Tutte le notizie
255 label_news_view_all: Tutte le notizie
254 label_change_log: Change log
256 label_change_log: Change log
255 label_settings: Impostazioni
257 label_settings: Impostazioni
256 label_overview: Panoramica
258 label_overview: Panoramica
257 label_version: Versione
259 label_version: Versione
258 label_version_new: Nuova versione
260 label_version_new: Nuova versione
259 label_version_plural: Versioni
261 label_version_plural: Versioni
260 label_confirmation: Conferma
262 label_confirmation: Conferma
261 label_export_to: Esporta su
263 label_export_to: Esporta su
262 label_read: Leggi...
264 label_read: Leggi...
263 label_public_projects: Progetti pubblici
265 label_public_projects: Progetti pubblici
264 label_open_issues: aperta
266 label_open_issues: aperta
265 label_open_issues_plural: aperte
267 label_open_issues_plural: aperte
266 label_closed_issues: chiusa
268 label_closed_issues: chiusa
267 label_closed_issues_plural: chiuse
269 label_closed_issues_plural: chiuse
268 label_total: Totale
270 label_total: Totale
269 label_permissions: Permessi
271 label_permissions: Permessi
270 label_current_status: Stato attuale
272 label_current_status: Stato attuale
271 label_new_statuses_allowed: Nuovi stati possibili
273 label_new_statuses_allowed: Nuovi stati possibili
272 label_all: tutti
274 label_all: tutti
273 label_none: nessuno
275 label_none: nessuno
274 label_next: Successivo
276 label_next: Successivo
275 label_previous: Precedente
277 label_previous: Precedente
276 label_used_by: Usato da
278 label_used_by: Usato da
277 label_details: Dettagli...
279 label_details: Dettagli...
278 label_add_note: Aggiungi una nota
280 label_add_note: Aggiungi una nota
279 label_per_page: Per pagina
281 label_per_page: Per pagina
280 label_calendar: Calendario
282 label_calendar: Calendario
281 label_months_from: mesi da
283 label_months_from: mesi da
282 label_gantt: Gantt
284 label_gantt: Gantt
283 label_internal: Interno
285 label_internal: Interno
284 label_last_changes: ultime %d modifiche
286 label_last_changes: ultime %d modifiche
285 label_change_view_all: Tutte le modifiche
287 label_change_view_all: Tutte le modifiche
286 label_personalize_page: Personalizza la pagina
288 label_personalize_page: Personalizza la pagina
287 label_comment: Commento
289 label_comment: Commento
288 label_comment_plural: Commenti
290 label_comment_plural: Commenti
289 label_comment_add: Aggiungi un commento
291 label_comment_add: Aggiungi un commento
290 label_comment_added: Commento aggiunto
292 label_comment_added: Commento aggiunto
291 label_comment_delete: Elimina commenti
293 label_comment_delete: Elimina commenti
292 label_query: Custom query
294 label_query: Custom query
293 label_query_plural: Query personalizzate
295 label_query_plural: Query personalizzate
294 label_query_new: Nuova query
296 label_query_new: Nuova query
295 label_filter_add: Aggiungi filtro
297 label_filter_add: Aggiungi filtro
296 label_filter_plural: Filtri
298 label_filter_plural: Filtri
297 label_equals: è
299 label_equals: è
298 label_not_equals: non è
300 label_not_equals: non è
299 label_in_less_than: è minore di
301 label_in_less_than: è minore di
300 label_in_more_than: è maggiore di
302 label_in_more_than: è maggiore di
301 label_in: in
303 label_in: in
302 label_today: oggi
304 label_today: oggi
303 label_less_than_ago: meno di giorni fa
305 label_less_than_ago: meno di giorni fa
304 label_more_than_ago: più di giorni fa
306 label_more_than_ago: più di giorni fa
305 label_ago: giorni fa
307 label_ago: giorni fa
306 label_contains: contiene
308 label_contains: contiene
307 label_not_contains: non contiene
309 label_not_contains: non contiene
308 label_day_plural: giorni
310 label_day_plural: giorni
309 label_repository: SVN Repository
311 label_repository: SVN Repository
310 label_browse: Browse
312 label_browse: Browse
311 label_modification: %d modifica
313 label_modification: %d modifica
312 label_modification_plural: %d modifiche
314 label_modification_plural: %d modifiche
313 label_revision: Versione
315 label_revision: Versione
314 label_revision_plural: Versioni
316 label_revision_plural: Versioni
315 label_added: aggiunto
317 label_added: aggiunto
316 label_modified: modificato
318 label_modified: modificato
317 label_deleted: eliminato
319 label_deleted: eliminato
318 label_latest_revision: Ultima versione
320 label_latest_revision: Ultima versione
319 label_latest_revision_plural: Latest revisions
321 label_latest_revision_plural: Latest revisions
320 label_view_revisions: Mostra versioni
322 label_view_revisions: Mostra versioni
321 label_max_size: Dimensione massima
323 label_max_size: Dimensione massima
322 label_on: 'on'
324 label_on: 'on'
323 label_sort_highest: Sposta in cima
325 label_sort_highest: Sposta in cima
324 label_sort_higher: Su
326 label_sort_higher: Su
325 label_sort_lower: Giù
327 label_sort_lower: Giù
326 label_sort_lowest: Sposta in fondo
328 label_sort_lowest: Sposta in fondo
327 label_roadmap: Roadmap
329 label_roadmap: Roadmap
328 label_roadmap_due_in: Due in
330 label_roadmap_due_in: Due in
329 label_roadmap_no_issues: No issues for this version
331 label_roadmap_no_issues: No issues for this version
330 label_search: Ricerca
332 label_search: Ricerca
331 label_result: %d risultato
333 label_result: %d risultato
332 label_result_plural: %d risultati
334 label_result_plural: %d risultati
333 label_all_words: Tutte le parole
335 label_all_words: Tutte le parole
334 label_wiki: Wiki
336 label_wiki: Wiki
335 label_wiki_edit: Wiki edit
337 label_wiki_edit: Wiki edit
336 label_wiki_edit_plural: Wiki edits
338 label_wiki_edit_plural: Wiki edits
337 label_page_index: Indice
339 label_page_index: Indice
338 label_current_version: Versione corrente
340 label_current_version: Versione corrente
339 label_preview: Previsione
341 label_preview: Previsione
340 label_feed_plural: Feeds
342 label_feed_plural: Feeds
341 label_changes_details: Particolari di tutti i cambiamenti
343 label_changes_details: Particolari di tutti i cambiamenti
342 label_issue_tracking: Issue tracking
344 label_issue_tracking: Issue tracking
343 label_spent_time: Spent time
345 label_spent_time: Spent time
344 label_f_hour: %.2f hour
346 label_f_hour: %.2f hour
345 label_f_hour_plural: %.2f hours
347 label_f_hour_plural: %.2f hours
346 label_time_tracking: Time tracking
348 label_time_tracking: Time tracking
347 label_change_plural: Changes
349 label_change_plural: Changes
348 label_statistics: Statistics
350 label_statistics: Statistics
349 label_commits_per_month: Commits per month
351 label_commits_per_month: Commits per month
350 label_commits_per_author: Commits per author
352 label_commits_per_author: Commits per author
351 label_view_diff: View differences
353 label_view_diff: View differences
352 label_diff_inline: inline
354 label_diff_inline: inline
353 label_diff_side_by_side: side by side
355 label_diff_side_by_side: side by side
354 label_options: Options
356 label_options: Options
355
357
356 button_login: Login
358 button_login: Login
357 button_submit: Invia
359 button_submit: Invia
358 button_save: Salva
360 button_save: Salva
359 button_check_all: Seleziona tutti
361 button_check_all: Seleziona tutti
360 button_uncheck_all: Deseleziona tutti
362 button_uncheck_all: Deseleziona tutti
361 button_delete: Elimina
363 button_delete: Elimina
362 button_create: Crea
364 button_create: Crea
363 button_test: Test
365 button_test: Test
364 button_edit: Modifica
366 button_edit: Modifica
365 button_add: Aggiungi
367 button_add: Aggiungi
366 button_change: Modifica
368 button_change: Modifica
367 button_apply: Applica
369 button_apply: Applica
368 button_clear: Pulisci
370 button_clear: Pulisci
369 button_lock: Blocca
371 button_lock: Blocca
370 button_unlock: Sblocca
372 button_unlock: Sblocca
371 button_download: Scarica
373 button_download: Scarica
372 button_list: Elenca
374 button_list: Elenca
373 button_view: Mostra
375 button_view: Mostra
374 button_move: Sposta
376 button_move: Sposta
375 button_back: Indietro
377 button_back: Indietro
376 button_cancel: Annulla
378 button_cancel: Annulla
377 button_activate: Attiva
379 button_activate: Attiva
378 button_sort: Ordina
380 button_sort: Ordina
379 button_log_time: Log time
381 button_log_time: Log time
380
382
381 status_active: active
383 status_active: active
382 status_registered: registered
384 status_registered: registered
383 status_locked: bloccato
385 status_locked: bloccato
384
386
385 text_select_mail_notifications: Select actions for which mail notifications should be sent.
387 text_select_mail_notifications: Select actions for which mail notifications should be sent.
386 text_regexp_info: eg. ^[A-Z0-9]+$
388 text_regexp_info: eg. ^[A-Z0-9]+$
387 text_min_max_length_info: 0 means no restriction
389 text_min_max_length_info: 0 means no restriction
388 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
390 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
389 text_workflow_edit: Select a role and a tracker to edit the workflow
391 text_workflow_edit: Select a role and a tracker to edit the workflow
390 text_are_you_sure: Are you sure ?
392 text_are_you_sure: Are you sure ?
391 text_journal_changed: changed from %s to %s
393 text_journal_changed: changed from %s to %s
392 text_journal_set_to: set to %s
394 text_journal_set_to: set to %s
393 text_journal_deleted: deleted
395 text_journal_deleted: deleted
394 text_tip_task_begin_day: task beginning this day
396 text_tip_task_begin_day: task beginning this day
395 text_tip_task_end_day: task ending this day
397 text_tip_task_end_day: task ending this day
396 text_tip_task_begin_end_day: task beginning and ending this day
398 text_tip_task_begin_end_day: task beginning and ending this day
399 text_project_identifier_info: '12 characters maximum. Letters (a-z), numbers (0-9) and dashes allowed.<br />Once saved, the identifier can not be changed.'
397
400
398 default_role_manager: Manager
401 default_role_manager: Manager
399 default_role_developper: Sviluppatore
402 default_role_developper: Sviluppatore
400 default_role_reporter: Reporter
403 default_role_reporter: Reporter
401 default_tracker_bug: Contesto
404 default_tracker_bug: Contesto
402 default_tracker_feature: Funzione
405 default_tracker_feature: Funzione
403 default_tracker_support: Supporto
406 default_tracker_support: Supporto
404 default_issue_status_new: Nuovo/a
407 default_issue_status_new: Nuovo/a
405 default_issue_status_assigned: Assegnato/a
408 default_issue_status_assigned: Assegnato/a
406 default_issue_status_resolved: Risolto/a
409 default_issue_status_resolved: Risolto/a
407 default_issue_status_feedback: Feedback
410 default_issue_status_feedback: Feedback
408 default_issue_status_closed: Chiuso/a
411 default_issue_status_closed: Chiuso/a
409 default_issue_status_rejected: Rifiutato/a
412 default_issue_status_rejected: Rifiutato/a
410 default_doc_category_user: Documentazione utente
413 default_doc_category_user: Documentazione utente
411 default_doc_category_tech: Documentazione tecnica
414 default_doc_category_tech: Documentazione tecnica
412 default_priority_low: Bassa
415 default_priority_low: Bassa
413 default_priority_normal: Normale
416 default_priority_normal: Normale
414 default_priority_high: Alta
417 default_priority_high: Alta
415 default_priority_urgent: Urgente
418 default_priority_urgent: Urgente
416 default_priority_immediate: Immediata
419 default_priority_immediate: Immediata
417 default_activity_design: Design
420 default_activity_design: Design
418 default_activity_development: Development
421 default_activity_development: Development
419
422
420 enumeration_issue_priorities: Priorità contesti
423 enumeration_issue_priorities: Priorità contesti
421 enumeration_doc_categories: Categorie di documenti
424 enumeration_doc_categories: Categorie di documenti
422 enumeration_activities: Activities (time tracking)
425 enumeration_activities: Activities (time tracking)
@@ -1,423 +1,426
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
37
38 general_fmt_age: %d歳
38 general_fmt_age: %d歳
39 general_fmt_age_plural: %d歳
39 general_fmt_age_plural: %d歳
40 general_fmt_date: %%Y年%%m月%%d日
40 general_fmt_date: %%Y年%%m月%%d日
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
44 general_text_No: 'いいえ'
44 general_text_No: 'いいえ'
45 general_text_Yes: 'はい'
45 general_text_Yes: 'はい'
46 general_text_no: 'いいえ'
46 general_text_no: 'いいえ'
47 general_text_yes: 'はい'
47 general_text_yes: 'はい'
48 general_lang_ja: 'Japanese (日本語)'
48 general_lang_ja: 'Japanese (日本語)'
49 general_csv_separator: ','
49 general_csv_separator: ','
50 general_csv_encoding: SJIS
50 general_csv_encoding: SJIS
51 general_pdf_encoding: SJIS
51 general_pdf_encoding: SJIS
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
53
53
54 notice_account_updated: アカウントが更新されました。
54 notice_account_updated: アカウントが更新されました。
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
56 notice_account_password_updated: パスワードが更新されました。
56 notice_account_password_updated: パスワードが更新されました。
57 notice_account_wrong_password: パスワードが違います
57 notice_account_wrong_password: パスワードが違います
58 notice_account_register_done: アカウントが作成されました。
58 notice_account_register_done: アカウントが作成されました。
59 notice_account_unknown_email: ユーザが存在しません。
59 notice_account_unknown_email: ユーザが存在しません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
63 notice_successful_create: 作成しました。
63 notice_successful_create: 作成しました。
64 notice_successful_update: 更新しました。
64 notice_successful_update: 更新しました。
65 notice_successful_delete: 削除しました。
65 notice_successful_delete: 削除しました。
66 notice_successful_connection: 接続しました。
66 notice_successful_connection: 接続しました。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
70
70
71 mail_subject_lost_password: redMine パスワード
71 mail_subject_lost_password: redMine パスワード
72 mail_subject_register: redMine アカウントが有効になりました
72 mail_subject_register: redMine アカウントが有効になりました
73
73
74 gui_validation_error: 1 件のエラー
74 gui_validation_error: 1 件のエラー
75 gui_validation_error_plural: %d 件のエラー
75 gui_validation_error_plural: %d 件のエラー
76
76
77 field_name: 名前
77 field_name: 名前
78 field_description: 説明
78 field_description: 説明
79 field_summary: サマリ
79 field_summary: サマリ
80 field_is_required: 必須
80 field_is_required: 必須
81 field_firstname: 名前
81 field_firstname: 名前
82 field_lastname: 苗字
82 field_lastname: 苗字
83 field_mail: メールアドレス
83 field_mail: メールアドレス
84 field_filename: ファイル
84 field_filename: ファイル
85 field_filesize: サイズ
85 field_filesize: サイズ
86 field_downloads: ダウンロード
86 field_downloads: ダウンロード
87 field_author: 起票者
87 field_author: 起票者
88 field_created_on: 作成日
88 field_created_on: 作成日
89 field_updated_on: 更新日
89 field_updated_on: 更新日
90 field_field_format: 書式
90 field_field_format: 書式
91 field_is_for_all: 全プロジェクト向け
91 field_is_for_all: 全プロジェクト向け
92 field_possible_values: 選択肢
92 field_possible_values: 選択肢
93 field_regexp: 正規表現
93 field_regexp: 正規表現
94 field_min_length: 最小値
94 field_min_length: 最小値
95 field_max_length: 最大値
95 field_max_length: 最大値
96 field_value:
96 field_value:
97 field_category: カテゴリ
97 field_category: カテゴリ
98 field_title: タイトル
98 field_title: タイトル
99 field_project: プロジェクト
99 field_project: プロジェクト
100 field_issue: 問題
100 field_issue: 問題
101 field_status: ステータス
101 field_status: ステータス
102 field_notes: 注記
102 field_notes: 注記
103 field_is_closed: 終了した問題
103 field_is_closed: 終了した問題
104 field_is_default: デフォルトのステータス
104 field_is_default: デフォルトのステータス
105 field_html_color:
105 field_html_color:
106 field_tracker: トラッカー
106 field_tracker: トラッカー
107 field_subject: 題名
107 field_subject: 題名
108 field_due_date: 期限日
108 field_due_date: 期限日
109 field_assigned_to: 担当者
109 field_assigned_to: 担当者
110 field_priority: 優先度
110 field_priority: 優先度
111 field_fixed_version: 修正されたバージョン
111 field_fixed_version: 修正されたバージョン
112 field_user: ユーザ
112 field_user: ユーザ
113 field_role: 役割
113 field_role: 役割
114 field_homepage: ホームページ
114 field_homepage: ホームページ
115 field_is_public: 公開
115 field_is_public: 公開
116 field_parent: 親プロジェクト名
116 field_parent: 親プロジェクト名
117 field_is_in_chlog: 変更記録に表示されている問題
117 field_is_in_chlog: 変更記録に表示されている問題
118 field_is_in_roadmap: ロードマップに表示されている問題
118 field_is_in_roadmap: ロードマップに表示されている問題
119 field_login: ログイン
119 field_login: ログイン
120 field_mail_notification: メール通知
120 field_mail_notification: メール通知
121 field_admin: 管理者
121 field_admin: 管理者
122 field_last_login_on: 最終接続日
122 field_last_login_on: 最終接続日
123 field_language: 言語
123 field_language: 言語
124 field_effective_date: 日付
124 field_effective_date: 日付
125 field_password: パスワード
125 field_password: パスワード
126 field_new_password: 新しいパスワード
126 field_new_password: 新しいパスワード
127 field_password_confirmation: パスワードの確認
127 field_password_confirmation: パスワードの確認
128 field_version: バージョン
128 field_version: バージョン
129 field_type: タイプ
129 field_type: タイプ
130 field_host: ホスト
130 field_host: ホスト
131 field_port: ポート
131 field_port: ポート
132 field_account: アカウント
132 field_account: アカウント
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: ログイン名属性
134 field_attr_login: ログイン名属性
135 field_attr_firstname: 名前属性
135 field_attr_firstname: 名前属性
136 field_attr_lastname: 苗字属性
136 field_attr_lastname: 苗字属性
137 field_attr_mail: メール属性
137 field_attr_mail: メール属性
138 field_onthefly: あわせてユーザを作成
138 field_onthefly: あわせてユーザを作成
139 field_start_date: 開始日
139 field_start_date: 開始日
140 field_done_ratio: 進捗 %%
140 field_done_ratio: 進捗 %%
141 field_auth_source: 認証モード
141 field_auth_source: 認証モード
142 field_hide_mail: メールアドレスを隠す
142 field_hide_mail: メールアドレスを隠す
143 field_comment: コメント
143 field_comment: コメント
144 field_url: URL
144 field_url: URL
145 field_start_page: メインページ
145 field_start_page: メインページ
146 field_subproject: サブプロジェクト
146 field_subproject: サブプロジェクト
147 field_hours: 時間
147 field_hours: 時間
148 field_activity: 活動
148 field_activity: 活動
149 field_spent_on: 日付
149 field_spent_on: 日付
150 field_identifier: Identifier
150
151
151 setting_app_title: アプリケーションのタイトル
152 setting_app_title: アプリケーションのタイトル
152 setting_app_subtitle: アプリケーションのサブタイトル
153 setting_app_subtitle: アプリケーションのサブタイトル
153 setting_welcome_text: ウェルカムメッセージ
154 setting_welcome_text: ウェルカムメッセージ
154 setting_default_language: 既定の言語
155 setting_default_language: 既定の言語
155 setting_login_required: 認証が必要
156 setting_login_required: 認証が必要
156 setting_self_registration: ユーザは自分で登録できる
157 setting_self_registration: ユーザは自分で登録できる
157 setting_attachment_max_size: 添付の最大サイズ
158 setting_attachment_max_size: 添付の最大サイズ
158 setting_issues_export_limit: 出力する問題数の上限
159 setting_issues_export_limit: 出力する問題数の上限
159 setting_mail_from: 送信元メールアドレス
160 setting_mail_from: 送信元メールアドレス
160 setting_host_name: ホスト名
161 setting_host_name: ホスト名
161 setting_text_formatting: テキストの書式
162 setting_text_formatting: テキストの書式
162 setting_wiki_compression: Wiki履歴を圧縮する
163 setting_wiki_compression: Wiki履歴を圧縮する
163 setting_feeds_limit: フィード内容の上限
164 setting_feeds_limit: フィード内容の上限
164 setting_autofetch_changesets: SVNコミットを自動取得する
165 setting_autofetch_changesets: SVNコミットを自動取得する
166 setting_sys_api_enabled: Enable WS for repository management
165
167
166 label_user: ユーザ
168 label_user: ユーザ
167 label_user_plural: ユーザ
169 label_user_plural: ユーザ
168 label_user_new: 新しいユーザ
170 label_user_new: 新しいユーザ
169 label_project: プロジェクト
171 label_project: プロジェクト
170 label_project_new: 新しいプロジェクト
172 label_project_new: 新しいプロジェクト
171 label_project_plural: プロジェクト
173 label_project_plural: プロジェクト
172 label_project_latest: 最近のプロジェクト
174 label_project_latest: 最近のプロジェクト
173 label_issue: 問題
175 label_issue: 問題
174 label_issue_new: 新しい問題
176 label_issue_new: 新しい問題
175 label_issue_plural: 問題
177 label_issue_plural: 問題
176 label_issue_view_all: 問題を全て見る
178 label_issue_view_all: 問題を全て見る
177 label_document: 文書
179 label_document: 文書
178 label_document_new: 新しい文書
180 label_document_new: 新しい文書
179 label_document_plural: 文書
181 label_document_plural: 文書
180 label_role: ロール
182 label_role: ロール
181 label_role_plural: ロール
183 label_role_plural: ロール
182 label_role_new: 新しいロール
184 label_role_new: 新しいロール
183 label_role_and_permissions: ロールと権限
185 label_role_and_permissions: ロールと権限
184 label_member: メンバー
186 label_member: メンバー
185 label_member_new: 新しいメンバー
187 label_member_new: 新しいメンバー
186 label_member_plural: メンバー
188 label_member_plural: メンバー
187 label_tracker: トラッカー
189 label_tracker: トラッカー
188 label_tracker_plural: トラッカー
190 label_tracker_plural: トラッカー
189 label_tracker_new: 新しいトラッカーを作成
191 label_tracker_new: 新しいトラッカーを作成
190 label_workflow: ワークフロー
192 label_workflow: ワークフロー
191 label_issue_status: 問題の状態
193 label_issue_status: 問題の状態
192 label_issue_status_plural: 問題の状態
194 label_issue_status_plural: 問題の状態
193 label_issue_status_new: 新しい状態
195 label_issue_status_new: 新しい状態
194 label_issue_category: 問題のカテゴリ
196 label_issue_category: 問題のカテゴリ
195 label_issue_category_plural: 問題のカテゴリ
197 label_issue_category_plural: 問題のカテゴリ
196 label_issue_category_new: 新しいカテゴリ
198 label_issue_category_new: 新しいカテゴリ
197 label_custom_field: カスタムフィールド
199 label_custom_field: カスタムフィールド
198 label_custom_field_plural: カスタムフィールド
200 label_custom_field_plural: カスタムフィールド
199 label_custom_field_new: 新しいカスタムフィールドを作成
201 label_custom_field_new: 新しいカスタムフィールドを作成
200 label_enumerations: 列挙項目
202 label_enumerations: 列挙項目
201 label_enumeration_new: 新しい値
203 label_enumeration_new: 新しい値
202 label_information: 情報
204 label_information: 情報
203 label_information_plural: 情報
205 label_information_plural: 情報
204 label_please_login: ログインしてください
206 label_please_login: ログインしてください
205 label_register: 登録する
207 label_register: 登録する
206 label_password_lost: パスワードの再発行
208 label_password_lost: パスワードの再発行
207 label_home: ホーム
209 label_home: ホーム
208 label_my_page: マイページ
210 label_my_page: マイページ
209 label_my_account: マイアカウント
211 label_my_account: マイアカウント
210 label_my_projects: マイプロジェクト
212 label_my_projects: マイプロジェクト
211 label_administration: 管理
213 label_administration: 管理
212 label_login: ログイン
214 label_login: ログイン
213 label_logout: ログアウト
215 label_logout: ログアウト
214 label_help: ヘルプ
216 label_help: ヘルプ
215 label_reported_issues: 報告されている問題
217 label_reported_issues: 報告されている問題
216 label_assigned_to_me_issues: 担当している問題
218 label_assigned_to_me_issues: 担当している問題
217 label_last_login: 最近の接続
219 label_last_login: 最近の接続
218 label_last_updates: 最近の更新 1 件
220 label_last_updates: 最近の更新 1 件
219 label_last_updates_plural: 最近の更新 %d 件
221 label_last_updates_plural: 最近の更新 %d 件
220 label_registered_on: 登録日
222 label_registered_on: 登録日
221 label_activity: 活動
223 label_activity: 活動
222 label_new: 新しく作成
224 label_new: 新しく作成
223 label_logged_as: ログイン中:
225 label_logged_as: ログイン中:
224 label_environment: 環境
226 label_environment: 環境
225 label_authentication: 認証
227 label_authentication: 認証
226 label_auth_source: 認証モード
228 label_auth_source: 認証モード
227 label_auth_source_new: 新しい認証モード
229 label_auth_source_new: 新しい認証モード
228 label_auth_source_plural: 認証モード
230 label_auth_source_plural: 認証モード
229 label_subproject_plural: サブプロジェクト
231 label_subproject_plural: サブプロジェクト
230 label_min_max_length: 最小値 - 最大値の長さ
232 label_min_max_length: 最小値 - 最大値の長さ
231 label_list: リストから選択
233 label_list: リストから選択
232 label_date: 日付
234 label_date: 日付
233 label_integer: 整数
235 label_integer: 整数
234 label_boolean: 真偽値
236 label_boolean: 真偽値
235 label_string: テキスト
237 label_string: テキスト
236 label_text: 長いテキスト
238 label_text: 長いテキスト
237 label_attribute: 属性
239 label_attribute: 属性
238 label_attribute_plural: 属性
240 label_attribute_plural: 属性
239 label_download: %d ダウンロード
241 label_download: %d ダウンロード
240 label_download_plural: %d ダウンロード
242 label_download_plural: %d ダウンロード
241 label_no_data: 表示するデータがありません
243 label_no_data: 表示するデータがありません
242 label_change_status: 変更の状況
244 label_change_status: 変更の状況
243 label_history: 履歴
245 label_history: 履歴
244 label_attachment: ファイル
246 label_attachment: ファイル
245 label_attachment_new: 新しいファイル
247 label_attachment_new: 新しいファイル
246 label_attachment_delete: ファイルを削除
248 label_attachment_delete: ファイルを削除
247 label_attachment_plural: ファイル
249 label_attachment_plural: ファイル
248 label_report: レポート
250 label_report: レポート
249 label_report_plural: レポート
251 label_report_plural: レポート
250 label_news: ニュース
252 label_news: ニュース
251 label_news_new: ニュースを追加
253 label_news_new: ニュースを追加
252 label_news_plural: ニュース
254 label_news_plural: ニュース
253 label_news_latest: 最新ニュース
255 label_news_latest: 最新ニュース
254 label_news_view_all: 全てのニュースを見る
256 label_news_view_all: 全てのニュースを見る
255 label_change_log: 変更記録
257 label_change_log: 変更記録
256 label_settings: 設定
258 label_settings: 設定
257 label_overview: 概要
259 label_overview: 概要
258 label_version: バージョン
260 label_version: バージョン
259 label_version_new: 新しいバージョン
261 label_version_new: 新しいバージョン
260 label_version_plural: バージョン
262 label_version_plural: バージョン
261 label_confirmation: 確認
263 label_confirmation: 確認
262 label_export_to: 他の形式に出力
264 label_export_to: 他の形式に出力
263 label_read: 読む...
265 label_read: 読む...
264 label_public_projects: 公開プロジェクト
266 label_public_projects: 公開プロジェクト
265 label_open_issues: 未着手
267 label_open_issues: 未着手
266 label_open_issues_plural: 未着手
268 label_open_issues_plural: 未着手
267 label_closed_issues: 終了
269 label_closed_issues: 終了
268 label_closed_issues_plural: 終了
270 label_closed_issues_plural: 終了
269 label_total: 合計
271 label_total: 合計
270 label_permissions: 権限
272 label_permissions: 権限
271 label_current_status: 現在の状態
273 label_current_status: 現在の状態
272 label_new_statuses_allowed: 状態の移行先
274 label_new_statuses_allowed: 状態の移行先
273 label_all: 全て
275 label_all: 全て
274 label_none: なし
276 label_none: なし
275 label_next:
277 label_next:
276 label_previous:
278 label_previous:
277 label_used_by: 使用中
279 label_used_by: 使用中
278 label_details: 詳細...
280 label_details: 詳細...
279 label_add_note: 注記を追加
281 label_add_note: 注記を追加
280 label_per_page: ページ毎
282 label_per_page: ページ毎
281 label_calendar: カレンダー
283 label_calendar: カレンダー
282 label_months_from: ヶ月 from
284 label_months_from: ヶ月 from
283 label_gantt: ガントチャート
285 label_gantt: ガントチャート
284 label_internal: Internal
286 label_internal: Internal
285 label_last_changes: 最新の変更 %d 件
287 label_last_changes: 最新の変更 %d 件
286 label_change_view_all: 全ての変更を見る
288 label_change_view_all: 全ての変更を見る
287 label_personalize_page: このページをパーソナライズする
289 label_personalize_page: このページをパーソナライズする
288 label_comment: コメント
290 label_comment: コメント
289 label_comment_plural: コメント
291 label_comment_plural: コメント
290 label_comment_add: コメント追加
292 label_comment_add: コメント追加
291 label_comment_added: 追加されたコメント
293 label_comment_added: 追加されたコメント
292 label_comment_delete: コメント削除
294 label_comment_delete: コメント削除
293 label_query: カスタムクエリ
295 label_query: カスタムクエリ
294 label_query_plural: カスタムクエリ
296 label_query_plural: カスタムクエリ
295 label_query_new: 新しいクエリ
297 label_query_new: 新しいクエリ
296 label_filter_add: フィルタ追加
298 label_filter_add: フィルタ追加
297 label_filter_plural: フィルタ
299 label_filter_plural: フィルタ
298 label_equals: 等しい
300 label_equals: 等しい
299 label_not_equals: 等しくない
301 label_not_equals: 等しくない
300 label_in_less_than: 残日数がこれより多い
302 label_in_less_than: 残日数がこれより多い
301 label_in_more_than: 残日数がこれより少ない
303 label_in_more_than: 残日数がこれより少ない
302 label_in: 残日数
304 label_in: 残日数
303 label_today: 今日
305 label_today: 今日
304 label_less_than_ago: 経過日数がこれより少ない
306 label_less_than_ago: 経過日数がこれより少ない
305 label_more_than_ago: 経過日数がこれより多い
307 label_more_than_ago: 経過日数がこれより多い
306 label_ago: 日前
308 label_ago: 日前
307 label_contains: 含む
309 label_contains: 含む
308 label_not_contains: 含まない
310 label_not_contains: 含まない
309 label_day_plural:
311 label_day_plural:
310 label_repository: SVNリポジトリ
312 label_repository: SVNリポジトリ
311 label_browse: ブラウズ
313 label_browse: ブラウズ
312 label_modification: %d 点の変更
314 label_modification: %d 点の変更
313 label_modification_plural: %d 点の変更
315 label_modification_plural: %d 点の変更
314 label_revision: リビジョン
316 label_revision: リビジョン
315 label_revision_plural: リビジョン
317 label_revision_plural: リビジョン
316 label_added: 追加
318 label_added: 追加
317 label_modified: 変更
319 label_modified: 変更
318 label_deleted: 削除
320 label_deleted: 削除
319 label_latest_revision: 最新リビジョン
321 label_latest_revision: 最新リビジョン
320 label_latest_revision_plural: 最新リビジョン
322 label_latest_revision_plural: 最新リビジョン
321 label_view_revisions: リビジョンを見る
323 label_view_revisions: リビジョンを見る
322 label_max_size: 最大サイズ
324 label_max_size: 最大サイズ
323 label_on:
325 label_on:
324 label_sort_highest: 一番上へ
326 label_sort_highest: 一番上へ
325 label_sort_higher: 上へ
327 label_sort_higher: 上へ
326 label_sort_lower: 下へ
328 label_sort_lower: 下へ
327 label_sort_lowest: 一番下へ
329 label_sort_lowest: 一番下へ
328 label_roadmap: ロードマップ
330 label_roadmap: ロードマップ
329 label_roadmap_due_in: 期日まで
331 label_roadmap_due_in: 期日まで
330 label_roadmap_no_issues: このバージョンに向けての問題はありません
332 label_roadmap_no_issues: このバージョンに向けての問題はありません
331 label_search: 検索
333 label_search: 検索
332 label_result: %d 件の結果
334 label_result: %d 件の結果
333 label_result_plural: %d 件の結果
335 label_result_plural: %d 件の結果
334 label_all_words: すべての単語
336 label_all_words: すべての単語
335 label_wiki: Wiki
337 label_wiki: Wiki
336 label_wiki_edit: Wiki編集
338 label_wiki_edit: Wiki編集
337 label_wiki_edit_plural: Wiki編集
339 label_wiki_edit_plural: Wiki編集
338 label_page_index: 索引
340 label_page_index: 索引
339 label_current_version: 最新版
341 label_current_version: 最新版
340 label_preview: プレビュー
342 label_preview: プレビュー
341 label_feed_plural: フィード
343 label_feed_plural: フィード
342 label_changes_details: 全変更の詳細
344 label_changes_details: 全変更の詳細
343 label_issue_tracking: 問題トラッキング
345 label_issue_tracking: 問題トラッキング
344 label_spent_time: 経過時間
346 label_spent_time: 経過時間
345 label_f_hour: %.2f 時間
347 label_f_hour: %.2f 時間
346 label_f_hour_plural: %.2f 時間
348 label_f_hour_plural: %.2f 時間
347 label_time_tracking: 時間トラッキング
349 label_time_tracking: 時間トラッキング
348 label_change_plural: 変更
350 label_change_plural: 変更
349 label_statistics: 統計
351 label_statistics: 統計
350 label_commits_per_month: 月別のコミット
352 label_commits_per_month: 月別のコミット
351 label_commits_per_author: 起票者別のコミット
353 label_commits_per_author: 起票者別のコミット
352 label_view_diff: 差分を見る
354 label_view_diff: 差分を見る
353 label_diff_inline: インライン
355 label_diff_inline: インライン
354 label_diff_side_by_side: 横に並べる
356 label_diff_side_by_side: 横に並べる
355 label_options: Options
357 label_options: Options
356
358
357 button_login: ログイン
359 button_login: ログイン
358 button_submit: 変更
360 button_submit: 変更
359 button_save: 保存
361 button_save: 保存
360 button_check_all: チェックを全部つける
362 button_check_all: チェックを全部つける
361 button_uncheck_all: チェックを全部外す
363 button_uncheck_all: チェックを全部外す
362 button_delete: 削除
364 button_delete: 削除
363 button_create: 作成
365 button_create: 作成
364 button_test: テスト
366 button_test: テスト
365 button_edit: 編集
367 button_edit: 編集
366 button_add: 追加
368 button_add: 追加
367 button_change: 変更
369 button_change: 変更
368 button_apply: 適用
370 button_apply: 適用
369 button_clear: クリア
371 button_clear: クリア
370 button_lock: ロック
372 button_lock: ロック
371 button_unlock: アンロック
373 button_unlock: アンロック
372 button_download: ダウンロード
374 button_download: ダウンロード
373 button_list: 一覧
375 button_list: 一覧
374 button_view: 見る
376 button_view: 見る
375 button_move: 移動
377 button_move: 移動
376 button_back: 戻る
378 button_back: 戻る
377 button_cancel: キャンセル
379 button_cancel: キャンセル
378 button_activate: 有効にする
380 button_activate: 有効にする
379 button_sort: ソート
381 button_sort: ソート
380 button_log_time: 時間を記録
382 button_log_time: 時間を記録
381
383
382 status_active: 有効
384 status_active: 有効
383 status_registered: 登録
385 status_registered: 登録
384 status_locked: ロック
386 status_locked: ロック
385
387
386 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
388 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
387 text_regexp_info: 例) ^[A-Z0-9]+$
389 text_regexp_info: 例) ^[A-Z0-9]+$
388 text_min_max_length_info: 0だと無制限になります
390 text_min_max_length_info: 0だと無制限になります
389 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
391 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
390 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
392 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
391 text_are_you_sure: 本当に?
393 text_are_you_sure: 本当に?
392 text_journal_changed: %s から %s への変更
394 text_journal_changed: %s から %s への変更
393 text_journal_set_to: %s にセット
395 text_journal_set_to: %s にセット
394 text_journal_deleted: 削除
396 text_journal_deleted: 削除
395 text_tip_task_begin_day: この日に開始するタスク
397 text_tip_task_begin_day: この日に開始するタスク
396 text_tip_task_end_day: この日に終了するタスク
398 text_tip_task_end_day: この日に終了するタスク
397 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
399 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
400 text_project_identifier_info: '12 characters maximum. Letters (a-z), numbers (0-9) and dashes allowed.<br />Once saved, the identifier can not be changed.'
398
401
399 default_role_manager: 管理者
402 default_role_manager: 管理者
400 default_role_developper: 開発者
403 default_role_developper: 開発者
401 default_role_reporter: 報告者
404 default_role_reporter: 報告者
402 default_tracker_bug: バグ
405 default_tracker_bug: バグ
403 default_tracker_feature: 機能
406 default_tracker_feature: 機能
404 default_tracker_support: サポート
407 default_tracker_support: サポート
405 default_issue_status_new: 新規
408 default_issue_status_new: 新規
406 default_issue_status_assigned: 分担
409 default_issue_status_assigned: 分担
407 default_issue_status_resolved: 解決
410 default_issue_status_resolved: 解決
408 default_issue_status_feedback: フィードバック
411 default_issue_status_feedback: フィードバック
409 default_issue_status_closed: 終了
412 default_issue_status_closed: 終了
410 default_issue_status_rejected: 却下
413 default_issue_status_rejected: 却下
411 default_doc_category_user: ユーザ文書
414 default_doc_category_user: ユーザ文書
412 default_doc_category_tech: 技術文書
415 default_doc_category_tech: 技術文書
413 default_priority_low: 低め
416 default_priority_low: 低め
414 default_priority_normal: 通常
417 default_priority_normal: 通常
415 default_priority_high: 高め
418 default_priority_high: 高め
416 default_priority_urgent: 急いで
419 default_priority_urgent: 急いで
417 default_priority_immediate: 今すぐ
420 default_priority_immediate: 今すぐ
418 default_activity_design: デザイン作業
421 default_activity_design: デザイン作業
419 default_activity_development: 開発作業
422 default_activity_development: 開発作業
420
423
421 enumeration_issue_priorities: 問題の優先度
424 enumeration_issue_priorities: 問題の優先度
422 enumeration_doc_categories: 文書カテゴリ
425 enumeration_doc_categories: 文書カテゴリ
423 enumeration_activities: 作業分類 (時間トラッキング)
426 enumeration_activities: 作業分類 (時間トラッキング)
@@ -1,425 +1,428
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
39
40 general_fmt_age: %d yr
40 general_fmt_age: %d yr
41 general_fmt_age_plural: %d yrs
41 general_fmt_age_plural: %d yrs
42 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_date: %%m/%%d/%%Y
43 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
45 general_fmt_time: %%I:%%M %%p
45 general_fmt_time: %%I:%%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_zh: 'Chinese (简体中文)'
50 general_lang_zh: 'Chinese (简体中文)'
51 general_csv_separator: ','
51 general_csv_separator: ','
52 general_csv_encoding: gb2312
52 general_csv_encoding: gb2312
53 general_pdf_encoding: Big5
53 general_pdf_encoding: Big5
54 general_day_names: 一,二,三,四,五,六,日
54 general_day_names: 一,二,三,四,五,六,日
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
72
73 mail_subject_lost_password: 您的redMine口令
73 mail_subject_lost_password: 您的redMine口令
74 mail_subject_register: redMine帐户激活
74 mail_subject_register: redMine帐户激活
75
75
76 gui_validation_error: 1 个错误
76 gui_validation_error: 1 个错误
77 gui_validation_error_plural: %d 个错误
77 gui_validation_error_plural: %d 个错误
78
78
79 field_name: 名称
79 field_name: 名称
80 field_description: 描述
80 field_description: 描述
81 field_summary: 摘要
81 field_summary: 摘要
82 field_is_required: 必填
82 field_is_required: 必填
83 field_firstname: 名字
83 field_firstname: 名字
84 field_lastname:
84 field_lastname:
85 field_mail: 邮件地址
85 field_mail: 邮件地址
86 field_filename: 文件
86 field_filename: 文件
87 field_filesize: 大小
87 field_filesize: 大小
88 field_downloads: 下载次数
88 field_downloads: 下载次数
89 field_author: 作者
89 field_author: 作者
90 field_created_on: 创建于
90 field_created_on: 创建于
91 field_updated_on: 更新于
91 field_updated_on: 更新于
92 field_field_format: 格式
92 field_field_format: 格式
93 field_is_for_all: 应用于所有项目
93 field_is_for_all: 应用于所有项目
94 field_possible_values: 可能的值
94 field_possible_values: 可能的值
95 field_regexp: 正则表达式
95 field_regexp: 正则表达式
96 field_min_length: 最小长度
96 field_min_length: 最小长度
97 field_max_length: 最大长度
97 field_max_length: 最大长度
98 field_value:
98 field_value:
99 field_category: 分类
99 field_category: 分类
100 field_title: 标题
100 field_title: 标题
101 field_project: 项目
101 field_project: 项目
102 field_issue: 任务
102 field_issue: 任务
103 field_status: 状态
103 field_status: 状态
104 field_notes: 说明
104 field_notes: 说明
105 field_is_closed: 已关闭的任务
105 field_is_closed: 已关闭的任务
106 field_is_default: 默认状态
106 field_is_default: 默认状态
107 field_html_color: 颜色
107 field_html_color: 颜色
108 field_tracker: 跟踪
108 field_tracker: 跟踪
109 field_subject: 主题
109 field_subject: 主题
110 field_due_date: 到期日
110 field_due_date: 到期日
111 field_assigned_to: 指派
111 field_assigned_to: 指派
112 field_priority: 优先级
112 field_priority: 优先级
113 field_fixed_version: 修订版本
113 field_fixed_version: 修订版本
114 field_user: 用户
114 field_user: 用户
115 field_role: 角色
115 field_role: 角色
116 field_homepage: 主页
116 field_homepage: 主页
117 field_is_public: 公开
117 field_is_public: 公开
118 field_parent: 上级项目
118 field_parent: 上级项目
119 field_is_in_chlog: 在更新日志中显示任务
119 field_is_in_chlog: 在更新日志中显示任务
120 field_is_in_roadmap: 在路线图中显示任务
120 field_is_in_roadmap: 在路线图中显示任务
121 field_login: 登录名
121 field_login: 登录名
122 field_mail_notification: 邮件通知
122 field_mail_notification: 邮件通知
123 field_admin: 管理员
123 field_admin: 管理员
124 field_last_login_on: 最后登录
124 field_last_login_on: 最后登录
125 field_language: 语言
125 field_language: 语言
126 field_effective_date: 日期
126 field_effective_date: 日期
127 field_password: 口令
127 field_password: 口令
128 field_new_password: 新口令
128 field_new_password: 新口令
129 field_password_confirmation: 确认
129 field_password_confirmation: 确认
130 field_version: 版本
130 field_version: 版本
131 field_type: 类别
131 field_type: 类别
132 field_host: 主机
132 field_host: 主机
133 field_port: 端口
133 field_port: 端口
134 field_account: 帐号
134 field_account: 帐号
135 field_base_dn: Base DN
135 field_base_dn: Base DN
136 field_attr_login: 登录名属性
136 field_attr_login: 登录名属性
137 field_attr_firstname: 名字属性
137 field_attr_firstname: 名字属性
138 field_attr_lastname: 姓属性
138 field_attr_lastname: 姓属性
139 field_attr_mail: 邮件属性
139 field_attr_mail: 邮件属性
140 field_onthefly: On-the-fly user creation
140 field_onthefly: On-the-fly user creation
141 field_start_date: 开始
141 field_start_date: 开始
142 field_done_ratio: %% 完成
142 field_done_ratio: %% 完成
143 field_auth_source: 认证模式
143 field_auth_source: 认证模式
144 field_hide_mail: 隐藏我的邮件
144 field_hide_mail: 隐藏我的邮件
145 field_comment: 注释
145 field_comment: 注释
146 field_url: URL
146 field_url: URL
147 field_start_page: 起始页
147 field_start_page: 起始页
148 field_subproject: 子项目
148 field_subproject: 子项目
149 field_hours: Hours
149 field_hours: Hours
150 field_activity: 活动
150 field_activity: 活动
151 field_spent_on: 日期
151 field_spent_on: 日期
152 field_identifier: Identifier
152
153
153 setting_app_title: 应用程序标题
154 setting_app_title: 应用程序标题
154 setting_app_subtitle: 应用程序子标题
155 setting_app_subtitle: 应用程序子标题
155 setting_welcome_text: 欢迎文字
156 setting_welcome_text: 欢迎文字
156 setting_default_language: 默认语言
157 setting_default_language: 默认语言
157 setting_login_required: 要求认证
158 setting_login_required: 要求认证
158 setting_self_registration: 允许自注册
159 setting_self_registration: 允许自注册
159 setting_attachment_max_size: 附件最大尺寸
160 setting_attachment_max_size: 附件最大尺寸
160 setting_issues_export_limit: Issues export limit
161 setting_issues_export_limit: Issues export limit
161 setting_mail_from: Emission mail address
162 setting_mail_from: Emission mail address
162 setting_host_name: 主机名称
163 setting_host_name: 主机名称
163 setting_text_formatting: 文本格式
164 setting_text_formatting: 文本格式
164 setting_wiki_compression: Wiki history compression
165 setting_wiki_compression: Wiki history compression
165 setting_feeds_limit: Feed content limit
166 setting_feeds_limit: Feed content limit
166 setting_autofetch_changesets: Autofetch SVN commits
167 setting_autofetch_changesets: Autofetch SVN commits
168 setting_sys_api_enabled: Enable WS for repository management
167
169
168 label_user: 用户
170 label_user: 用户
169 label_user_plural: 用户列表
171 label_user_plural: 用户列表
170 label_user_new: 新建用户
172 label_user_new: 新建用户
171 label_project: 项目
173 label_project: 项目
172 label_project_new: 新建项目
174 label_project_new: 新建项目
173 label_project_plural: 项目列表
175 label_project_plural: 项目列表
174 label_project_latest: 最近的项目列表
176 label_project_latest: 最近的项目列表
175 label_issue: 任务
177 label_issue: 任务
176 label_issue_new: 新建任务
178 label_issue_new: 新建任务
177 label_issue_plural: 任务列表
179 label_issue_plural: 任务列表
178 label_issue_view_all: 查看所有任务
180 label_issue_view_all: 查看所有任务
179 label_document: 文档
181 label_document: 文档
180 label_document_new: 新建文档
182 label_document_new: 新建文档
181 label_document_plural: 文档列表
183 label_document_plural: 文档列表
182 label_role: 角色
184 label_role: 角色
183 label_role_plural: 角色列表
185 label_role_plural: 角色列表
184 label_role_new: 新建角色
186 label_role_new: 新建角色
185 label_role_and_permissions: 角色和权限
187 label_role_and_permissions: 角色和权限
186 label_member: 成员
188 label_member: 成员
187 label_member_new: 新建成员
189 label_member_new: 新建成员
188 label_member_plural: 成员列表
190 label_member_plural: 成员列表
189 label_tracker: 跟踪标签
191 label_tracker: 跟踪标签
190 label_tracker_plural: 跟踪标签列表
192 label_tracker_plural: 跟踪标签列表
191 label_tracker_new: 新建跟踪标签
193 label_tracker_new: 新建跟踪标签
192 label_workflow: 工作流
194 label_workflow: 工作流
193 label_issue_status: 任务状态列表
195 label_issue_status: 任务状态列表
194 label_issue_status_plural: 任务状态列表
196 label_issue_status_plural: 任务状态列表
195 label_issue_status_new: 新建任务状态列表
197 label_issue_status_new: 新建任务状态列表
196 label_issue_category: 任务类别
198 label_issue_category: 任务类别
197 label_issue_category_plural: 任务类别列表
199 label_issue_category_plural: 任务类别列表
198 label_issue_category_new: 新建任务类别
200 label_issue_category_new: 新建任务类别
199 label_custom_field: 自定义字段
201 label_custom_field: 自定义字段
200 label_custom_field_plural: 自定义字段列表
202 label_custom_field_plural: 自定义字段列表
201 label_custom_field_new: 新建自定义字段
203 label_custom_field_new: 新建自定义字段
202 label_enumerations: 枚举列表
204 label_enumerations: 枚举列表
203 label_enumeration_new: 新建枚举值
205 label_enumeration_new: 新建枚举值
204 label_information: 信息
206 label_information: 信息
205 label_information_plural: 信息
207 label_information_plural: 信息
206 label_please_login: 请登录
208 label_please_login: 请登录
207 label_register: 注册
209 label_register: 注册
208 label_password_lost: 忘记口令
210 label_password_lost: 忘记口令
209 label_home: 主页
211 label_home: 主页
210 label_my_page: 我的工作台
212 label_my_page: 我的工作台
211 label_my_account: 我的帐号
213 label_my_account: 我的帐号
212 label_my_projects: 我的项目列表
214 label_my_projects: 我的项目列表
213 label_administration: 管理
215 label_administration: 管理
214 label_login: 登录
216 label_login: 登录
215 label_logout: 退出
217 label_logout: 退出
216 label_help: 帮助
218 label_help: 帮助
217 label_reported_issues: 已报告的问题
219 label_reported_issues: 已报告的问题
218 label_assigned_to_me_issues: 分配给我的任务
220 label_assigned_to_me_issues: 分配给我的任务
219 label_last_login: 最后登录
221 label_last_login: 最后登录
220 label_last_updates: 最后更新
222 label_last_updates: 最后更新
221 label_last_updates_plural: %d 最后更新
223 label_last_updates_plural: %d 最后更新
222 label_registered_on: 注册于
224 label_registered_on: 注册于
223 label_activity: 活动
225 label_activity: 活动
224 label_new: 新建
226 label_new: 新建
225 label_logged_as: 登录为
227 label_logged_as: 登录为
226 label_environment: 环境
228 label_environment: 环境
227 label_authentication: 认证
229 label_authentication: 认证
228 label_auth_source: 认证模式
230 label_auth_source: 认证模式
229 label_auth_source_new: 新建认证模式
231 label_auth_source_new: 新建认证模式
230 label_auth_source_plural: 认证模式列表
232 label_auth_source_plural: 认证模式列表
231 label_subproject_plural: 子项目列表
233 label_subproject_plural: 子项目列表
232 label_min_max_length: 最小 - 最大 长度
234 label_min_max_length: 最小 - 最大 长度
233 label_list: list
235 label_list: list
234 label_date: Date
236 label_date: Date
235 label_integer: Integer
237 label_integer: Integer
236 label_boolean: Boolean
238 label_boolean: Boolean
237 label_string: Text
239 label_string: Text
238 label_text: Long text
240 label_text: Long text
239 label_attribute: 属性
241 label_attribute: 属性
240 label_attribute_plural: 属性
242 label_attribute_plural: 属性
241 label_download: %d 个下载次数
243 label_download: %d 个下载次数
242 label_download_plural: %d 个下载次数
244 label_download_plural: %d 个下载次数
243 label_no_data: 没有数据用于显示
245 label_no_data: 没有数据用于显示
244 label_change_status: 改变状态
246 label_change_status: 改变状态
245 label_history: 历史记录
247 label_history: 历史记录
246 label_attachment: 文件
248 label_attachment: 文件
247 label_attachment_new: 新建文件
249 label_attachment_new: 新建文件
248 label_attachment_delete: 删除文件
250 label_attachment_delete: 删除文件
249 label_attachment_plural: 文件列表
251 label_attachment_plural: 文件列表
250 label_report: 报表
252 label_report: 报表
251 label_report_plural: 报表列表
253 label_report_plural: 报表列表
252 label_news: 新闻
254 label_news: 新闻
253 label_news_new: 增加新闻
255 label_news_new: 增加新闻
254 label_news_plural: 新闻列表
256 label_news_plural: 新闻列表
255 label_news_latest: 最近的新闻
257 label_news_latest: 最近的新闻
256 label_news_view_all: 查看所有新闻
258 label_news_view_all: 查看所有新闻
257 label_change_log: 更新日志
259 label_change_log: 更新日志
258 label_settings: 配置
260 label_settings: 配置
259 label_overview: 概述
261 label_overview: 概述
260 label_version: 版本
262 label_version: 版本
261 label_version_new: 新建版本
263 label_version_new: 新建版本
262 label_version_plural: 版本列表
264 label_version_plural: 版本列表
263 label_confirmation: 确认
265 label_confirmation: 确认
264 label_export_to: 导出
266 label_export_to: 导出
265 label_read: 读取...
267 label_read: 读取...
266 label_public_projects: 公开的项目列表
268 label_public_projects: 公开的项目列表
267 label_open_issues: 打开
269 label_open_issues: 打开
268 label_open_issues_plural: 打开
270 label_open_issues_plural: 打开
269 label_closed_issues: 已关闭
271 label_closed_issues: 已关闭
270 label_closed_issues_plural: 已关闭
272 label_closed_issues_plural: 已关闭
271 label_total: 合计
273 label_total: 合计
272 label_permissions: 权限列表
274 label_permissions: 权限列表
273 label_current_status: 当前状态
275 label_current_status: 当前状态
274 label_new_statuses_allowed: New statuses allowed
276 label_new_statuses_allowed: New statuses allowed
275 label_all: 全部
277 label_all: 全部
276 label_none:
278 label_none:
277 label_next: 下一个
279 label_next: 下一个
278 label_previous: 上一个
280 label_previous: 上一个
279 label_used_by: 使用中
281 label_used_by: 使用中
280 label_details: 详情...
282 label_details: 详情...
281 label_add_note: 添加说明
283 label_add_note: 添加说明
282 label_per_page: 每面
284 label_per_page: 每面
283 label_calendar: 日历
285 label_calendar: 日历
284 label_months_from: months from
286 label_months_from: months from
285 label_gantt: 甘特图(Gantt)
287 label_gantt: 甘特图(Gantt)
286 label_internal: 内部
288 label_internal: 内部
287 label_last_changes: 最近的 %d 次更改
289 label_last_changes: 最近的 %d 次更改
288 label_change_view_all: 查看所有更改
290 label_change_view_all: 查看所有更改
289 label_personalize_page: 个性化定制本页
291 label_personalize_page: 个性化定制本页
290 label_comment: 注释
292 label_comment: 注释
291 label_comment_plural: 注释列表
293 label_comment_plural: 注释列表
292 label_comment_add: 添加注释
294 label_comment_add: 添加注释
293 label_comment_added: 已加入注释
295 label_comment_added: 已加入注释
294 label_comment_delete: 删除注释
296 label_comment_delete: 删除注释
295 label_query: 自定义查询
297 label_query: 自定义查询
296 label_query_plural: 自定义查询列表
298 label_query_plural: 自定义查询列表
297 label_query_new: 新建查询
299 label_query_new: 新建查询
298 label_filter_add: 增加过滤器
300 label_filter_add: 增加过滤器
299 label_filter_plural: 过滤器列表
301 label_filter_plural: 过滤器列表
300 label_equals: 等于
302 label_equals: 等于
301 label_not_equals: 不等于
303 label_not_equals: 不等于
302 label_in_less_than: 剩余天数小于
304 label_in_less_than: 剩余天数小于
303 label_in_more_than: 剩余天数大于
305 label_in_more_than: 剩余天数大于
304 label_in: 剩余天数
306 label_in: 剩余天数
305 label_today: 今天
307 label_today: 今天
306 label_less_than_ago: 之前天数少于
308 label_less_than_ago: 之前天数少于
307 label_more_than_ago: 之前天数大于
309 label_more_than_ago: 之前天数大于
308 label_ago: 之前天数
310 label_ago: 之前天数
309 label_contains: 包含
311 label_contains: 包含
310 label_not_contains: 不包含
312 label_not_contains: 不包含
311 label_day_plural: 天数
313 label_day_plural: 天数
312 label_repository: SVN 版本库
314 label_repository: SVN 版本库
313 label_browse: 浏览
315 label_browse: 浏览
314 label_modification: %d 个更新
316 label_modification: %d 个更新
315 label_modification_plural: %d 个更新
317 label_modification_plural: %d 个更新
316 label_revision: 修订
318 label_revision: 修订
317 label_revision_plural: 修订
319 label_revision_plural: 修订
318 label_added: 已增加
320 label_added: 已增加
319 label_modified: 已修改
321 label_modified: 已修改
320 label_deleted: 已删除
322 label_deleted: 已删除
321 label_latest_revision: 最近的版本
323 label_latest_revision: 最近的版本
322 label_latest_revision_plural: 最近的版本列表
324 label_latest_revision_plural: 最近的版本列表
323 label_view_revisions: 查看修订列表
325 label_view_revisions: 查看修订列表
324 label_max_size: 最大尺寸
326 label_max_size: 最大尺寸
325 label_on: 'on'
327 label_on: 'on'
326 label_sort_highest: 置顶
328 label_sort_highest: 置顶
327 label_sort_higher: 上移
329 label_sort_higher: 上移
328 label_sort_lower: 下移
330 label_sort_lower: 下移
329 label_sort_lowest: 置底
331 label_sort_lowest: 置底
330 label_roadmap: 路线图
332 label_roadmap: 路线图
331 label_roadmap_due_in: Due in
333 label_roadmap_due_in: Due in
332 label_roadmap_no_issues: 该版本没有任务
334 label_roadmap_no_issues: 该版本没有任务
333 label_search: 查找
335 label_search: 查找
334 label_result: %d 个结果
336 label_result: %d 个结果
335 label_result_plural: %d 个结果
337 label_result_plural: %d 个结果
336 label_all_words: 所有单词
338 label_all_words: 所有单词
337 label_wiki: Wiki
339 label_wiki: Wiki
338 label_wiki_edit: Wiki edit
340 label_wiki_edit: Wiki edit
339 label_wiki_edit_plural: Wiki edits
341 label_wiki_edit_plural: Wiki edits
340 label_page_index: 索引
342 label_page_index: 索引
341 label_current_version: 当前版本
343 label_current_version: 当前版本
342 label_preview: 预览
344 label_preview: 预览
343 label_feed_plural: Feeds
345 label_feed_plural: Feeds
344 label_changes_details: 所有更改的详情
346 label_changes_details: 所有更改的详情
345 label_issue_tracking: 任务跟踪
347 label_issue_tracking: 任务跟踪
346 label_spent_time: 耗时
348 label_spent_time: 耗时
347 label_f_hour: %.2f 小时
349 label_f_hour: %.2f 小时
348 label_f_hour_plural: %.2f 小时
350 label_f_hour_plural: %.2f 小时
349 label_time_tracking: 时间跟踪
351 label_time_tracking: 时间跟踪
350 label_change_plural: 更改列表
352 label_change_plural: 更改列表
351 label_statistics: 统计
353 label_statistics: 统计
352 label_commits_per_month: Commits per month
354 label_commits_per_month: Commits per month
353 label_commits_per_author: Commits per author
355 label_commits_per_author: Commits per author
354 label_view_diff: View differences
356 label_view_diff: View differences
355 label_diff_inline: inline
357 label_diff_inline: inline
356 label_diff_side_by_side: side by side
358 label_diff_side_by_side: side by side
357 label_options: Options
359 label_options: Options
358
360
359 button_login: 登录
361 button_login: 登录
360 button_submit: 提交
362 button_submit: 提交
361 button_save: 保存
363 button_save: 保存
362 button_check_all: 全选
364 button_check_all: 全选
363 button_uncheck_all: 清除
365 button_uncheck_all: 清除
364 button_delete: 删除
366 button_delete: 删除
365 button_create: 创建
367 button_create: 创建
366 button_test: 测试
368 button_test: 测试
367 button_edit: 编辑
369 button_edit: 编辑
368 button_add: 新增
370 button_add: 新增
369 button_change: 修改
371 button_change: 修改
370 button_apply: 应用
372 button_apply: 应用
371 button_clear: 清除
373 button_clear: 清除
372 button_lock: 锁定
374 button_lock: 锁定
373 button_unlock: 解锁
375 button_unlock: 解锁
374 button_download: 下载
376 button_download: 下载
375 button_list: 列表
377 button_list: 列表
376 button_view: 查看
378 button_view: 查看
377 button_move: 移动
379 button_move: 移动
378 button_back: 返回
380 button_back: 返回
379 button_cancel: 取消
381 button_cancel: 取消
380 button_activate: 激活
382 button_activate: 激活
381 button_sort: 排序
383 button_sort: 排序
382 button_log_time: 登记工时
384 button_log_time: 登记工时
383
385
384 status_active: 激活
386 status_active: 激活
385 status_registered: 已注册
387 status_registered: 已注册
386 status_locked: 已锁定
388 status_locked: 已锁定
387
389
388 text_select_mail_notifications: 选择需要发送邮件通知的动作。
390 text_select_mail_notifications: 选择需要发送邮件通知的动作。
389 text_regexp_info: eg. ^[A-Z0-9]+$
391 text_regexp_info: eg. ^[A-Z0-9]+$
390 text_min_max_length_info: 0 表示没有限制
392 text_min_max_length_info: 0 表示没有限制
391 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
393 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
392 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
394 text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流
393 text_are_you_sure: 您确定?
395 text_are_you_sure: 您确定?
394 text_journal_changed: 从 %s 更改为 %s
396 text_journal_changed: 从 %s 更改为 %s
395 text_journal_set_to: 设置为 %s
397 text_journal_set_to: 设置为 %s
396 text_journal_deleted: 已删除
398 text_journal_deleted: 已删除
397 text_tip_task_begin_day: 开始于此
399 text_tip_task_begin_day: 开始于此
398 text_tip_task_end_day: 在此结束
400 text_tip_task_end_day: 在此结束
399 text_tip_task_begin_end_day: 开始并结束于此
401 text_tip_task_begin_end_day: 开始并结束于此
402 text_project_identifier_info: '12 characters maximum. Letters (a-z), numbers (0-9) and dashes allowed.<br />Once saved, the identifier can not be changed.'
400
403
401 default_role_manager: 管理员
404 default_role_manager: 管理员
402 default_role_developper: 开发人员
405 default_role_developper: 开发人员
403 default_role_reporter: 报告人员
406 default_role_reporter: 报告人员
404 default_tracker_bug: 问题
407 default_tracker_bug: 问题
405 default_tracker_feature: 功能
408 default_tracker_feature: 功能
406 default_tracker_support: 支持
409 default_tracker_support: 支持
407 default_issue_status_new: 新建
410 default_issue_status_new: 新建
408 default_issue_status_assigned: 已分配
411 default_issue_status_assigned: 已分配
409 default_issue_status_resolved: 已解决
412 default_issue_status_resolved: 已解决
410 default_issue_status_feedback: 回复
413 default_issue_status_feedback: 回复
411 default_issue_status_closed: 已关闭
414 default_issue_status_closed: 已关闭
412 default_issue_status_rejected: 已打回
415 default_issue_status_rejected: 已打回
413 default_doc_category_user: 用户文档
416 default_doc_category_user: 用户文档
414 default_doc_category_tech: 技术文档
417 default_doc_category_tech: 技术文档
415 default_priority_low:
418 default_priority_low:
416 default_priority_normal: 普通
419 default_priority_normal: 普通
417 default_priority_high:
420 default_priority_high:
418 default_priority_urgent: 紧急
421 default_priority_urgent: 紧急
419 default_priority_immediate: 立刻
422 default_priority_immediate: 立刻
420 default_activity_design: 设计
423 default_activity_design: 设计
421 default_activity_development: 开发
424 default_activity_development: 开发
422
425
423 enumeration_issue_priorities: 任务优先级
426 enumeration_issue_priorities: 任务优先级
424 enumeration_doc_categories: 文档类别
427 enumeration_doc_categories: 文档类别
425 enumeration_activities: Activities (time tracking)
428 enumeration_activities: Activities (time tracking)
@@ -1,41 +1,45
1 ---
1 ---
2 projects_001:
2 projects_001:
3 created_on: 2006-07-19 19:13:59 +02:00
3 created_on: 2006-07-19 19:13:59 +02:00
4 name: eCookbook
4 name: eCookbook
5 updated_on: 2006-07-19 22:53:01 +02:00
5 updated_on: 2006-07-19 22:53:01 +02:00
6 projects_count: 2
6 projects_count: 2
7 id: 1
7 id: 1
8 description: Recipes management application
8 description: Recipes management application
9 homepage: http://ecookbook.somenet.foo/
9 homepage: http://ecookbook.somenet.foo/
10 is_public: true
10 is_public: true
11 identifier: ecookbook
11 parent_id:
12 parent_id:
12 projects_002:
13 projects_002:
13 created_on: 2006-07-19 19:14:19 +02:00
14 created_on: 2006-07-19 19:14:19 +02:00
14 name: OnlineStore
15 name: OnlineStore
15 updated_on: 2006-07-19 19:14:19 +02:00
16 updated_on: 2006-07-19 19:14:19 +02:00
16 projects_count: 0
17 projects_count: 0
17 id: 2
18 id: 2
18 description: E-commerce web site
19 description: E-commerce web site
19 homepage: ""
20 homepage: ""
20 is_public: false
21 is_public: false
22 identifier: onlinestore
21 parent_id:
23 parent_id:
22 projects_003:
24 projects_003:
23 created_on: 2006-07-19 19:15:21 +02:00
25 created_on: 2006-07-19 19:15:21 +02:00
24 name: eCookbook Subproject 1
26 name: eCookbook Subproject 1
25 updated_on: 2006-07-19 19:18:12 +02:00
27 updated_on: 2006-07-19 19:18:12 +02:00
26 projects_count: 0
28 projects_count: 0
27 id: 3
29 id: 3
28 description: eCookBook Subproject 1
30 description: eCookBook Subproject 1
29 homepage: ""
31 homepage: ""
30 is_public: true
32 is_public: true
33 identifier: subproject1
31 parent_id: 1
34 parent_id: 1
32 projects_004:
35 projects_004:
33 created_on: 2006-07-19 19:15:51 +02:00
36 created_on: 2006-07-19 19:15:51 +02:00
34 name: eCookbook Subproject 2
37 name: eCookbook Subproject 2
35 updated_on: 2006-07-19 19:17:07 +02:00
38 updated_on: 2006-07-19 19:17:07 +02:00
36 projects_count: 0
39 projects_count: 0
37 id: 4
40 id: 4
38 description: eCookbook Subproject 2
41 description: eCookbook Subproject 2
39 homepage: ""
42 homepage: ""
40 is_public: true
43 is_public: true
44 identifier: subproject1
41 parent_id: 1
45 parent_id: 1
@@ -1,61 +1,61
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 AdminTest < ActionController::IntegrationTest
20 class AdminTest < ActionController::IntegrationTest
21 fixtures :users
21 fixtures :users
22
22
23 def test_add_user
23 def test_add_user
24 log_user("admin", "admin")
24 log_user("admin", "admin")
25 get "/users/add"
25 get "/users/add"
26 assert_response :success
26 assert_response :success
27 assert_template "users/add"
27 assert_template "users/add"
28 post "/users/add", :user => { :login => "psmith", :firstname => "Paul", :lastname => "Smith", :mail => "psmith@somenet.foo", :language => "en" }, :password => "psmith09", :password_confirmation => "psmith09"
28 post "/users/add", :user => { :login => "psmith", :firstname => "Paul", :lastname => "Smith", :mail => "psmith@somenet.foo", :language => "en" }, :password => "psmith09", :password_confirmation => "psmith09"
29 assert_redirected_to "users/list"
29 assert_redirected_to "users/list"
30
30
31 user = User.find_by_login("psmith")
31 user = User.find_by_login("psmith")
32 assert_kind_of User, user
32 assert_kind_of User, user
33 logged_user = User.try_to_login("psmith", "psmith09")
33 logged_user = User.try_to_login("psmith", "psmith09")
34 assert_kind_of User, logged_user
34 assert_kind_of User, logged_user
35 assert_equal "Paul", logged_user.firstname
35 assert_equal "Paul", logged_user.firstname
36
36
37 post "users/edit", :id => user.id, :user => { :status => User::STATUS_LOCKED }
37 post "users/edit", :id => user.id, :user => { :status => User::STATUS_LOCKED }
38 assert_redirected_to "users/list"
38 assert_redirected_to "users/list"
39 locked_user = User.try_to_login("psmith", "psmith09")
39 locked_user = User.try_to_login("psmith", "psmith09")
40 assert_equal nil, locked_user
40 assert_equal nil, locked_user
41 end
41 end
42
42
43 def test_add_project
43 def test_add_project
44 log_user("admin", "admin")
44 log_user("admin", "admin")
45 get "projects/add"
45 get "projects/add"
46 assert_response :success
46 assert_response :success
47 assert_template "projects/add"
47 assert_template "projects/add"
48 post "projects/add", :project => { :name => "blog", :description => "weblog", :is_public => 1}
48 post "projects/add", :project => { :name => "blog", :description => "weblog", :identifier => "blog", :is_public => 1}
49 assert_redirected_to "admin/projects"
49 assert_redirected_to "admin/projects"
50 assert_equal 'Successful creation.', flash[:notice]
50 assert_equal 'Successful creation.', flash[:notice]
51
51
52 project = Project.find_by_name("blog")
52 project = Project.find_by_name("blog")
53 assert_kind_of Project, project
53 assert_kind_of Project, project
54 assert_equal "weblog", project.description
54 assert_equal "weblog", project.description
55 assert_equal true, project.is_public?
55 assert_equal true, project.is_public?
56
56
57 get "admin/projects"
57 get "admin/projects"
58 assert_response :success
58 assert_response :success
59 assert_template "admin/projects"
59 assert_template "admin/projects"
60 end
60 end
61 end
61 end
General Comments 0
You need to be logged in to leave comments. Login now