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