@@ -1,79 +1,79 | |||||
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 IssueRelation < ActiveRecord::Base |
|
18 | class IssueRelation < ActiveRecord::Base | |
19 | belongs_to :issue_from, :class_name => 'Issue', :foreign_key => 'issue_from_id' |
|
19 | belongs_to :issue_from, :class_name => 'Issue', :foreign_key => 'issue_from_id' | |
20 | belongs_to :issue_to, :class_name => 'Issue', :foreign_key => 'issue_to_id' |
|
20 | belongs_to :issue_to, :class_name => 'Issue', :foreign_key => 'issue_to_id' | |
21 |
|
21 | |||
22 | TYPE_RELATES = "relates" |
|
22 | TYPE_RELATES = "relates" | |
23 | TYPE_DUPLICATES = "duplicates" |
|
23 | TYPE_DUPLICATES = "duplicates" | |
24 | TYPE_BLOCKS = "blocks" |
|
24 | TYPE_BLOCKS = "blocks" | |
25 | TYPE_PRECEDES = "precedes" |
|
25 | TYPE_PRECEDES = "precedes" | |
26 |
|
26 | |||
27 | TYPES = { TYPE_RELATES => { :name => :label_relates_to, :sym_name => :label_relates_to, :order => 1 }, |
|
27 | TYPES = { TYPE_RELATES => { :name => :label_relates_to, :sym_name => :label_relates_to, :order => 1 }, | |
28 | TYPE_DUPLICATES => { :name => :label_duplicates, :sym_name => :label_duplicates, :order => 2 }, |
|
28 | TYPE_DUPLICATES => { :name => :label_duplicates, :sym_name => :label_duplicates, :order => 2 }, | |
29 | TYPE_BLOCKS => { :name => :label_blocks, :sym_name => :label_blocked_by, :order => 3 }, |
|
29 | TYPE_BLOCKS => { :name => :label_blocks, :sym_name => :label_blocked_by, :order => 3 }, | |
30 | TYPE_PRECEDES => { :name => :label_precedes, :sym_name => :label_follows, :order => 4 }, |
|
30 | TYPE_PRECEDES => { :name => :label_precedes, :sym_name => :label_follows, :order => 4 }, | |
31 | }.freeze |
|
31 | }.freeze | |
32 |
|
32 | |||
33 | validates_presence_of :issue_from, :issue_to, :relation_type |
|
33 | validates_presence_of :issue_from, :issue_to, :relation_type | |
34 | validates_inclusion_of :relation_type, :in => TYPES.keys |
|
34 | validates_inclusion_of :relation_type, :in => TYPES.keys | |
35 | validates_numericality_of :delay, :allow_nil => true |
|
35 | validates_numericality_of :delay, :allow_nil => true | |
36 | validates_uniqueness_of :issue_to_id, :scope => :issue_from_id |
|
36 | validates_uniqueness_of :issue_to_id, :scope => :issue_from_id | |
37 |
|
37 | |||
38 | def validate |
|
38 | def validate | |
39 | if issue_from && issue_to |
|
39 | if issue_from && issue_to | |
40 | errors.add :issue_to_id, :activerecord_error_invalid if issue_from_id == issue_to_id |
|
40 | errors.add :issue_to_id, :activerecord_error_invalid if issue_from_id == issue_to_id | |
41 | errors.add :issue_to_id, :activerecord_error_not_same_project unless issue_from.project_id == issue_to.project_id |
|
41 | errors.add :issue_to_id, :activerecord_error_not_same_project unless issue_from.project_id == issue_to.project_id || Setting.cross_project_issue_relations? | |
42 | errors.add_to_base :activerecord_error_circular_dependency if issue_to.all_dependent_issues.include? issue_from |
|
42 | errors.add_to_base :activerecord_error_circular_dependency if issue_to.all_dependent_issues.include? issue_from | |
43 | end |
|
43 | end | |
44 | end |
|
44 | end | |
45 |
|
45 | |||
46 | def other_issue(issue) |
|
46 | def other_issue(issue) | |
47 | (self.issue_from_id == issue.id) ? issue_to : issue_from |
|
47 | (self.issue_from_id == issue.id) ? issue_to : issue_from | |
48 | end |
|
48 | end | |
49 |
|
49 | |||
50 | def label_for(issue) |
|
50 | def label_for(issue) | |
51 | TYPES[relation_type] ? TYPES[relation_type][(self.issue_from_id == issue.id) ? :name : :sym_name] : :unknow |
|
51 | TYPES[relation_type] ? TYPES[relation_type][(self.issue_from_id == issue.id) ? :name : :sym_name] : :unknow | |
52 | end |
|
52 | end | |
53 |
|
53 | |||
54 | def before_save |
|
54 | def before_save | |
55 | if TYPE_PRECEDES == relation_type |
|
55 | if TYPE_PRECEDES == relation_type | |
56 | self.delay ||= 0 |
|
56 | self.delay ||= 0 | |
57 | else |
|
57 | else | |
58 | self.delay = nil |
|
58 | self.delay = nil | |
59 | end |
|
59 | end | |
60 | set_issue_to_dates |
|
60 | set_issue_to_dates | |
61 | end |
|
61 | end | |
62 |
|
62 | |||
63 | def set_issue_to_dates |
|
63 | def set_issue_to_dates | |
64 | soonest_start = self.successor_soonest_start |
|
64 | soonest_start = self.successor_soonest_start | |
65 | if soonest_start && (!issue_to.start_date || issue_to.start_date < soonest_start) |
|
65 | if soonest_start && (!issue_to.start_date || issue_to.start_date < soonest_start) | |
66 | issue_to.start_date, issue_to.due_date = successor_soonest_start, successor_soonest_start + issue_to.duration |
|
66 | issue_to.start_date, issue_to.due_date = successor_soonest_start, successor_soonest_start + issue_to.duration | |
67 | issue_to.save |
|
67 | issue_to.save | |
68 | end |
|
68 | end | |
69 | end |
|
69 | end | |
70 |
|
70 | |||
71 | def successor_soonest_start |
|
71 | def successor_soonest_start | |
72 | return nil unless (TYPE_PRECEDES == self.relation_type) && (issue_from.start_date || issue_from.due_date) |
|
72 | return nil unless (TYPE_PRECEDES == self.relation_type) && (issue_from.start_date || issue_from.due_date) | |
73 | (issue_from.due_date || issue_from.start_date) + 1 + delay |
|
73 | (issue_from.due_date || issue_from.start_date) + 1 + delay | |
74 | end |
|
74 | end | |
75 |
|
75 | |||
76 | def <=>(relation) |
|
76 | def <=>(relation) | |
77 | TYPES[self.relation_type][:order] <=> TYPES[relation.relation_type][:order] |
|
77 | TYPES[self.relation_type][:order] <=> TYPES[relation.relation_type][:order] | |
78 | end |
|
78 | end | |
79 | end |
|
79 | end |
@@ -1,75 +1,78 | |||||
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_date_format) %></label> |
|
18 | <p><label><%= l(:setting_date_format) %></label> | |
19 | <%= select_tag 'settings[date_format]', options_for_select( [[l(:label_language_based), '0'], ['ISO 8601 (YYYY-MM-DD)', '1']], Setting.date_format) %></p> |
|
19 | <%= select_tag 'settings[date_format]', options_for_select( [[l(:label_language_based), '0'], ['ISO 8601 (YYYY-MM-DD)', '1']], Setting.date_format) %></p> | |
20 |
|
20 | |||
21 | <p><label><%= l(:setting_attachment_max_size) %></label> |
|
21 | <p><label><%= l(:setting_attachment_max_size) %></label> | |
22 | <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p> |
|
22 | <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p> | |
23 |
|
23 | |||
24 | <p><label><%= l(:setting_issues_export_limit) %></label> |
|
24 | <p><label><%= l(:setting_issues_export_limit) %></label> | |
25 | <%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p> |
|
25 | <%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p> | |
26 |
|
26 | |||
|
27 | <p><label><%= l(:setting_cross_project_issue_relations) %></label> | |||
|
28 | <%= check_box_tag 'settings[cross_project_issue_relations]', 1, Setting.cross_project_issue_relations? %><%= hidden_field_tag 'settings[cross_project_issue_relations]', 0 %></p> | |||
|
29 | ||||
27 | <p><label><%= l(:setting_mail_from) %></label> |
|
30 | <p><label><%= l(:setting_mail_from) %></label> | |
28 | <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p> |
|
31 | <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p> | |
29 |
|
32 | |||
30 | <p><label><%= l(:setting_host_name) %></label> |
|
33 | <p><label><%= l(:setting_host_name) %></label> | |
31 | <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p> |
|
34 | <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p> | |
32 |
|
35 | |||
33 | <p><label><%= l(:setting_text_formatting) %></label> |
|
36 | <p><label><%= l(:setting_text_formatting) %></label> | |
34 | <%= select_tag 'settings[text_formatting]', options_for_select([[l(:label_none), 0], ["textile", "textile"]], (@textile_available ? Setting.text_formatting : 0)), :disabled => !@textile_available %></p> |
|
37 | <%= select_tag 'settings[text_formatting]', options_for_select([[l(:label_none), 0], ["textile", "textile"]], (@textile_available ? Setting.text_formatting : 0)), :disabled => !@textile_available %></p> | |
35 |
|
38 | |||
36 | <p><label><%= l(:setting_wiki_compression) %></label> |
|
39 | <p><label><%= l(:setting_wiki_compression) %></label> | |
37 | <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p> |
|
40 | <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p> | |
38 |
|
41 | |||
39 | <p><label><%= l(:setting_feeds_limit) %></label> |
|
42 | <p><label><%= l(:setting_feeds_limit) %></label> | |
40 | <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p> |
|
43 | <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p> | |
41 |
|
44 | |||
42 | <p><label><%= l(:setting_autofetch_changesets) %></label> |
|
45 | <p><label><%= l(:setting_autofetch_changesets) %></label> | |
43 | <%= check_box_tag 'settings[autofetch_changesets]', 1, Setting.autofetch_changesets? %><%= hidden_field_tag 'settings[autofetch_changesets]', 0 %></p> |
|
46 | <%= check_box_tag 'settings[autofetch_changesets]', 1, Setting.autofetch_changesets? %><%= hidden_field_tag 'settings[autofetch_changesets]', 0 %></p> | |
44 |
|
47 | |||
45 | <p><label><%= l(:setting_sys_api_enabled) %></label> |
|
48 | <p><label><%= l(:setting_sys_api_enabled) %></label> | |
46 | <%= check_box_tag 'settings[sys_api_enabled]', 1, Setting.sys_api_enabled? %><%= hidden_field_tag 'settings[sys_api_enabled]', 0 %></p> |
|
49 | <%= check_box_tag 'settings[sys_api_enabled]', 1, Setting.sys_api_enabled? %><%= hidden_field_tag 'settings[sys_api_enabled]', 0 %></p> | |
47 | </div> |
|
50 | </div> | |
48 |
|
51 | |||
49 | <fieldset class="box"><legend><%= l(:label_authentication) %></legend> |
|
52 | <fieldset class="box"><legend><%= l(:label_authentication) %></legend> | |
50 | <p><label><%= l(:setting_login_required) %></label> |
|
53 | <p><label><%= l(:setting_login_required) %></label> | |
51 | <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p> |
|
54 | <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p> | |
52 |
|
55 | |||
53 | <p><label><%= l(:setting_autologin) %></label> |
|
56 | <p><label><%= l(:setting_autologin) %></label> | |
54 | <%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [lwr(:actionview_datehelper_time_in_words_day, days), days.to_s]}, Setting.autologin) %></p> |
|
57 | <%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [lwr(:actionview_datehelper_time_in_words_day, days), days.to_s]}, Setting.autologin) %></p> | |
55 |
|
58 | |||
56 | <p><label><%= l(:setting_self_registration) %></label> |
|
59 | <p><label><%= l(:setting_self_registration) %></label> | |
57 | <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p> |
|
60 | <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p> | |
58 |
|
61 | |||
59 | <p><label><%= l(:label_password_lost) %></label> |
|
62 | <p><label><%= l(:label_password_lost) %></label> | |
60 | <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p> |
|
63 | <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p> | |
61 | </fieldset> |
|
64 | </fieldset> | |
62 |
|
65 | |||
63 | <fieldset class="box"><legend><%= l(:text_issues_ref_in_commit_messages) %></legend> |
|
66 | <fieldset class="box"><legend><%= l(:text_issues_ref_in_commit_messages) %></legend> | |
64 | <p><label><%= l(:setting_commit_ref_keywords) %></label> |
|
67 | <p><label><%= l(:setting_commit_ref_keywords) %></label> | |
65 | <%= text_field_tag 'settings[commit_ref_keywords]', Setting.commit_ref_keywords, :size => 30 %><br /><em><%= l(:text_comma_separated) %></em></p> |
|
68 | <%= text_field_tag 'settings[commit_ref_keywords]', Setting.commit_ref_keywords, :size => 30 %><br /><em><%= l(:text_comma_separated) %></em></p> | |
66 |
|
69 | |||
67 | <p><label><%= l(:setting_commit_fix_keywords) %></label> |
|
70 | <p><label><%= l(:setting_commit_fix_keywords) %></label> | |
68 | <%= text_field_tag 'settings[commit_fix_keywords]', Setting.commit_fix_keywords, :size => 30 %> |
|
71 | <%= text_field_tag 'settings[commit_fix_keywords]', Setting.commit_fix_keywords, :size => 30 %> | |
69 | <%= 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) %> |
|
72 | <%= 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) %> | |
70 | <br /><em><%= l(:text_comma_separated) %></em></p> |
|
73 | <br /><em><%= l(:text_comma_separated) %></em></p> | |
71 | </fieldset> |
|
74 | </fieldset> | |
72 |
|
75 | |||
73 | <%= submit_tag l(:button_save) %> |
|
76 | <%= submit_tag l(:button_save) %> | |
74 | </div> |
|
77 | </div> | |
75 | <% end %> No newline at end of file |
|
78 | <% end %> |
@@ -1,74 +1,76 | |||||
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: |
|
57 | commit_ref_keywords: | |
58 | default: 'refs,references,IssueID' |
|
58 | default: 'refs,references,IssueID' | |
59 | commit_fix_keywords: |
|
59 | commit_fix_keywords: | |
60 | default: 'fixes,closes' |
|
60 | default: 'fixes,closes' | |
61 | commit_fix_status_id: |
|
61 | commit_fix_status_id: | |
62 | format: int |
|
62 | format: int | |
63 | default: 0 |
|
63 | default: 0 | |
64 | # autologin duration in days |
|
64 | # autologin duration in days | |
65 | # 0 means autologin is disabled |
|
65 | # 0 means autologin is disabled | |
66 | autologin: |
|
66 | autologin: | |
67 | format: int |
|
67 | format: int | |
68 | default: 0 |
|
68 | default: 0 | |
69 | # date format |
|
69 | # date format | |
70 | # 0: language based |
|
70 | # 0: language based | |
71 | # 1: ISO format |
|
71 | # 1: ISO format | |
72 | date_format: |
|
72 | date_format: | |
73 | format: int |
|
73 | format: int | |
74 | default: 0 |
|
74 | default: 0 | |
|
75 | cross_project_issue_relations: | |||
|
76 | default: 0 |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември |
|
4 | actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември | |
5 | actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек |
|
5 | actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 ден |
|
8 | actionview_datehelper_time_in_words_day: 1 ден | |
9 | actionview_datehelper_time_in_words_day_plural: %d дни |
|
9 | actionview_datehelper_time_in_words_day_plural: %d дни | |
10 | actionview_datehelper_time_in_words_hour_about: около час |
|
10 | actionview_datehelper_time_in_words_hour_about: около час | |
11 | actionview_datehelper_time_in_words_hour_about_plural: около %d часа |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: около %d часа | |
12 | actionview_datehelper_time_in_words_hour_about_single: около час |
|
12 | actionview_datehelper_time_in_words_hour_about_single: около час | |
13 | actionview_datehelper_time_in_words_minute: 1 минута |
|
13 | actionview_datehelper_time_in_words_minute: 1 минута | |
14 | actionview_datehelper_time_in_words_minute_half: половин минута |
|
14 | actionview_datehelper_time_in_words_minute_half: половин минута | |
15 | actionview_datehelper_time_in_words_minute_less_than: по-малко от минута |
|
15 | actionview_datehelper_time_in_words_minute_less_than: по-малко от минута | |
16 | actionview_datehelper_time_in_words_minute_plural: %d минути |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d минути | |
17 | actionview_datehelper_time_in_words_minute_single: 1 минута |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 минута | |
18 | actionview_datehelper_time_in_words_second_less_than: по-малко от секунда |
|
18 | actionview_datehelper_time_in_words_second_less_than: по-малко от секунда | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди | |
20 | actionview_instancetag_blank_option: Изберете |
|
20 | actionview_instancetag_blank_option: Изберете | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: не съществува в списъка |
|
22 | activerecord_error_inclusion: не съществува в списъка | |
23 | activerecord_error_exclusion: е запазено |
|
23 | activerecord_error_exclusion: е запазено | |
24 | activerecord_error_invalid: е невалидно |
|
24 | activerecord_error_invalid: е невалидно | |
25 | activerecord_error_confirmation: липсва одобрение |
|
25 | activerecord_error_confirmation: липсва одобрение | |
26 | activerecord_error_accepted: трябва да се приеме |
|
26 | activerecord_error_accepted: трябва да се приеме | |
27 | activerecord_error_empty: не може да е празно |
|
27 | activerecord_error_empty: не може да е празно | |
28 | activerecord_error_blank: не може да е празно |
|
28 | activerecord_error_blank: не може да е празно | |
29 | activerecord_error_too_long: е прекалено дълго |
|
29 | activerecord_error_too_long: е прекалено дълго | |
30 | activerecord_error_too_short: е прекалено късо |
|
30 | activerecord_error_too_short: е прекалено късо | |
31 | activerecord_error_wrong_length: е с грешна дължина |
|
31 | activerecord_error_wrong_length: е с грешна дължина | |
32 | activerecord_error_taken: вече съществува |
|
32 | activerecord_error_taken: вече съществува | |
33 | activerecord_error_not_a_number: не е число |
|
33 | activerecord_error_not_a_number: не е число | |
34 | activerecord_error_not_a_date: е невалидна дата |
|
34 | activerecord_error_not_a_date: е невалидна дата | |
35 | activerecord_error_greater_than_start_date: трябва да е след началната дата |
|
35 | activerecord_error_greater_than_start_date: трябва да е след началната дата | |
36 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d yr |
|
39 | general_fmt_age: %d yr | |
40 | general_fmt_age_plural: %d yrs |
|
40 | general_fmt_age_plural: %d yrs | |
41 | general_fmt_date: %%d.%%m.%%Y |
|
41 | general_fmt_date: %%d.%%m.%%Y | |
42 | general_fmt_datetime: %%d.%%m.%%Y %%H:%%M |
|
42 | general_fmt_datetime: %%d.%%m.%%Y %%H:%%M | |
43 | general_fmt_datetime_short: %%b %%d, %%H:%%M |
|
43 | general_fmt_datetime_short: %%b %%d, %%H:%%M | |
44 | general_fmt_time: %%H:%%M |
|
44 | general_fmt_time: %%H:%%M | |
45 | general_text_No: 'Не' |
|
45 | general_text_No: 'Не' | |
46 | general_text_Yes: 'Да' |
|
46 | general_text_Yes: 'Да' | |
47 | general_text_no: 'не' |
|
47 | general_text_no: 'не' | |
48 | general_text_yes: 'да' |
|
48 | general_text_yes: 'да' | |
49 | general_lang_name: 'Bulgarian' |
|
49 | general_lang_name: 'Bulgarian' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя |
|
53 | general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя | |
54 |
|
54 | |||
55 | notice_account_updated: Профилът е обновен успешно. |
|
55 | notice_account_updated: Профилът е обновен успешно. | |
56 | notice_account_invalid_creditentials: Невалиден потребител или парола. |
|
56 | notice_account_invalid_creditentials: Невалиден потребител или парола. | |
57 | notice_account_password_updated: Паролата е успешно променена. |
|
57 | notice_account_password_updated: Паролата е успешно променена. | |
58 | notice_account_wrong_password: Грешна парола |
|
58 | notice_account_wrong_password: Грешна парола | |
59 | notice_account_register_done: Акаунтът е създаден успешно. |
|
59 | notice_account_register_done: Акаунтът е създаден успешно. | |
60 | notice_account_unknown_email: Непознат потребител. |
|
60 | notice_account_unknown_email: Непознат потребител. | |
61 | notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата. |
|
61 | notice_can_t_change_password: Този акаунт е с външен метод за оторизация. Невъзможна смяна на паролата. | |
62 | notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. |
|
62 | notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола. | |
63 | notice_account_activated: Акаунтът ви е активиран. Вече може да влезете. |
|
63 | notice_account_activated: Акаунтът ви е активиран. Вече може да влезете. | |
64 | notice_successful_create: Успешно създаване. |
|
64 | notice_successful_create: Успешно създаване. | |
65 | notice_successful_update: Успешно обновяване. |
|
65 | notice_successful_update: Успешно обновяване. | |
66 | notice_successful_delete: Успешно изтриване. |
|
66 | notice_successful_delete: Успешно изтриване. | |
67 | notice_successful_connection: Успешно свързване. |
|
67 | notice_successful_connection: Успешно свързване. | |
68 | notice_file_not_found: Несъществуваща или преместена страница. |
|
68 | notice_file_not_found: Несъществуваща или преместена страница. | |
69 | notice_locking_conflict: Друг потребител променя тези данни в момента. |
|
69 | notice_locking_conflict: Друг потребител променя тези данни в момента. | |
70 | notice_scm_error: Несъществуващ обект в склада. |
|
70 | notice_scm_error: Несъществуващ обект в склада. | |
71 | notice_not_authorized: Нямате право на достъп до тази страница. |
|
71 | notice_not_authorized: Нямате право на достъп до тази страница. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Вашата парола |
|
73 | mail_subject_lost_password: Вашата парола | |
74 | mail_subject_register: Активация на акаунт |
|
74 | mail_subject_register: Активация на акаунт | |
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: Email |
|
85 | field_mail: Email | |
86 | field_filename: Файл |
|
86 | field_filename: Файл | |
87 | field_filesize: Големина |
|
87 | field_filesize: Големина | |
88 | field_downloads: Downloads |
|
88 | field_downloads: 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: Type |
|
131 | field_type: 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: Login attribute |
|
136 | field_attr_login: Login attribute | |
137 | field_attr_firstname: Firstname attribute |
|
137 | field_attr_firstname: Firstname attribute | |
138 | field_attr_lastname: Lastname attribute |
|
138 | field_attr_lastname: Lastname attribute | |
139 | field_attr_mail: Email attribute |
|
139 | field_attr_mail: Email attribute | |
140 | field_onthefly: Динамично създаване на потребител |
|
140 | field_onthefly: Динамично създаване на потребител | |
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: Скрий e-mail адреса ми |
|
144 | field_hide_mail: Скрий e-mail адреса ми | |
145 | field_comments: Коментар |
|
145 | field_comments: Коментар | |
146 | field_url: Адрес |
|
146 | field_url: Адрес | |
147 | field_start_page: Начална страница |
|
147 | field_start_page: Начална страница | |
148 | field_subproject: Подпроект |
|
148 | field_subproject: Подпроект | |
149 | field_hours: Часове |
|
149 | field_hours: Часове | |
150 | field_activity: Дейност |
|
150 | field_activity: Дейност | |
151 | field_spent_on: Дата |
|
151 | field_spent_on: Дата | |
152 | field_identifier: Идентификатор |
|
152 | field_identifier: Идентификатор | |
153 | field_is_filter: Използва се за филтър |
|
153 | field_is_filter: Използва се за филтър | |
154 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Заглавие |
|
157 | setting_app_title: Заглавие | |
158 | setting_app_subtitle: Описание |
|
158 | setting_app_subtitle: Описание | |
159 | setting_welcome_text: Допълнителен текст |
|
159 | setting_welcome_text: Допълнителен текст | |
160 | setting_default_language: Език по подразбиране |
|
160 | setting_default_language: Език по подразбиране | |
161 | setting_login_required: Изискване за вход |
|
161 | setting_login_required: Изискване за вход | |
162 | setting_self_registration: Регистрация от потребители |
|
162 | setting_self_registration: Регистрация от потребители | |
163 | setting_attachment_max_size: Максимално голям приложен файл |
|
163 | setting_attachment_max_size: Максимално голям приложен файл | |
164 | setting_issues_export_limit: Лимит за експорт на задачи |
|
164 | setting_issues_export_limit: Лимит за експорт на задачи | |
165 | setting_mail_from: E-mail адрес за емисии |
|
165 | setting_mail_from: E-mail адрес за емисии | |
166 | setting_host_name: Хост |
|
166 | setting_host_name: Хост | |
167 | setting_text_formatting: Форматиране на текста |
|
167 | setting_text_formatting: Форматиране на текста | |
168 | setting_wiki_compression: Wiki компресиране на историята |
|
168 | setting_wiki_compression: Wiki компресиране на историята | |
169 | setting_feeds_limit: Лимит на Feeds |
|
169 | setting_feeds_limit: Лимит на Feeds | |
170 | setting_autofetch_changesets: Автоматично обработване на commits в склада |
|
170 | setting_autofetch_changesets: Автоматично обработване на commits в склада | |
171 | setting_sys_api_enabled: Разрешаване на WS за управление на склада |
|
171 | setting_sys_api_enabled: Разрешаване на WS за управление на склада | |
172 | setting_commit_ref_keywords: Отбелязващи ключови думи |
|
172 | setting_commit_ref_keywords: Отбелязващи ключови думи | |
173 | setting_commit_fix_keywords: Приключващи ключови думи |
|
173 | setting_commit_fix_keywords: Приключващи ключови думи | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Потребител |
|
178 | label_user: Потребител | |
178 | label_user_plural: Потребители |
|
179 | label_user_plural: Потребители | |
179 | label_user_new: Нов потребител |
|
180 | label_user_new: Нов потребител | |
180 | label_project: Проект |
|
181 | label_project: Проект | |
181 | label_project_new: Нов проект |
|
182 | label_project_new: Нов проект | |
182 | label_project_plural: Проекти |
|
183 | label_project_plural: Проекти | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Последни проекти |
|
185 | label_project_latest: Последни проекти | |
185 | label_issue: Задача |
|
186 | label_issue: Задача | |
186 | label_issue_new: Нова задача |
|
187 | label_issue_new: Нова задача | |
187 | label_issue_plural: Задачи |
|
188 | label_issue_plural: Задачи | |
188 | label_issue_view_all: Всички задачи |
|
189 | label_issue_view_all: Всички задачи | |
189 | label_document: Документ |
|
190 | label_document: Документ | |
190 | label_document_new: Нов документ |
|
191 | label_document_new: Нов документ | |
191 | label_document_plural: Документи |
|
192 | label_document_plural: Документи | |
192 | label_role: Роля |
|
193 | label_role: Роля | |
193 | label_role_plural: Роли |
|
194 | label_role_plural: Роли | |
194 | label_role_new: Нова роля |
|
195 | label_role_new: Нова роля | |
195 | label_role_and_permissions: Роли и права |
|
196 | label_role_and_permissions: Роли и права | |
196 | label_member: Член |
|
197 | label_member: Член | |
197 | label_member_new: Нов член |
|
198 | label_member_new: Нов член | |
198 | label_member_plural: Членове |
|
199 | label_member_plural: Членове | |
199 | label_tracker: Тракер |
|
200 | label_tracker: Тракер | |
200 | label_tracker_plural: Тракери |
|
201 | label_tracker_plural: Тракери | |
201 | label_tracker_new: Нов тракер |
|
202 | label_tracker_new: Нов тракер | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Статус на задача |
|
204 | label_issue_status: Статус на задача | |
204 | label_issue_status_plural: Статуси на задачи |
|
205 | label_issue_status_plural: Статуси на задачи | |
205 | label_issue_status_new: Нов статус |
|
206 | label_issue_status_new: Нов статус | |
206 | label_issue_category: Категория задача |
|
207 | label_issue_category: Категория задача | |
207 | label_issue_category_plural: Категории задачи |
|
208 | label_issue_category_plural: Категории задачи | |
208 | label_issue_category_new: Нова категория |
|
209 | label_issue_category_new: Нова категория | |
209 | label_custom_field: Измислено поле |
|
210 | label_custom_field: Измислено поле | |
210 | label_custom_field_plural: Измислени полета |
|
211 | label_custom_field_plural: Измислени полета | |
211 | label_custom_field_new: Ново измислено поле |
|
212 | label_custom_field_new: Ново измислено поле | |
212 | label_enumerations: Списъци |
|
213 | label_enumerations: Списъци | |
213 | label_enumeration_new: Нова стойност |
|
214 | label_enumeration_new: Нова стойност | |
214 | label_information: Информация |
|
215 | label_information: Информация | |
215 | label_information_plural: Информация |
|
216 | label_information_plural: Информация | |
216 | label_please_login: Вход |
|
217 | label_please_login: Вход | |
217 | label_register: Регистрация |
|
218 | label_register: Регистрация | |
218 | label_password_lost: Забравена парола |
|
219 | label_password_lost: Забравена парола | |
219 | label_home: Начало |
|
220 | label_home: Начало | |
220 | label_my_page: Моята страница |
|
221 | label_my_page: Моята страница | |
221 | label_my_account: Моят профил |
|
222 | label_my_account: Моят профил | |
222 | label_my_projects: Моите проекти |
|
223 | label_my_projects: Моите проекти | |
223 | label_administration: Администрация |
|
224 | label_administration: Администрация | |
224 | label_login: Вход |
|
225 | label_login: Вход | |
225 | label_logout: Изход |
|
226 | label_logout: Изход | |
226 | label_help: Помощ |
|
227 | label_help: Помощ | |
227 | label_reported_issues: Публикувани задачи |
|
228 | label_reported_issues: Публикувани задачи | |
228 | label_assigned_to_me_issues: Назначени на мен |
|
229 | label_assigned_to_me_issues: Назначени на мен | |
229 | label_last_login: Последно свързване |
|
230 | label_last_login: Последно свързване | |
230 | label_last_updates: Последно обновена |
|
231 | label_last_updates: Последно обновена | |
231 | label_last_updates_plural: %d последно обновени |
|
232 | label_last_updates_plural: %d последно обновени | |
232 | label_registered_on: Регистрация |
|
233 | label_registered_on: Регистрация | |
233 | label_activity: Дейност |
|
234 | label_activity: Дейност | |
234 | label_new: Нов |
|
235 | label_new: Нов | |
235 | label_logged_as: Логнат като |
|
236 | label_logged_as: Логнат като | |
236 | label_environment: Среда |
|
237 | label_environment: Среда | |
237 | label_authentication: Оторизация |
|
238 | label_authentication: Оторизация | |
238 | label_auth_source: Начин на оторозация |
|
239 | label_auth_source: Начин на оторозация | |
239 | label_auth_source_new: Нов начин на оторизация |
|
240 | label_auth_source_new: Нов начин на оторизация | |
240 | label_auth_source_plural: Начини на оторизация |
|
241 | label_auth_source_plural: Начини на оторизация | |
241 | label_subproject_plural: Подпроекти |
|
242 | label_subproject_plural: Подпроекти | |
242 | label_min_max_length: Мин. - Макс. дължина |
|
243 | label_min_max_length: Мин. - Макс. дължина | |
243 | label_list: Списък |
|
244 | label_list: Списък | |
244 | label_date: Дата |
|
245 | label_date: Дата | |
245 | label_integer: Число |
|
246 | label_integer: Число | |
246 | label_boolean: Чекбокс |
|
247 | label_boolean: Чекбокс | |
247 | label_string: Текст |
|
248 | label_string: Текст | |
248 | label_text: Дълъг текст |
|
249 | label_text: Дълъг текст | |
249 | label_attribute: Атрибут |
|
250 | label_attribute: Атрибут | |
250 | label_attribute_plural: Атрибути |
|
251 | label_attribute_plural: Атрибути | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Downloads |
|
253 | label_download_plural: %d Downloads | |
253 | label_no_data: Няма изходни данни |
|
254 | label_no_data: Няма изходни данни | |
254 | label_change_status: Промяна на статуса |
|
255 | label_change_status: Промяна на статуса | |
255 | label_history: История |
|
256 | label_history: История | |
256 | label_attachment: Файл |
|
257 | label_attachment: Файл | |
257 | label_attachment_new: Нов файл |
|
258 | label_attachment_new: Нов файл | |
258 | label_attachment_delete: Изтриване |
|
259 | label_attachment_delete: Изтриване | |
259 | label_attachment_plural: Файлове |
|
260 | label_attachment_plural: Файлове | |
260 | label_report: Доклад |
|
261 | label_report: Доклад | |
261 | label_report_plural: Доклади |
|
262 | label_report_plural: Доклади | |
262 | label_news: Новини |
|
263 | label_news: Новини | |
263 | label_news_new: Добави |
|
264 | label_news_new: Добави | |
264 | label_news_plural: Новини |
|
265 | label_news_plural: Новини | |
265 | label_news_latest: Последни новини |
|
266 | label_news_latest: Последни новини | |
266 | label_news_view_all: Виж всички |
|
267 | label_news_view_all: Виж всички | |
267 | label_change_log: Изменения |
|
268 | label_change_log: Изменения | |
268 | label_settings: Настройки |
|
269 | label_settings: Настройки | |
269 | label_overview: Общ изглед |
|
270 | label_overview: Общ изглед | |
270 | label_version: Версия |
|
271 | label_version: Версия | |
271 | label_version_new: Нова версия |
|
272 | label_version_new: Нова версия | |
272 | label_version_plural: Версии |
|
273 | label_version_plural: Версии | |
273 | label_confirmation: Одобрение |
|
274 | label_confirmation: Одобрение | |
274 | label_export_to: Експорт към |
|
275 | label_export_to: Експорт към | |
275 | label_read: Read... |
|
276 | label_read: Read... | |
276 | label_public_projects: Публични проекти |
|
277 | label_public_projects: Публични проекти | |
277 | label_open_issues: отворена |
|
278 | label_open_issues: отворена | |
278 | label_open_issues_plural: отворени |
|
279 | label_open_issues_plural: отворени | |
279 | label_closed_issues: затворена |
|
280 | label_closed_issues: затворена | |
280 | label_closed_issues_plural: затворени |
|
281 | label_closed_issues_plural: затворени | |
281 | label_total: Общо |
|
282 | label_total: Общо | |
282 | label_permissions: Права |
|
283 | label_permissions: Права | |
283 | label_current_status: Текущ статус |
|
284 | label_current_status: Текущ статус | |
284 | label_new_statuses_allowed: Позволени статуси |
|
285 | label_new_statuses_allowed: Позволени статуси | |
285 | label_all: всички |
|
286 | label_all: всички | |
286 | label_none: никакви |
|
287 | label_none: никакви | |
287 | label_next: Следващ |
|
288 | label_next: Следващ | |
288 | label_previous: Предишен |
|
289 | label_previous: Предишен | |
289 | label_used_by: Използва се от |
|
290 | label_used_by: Използва се от | |
290 | label_details: Детайли |
|
291 | label_details: Детайли | |
291 | label_add_note: Добавяне на бележка |
|
292 | label_add_note: Добавяне на бележка | |
292 | label_per_page: На страница |
|
293 | label_per_page: На страница | |
293 | label_calendar: Календар |
|
294 | label_calendar: Календар | |
294 | label_months_from: месеци от |
|
295 | label_months_from: месеци от | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Вътрешен |
|
297 | label_internal: Вътрешен | |
297 | label_last_changes: последни %d промени |
|
298 | label_last_changes: последни %d промени | |
298 | label_change_view_all: Виж всички промени |
|
299 | label_change_view_all: Виж всички промени | |
299 | label_personalize_page: Персонализиране |
|
300 | label_personalize_page: Персонализиране | |
300 | label_comment: Коментар |
|
301 | label_comment: Коментар | |
301 | label_comment_plural: Коментари |
|
302 | label_comment_plural: Коментари | |
302 | label_comment_add: Добавяне на коментар |
|
303 | label_comment_add: Добавяне на коментар | |
303 | label_comment_added: Добавен коментар |
|
304 | label_comment_added: Добавен коментар | |
304 | label_comment_delete: Изтриване на коментари |
|
305 | label_comment_delete: Изтриване на коментари | |
305 | label_query: Измислена заявка |
|
306 | label_query: Измислена заявка | |
306 | label_query_plural: Измислени заявки |
|
307 | label_query_plural: Измислени заявки | |
307 | label_query_new: Нова заявка |
|
308 | label_query_new: Нова заявка | |
308 | label_filter_add: Добави филтър |
|
309 | label_filter_add: Добави филтър | |
309 | label_filter_plural: Филтри |
|
310 | label_filter_plural: Филтри | |
310 | label_equals: е |
|
311 | label_equals: е | |
311 | label_not_equals: не е |
|
312 | label_not_equals: не е | |
312 | label_in_less_than: по-малко от |
|
313 | label_in_less_than: по-малко от | |
313 | label_in_more_than: повече от |
|
314 | label_in_more_than: повече от | |
314 | label_in: в следващите |
|
315 | label_in: в следващите | |
315 | label_today: днес |
|
316 | label_today: днес | |
316 | label_less_than_ago: преди по-малко от |
|
317 | label_less_than_ago: преди по-малко от | |
317 | label_more_than_ago: преди повече от |
|
318 | label_more_than_ago: преди повече от | |
318 | label_ago: преди дни |
|
319 | label_ago: преди дни | |
319 | label_contains: съдържа |
|
320 | label_contains: съдържа | |
320 | label_not_contains: не съдържа |
|
321 | label_not_contains: не съдържа | |
321 | label_day_plural: дни |
|
322 | label_day_plural: дни | |
322 | label_repository: Склад |
|
323 | label_repository: Склад | |
323 | label_browse: Разглеждане |
|
324 | label_browse: Разглеждане | |
324 | label_modification: %d промяна |
|
325 | label_modification: %d промяна | |
325 | label_modification_plural: %d промени |
|
326 | label_modification_plural: %d промени | |
326 | label_revision: Ревизия |
|
327 | label_revision: Ревизия | |
327 | label_revision_plural: Ревизии |
|
328 | label_revision_plural: Ревизии | |
328 | label_added: добавено |
|
329 | label_added: добавено | |
329 | label_modified: променено |
|
330 | label_modified: променено | |
330 | label_deleted: изтрито |
|
331 | label_deleted: изтрито | |
331 | label_latest_revision: Последна ревизия |
|
332 | label_latest_revision: Последна ревизия | |
332 | label_latest_revision_plural: Последни ревизии |
|
333 | label_latest_revision_plural: Последни ревизии | |
333 | label_view_revisions: Виж ревизиите |
|
334 | label_view_revisions: Виж ревизиите | |
334 | label_max_size: Максимална големина |
|
335 | label_max_size: Максимална големина | |
335 | label_on: 'от' |
|
336 | label_on: 'от' | |
336 | label_sort_highest: Премести най-горе |
|
337 | label_sort_highest: Премести най-горе | |
337 | label_sort_higher: Премести по-горе |
|
338 | label_sort_higher: Премести по-горе | |
338 | label_sort_lower: Премести по-долу |
|
339 | label_sort_lower: Премести по-долу | |
339 | label_sort_lowest: Премести най-долу |
|
340 | label_sort_lowest: Премести най-долу | |
340 | label_roadmap: Пътна карта |
|
341 | label_roadmap: Пътна карта | |
341 | label_roadmap_due_in: Излиза след |
|
342 | label_roadmap_due_in: Излиза след | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Няма задачи за тази версия |
|
344 | label_roadmap_no_issues: Няма задачи за тази версия | |
344 | label_search: Търсене |
|
345 | label_search: Търсене | |
345 | label_result: %d резултат |
|
346 | label_result: %d резултат | |
346 | label_result_plural: %d резултати |
|
347 | label_result_plural: %d резултати | |
347 | label_all_words: Всички думи |
|
348 | label_all_words: Всички думи | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki редакция |
|
350 | label_wiki_edit: Wiki редакция | |
350 | label_wiki_edit_plural: Wiki редакции |
|
351 | label_wiki_edit_plural: Wiki редакции | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Индекс |
|
354 | label_page_index: Индекс | |
354 | label_current_version: Текуща версия |
|
355 | label_current_version: Текуща версия | |
355 | label_preview: Преглед |
|
356 | label_preview: Преглед | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Подробни промени |
|
358 | label_changes_details: Подробни промени | |
358 | label_issue_tracking: Тракинг |
|
359 | label_issue_tracking: Тракинг | |
359 | label_spent_time: Отделено време |
|
360 | label_spent_time: Отделено време | |
360 | label_f_hour: %.2f час |
|
361 | label_f_hour: %.2f час | |
361 | label_f_hour_plural: %.2f часа |
|
362 | label_f_hour_plural: %.2f часа | |
362 | label_time_tracking: Отделяне на време |
|
363 | label_time_tracking: Отделяне на време | |
363 | label_change_plural: Промени |
|
364 | label_change_plural: Промени | |
364 | label_statistics: Статистики |
|
365 | label_statistics: Статистики | |
365 | label_commits_per_month: Commits за месец |
|
366 | label_commits_per_month: Commits за месец | |
366 | label_commits_per_author: Commits за автор |
|
367 | label_commits_per_author: Commits за автор | |
367 | label_view_diff: Виж разликите |
|
368 | label_view_diff: Виж разликите | |
368 | label_diff_inline: хоризонтално |
|
369 | label_diff_inline: хоризонтално | |
369 | label_diff_side_by_side: вертикално |
|
370 | label_diff_side_by_side: вертикално | |
370 | label_options: Опции |
|
371 | label_options: Опции | |
371 | label_copy_workflow_from: Копирай workflow от |
|
372 | label_copy_workflow_from: Копирай workflow от | |
372 | label_permissions_report: Справка за права |
|
373 | label_permissions_report: Справка за права | |
373 | label_watched_issues: Наблюдавани задачи |
|
374 | label_watched_issues: Наблюдавани задачи | |
374 | label_related_issues: Свързани задачи |
|
375 | label_related_issues: Свързани задачи | |
375 | label_applied_status: Промени статуса на |
|
376 | label_applied_status: Промени статуса на | |
376 | label_loading: Зареждане... |
|
377 | label_loading: Зареждане... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Вход |
|
411 | button_login: Вход | |
411 | button_submit: Изпращане |
|
412 | button_submit: Изпращане | |
412 | button_save: Запис |
|
413 | button_save: Запис | |
413 | button_check_all: Маркирай всички |
|
414 | button_check_all: Маркирай всички | |
414 | button_uncheck_all: Изчисти всички |
|
415 | button_uncheck_all: Изчисти всички | |
415 | button_delete: Изтриване |
|
416 | button_delete: Изтриване | |
416 | button_create: Създаване |
|
417 | button_create: Създаване | |
417 | button_test: Тест |
|
418 | button_test: Тест | |
418 | button_edit: Редакция |
|
419 | button_edit: Редакция | |
419 | button_add: Добавяне |
|
420 | button_add: Добавяне | |
420 | button_change: Промяна |
|
421 | button_change: Промяна | |
421 | button_apply: Приложи |
|
422 | button_apply: Приложи | |
422 | button_clear: Изчисти |
|
423 | button_clear: Изчисти | |
423 | button_lock: Заключване |
|
424 | button_lock: Заключване | |
424 | button_unlock: Отключване |
|
425 | button_unlock: Отключване | |
425 | button_download: Download |
|
426 | button_download: Download | |
426 | button_list: Списък |
|
427 | button_list: Списък | |
427 | button_view: Преглед |
|
428 | button_view: Преглед | |
428 | button_move: Преместване |
|
429 | button_move: Преместване | |
429 | button_back: Назад |
|
430 | button_back: Назад | |
430 | button_cancel: Отказ |
|
431 | button_cancel: Отказ | |
431 | button_activate: Активация |
|
432 | button_activate: Активация | |
432 | button_sort: Сортиране |
|
433 | button_sort: Сортиране | |
433 | button_log_time: Отделяне на време |
|
434 | button_log_time: Отделяне на време | |
434 | button_rollback: Върни се към тази ревизия |
|
435 | button_rollback: Върни се към тази ревизия | |
435 | button_watch: Наблюдавай |
|
436 | button_watch: Наблюдавай | |
436 | button_unwatch: Спри наблюдението |
|
437 | button_unwatch: Спри наблюдението | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: активен |
|
442 | status_active: активен | |
442 | status_registered: регистриран |
|
443 | status_registered: регистриран | |
443 | status_locked: заключен |
|
444 | status_locked: заключен | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Изберете събития за изпращане на e-mail. |
|
446 | text_select_mail_notifications: Изберете събития за изпращане на e-mail. | |
446 | text_regexp_info: пр. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: пр. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 - без ограничения |
|
448 | text_min_max_length_info: 0 - без ограничения | |
448 | text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? |
|
449 | text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него? | |
449 | text_workflow_edit: Изберете роля и тракер за да редактирате workflow |
|
450 | text_workflow_edit: Изберете роля и тракер за да редактирате workflow | |
450 | text_are_you_sure: Сигурни ли сте? |
|
451 | text_are_you_sure: Сигурни ли сте? | |
451 | text_journal_changed: промяна от %s на %s |
|
452 | text_journal_changed: промяна от %s на %s | |
452 | text_journal_set_to: установено на %s |
|
453 | text_journal_set_to: установено на %s | |
453 | text_journal_deleted: изтрито |
|
454 | text_journal_deleted: изтрито | |
454 | text_tip_task_begin_day: задача започваща този ден |
|
455 | text_tip_task_begin_day: задача започваща този ден | |
455 | text_tip_task_end_day: задача завършваща този ден |
|
456 | text_tip_task_end_day: задача завършваща този ден | |
456 | text_tip_task_begin_end_day: задача започваща и завършваща този ден |
|
457 | text_tip_task_begin_end_day: задача започваща и завършваща този ден | |
457 | text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.' |
|
458 | text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.' | |
458 | text_caracters_maximum: До %d символа. |
|
459 | text_caracters_maximum: До %d символа. | |
459 | text_length_between: От %d до %d символа. |
|
460 | text_length_between: От %d до %d символа. | |
460 | text_tracker_no_workflow: Няма дефиниран workflow за този тракер |
|
461 | text_tracker_no_workflow: Няма дефиниран workflow за този тракер | |
461 | text_unallowed_characters: Непозволени символи |
|
462 | text_unallowed_characters: Непозволени символи | |
462 | text_comma_separated: Позволено е изброяване (с разделител запетая). |
|
463 | text_comma_separated: Позволено е изброяване (с разделител запетая). | |
463 | text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения |
|
464 | text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения | |
464 |
|
465 | |||
465 | default_role_manager: Мениджър |
|
466 | default_role_manager: Мениджър | |
466 | default_role_developper: Разработчик |
|
467 | default_role_developper: Разработчик | |
467 | default_role_reporter: Публикуващ |
|
468 | default_role_reporter: Публикуващ | |
468 | default_tracker_bug: Бъг |
|
469 | default_tracker_bug: Бъг | |
469 | default_tracker_feature: Функционалност |
|
470 | default_tracker_feature: Функционалност | |
470 | default_tracker_support: Поддръжка |
|
471 | default_tracker_support: Поддръжка | |
471 | default_issue_status_new: Нова |
|
472 | default_issue_status_new: Нова | |
472 | default_issue_status_assigned: Възложена |
|
473 | default_issue_status_assigned: Възложена | |
473 | default_issue_status_resolved: Приключена |
|
474 | default_issue_status_resolved: Приключена | |
474 | default_issue_status_feedback: Обратна връзка |
|
475 | default_issue_status_feedback: Обратна връзка | |
475 | default_issue_status_closed: Затворена |
|
476 | default_issue_status_closed: Затворена | |
476 | default_issue_status_rejected: Отхвърлена |
|
477 | default_issue_status_rejected: Отхвърлена | |
477 | default_doc_category_user: Документация за потребителя |
|
478 | default_doc_category_user: Документация за потребителя | |
478 | default_doc_category_tech: Техническа документация |
|
479 | default_doc_category_tech: Техническа документация | |
479 | default_priority_low: Нисък |
|
480 | default_priority_low: Нисък | |
480 | default_priority_normal: Нормален |
|
481 | default_priority_normal: Нормален | |
481 | default_priority_high: Висок |
|
482 | default_priority_high: Висок | |
482 | default_priority_urgent: Спешен |
|
483 | default_priority_urgent: Спешен | |
483 | default_priority_immediate: Веднага |
|
484 | default_priority_immediate: Веднага | |
484 | default_activity_design: Дизайн |
|
485 | default_activity_design: Дизайн | |
485 | default_activity_development: Разработка |
|
486 | default_activity_development: Разработка | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Приоритети на задачи |
|
488 | enumeration_issue_priorities: Приоритети на задачи | |
488 | enumeration_doc_categories: Категории документи |
|
489 | enumeration_doc_categories: Категории документи | |
489 | enumeration_activities: Дейности (time tracking) |
|
490 | enumeration_activities: Дейности (time tracking) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember |
|
4 | actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 Tag |
|
8 | actionview_datehelper_time_in_words_day: 1 Tag | |
9 | actionview_datehelper_time_in_words_day_plural: %d Tage |
|
9 | actionview_datehelper_time_in_words_day_plural: %d Tage | |
10 | actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde |
|
10 | actionview_datehelper_time_in_words_hour_about: ungefähr eine Stunde | |
11 | actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden | |
12 | actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde |
|
12 | actionview_datehelper_time_in_words_hour_about_single: ungefähr eine Stunde | |
13 | actionview_datehelper_time_in_words_minute: 1 Minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 Minute | |
14 | actionview_datehelper_time_in_words_minute_half: halbe Minute |
|
14 | actionview_datehelper_time_in_words_minute_half: halbe Minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: weniger als eine Minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d Minuten |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d Minuten | |
17 | actionview_datehelper_time_in_words_minute_single: 1 Minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 Minute | |
18 | actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde |
|
18 | actionview_datehelper_time_in_words_second_less_than: Weniger als eine Sekunde | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden | |
20 | actionview_instancetag_blank_option: Bitte auswählen |
|
20 | actionview_instancetag_blank_option: Bitte auswählen | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: ist nicht inbegriffen |
|
22 | activerecord_error_inclusion: ist nicht inbegriffen | |
23 | activerecord_error_exclusion: ist reserviert |
|
23 | activerecord_error_exclusion: ist reserviert | |
24 | activerecord_error_invalid: ist unzulässig |
|
24 | activerecord_error_invalid: ist unzulässig | |
25 | activerecord_error_confirmation: Bestätigung nötig |
|
25 | activerecord_error_confirmation: Bestätigung nötig | |
26 | activerecord_error_accepted: muss angenommen werden |
|
26 | activerecord_error_accepted: muss angenommen werden | |
27 | activerecord_error_empty: darf nicht leer sein |
|
27 | activerecord_error_empty: darf nicht leer sein | |
28 | activerecord_error_blank: darf nicht leer sein |
|
28 | activerecord_error_blank: darf nicht leer sein | |
29 | activerecord_error_too_long: ist zu lang |
|
29 | activerecord_error_too_long: ist zu lang | |
30 | activerecord_error_too_short: ist zu kurz |
|
30 | activerecord_error_too_short: ist zu kurz | |
31 | activerecord_error_wrong_length: hat die falsche Länge |
|
31 | activerecord_error_wrong_length: hat die falsche Länge | |
32 | activerecord_error_taken: ist bereits vergeben |
|
32 | activerecord_error_taken: ist bereits vergeben | |
33 | activerecord_error_not_a_number: ist keine Zahl |
|
33 | activerecord_error_not_a_number: ist keine Zahl | |
34 | activerecord_error_not_a_date: ist kein gültiges Datum |
|
34 | activerecord_error_not_a_date: ist kein gültiges Datum | |
35 | activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein |
|
35 | activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein | |
36 | activerecord_error_not_same_project: gehört nicht zum selben Projekt |
|
36 | activerecord_error_not_same_project: gehört nicht zum selben Projekt | |
37 | activerecord_error_circular_dependency: diese Relation würde eine zyklische Abhängigkeit erzeugen |
|
37 | activerecord_error_circular_dependency: diese Relation würde eine zyklische Abhängigkeit erzeugen | |
38 |
|
38 | |||
39 | general_fmt_age: %d Jahr |
|
39 | general_fmt_age: %d Jahr | |
40 | general_fmt_age_plural: %d Jahre |
|
40 | general_fmt_age_plural: %d Jahre | |
41 | general_fmt_date: %%d.%%m.%%y |
|
41 | general_fmt_date: %%d.%%m.%%y | |
42 | general_fmt_datetime: %%d.%%m.%%y, %%H:%%M |
|
42 | general_fmt_datetime: %%d.%%m.%%y, %%H:%%M | |
43 | general_fmt_datetime_short: %%d.%%m, %%H:%%M |
|
43 | general_fmt_datetime_short: %%d.%%m, %%H:%%M | |
44 | general_fmt_time: %%H:%%M |
|
44 | general_fmt_time: %%H:%%M | |
45 | general_text_No: 'Nein' |
|
45 | general_text_No: 'Nein' | |
46 | general_text_Yes: 'Ja' |
|
46 | general_text_Yes: 'Ja' | |
47 | general_text_no: 'nein' |
|
47 | general_text_no: 'nein' | |
48 | general_text_yes: 'ja' |
|
48 | general_text_yes: 'ja' | |
49 | general_lang_name: 'Deutsch' |
|
49 | general_lang_name: 'Deutsch' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag |
|
53 | general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag | |
54 |
|
54 | |||
55 | notice_account_updated: Konto wurde erfolgreich aktualisiert. |
|
55 | notice_account_updated: Konto wurde erfolgreich aktualisiert. | |
56 | notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig |
|
56 | notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig | |
57 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. |
|
57 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. | |
58 | notice_account_wrong_password: Falsches Kennwort |
|
58 | notice_account_wrong_password: Falsches Kennwort | |
59 | notice_account_register_done: Konto wurde erfolgreich angelegt. |
|
59 | notice_account_register_done: Konto wurde erfolgreich angelegt. | |
60 | notice_account_unknown_email: Unbekannter Benutzer. |
|
60 | notice_account_unknown_email: Unbekannter Benutzer. | |
61 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern. |
|
61 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern. | |
62 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt. |
|
62 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt. | |
63 | notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen. |
|
63 | notice_account_activated: Dein Konto ist aktiviert. Sie können sich jetzt einloggen. | |
64 | notice_successful_create: Erfolgreich angelegt |
|
64 | notice_successful_create: Erfolgreich angelegt | |
65 | notice_successful_update: Erfolgreiche Aktualisierung. |
|
65 | notice_successful_update: Erfolgreiche Aktualisierung. | |
66 | notice_successful_delete: Erfolgreiche Löschung. |
|
66 | notice_successful_delete: Erfolgreiche Löschung. | |
67 | notice_successful_connection: Verbindung erfolgreich. |
|
67 | notice_successful_connection: Verbindung erfolgreich. | |
68 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. |
|
68 | notice_file_not_found: Anhang besteht nicht oder ist gelöscht worden. | |
69 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. |
|
69 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert. | |
70 | notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv. |
|
70 | notice_scm_error: Eintrag und/oder Revision besteht nicht im Projektarchiv. | |
71 | notice_not_authorized: Sie sind nicht berechtigt auf diese Seite zuzugreifen. |
|
71 | notice_not_authorized: Sie sind nicht berechtigt auf diese Seite zuzugreifen. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Ihr redMine Kennwort |
|
73 | mail_subject_lost_password: Ihr redMine Kennwort | |
74 | mail_subject_register: redMine Kontoaktivierung |
|
74 | mail_subject_register: redMine Kontoaktivierung | |
75 |
|
75 | |||
76 | gui_validation_error: 1 Fehler |
|
76 | gui_validation_error: 1 Fehler | |
77 | gui_validation_error_plural: %d Fehler |
|
77 | gui_validation_error_plural: %d Fehler | |
78 |
|
78 | |||
79 | field_name: Name |
|
79 | field_name: Name | |
80 | field_description: Beschreibung |
|
80 | field_description: Beschreibung | |
81 | field_summary: Zusammenfassung |
|
81 | field_summary: Zusammenfassung | |
82 | field_is_required: Erforderlich |
|
82 | field_is_required: Erforderlich | |
83 | field_firstname: Vorname |
|
83 | field_firstname: Vorname | |
84 | field_lastname: Nachname |
|
84 | field_lastname: Nachname | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Datei |
|
86 | field_filename: Datei | |
87 | field_filesize: Größe |
|
87 | field_filesize: Größe | |
88 | field_downloads: Downloads |
|
88 | field_downloads: Downloads | |
89 | field_author: Autor |
|
89 | field_author: Autor | |
90 | field_created_on: Angelegt |
|
90 | field_created_on: Angelegt | |
91 | field_updated_on: Aktualisiert |
|
91 | field_updated_on: Aktualisiert | |
92 | field_field_format: Format |
|
92 | field_field_format: Format | |
93 | field_is_for_all: Für alle Projekte |
|
93 | field_is_for_all: Für alle Projekte | |
94 | field_possible_values: Mögliche Werte |
|
94 | field_possible_values: Mögliche Werte | |
95 | field_regexp: Regulärer Ausdruck |
|
95 | field_regexp: Regulärer Ausdruck | |
96 | field_min_length: Minimale Länge |
|
96 | field_min_length: Minimale Länge | |
97 | field_max_length: Maximale Länge |
|
97 | field_max_length: Maximale Länge | |
98 | field_value: Wert |
|
98 | field_value: Wert | |
99 | field_category: Kategorie |
|
99 | field_category: Kategorie | |
100 | field_title: Titel |
|
100 | field_title: Titel | |
101 | field_project: Projekt |
|
101 | field_project: Projekt | |
102 | field_issue: Ticket |
|
102 | field_issue: Ticket | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Kommentare |
|
104 | field_notes: Kommentare | |
105 | field_is_closed: Problem erledigt |
|
105 | field_is_closed: Problem erledigt | |
106 | field_is_default: Default |
|
106 | field_is_default: Default | |
107 | field_html_color: Farbe |
|
107 | field_html_color: Farbe | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Thema |
|
109 | field_subject: Thema | |
110 | field_due_date: Abgabedatum |
|
110 | field_due_date: Abgabedatum | |
111 | field_assigned_to: Zugewiesen an |
|
111 | field_assigned_to: Zugewiesen an | |
112 | field_priority: Priorität |
|
112 | field_priority: Priorität | |
113 | field_fixed_version: Erledigt in Version |
|
113 | field_fixed_version: Erledigt in Version | |
114 | field_user: Benutzer |
|
114 | field_user: Benutzer | |
115 | field_role: Rolle |
|
115 | field_role: Rolle | |
116 | field_homepage: Startseite |
|
116 | field_homepage: Startseite | |
117 | field_is_public: Öffentlich |
|
117 | field_is_public: Öffentlich | |
118 | field_parent: Unterprojekt von |
|
118 | field_parent: Unterprojekt von | |
119 | field_is_in_chlog: Ansicht im Change-Log |
|
119 | field_is_in_chlog: Ansicht im Change-Log | |
120 | field_is_in_roadmap: Ansicht in der Roadmap |
|
120 | field_is_in_roadmap: Ansicht in der Roadmap | |
121 | field_login: Mitgliedsname |
|
121 | field_login: Mitgliedsname | |
122 | field_mail_notification: Mailbenachrichtigung |
|
122 | field_mail_notification: Mailbenachrichtigung | |
123 | field_admin: Administrator |
|
123 | field_admin: Administrator | |
124 | field_last_login_on: Letzte Anmeldung |
|
124 | field_last_login_on: Letzte Anmeldung | |
125 | field_language: Sprache |
|
125 | field_language: Sprache | |
126 | field_effective_date: Datum |
|
126 | field_effective_date: Datum | |
127 | field_password: Kennwort |
|
127 | field_password: Kennwort | |
128 | field_new_password: Neues Kennwort |
|
128 | field_new_password: Neues Kennwort | |
129 | field_password_confirmation: Bestätigung |
|
129 | field_password_confirmation: Bestätigung | |
130 | field_version: Version |
|
130 | field_version: Version | |
131 | field_type: Typ |
|
131 | field_type: Typ | |
132 | field_host: Host |
|
132 | field_host: Host | |
133 | field_port: Port |
|
133 | field_port: Port | |
134 | field_account: Konto |
|
134 | field_account: Konto | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Mitgliedsname-Attribut |
|
136 | field_attr_login: Mitgliedsname-Attribut | |
137 | field_attr_firstname: Vorname-Attribut |
|
137 | field_attr_firstname: Vorname-Attribut | |
138 | field_attr_lastname: Name-Attribut |
|
138 | field_attr_lastname: Name-Attribut | |
139 | field_attr_mail: Email-Attribut |
|
139 | field_attr_mail: Email-Attribut | |
140 | field_onthefly: On-the-fly-Benutzererstellung |
|
140 | field_onthefly: On-the-fly-Benutzererstellung | |
141 | field_start_date: Beginn |
|
141 | field_start_date: Beginn | |
142 | field_done_ratio: %% erledigt |
|
142 | field_done_ratio: %% erledigt | |
143 | field_auth_source: Authentifizierungs-Modus |
|
143 | field_auth_source: Authentifizierungs-Modus | |
144 | field_hide_mail: Email-Adresse nicht anzeigen |
|
144 | field_hide_mail: Email-Adresse nicht anzeigen | |
145 | field_comments: Kommentar |
|
145 | field_comments: Kommentar | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Hauptseite |
|
147 | field_start_page: Hauptseite | |
148 | field_subproject: Subprojekt von |
|
148 | field_subproject: Subprojekt von | |
149 | field_hours: Stunden |
|
149 | field_hours: Stunden | |
150 | field_activity: Aktivität |
|
150 | field_activity: Aktivität | |
151 | field_spent_on: Datum |
|
151 | field_spent_on: Datum | |
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 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Applikation Titel |
|
157 | setting_app_title: Applikation Titel | |
158 | setting_app_subtitle: Applikation Untertitel |
|
158 | setting_app_subtitle: Applikation Untertitel | |
159 | setting_welcome_text: Willkommenstext |
|
159 | setting_welcome_text: Willkommenstext | |
160 | setting_default_language: Default Sprache |
|
160 | setting_default_language: Default Sprache | |
161 | setting_login_required: Authent. erfordert |
|
161 | setting_login_required: Authent. erfordert | |
162 | setting_self_registration: Anmeldung ermöglicht |
|
162 | setting_self_registration: Anmeldung ermöglicht | |
163 | setting_attachment_max_size: max. Dateigröße |
|
163 | setting_attachment_max_size: max. Dateigröße | |
164 | setting_issues_export_limit: Limit Export Tickets |
|
164 | setting_issues_export_limit: Limit Export Tickets | |
165 | setting_mail_from: Mail Absender |
|
165 | setting_mail_from: Mail Absender | |
166 | setting_host_name: Host Name |
|
166 | setting_host_name: Host Name | |
167 | setting_text_formatting: Textformatierung |
|
167 | setting_text_formatting: Textformatierung | |
168 | setting_wiki_compression: Wiki-Historie komprimieren |
|
168 | setting_wiki_compression: Wiki-Historie komprimieren | |
169 | setting_feeds_limit: Limit Feed Inhalt |
|
169 | setting_feeds_limit: Limit Feed Inhalt | |
170 | setting_autofetch_changesets: Autofetch commits |
|
170 | setting_autofetch_changesets: Autofetch commits | |
171 | setting_sys_api_enabled: Enable WS for repository management |
|
171 | setting_sys_api_enabled: Enable WS for repository management | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Benutzer |
|
178 | label_user: Benutzer | |
178 | label_user_plural: Benutzer |
|
179 | label_user_plural: Benutzer | |
179 | label_user_new: Neuer Benutzer |
|
180 | label_user_new: Neuer Benutzer | |
180 | label_project: Projekt |
|
181 | label_project: Projekt | |
181 | label_project_new: Neues Projekt |
|
182 | label_project_new: Neues Projekt | |
182 | label_project_plural: Projekte |
|
183 | label_project_plural: Projekte | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Neueste Projekte |
|
185 | label_project_latest: Neueste Projekte | |
185 | label_issue: Ticket |
|
186 | label_issue: Ticket | |
186 | label_issue_new: Neues Ticket |
|
187 | label_issue_new: Neues Ticket | |
187 | label_issue_plural: Tickets |
|
188 | label_issue_plural: Tickets | |
188 | label_issue_view_all: Alle Tickets ansehen |
|
189 | label_issue_view_all: Alle Tickets ansehen | |
189 | label_document: Dokument |
|
190 | label_document: Dokument | |
190 | label_document_new: Neues Dokument |
|
191 | label_document_new: Neues Dokument | |
191 | label_document_plural: Dokumente |
|
192 | label_document_plural: Dokumente | |
192 | label_role: Rolle |
|
193 | label_role: Rolle | |
193 | label_role_plural: Rollen |
|
194 | label_role_plural: Rollen | |
194 | label_role_new: Neue Rolle |
|
195 | label_role_new: Neue Rolle | |
195 | label_role_and_permissions: Rollen und Rechte |
|
196 | label_role_and_permissions: Rollen und Rechte | |
196 | label_member: Mitglied |
|
197 | label_member: Mitglied | |
197 | label_member_new: Neues Mitglied |
|
198 | label_member_new: Neues Mitglied | |
198 | label_member_plural: Mitglieder |
|
199 | label_member_plural: Mitglieder | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Tracker |
|
201 | label_tracker_plural: Tracker | |
201 | label_tracker_new: Neuer Tracker |
|
202 | label_tracker_new: Neuer Tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Ticket-Status |
|
204 | label_issue_status: Ticket-Status | |
204 | label_issue_status_plural: Ticket-Status |
|
205 | label_issue_status_plural: Ticket-Status | |
205 | label_issue_status_new: Neuer Status |
|
206 | label_issue_status_new: Neuer Status | |
206 | label_issue_category: Ticket-Kategorie |
|
207 | label_issue_category: Ticket-Kategorie | |
207 | label_issue_category_plural: Ticket-Kategorien |
|
208 | label_issue_category_plural: Ticket-Kategorien | |
208 | label_issue_category_new: Neue Kategorie |
|
209 | label_issue_category_new: Neue Kategorie | |
209 | label_custom_field: Benutzerdefiniertes Feld |
|
210 | label_custom_field: Benutzerdefiniertes Feld | |
210 | label_custom_field_plural: Benutzerdefinierte Felder |
|
211 | label_custom_field_plural: Benutzerdefinierte Felder | |
211 | label_custom_field_new: Neues Feld |
|
212 | label_custom_field_new: Neues Feld | |
212 | label_enumerations: Aufzählungen |
|
213 | label_enumerations: Aufzählungen | |
213 | label_enumeration_new: Neuer Wert |
|
214 | label_enumeration_new: Neuer Wert | |
214 | label_information: Information |
|
215 | label_information: Information | |
215 | label_information_plural: Informationen |
|
216 | label_information_plural: Informationen | |
216 | label_please_login: Anmelden |
|
217 | label_please_login: Anmelden | |
217 | label_register: Anmelden |
|
218 | label_register: Anmelden | |
218 | label_password_lost: Kennwort vergessen |
|
219 | label_password_lost: Kennwort vergessen | |
219 | label_home: Hauptseite |
|
220 | label_home: Hauptseite | |
220 | label_my_page: Meine Seite |
|
221 | label_my_page: Meine Seite | |
221 | label_my_account: Mein Konto |
|
222 | label_my_account: Mein Konto | |
222 | label_my_projects: Meine Projekte |
|
223 | label_my_projects: Meine Projekte | |
223 | label_administration: Administration |
|
224 | label_administration: Administration | |
224 | label_login: Einloggen |
|
225 | label_login: Einloggen | |
225 | label_logout: Abmelden |
|
226 | label_logout: Abmelden | |
226 | label_help: Hilfe |
|
227 | label_help: Hilfe | |
227 | label_reported_issues: Gemeldete Tickets |
|
228 | label_reported_issues: Gemeldete Tickets | |
228 | label_assigned_to_me_issues: Mir zugewiesen |
|
229 | label_assigned_to_me_issues: Mir zugewiesen | |
229 | label_last_login: Letzte Anmeldung |
|
230 | label_last_login: Letzte Anmeldung | |
230 | label_last_updates: zuletzt aktualisiert |
|
231 | label_last_updates: zuletzt aktualisiert | |
231 | label_last_updates_plural: %d zuletzt aktualisierten |
|
232 | label_last_updates_plural: %d zuletzt aktualisierten | |
232 | label_registered_on: Angemeldet am |
|
233 | label_registered_on: Angemeldet am | |
233 | label_activity: Aktivität |
|
234 | label_activity: Aktivität | |
234 | label_new: Neu |
|
235 | label_new: Neu | |
235 | label_logged_as: Angemeldet als |
|
236 | label_logged_as: Angemeldet als | |
236 | label_environment: Environment |
|
237 | label_environment: Environment | |
237 | label_authentication: Authentifizierung |
|
238 | label_authentication: Authentifizierung | |
238 | label_auth_source: Authentifizierungs-Modus |
|
239 | label_auth_source: Authentifizierungs-Modus | |
239 | label_auth_source_new: Neuer Authentifizierungs-Modus |
|
240 | label_auth_source_new: Neuer Authentifizierungs-Modus | |
240 | label_auth_source_plural: Authentifizierungs-Arten |
|
241 | label_auth_source_plural: Authentifizierungs-Arten | |
241 | label_subproject_plural: Sub Projekte |
|
242 | label_subproject_plural: Sub Projekte | |
242 | label_min_max_length: Min - Max Länge |
|
243 | label_min_max_length: Min - Max Länge | |
243 | label_list: Liste |
|
244 | label_list: Liste | |
244 | label_date: Datum |
|
245 | label_date: Datum | |
245 | label_integer: Zahl |
|
246 | label_integer: Zahl | |
246 | label_boolean: Boolean |
|
247 | label_boolean: Boolean | |
247 | label_string: Text |
|
248 | label_string: Text | |
248 | label_text: Langer Text |
|
249 | label_text: Langer Text | |
249 | label_attribute: Attribut |
|
250 | label_attribute: Attribut | |
250 | label_attribute_plural: Attribute |
|
251 | label_attribute_plural: Attribute | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Downloads |
|
253 | label_download_plural: %d Downloads | |
253 | label_no_data: Nichts anzuzeigen |
|
254 | label_no_data: Nichts anzuzeigen | |
254 | label_change_status: Statuswechsel |
|
255 | label_change_status: Statuswechsel | |
255 | label_history: Historie |
|
256 | label_history: Historie | |
256 | label_attachment: Datei |
|
257 | label_attachment: Datei | |
257 | label_attachment_new: Neue Datei |
|
258 | label_attachment_new: Neue Datei | |
258 | label_attachment_delete: Anhang löschen |
|
259 | label_attachment_delete: Anhang löschen | |
259 | label_attachment_plural: Dateien |
|
260 | label_attachment_plural: Dateien | |
260 | label_report: Bericht |
|
261 | label_report: Bericht | |
261 | label_report_plural: Berichte |
|
262 | label_report_plural: Berichte | |
262 | label_news: News |
|
263 | label_news: News | |
263 | label_news_new: News hinzufügen |
|
264 | label_news_new: News hinzufügen | |
264 | label_news_plural: News |
|
265 | label_news_plural: News | |
265 | label_news_latest: Letzte News |
|
266 | label_news_latest: Letzte News | |
266 | label_news_view_all: Alle News anzeigen |
|
267 | label_news_view_all: Alle News anzeigen | |
267 | label_change_log: Change-Log |
|
268 | label_change_log: Change-Log | |
268 | label_settings: Konfiguration |
|
269 | label_settings: Konfiguration | |
269 | label_overview: Übersicht |
|
270 | label_overview: Übersicht | |
270 | label_version: Version |
|
271 | label_version: Version | |
271 | label_version_new: Neue Version |
|
272 | label_version_new: Neue Version | |
272 | label_version_plural: Versionen |
|
273 | label_version_plural: Versionen | |
273 | label_confirmation: Bestätigung |
|
274 | label_confirmation: Bestätigung | |
274 | label_export_to: Export zu |
|
275 | label_export_to: Export zu | |
275 | label_read: Lesen... |
|
276 | label_read: Lesen... | |
276 | label_public_projects: Öffentliche Projekte |
|
277 | label_public_projects: Öffentliche Projekte | |
277 | label_open_issues: offen |
|
278 | label_open_issues: offen | |
278 | label_open_issues_plural: offen |
|
279 | label_open_issues_plural: offen | |
279 | label_closed_issues: geschlossen |
|
280 | label_closed_issues: geschlossen | |
280 | label_closed_issues_plural: geschlossen |
|
281 | label_closed_issues_plural: geschlossen | |
281 | label_total: Gesamtzahl |
|
282 | label_total: Gesamtzahl | |
282 | label_permissions: Berechtigungen |
|
283 | label_permissions: Berechtigungen | |
283 | label_current_status: Gegenwärtiger Status |
|
284 | label_current_status: Gegenwärtiger Status | |
284 | label_new_statuses_allowed: Neue Berechtigungen |
|
285 | label_new_statuses_allowed: Neue Berechtigungen | |
285 | label_all: alle |
|
286 | label_all: alle | |
286 | label_none: kein |
|
287 | label_none: kein | |
287 | label_next: Weiter |
|
288 | label_next: Weiter | |
288 | label_previous: Zurück |
|
289 | label_previous: Zurück | |
289 | label_used_by: Benutzt von |
|
290 | label_used_by: Benutzt von | |
290 | label_details: Details |
|
291 | label_details: Details | |
291 | label_add_note: Kommentar hinzufügen |
|
292 | label_add_note: Kommentar hinzufügen | |
292 | label_per_page: Pro Seite |
|
293 | label_per_page: Pro Seite | |
293 | label_calendar: Kalender |
|
294 | label_calendar: Kalender | |
294 | label_months_from: Monate ab |
|
295 | label_months_from: Monate ab | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Intern |
|
297 | label_internal: Intern | |
297 | label_last_changes: %d letzte Änderungen |
|
298 | label_last_changes: %d letzte Änderungen | |
298 | label_change_view_all: Alle Änderungen ansehen |
|
299 | label_change_view_all: Alle Änderungen ansehen | |
299 | label_personalize_page: Diese Seite anpassen |
|
300 | label_personalize_page: Diese Seite anpassen | |
300 | label_comment: Kommentar |
|
301 | label_comment: Kommentar | |
301 | label_comment_plural: Kommentare |
|
302 | label_comment_plural: Kommentare | |
302 | label_comment_add: Kommentar hinzufügen |
|
303 | label_comment_add: Kommentar hinzufügen | |
303 | label_comment_added: Kommentar hinzugefügt |
|
304 | label_comment_added: Kommentar hinzugefügt | |
304 | label_comment_delete: Kommentar löschen |
|
305 | label_comment_delete: Kommentar löschen | |
305 | label_query: Benutzerdefinierte Abfrage |
|
306 | label_query: Benutzerdefinierte Abfrage | |
306 | label_query_plural: Benutzerdefinierte Berichte |
|
307 | label_query_plural: Benutzerdefinierte Berichte | |
307 | label_query_new: Neuer Bericht |
|
308 | label_query_new: Neuer Bericht | |
308 | label_filter_add: Filter hinzufügen |
|
309 | label_filter_add: Filter hinzufügen | |
309 | label_filter_plural: Filter |
|
310 | label_filter_plural: Filter | |
310 | label_equals: ist |
|
311 | label_equals: ist | |
311 | label_not_equals: ist nicht |
|
312 | label_not_equals: ist nicht | |
312 | label_in_less_than: in weniger als |
|
313 | label_in_less_than: in weniger als | |
313 | label_in_more_than: in mehr als |
|
314 | label_in_more_than: in mehr als | |
314 | label_in: an |
|
315 | label_in: an | |
315 | label_today: heute |
|
316 | label_today: heute | |
316 | label_less_than_ago: vor weniger als |
|
317 | label_less_than_ago: vor weniger als | |
317 | label_more_than_ago: vor mehr als |
|
318 | label_more_than_ago: vor mehr als | |
318 | label_ago: vor |
|
319 | label_ago: vor | |
319 | label_contains: enthält |
|
320 | label_contains: enthält | |
320 | label_not_contains: enthält nicht |
|
321 | label_not_contains: enthält nicht | |
321 | label_day_plural: Tage |
|
322 | label_day_plural: Tage | |
322 | label_repository: Projektarchiv |
|
323 | label_repository: Projektarchiv | |
323 | label_browse: Codebrowser |
|
324 | label_browse: Codebrowser | |
324 | label_modification: %d Änderung |
|
325 | label_modification: %d Änderung | |
325 | label_modification_plural: %d Änderungen |
|
326 | label_modification_plural: %d Änderungen | |
326 | label_revision: Revision |
|
327 | label_revision: Revision | |
327 | label_revision_plural: Revisionen |
|
328 | label_revision_plural: Revisionen | |
328 | label_added: hinzugefügt |
|
329 | label_added: hinzugefügt | |
329 | label_modified: geändert |
|
330 | label_modified: geändert | |
330 | label_deleted: gelöscht |
|
331 | label_deleted: gelöscht | |
331 | label_latest_revision: Aktuellste Revision |
|
332 | label_latest_revision: Aktuellste Revision | |
332 | label_latest_revision_plural: Aktuellste Revisionen |
|
333 | label_latest_revision_plural: Aktuellste Revisionen | |
333 | label_view_revisions: Revisionen anzeigen |
|
334 | label_view_revisions: Revisionen anzeigen | |
334 | label_max_size: Maximale Größe |
|
335 | label_max_size: Maximale Größe | |
335 | label_on: von |
|
336 | label_on: von | |
336 | label_sort_highest: Anfang |
|
337 | label_sort_highest: Anfang | |
337 | label_sort_higher: eins höher |
|
338 | label_sort_higher: eins höher | |
338 | label_sort_lower: eins tiefer |
|
339 | label_sort_lower: eins tiefer | |
339 | label_sort_lowest: Ende |
|
340 | label_sort_lowest: Ende | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Fällig in |
|
342 | label_roadmap_due_in: Fällig in | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Keine Tickets für diese Version |
|
344 | label_roadmap_no_issues: Keine Tickets für diese Version | |
344 | label_search: Suche |
|
345 | label_search: Suche | |
345 | label_result: %d Resultat |
|
346 | label_result: %d Resultat | |
346 | label_result_plural: %d Resultate |
|
347 | label_result_plural: %d Resultate | |
347 | label_all_words: Alle Wörter |
|
348 | label_all_words: Alle Wörter | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki Bearbeitung |
|
350 | label_wiki_edit: Wiki Bearbeitung | |
350 | label_wiki_edit_plural: Wiki Bearbeitungen |
|
351 | label_wiki_edit_plural: Wiki Bearbeitungen | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Gegenwärtige Version |
|
355 | label_current_version: Gegenwärtige Version | |
355 | label_preview: Vorschau |
|
356 | label_preview: Vorschau | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Details aller Änderungen |
|
358 | label_changes_details: Details aller Änderungen | |
358 | label_issue_tracking: Tickets |
|
359 | label_issue_tracking: Tickets | |
359 | label_spent_time: Aufgewendete Zeit |
|
360 | label_spent_time: Aufgewendete Zeit | |
360 | label_f_hour: %.2f Stunde |
|
361 | label_f_hour: %.2f Stunde | |
361 | label_f_hour_plural: %.2f Stunden |
|
362 | label_f_hour_plural: %.2f Stunden | |
362 | label_time_tracking: Zeiterfassung |
|
363 | label_time_tracking: Zeiterfassung | |
363 | label_change_plural: Änderungen |
|
364 | label_change_plural: Änderungen | |
364 | label_statistics: Statistiken |
|
365 | label_statistics: Statistiken | |
365 | label_commits_per_month: Übertragungen pro Monat |
|
366 | label_commits_per_month: Übertragungen pro Monat | |
366 | label_commits_per_author: Übertragungen pro Autor |
|
367 | label_commits_per_author: Übertragungen pro Autor | |
367 | label_view_diff: View differences |
|
368 | label_view_diff: View differences | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: side by side |
|
370 | label_diff_side_by_side: side by side | |
370 | label_options: Options |
|
371 | label_options: Options | |
371 | label_copy_workflow_from: Copy workflow from |
|
372 | label_copy_workflow_from: Copy workflow from | |
372 | label_permissions_report: Permissions report |
|
373 | label_permissions_report: Permissions report | |
373 | label_watched_issues: Watched issues |
|
374 | label_watched_issues: Watched issues | |
374 | label_related_issues: Related issues |
|
375 | label_related_issues: Related issues | |
375 | label_applied_status: Applied status |
|
376 | label_applied_status: Applied status | |
376 | label_loading: Loading... |
|
377 | label_loading: Loading... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: Neues Forum |
|
395 | label_board_new: Neues Forum | |
395 | label_board_plural: Foren |
|
396 | label_board_plural: Foren | |
396 | label_topic_plural: Themen |
|
397 | label_topic_plural: Themen | |
397 | label_message_plural: Nachrichten |
|
398 | label_message_plural: Nachrichten | |
398 | label_message_last: Letzte Nachricht |
|
399 | label_message_last: Letzte Nachricht | |
399 | label_message_new: Neue Nachricht |
|
400 | label_message_new: Neue Nachricht | |
400 | label_reply_plural: Antworten |
|
401 | label_reply_plural: Antworten | |
401 | label_send_information: Sende Kontoinformationen zum Benutzer |
|
402 | label_send_information: Sende Kontoinformationen zum Benutzer | |
402 | label_year: Jahr |
|
403 | label_year: Jahr | |
403 | label_month: Monat |
|
404 | label_month: Monat | |
404 | label_week: Woche |
|
405 | label_week: Woche | |
405 | label_date_from: Von |
|
406 | label_date_from: Von | |
406 | label_date_to: Bis |
|
407 | label_date_to: Bis | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Einloggen |
|
411 | button_login: Einloggen | |
411 | button_submit: OK |
|
412 | button_submit: OK | |
412 | button_save: Speichern |
|
413 | button_save: Speichern | |
413 | button_check_all: Alles auswählen |
|
414 | button_check_all: Alles auswählen | |
414 | button_uncheck_all: Alles abwählen |
|
415 | button_uncheck_all: Alles abwählen | |
415 | button_delete: Löschen |
|
416 | button_delete: Löschen | |
416 | button_create: Anlegen |
|
417 | button_create: Anlegen | |
417 | button_test: Testen |
|
418 | button_test: Testen | |
418 | button_edit: Bearbeiten |
|
419 | button_edit: Bearbeiten | |
419 | button_add: Hinzufügen |
|
420 | button_add: Hinzufügen | |
420 | button_change: Wechseln |
|
421 | button_change: Wechseln | |
421 | button_apply: Anwenden |
|
422 | button_apply: Anwenden | |
422 | button_clear: Zurücksetzen |
|
423 | button_clear: Zurücksetzen | |
423 | button_lock: Sperren |
|
424 | button_lock: Sperren | |
424 | button_unlock: Entsperren |
|
425 | button_unlock: Entsperren | |
425 | button_download: Download |
|
426 | button_download: Download | |
426 | button_list: Liste |
|
427 | button_list: Liste | |
427 | button_view: Siehe |
|
428 | button_view: Siehe | |
428 | button_move: Verschieben |
|
429 | button_move: Verschieben | |
429 | button_back: Zurück |
|
430 | button_back: Zurück | |
430 | button_cancel: Abbrechen |
|
431 | button_cancel: Abbrechen | |
431 | button_activate: Aktivieren |
|
432 | button_activate: Aktivieren | |
432 | button_sort: Sortieren |
|
433 | button_sort: Sortieren | |
433 | button_log_time: Log time |
|
434 | button_log_time: Log time | |
434 | button_rollback: Rollback to this version |
|
435 | button_rollback: Rollback to this version | |
435 | button_watch: Watch |
|
436 | button_watch: Watch | |
436 | button_unwatch: Unwatch |
|
437 | button_unwatch: Unwatch | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: aktiv |
|
442 | status_active: aktiv | |
442 | status_registered: angemeldet |
|
443 | status_registered: angemeldet | |
443 | status_locked: gesperrt |
|
444 | status_locked: gesperrt | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll. |
|
446 | text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll. | |
446 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 heißt keine Beschränkung |
|
448 | text_min_max_length_info: 0 heißt keine Beschränkung | |
448 | text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen? |
|
449 | text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen? | |
449 | text_workflow_edit: Workflow zum Bearbeiten auswählen |
|
450 | text_workflow_edit: Workflow zum Bearbeiten auswählen | |
450 | text_are_you_sure: Sind Sie sicher? |
|
451 | text_are_you_sure: Sind Sie sicher? | |
451 | text_journal_changed: geändert von %s zu %s |
|
452 | text_journal_changed: geändert von %s zu %s | |
452 | text_journal_set_to: gestellt zu %s |
|
453 | text_journal_set_to: gestellt zu %s | |
453 | text_journal_deleted: gelöscht |
|
454 | text_journal_deleted: gelöscht | |
454 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt |
|
455 | text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt | |
455 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet |
|
456 | text_tip_task_end_day: Aufgabe, die an diesem Tag beendet | |
456 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet |
|
457 | text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet | |
457 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
458 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
458 | text_caracters_maximum: %d characters maximum. |
|
459 | text_caracters_maximum: %d characters maximum. | |
459 | text_length_between: Length between %d and %d characters. |
|
460 | text_length_between: Length between %d and %d characters. | |
460 | text_tracker_no_workflow: No workflow defined for this tracker |
|
461 | text_tracker_no_workflow: No workflow defined for this tracker | |
461 | text_unallowed_characters: Unallowed characters |
|
462 | text_unallowed_characters: Unallowed characters | |
462 | text_comma_separated: Multiple values allowed (comma separated). |
|
463 | text_comma_separated: Multiple values allowed (comma separated). | |
463 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
464 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
464 |
|
465 | |||
465 | default_role_manager: Manager |
|
466 | default_role_manager: Manager | |
466 | default_role_developper: Developer |
|
467 | default_role_developper: Developer | |
467 | default_role_reporter: Reporter |
|
468 | default_role_reporter: Reporter | |
468 | default_tracker_bug: Fehler |
|
469 | default_tracker_bug: Fehler | |
469 | default_tracker_feature: Feature |
|
470 | default_tracker_feature: Feature | |
470 | default_tracker_support: Support |
|
471 | default_tracker_support: Support | |
471 | default_issue_status_new: Neu |
|
472 | default_issue_status_new: Neu | |
472 | default_issue_status_assigned: Zugewiesen |
|
473 | default_issue_status_assigned: Zugewiesen | |
473 | default_issue_status_resolved: Gelöst |
|
474 | default_issue_status_resolved: Gelöst | |
474 | default_issue_status_feedback: Feedback |
|
475 | default_issue_status_feedback: Feedback | |
475 | default_issue_status_closed: Erledigt |
|
476 | default_issue_status_closed: Erledigt | |
476 | default_issue_status_rejected: Abgewiesen |
|
477 | default_issue_status_rejected: Abgewiesen | |
477 | default_doc_category_user: Benutzerdokumentation |
|
478 | default_doc_category_user: Benutzerdokumentation | |
478 | default_doc_category_tech: Technische Dokumentation |
|
479 | default_doc_category_tech: Technische Dokumentation | |
479 | default_priority_low: Niedrig |
|
480 | default_priority_low: Niedrig | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: Hoch |
|
482 | default_priority_high: Hoch | |
482 | default_priority_urgent: Dringend |
|
483 | default_priority_urgent: Dringend | |
483 | default_priority_immediate: Sofort |
|
484 | default_priority_immediate: Sofort | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Development |
|
486 | default_activity_development: Development | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Ticket-Prioritäten |
|
488 | enumeration_issue_priorities: Ticket-Prioritäten | |
488 | enumeration_doc_categories: Dokumentenkategorien |
|
489 | enumeration_doc_categories: Dokumentenkategorien | |
489 | enumeration_activities: Aktivitäten (Zeiterfassung) |
|
490 | enumeration_activities: Aktivitäten (Zeiterfassung) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December |
|
4 | actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 day |
|
8 | actionview_datehelper_time_in_words_day: 1 day | |
9 | actionview_datehelper_time_in_words_day_plural: %d days |
|
9 | actionview_datehelper_time_in_words_day_plural: %d days | |
10 | actionview_datehelper_time_in_words_hour_about: about an hour |
|
10 | actionview_datehelper_time_in_words_hour_about: about an hour | |
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: about %d hours | |
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
12 | actionview_datehelper_time_in_words_hour_about_single: about an hour | |
13 | actionview_datehelper_time_in_words_minute: 1 minute |
|
13 | actionview_datehelper_time_in_words_minute: 1 minute | |
14 | actionview_datehelper_time_in_words_minute_half: half a minute |
|
14 | actionview_datehelper_time_in_words_minute_half: half a minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
15 | actionview_datehelper_time_in_words_minute_less_than: less than a minute | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutes | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minute |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minute | |
18 | actionview_datehelper_time_in_words_second_less_than: less than a second |
|
18 | actionview_datehelper_time_in_words_second_less_than: less than a second | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds | |
20 | actionview_instancetag_blank_option: Please select |
|
20 | actionview_instancetag_blank_option: Please select | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: is not included in the list |
|
22 | activerecord_error_inclusion: is not included in the list | |
23 | activerecord_error_exclusion: is reserved |
|
23 | activerecord_error_exclusion: is reserved | |
24 | activerecord_error_invalid: is invalid |
|
24 | activerecord_error_invalid: is invalid | |
25 | activerecord_error_confirmation: doesn't match confirmation |
|
25 | activerecord_error_confirmation: doesn't match confirmation | |
26 | activerecord_error_accepted: must be accepted |
|
26 | activerecord_error_accepted: must be accepted | |
27 | activerecord_error_empty: can't be empty |
|
27 | activerecord_error_empty: can't be empty | |
28 | activerecord_error_blank: can't be blank |
|
28 | activerecord_error_blank: can't be blank | |
29 | activerecord_error_too_long: is too long |
|
29 | activerecord_error_too_long: is too long | |
30 | activerecord_error_too_short: is too short |
|
30 | activerecord_error_too_short: is too short | |
31 | activerecord_error_wrong_length: is the wrong length |
|
31 | activerecord_error_wrong_length: is the wrong length | |
32 | activerecord_error_taken: has already been taken |
|
32 | activerecord_error_taken: has already been taken | |
33 | activerecord_error_not_a_number: is not a number |
|
33 | activerecord_error_not_a_number: is not a number | |
34 | activerecord_error_not_a_date: is not a valid date |
|
34 | activerecord_error_not_a_date: is not a valid date | |
35 | activerecord_error_greater_than_start_date: must be greater than start date |
|
35 | activerecord_error_greater_than_start_date: must be greater than start date | |
36 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d yr |
|
39 | general_fmt_age: %d yr | |
40 | general_fmt_age_plural: %d yrs |
|
40 | general_fmt_age_plural: %d yrs | |
41 | general_fmt_date: %%m/%%d/%%Y |
|
41 | general_fmt_date: %%m/%%d/%%Y | |
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'No' |
|
45 | general_text_No: 'No' | |
46 | general_text_Yes: 'Yes' |
|
46 | general_text_Yes: 'Yes' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'yes' |
|
48 | general_text_yes: 'yes' | |
49 | general_lang_name: 'English' |
|
49 | general_lang_name: 'English' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday |
|
53 | general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday | |
54 |
|
54 | |||
55 | notice_account_updated: Account was successfully updated. |
|
55 | notice_account_updated: Account was successfully updated. | |
56 | notice_account_invalid_creditentials: Invalid user or password |
|
56 | notice_account_invalid_creditentials: Invalid user or password | |
57 | notice_account_password_updated: Password was successfully updated. |
|
57 | notice_account_password_updated: Password was successfully updated. | |
58 | notice_account_wrong_password: Wrong password |
|
58 | notice_account_wrong_password: Wrong password | |
59 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. |
|
59 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. | |
60 | notice_account_unknown_email: Unknown user. |
|
60 | notice_account_unknown_email: Unknown user. | |
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
63 | notice_account_activated: Your account has been activated. You can now log in. |
|
63 | notice_account_activated: Your account has been activated. You can now log in. | |
64 | notice_successful_create: Successful creation. |
|
64 | notice_successful_create: Successful creation. | |
65 | notice_successful_update: Successful update. |
|
65 | notice_successful_update: Successful update. | |
66 | notice_successful_delete: Successful deletion. |
|
66 | notice_successful_delete: Successful deletion. | |
67 | notice_successful_connection: Successful connection. |
|
67 | notice_successful_connection: Successful connection. | |
68 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
68 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. | |
69 | notice_locking_conflict: Data have been updated by another user. |
|
69 | notice_locking_conflict: Data have been updated by another user. | |
70 | notice_scm_error: Entry and/or revision doesn't exist in the repository. |
|
70 | notice_scm_error: Entry and/or revision doesn't exist in the repository. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Your redMine password |
|
73 | mail_subject_lost_password: Your redMine password | |
74 | mail_subject_register: redMine account activation |
|
74 | mail_subject_register: redMine account activation | |
75 |
|
75 | |||
76 | gui_validation_error: 1 error |
|
76 | gui_validation_error: 1 error | |
77 | gui_validation_error_plural: %d errors |
|
77 | gui_validation_error_plural: %d errors | |
78 |
|
78 | |||
79 | field_name: Name |
|
79 | field_name: Name | |
80 | field_description: Description |
|
80 | field_description: Description | |
81 | field_summary: Summary |
|
81 | field_summary: Summary | |
82 | field_is_required: Required |
|
82 | field_is_required: Required | |
83 | field_firstname: Firstname |
|
83 | field_firstname: Firstname | |
84 | field_lastname: Lastname |
|
84 | field_lastname: Lastname | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: File |
|
86 | field_filename: File | |
87 | field_filesize: Size |
|
87 | field_filesize: Size | |
88 | field_downloads: Downloads |
|
88 | field_downloads: Downloads | |
89 | field_author: Author |
|
89 | field_author: Author | |
90 | field_created_on: Created |
|
90 | field_created_on: Created | |
91 | field_updated_on: Updated |
|
91 | field_updated_on: Updated | |
92 | field_field_format: Format |
|
92 | field_field_format: Format | |
93 | field_is_for_all: For all projects |
|
93 | field_is_for_all: For all projects | |
94 | field_possible_values: Possible values |
|
94 | field_possible_values: Possible values | |
95 | field_regexp: Regular expression |
|
95 | field_regexp: Regular expression | |
96 | field_min_length: Minimum length |
|
96 | field_min_length: Minimum length | |
97 | field_max_length: Maximum length |
|
97 | field_max_length: Maximum length | |
98 | field_value: Value |
|
98 | field_value: Value | |
99 | field_category: Category |
|
99 | field_category: Category | |
100 | field_title: Title |
|
100 | field_title: Title | |
101 | field_project: Project |
|
101 | field_project: Project | |
102 | field_issue: Issue |
|
102 | field_issue: Issue | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Notes |
|
104 | field_notes: Notes | |
105 | field_is_closed: Issue closed |
|
105 | field_is_closed: Issue closed | |
106 | field_is_default: Default status |
|
106 | field_is_default: Default status | |
107 | field_html_color: Color |
|
107 | field_html_color: Color | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Subject |
|
109 | field_subject: Subject | |
110 | field_due_date: Due date |
|
110 | field_due_date: Due date | |
111 | field_assigned_to: Assigned to |
|
111 | field_assigned_to: Assigned to | |
112 | field_priority: Priority |
|
112 | field_priority: Priority | |
113 | field_fixed_version: Fixed version |
|
113 | field_fixed_version: Fixed version | |
114 | field_user: User |
|
114 | field_user: User | |
115 | field_role: Role |
|
115 | field_role: Role | |
116 | field_homepage: Homepage |
|
116 | field_homepage: Homepage | |
117 | field_is_public: Public |
|
117 | field_is_public: Public | |
118 | field_parent: Subproject of |
|
118 | field_parent: Subproject of | |
119 | field_is_in_chlog: Issues displayed in changelog |
|
119 | field_is_in_chlog: Issues displayed in changelog | |
120 | field_is_in_roadmap: Issues displayed in roadmap |
|
120 | field_is_in_roadmap: Issues displayed in roadmap | |
121 | field_login: Login |
|
121 | field_login: Login | |
122 | field_mail_notification: Mail notifications |
|
122 | field_mail_notification: Mail notifications | |
123 | field_admin: Administrator |
|
123 | field_admin: Administrator | |
124 | field_last_login_on: Last connection |
|
124 | field_last_login_on: Last connection | |
125 | field_language: Language |
|
125 | field_language: Language | |
126 | field_effective_date: Date |
|
126 | field_effective_date: Date | |
127 | field_password: Password |
|
127 | field_password: Password | |
128 | field_new_password: New password |
|
128 | field_new_password: New password | |
129 | field_password_confirmation: Confirmation |
|
129 | field_password_confirmation: Confirmation | |
130 | field_version: Version |
|
130 | field_version: Version | |
131 | field_type: Type |
|
131 | field_type: Type | |
132 | field_host: Host |
|
132 | field_host: Host | |
133 | field_port: Port |
|
133 | field_port: Port | |
134 | field_account: Account |
|
134 | field_account: Account | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Login attribute |
|
136 | field_attr_login: Login attribute | |
137 | field_attr_firstname: Firstname attribute |
|
137 | field_attr_firstname: Firstname attribute | |
138 | field_attr_lastname: Lastname attribute |
|
138 | field_attr_lastname: Lastname attribute | |
139 | field_attr_mail: Email attribute |
|
139 | field_attr_mail: Email attribute | |
140 | field_onthefly: On-the-fly user creation |
|
140 | field_onthefly: On-the-fly user creation | |
141 | field_start_date: Start |
|
141 | field_start_date: Start | |
142 | field_done_ratio: %% Done |
|
142 | field_done_ratio: %% Done | |
143 | field_auth_source: Authentication mode |
|
143 | field_auth_source: Authentication mode | |
144 | field_hide_mail: Hide my email address |
|
144 | field_hide_mail: Hide my email address | |
145 | field_comments: Comment |
|
145 | field_comments: Comment | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Start page |
|
147 | field_start_page: Start page | |
148 | field_subproject: Subproject |
|
148 | field_subproject: Subproject | |
149 | field_hours: Hours |
|
149 | field_hours: Hours | |
150 | field_activity: Activity |
|
150 | field_activity: Activity | |
151 | field_spent_on: Date |
|
151 | field_spent_on: Date | |
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 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Application title |
|
157 | setting_app_title: Application title | |
158 | setting_app_subtitle: Application subtitle |
|
158 | setting_app_subtitle: Application subtitle | |
159 | setting_welcome_text: Welcome text |
|
159 | setting_welcome_text: Welcome text | |
160 | setting_default_language: Default language |
|
160 | setting_default_language: Default language | |
161 | setting_login_required: Authent. required |
|
161 | setting_login_required: Authent. required | |
162 | setting_self_registration: Self-registration enabled |
|
162 | setting_self_registration: Self-registration enabled | |
163 | setting_attachment_max_size: Attachment max. size |
|
163 | setting_attachment_max_size: Attachment max. size | |
164 | setting_issues_export_limit: Issues export limit |
|
164 | setting_issues_export_limit: Issues export limit | |
165 | setting_mail_from: Emission mail address |
|
165 | setting_mail_from: Emission mail address | |
166 | setting_host_name: Host name |
|
166 | setting_host_name: Host name | |
167 | setting_text_formatting: Text formatting |
|
167 | setting_text_formatting: Text formatting | |
168 | setting_wiki_compression: Wiki history compression |
|
168 | setting_wiki_compression: Wiki history compression | |
169 | setting_feeds_limit: Feed content limit |
|
169 | setting_feeds_limit: Feed content limit | |
170 | setting_autofetch_changesets: Autofetch commits |
|
170 | setting_autofetch_changesets: Autofetch commits | |
171 | setting_sys_api_enabled: Enable WS for repository management |
|
171 | setting_sys_api_enabled: Enable WS for repository management | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: User |
|
178 | label_user: User | |
178 | label_user_plural: Users |
|
179 | label_user_plural: Users | |
179 | label_user_new: New user |
|
180 | label_user_new: New user | |
180 | label_project: Project |
|
181 | label_project: Project | |
181 | label_project_new: New project |
|
182 | label_project_new: New project | |
182 | label_project_plural: Projects |
|
183 | label_project_plural: Projects | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Latest projects |
|
185 | label_project_latest: Latest projects | |
185 | label_issue: Issue |
|
186 | label_issue: Issue | |
186 | label_issue_new: New issue |
|
187 | label_issue_new: New issue | |
187 | label_issue_plural: Issues |
|
188 | label_issue_plural: Issues | |
188 | label_issue_view_all: View all issues |
|
189 | label_issue_view_all: View all issues | |
189 | label_document: Document |
|
190 | label_document: Document | |
190 | label_document_new: New document |
|
191 | label_document_new: New document | |
191 | label_document_plural: Documents |
|
192 | label_document_plural: Documents | |
192 | label_role: Role |
|
193 | label_role: Role | |
193 | label_role_plural: Roles |
|
194 | label_role_plural: Roles | |
194 | label_role_new: New role |
|
195 | label_role_new: New role | |
195 | label_role_and_permissions: Roles and permissions |
|
196 | label_role_and_permissions: Roles and permissions | |
196 | label_member: Member |
|
197 | label_member: Member | |
197 | label_member_new: New member |
|
198 | label_member_new: New member | |
198 | label_member_plural: Members |
|
199 | label_member_plural: Members | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Trackers |
|
201 | label_tracker_plural: Trackers | |
201 | label_tracker_new: New tracker |
|
202 | label_tracker_new: New tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Issue status |
|
204 | label_issue_status: Issue status | |
204 | label_issue_status_plural: Issue statuses |
|
205 | label_issue_status_plural: Issue statuses | |
205 | label_issue_status_new: New status |
|
206 | label_issue_status_new: New status | |
206 | label_issue_category: Issue category |
|
207 | label_issue_category: Issue category | |
207 | label_issue_category_plural: Issue categories |
|
208 | label_issue_category_plural: Issue categories | |
208 | label_issue_category_new: New category |
|
209 | label_issue_category_new: New category | |
209 | label_custom_field: Custom field |
|
210 | label_custom_field: Custom field | |
210 | label_custom_field_plural: Custom fields |
|
211 | label_custom_field_plural: Custom fields | |
211 | label_custom_field_new: New custom field |
|
212 | label_custom_field_new: New custom field | |
212 | label_enumerations: Enumerations |
|
213 | label_enumerations: Enumerations | |
213 | label_enumeration_new: New value |
|
214 | label_enumeration_new: New value | |
214 | label_information: Information |
|
215 | label_information: Information | |
215 | label_information_plural: Information |
|
216 | label_information_plural: Information | |
216 | label_please_login: Please login |
|
217 | label_please_login: Please login | |
217 | label_register: Register |
|
218 | label_register: Register | |
218 | label_password_lost: Lost password |
|
219 | label_password_lost: Lost password | |
219 | label_home: Home |
|
220 | label_home: Home | |
220 | label_my_page: My page |
|
221 | label_my_page: My page | |
221 | label_my_account: My account |
|
222 | label_my_account: My account | |
222 | label_my_projects: My projects |
|
223 | label_my_projects: My projects | |
223 | label_administration: Administration |
|
224 | label_administration: Administration | |
224 | label_login: Login |
|
225 | label_login: Login | |
225 | label_logout: Logout |
|
226 | label_logout: Logout | |
226 | label_help: Help |
|
227 | label_help: Help | |
227 | label_reported_issues: Reported issues |
|
228 | label_reported_issues: Reported issues | |
228 | label_assigned_to_me_issues: Issues assigned to me |
|
229 | label_assigned_to_me_issues: Issues assigned to me | |
229 | label_last_login: Last connection |
|
230 | label_last_login: Last connection | |
230 | label_last_updates: Last updated |
|
231 | label_last_updates: Last updated | |
231 | label_last_updates_plural: %d last updated |
|
232 | label_last_updates_plural: %d last updated | |
232 | label_registered_on: Registered on |
|
233 | label_registered_on: Registered on | |
233 | label_activity: Activity |
|
234 | label_activity: Activity | |
234 | label_new: New |
|
235 | label_new: New | |
235 | label_logged_as: Logged as |
|
236 | label_logged_as: Logged as | |
236 | label_environment: Environment |
|
237 | label_environment: Environment | |
237 | label_authentication: Authentication |
|
238 | label_authentication: Authentication | |
238 | label_auth_source: Authentication mode |
|
239 | label_auth_source: Authentication mode | |
239 | label_auth_source_new: New authentication mode |
|
240 | label_auth_source_new: New authentication mode | |
240 | label_auth_source_plural: Authentication modes |
|
241 | label_auth_source_plural: Authentication modes | |
241 | label_subproject_plural: Subprojects |
|
242 | label_subproject_plural: Subprojects | |
242 | label_min_max_length: Min - Max length |
|
243 | label_min_max_length: Min - Max length | |
243 | label_list: List |
|
244 | label_list: List | |
244 | label_date: Date |
|
245 | label_date: Date | |
245 | label_integer: Integer |
|
246 | label_integer: Integer | |
246 | label_boolean: Boolean |
|
247 | label_boolean: Boolean | |
247 | label_string: Text |
|
248 | label_string: Text | |
248 | label_text: Long text |
|
249 | label_text: Long text | |
249 | label_attribute: Attribute |
|
250 | label_attribute: Attribute | |
250 | label_attribute_plural: Attributes |
|
251 | label_attribute_plural: Attributes | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Downloads |
|
253 | label_download_plural: %d Downloads | |
253 | label_no_data: No data to display |
|
254 | label_no_data: No data to display | |
254 | label_change_status: Change status |
|
255 | label_change_status: Change status | |
255 | label_history: History |
|
256 | label_history: History | |
256 | label_attachment: File |
|
257 | label_attachment: File | |
257 | label_attachment_new: New file |
|
258 | label_attachment_new: New file | |
258 | label_attachment_delete: Delete file |
|
259 | label_attachment_delete: Delete file | |
259 | label_attachment_plural: Files |
|
260 | label_attachment_plural: Files | |
260 | label_report: Report |
|
261 | label_report: Report | |
261 | label_report_plural: Reports |
|
262 | label_report_plural: Reports | |
262 | label_news: News |
|
263 | label_news: News | |
263 | label_news_new: Add news |
|
264 | label_news_new: Add news | |
264 | label_news_plural: News |
|
265 | label_news_plural: News | |
265 | label_news_latest: Latest news |
|
266 | label_news_latest: Latest news | |
266 | label_news_view_all: View all news |
|
267 | label_news_view_all: View all news | |
267 | label_change_log: Change log |
|
268 | label_change_log: Change log | |
268 | label_settings: Settings |
|
269 | label_settings: Settings | |
269 | label_overview: Overview |
|
270 | label_overview: Overview | |
270 | label_version: Version |
|
271 | label_version: Version | |
271 | label_version_new: New version |
|
272 | label_version_new: New version | |
272 | label_version_plural: Versions |
|
273 | label_version_plural: Versions | |
273 | label_confirmation: Confirmation |
|
274 | label_confirmation: Confirmation | |
274 | label_export_to: Export to |
|
275 | label_export_to: Export to | |
275 | label_read: Read... |
|
276 | label_read: Read... | |
276 | label_public_projects: Public projects |
|
277 | label_public_projects: Public projects | |
277 | label_open_issues: open |
|
278 | label_open_issues: open | |
278 | label_open_issues_plural: open |
|
279 | label_open_issues_plural: open | |
279 | label_closed_issues: closed |
|
280 | label_closed_issues: closed | |
280 | label_closed_issues_plural: closed |
|
281 | label_closed_issues_plural: closed | |
281 | label_total: Total |
|
282 | label_total: Total | |
282 | label_permissions: Permissions |
|
283 | label_permissions: Permissions | |
283 | label_current_status: Current status |
|
284 | label_current_status: Current status | |
284 | label_new_statuses_allowed: New statuses allowed |
|
285 | label_new_statuses_allowed: New statuses allowed | |
285 | label_all: all |
|
286 | label_all: all | |
286 | label_none: none |
|
287 | label_none: none | |
287 | label_next: Next |
|
288 | label_next: Next | |
288 | label_previous: Previous |
|
289 | label_previous: Previous | |
289 | label_used_by: Used by |
|
290 | label_used_by: Used by | |
290 | label_details: Details |
|
291 | label_details: Details | |
291 | label_add_note: Add a note |
|
292 | label_add_note: Add a note | |
292 | label_per_page: Per page |
|
293 | label_per_page: Per page | |
293 | label_calendar: Calendar |
|
294 | label_calendar: Calendar | |
294 | label_months_from: months from |
|
295 | label_months_from: months from | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Internal |
|
297 | label_internal: Internal | |
297 | label_last_changes: last %d changes |
|
298 | label_last_changes: last %d changes | |
298 | label_change_view_all: View all changes |
|
299 | label_change_view_all: View all changes | |
299 | label_personalize_page: Personalize this page |
|
300 | label_personalize_page: Personalize this page | |
300 | label_comment: Comment |
|
301 | label_comment: Comment | |
301 | label_comment_plural: Comments |
|
302 | label_comment_plural: Comments | |
302 | label_comment_add: Add a comment |
|
303 | label_comment_add: Add a comment | |
303 | label_comment_added: Comment added |
|
304 | label_comment_added: Comment added | |
304 | label_comment_delete: Delete comments |
|
305 | label_comment_delete: Delete comments | |
305 | label_query: Custom query |
|
306 | label_query: Custom query | |
306 | label_query_plural: Custom queries |
|
307 | label_query_plural: Custom queries | |
307 | label_query_new: New query |
|
308 | label_query_new: New query | |
308 | label_filter_add: Add filter |
|
309 | label_filter_add: Add filter | |
309 | label_filter_plural: Filters |
|
310 | label_filter_plural: Filters | |
310 | label_equals: is |
|
311 | label_equals: is | |
311 | label_not_equals: is not |
|
312 | label_not_equals: is not | |
312 | label_in_less_than: in less than |
|
313 | label_in_less_than: in less than | |
313 | label_in_more_than: in more than |
|
314 | label_in_more_than: in more than | |
314 | label_in: in |
|
315 | label_in: in | |
315 | label_today: today |
|
316 | label_today: today | |
316 | label_less_than_ago: less than days ago |
|
317 | label_less_than_ago: less than days ago | |
317 | label_more_than_ago: more than days ago |
|
318 | label_more_than_ago: more than days ago | |
318 | label_ago: days ago |
|
319 | label_ago: days ago | |
319 | label_contains: contains |
|
320 | label_contains: contains | |
320 | label_not_contains: doesn't contain |
|
321 | label_not_contains: doesn't contain | |
321 | label_day_plural: days |
|
322 | label_day_plural: days | |
322 | label_repository: Repository |
|
323 | label_repository: Repository | |
323 | label_browse: Browse |
|
324 | label_browse: Browse | |
324 | label_modification: %d change |
|
325 | label_modification: %d change | |
325 | label_modification_plural: %d changes |
|
326 | label_modification_plural: %d changes | |
326 | label_revision: Revision |
|
327 | label_revision: Revision | |
327 | label_revision_plural: Revisions |
|
328 | label_revision_plural: Revisions | |
328 | label_added: added |
|
329 | label_added: added | |
329 | label_modified: modified |
|
330 | label_modified: modified | |
330 | label_deleted: deleted |
|
331 | label_deleted: deleted | |
331 | label_latest_revision: Latest revision |
|
332 | label_latest_revision: Latest revision | |
332 | label_latest_revision_plural: Latest revisions |
|
333 | label_latest_revision_plural: Latest revisions | |
333 | label_view_revisions: View revisions |
|
334 | label_view_revisions: View revisions | |
334 | label_max_size: Maximum size |
|
335 | label_max_size: Maximum size | |
335 | label_on: 'on' |
|
336 | label_on: 'on' | |
336 | label_sort_highest: Move to top |
|
337 | label_sort_highest: Move to top | |
337 | label_sort_higher: Move up |
|
338 | label_sort_higher: Move up | |
338 | label_sort_lower: Move down |
|
339 | label_sort_lower: Move down | |
339 | label_sort_lowest: Move to bottom |
|
340 | label_sort_lowest: Move to bottom | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Due in |
|
342 | label_roadmap_due_in: Due in | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: No issues for this version |
|
344 | label_roadmap_no_issues: No issues for this version | |
344 | label_search: Search |
|
345 | label_search: Search | |
345 | label_result: %d result |
|
346 | label_result: %d result | |
346 | label_result_plural: %d results |
|
347 | label_result_plural: %d results | |
347 | label_all_words: All words |
|
348 | label_all_words: All words | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki edit |
|
350 | label_wiki_edit: Wiki edit | |
350 | label_wiki_edit_plural: Wiki edits |
|
351 | label_wiki_edit_plural: Wiki edits | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Current version |
|
355 | label_current_version: Current version | |
355 | label_preview: Preview |
|
356 | label_preview: Preview | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Details of all changes |
|
358 | label_changes_details: Details of all changes | |
358 | label_issue_tracking: Issue tracking |
|
359 | label_issue_tracking: Issue tracking | |
359 | label_spent_time: Spent time |
|
360 | label_spent_time: Spent time | |
360 | label_f_hour: %.2f hour |
|
361 | label_f_hour: %.2f hour | |
361 | label_f_hour_plural: %.2f hours |
|
362 | label_f_hour_plural: %.2f hours | |
362 | label_time_tracking: Time tracking |
|
363 | label_time_tracking: Time tracking | |
363 | label_change_plural: Changes |
|
364 | label_change_plural: Changes | |
364 | label_statistics: Statistics |
|
365 | label_statistics: Statistics | |
365 | label_commits_per_month: Commits per month |
|
366 | label_commits_per_month: Commits per month | |
366 | label_commits_per_author: Commits per author |
|
367 | label_commits_per_author: Commits per author | |
367 | label_view_diff: View differences |
|
368 | label_view_diff: View differences | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: side by side |
|
370 | label_diff_side_by_side: side by side | |
370 | label_options: Options |
|
371 | label_options: Options | |
371 | label_copy_workflow_from: Copy workflow from |
|
372 | label_copy_workflow_from: Copy workflow from | |
372 | label_permissions_report: Permissions report |
|
373 | label_permissions_report: Permissions report | |
373 | label_watched_issues: Watched issues |
|
374 | label_watched_issues: Watched issues | |
374 | label_related_issues: Related issues |
|
375 | label_related_issues: Related issues | |
375 | label_applied_status: Applied status |
|
376 | label_applied_status: Applied status | |
376 | label_loading: Loading... |
|
377 | label_loading: Loading... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Login |
|
411 | button_login: Login | |
411 | button_submit: Submit |
|
412 | button_submit: Submit | |
412 | button_save: Save |
|
413 | button_save: Save | |
413 | button_check_all: Check all |
|
414 | button_check_all: Check all | |
414 | button_uncheck_all: Uncheck all |
|
415 | button_uncheck_all: Uncheck all | |
415 | button_delete: Delete |
|
416 | button_delete: Delete | |
416 | button_create: Create |
|
417 | button_create: Create | |
417 | button_test: Test |
|
418 | button_test: Test | |
418 | button_edit: Edit |
|
419 | button_edit: Edit | |
419 | button_add: Add |
|
420 | button_add: Add | |
420 | button_change: Change |
|
421 | button_change: Change | |
421 | button_apply: Apply |
|
422 | button_apply: Apply | |
422 | button_clear: Clear |
|
423 | button_clear: Clear | |
423 | button_lock: Lock |
|
424 | button_lock: Lock | |
424 | button_unlock: Unlock |
|
425 | button_unlock: Unlock | |
425 | button_download: Download |
|
426 | button_download: Download | |
426 | button_list: List |
|
427 | button_list: List | |
427 | button_view: View |
|
428 | button_view: View | |
428 | button_move: Move |
|
429 | button_move: Move | |
429 | button_back: Back |
|
430 | button_back: Back | |
430 | button_cancel: Cancel |
|
431 | button_cancel: Cancel | |
431 | button_activate: Activate |
|
432 | button_activate: Activate | |
432 | button_sort: Sort |
|
433 | button_sort: Sort | |
433 | button_log_time: Log time |
|
434 | button_log_time: Log time | |
434 | button_rollback: Rollback to this version |
|
435 | button_rollback: Rollback to this version | |
435 | button_watch: Watch |
|
436 | button_watch: Watch | |
436 | button_unwatch: Unwatch |
|
437 | button_unwatch: Unwatch | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: active |
|
442 | status_active: active | |
442 | status_registered: registered |
|
443 | status_registered: registered | |
443 | status_locked: locked |
|
444 | status_locked: locked | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Select actions for which mail notifications should be sent. |
|
446 | text_select_mail_notifications: Select actions for which mail notifications should be sent. | |
446 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 means no restriction |
|
448 | text_min_max_length_info: 0 means no restriction | |
448 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? |
|
449 | text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ? | |
449 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
450 | text_workflow_edit: Select a role and a tracker to edit the workflow | |
450 | text_are_you_sure: Are you sure ? |
|
451 | text_are_you_sure: Are you sure ? | |
451 | text_journal_changed: changed from %s to %s |
|
452 | text_journal_changed: changed from %s to %s | |
452 | text_journal_set_to: set to %s |
|
453 | text_journal_set_to: set to %s | |
453 | text_journal_deleted: deleted |
|
454 | text_journal_deleted: deleted | |
454 | text_tip_task_begin_day: task beginning this day |
|
455 | text_tip_task_begin_day: task beginning this day | |
455 | text_tip_task_end_day: task ending this day |
|
456 | text_tip_task_end_day: task ending this day | |
456 | text_tip_task_begin_end_day: task beginning and ending this day |
|
457 | text_tip_task_begin_end_day: task beginning and ending this day | |
457 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
458 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
458 | text_caracters_maximum: %d characters maximum. |
|
459 | text_caracters_maximum: %d characters maximum. | |
459 | text_length_between: Length between %d and %d characters. |
|
460 | text_length_between: Length between %d and %d characters. | |
460 | text_tracker_no_workflow: No workflow defined for this tracker |
|
461 | text_tracker_no_workflow: No workflow defined for this tracker | |
461 | text_unallowed_characters: Unallowed characters |
|
462 | text_unallowed_characters: Unallowed characters | |
462 | text_comma_separated: Multiple values allowed (comma separated). |
|
463 | text_comma_separated: Multiple values allowed (comma separated). | |
463 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
464 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
464 |
|
465 | |||
465 | default_role_manager: Manager |
|
466 | default_role_manager: Manager | |
466 | default_role_developper: Developer |
|
467 | default_role_developper: Developer | |
467 | default_role_reporter: Reporter |
|
468 | default_role_reporter: Reporter | |
468 | default_tracker_bug: Bug |
|
469 | default_tracker_bug: Bug | |
469 | default_tracker_feature: Feature |
|
470 | default_tracker_feature: Feature | |
470 | default_tracker_support: Support |
|
471 | default_tracker_support: Support | |
471 | default_issue_status_new: New |
|
472 | default_issue_status_new: New | |
472 | default_issue_status_assigned: Assigned |
|
473 | default_issue_status_assigned: Assigned | |
473 | default_issue_status_resolved: Resolved |
|
474 | default_issue_status_resolved: Resolved | |
474 | default_issue_status_feedback: Feedback |
|
475 | default_issue_status_feedback: Feedback | |
475 | default_issue_status_closed: Closed |
|
476 | default_issue_status_closed: Closed | |
476 | default_issue_status_rejected: Rejected |
|
477 | default_issue_status_rejected: Rejected | |
477 | default_doc_category_user: User documentation |
|
478 | default_doc_category_user: User documentation | |
478 | default_doc_category_tech: Technical documentation |
|
479 | default_doc_category_tech: Technical documentation | |
479 | default_priority_low: Low |
|
480 | default_priority_low: Low | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: High |
|
482 | default_priority_high: High | |
482 | default_priority_urgent: Urgent |
|
483 | default_priority_urgent: Urgent | |
483 | default_priority_immediate: Immediate |
|
484 | default_priority_immediate: Immediate | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Development |
|
486 | default_activity_development: Development | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Issue priorities |
|
488 | enumeration_issue_priorities: Issue priorities | |
488 | enumeration_doc_categories: Document categories |
|
489 | enumeration_doc_categories: Document categories | |
489 | enumeration_activities: Activities (time tracking) |
|
490 | enumeration_activities: Activities (time tracking) |
@@ -1,489 +1,490 | |||||
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 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d año |
|
39 | general_fmt_age: %d año | |
40 | general_fmt_age_plural: %d años |
|
40 | general_fmt_age_plural: %d años | |
41 | general_fmt_date: %%d/%%m/%%Y |
|
41 | general_fmt_date: %%d/%%m/%%Y | |
42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M | |
43 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
43 | general_fmt_datetime_short: %%d/%%m %%H:%%M | |
44 | general_fmt_time: %%H:%%M |
|
44 | general_fmt_time: %%H:%%M | |
45 | general_text_No: 'No' |
|
45 | general_text_No: 'No' | |
46 | general_text_Yes: 'Sí' |
|
46 | general_text_Yes: 'Sí' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'sí' |
|
48 | general_text_yes: 'sí' | |
49 | general_lang_name: 'Español' |
|
49 | general_lang_name: 'Español' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo |
|
53 | general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo | |
54 |
|
54 | |||
55 | notice_account_updated: Account was successfully updated. |
|
55 | notice_account_updated: Account was successfully updated. | |
56 | notice_account_invalid_creditentials: Invalid user or password |
|
56 | notice_account_invalid_creditentials: Invalid user or password | |
57 | notice_account_password_updated: Password was successfully updated. |
|
57 | notice_account_password_updated: Password was successfully updated. | |
58 | notice_account_wrong_password: Wrong password |
|
58 | notice_account_wrong_password: Wrong password | |
59 | notice_account_register_done: Account was successfully created. |
|
59 | notice_account_register_done: Account was successfully created. | |
60 | notice_account_unknown_email: Unknown user. |
|
60 | notice_account_unknown_email: Unknown user. | |
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
61 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. | |
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
62 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. | |
63 | notice_account_activated: Your account has been activated. You can now log in. |
|
63 | notice_account_activated: Your account has been activated. You can now log in. | |
64 | notice_successful_create: Successful creation. |
|
64 | notice_successful_create: Successful creation. | |
65 | notice_successful_update: Successful update. |
|
65 | notice_successful_update: Successful update. | |
66 | notice_successful_delete: Successful deletion. |
|
66 | notice_successful_delete: Successful deletion. | |
67 | notice_successful_connection: Successful connection. |
|
67 | notice_successful_connection: Successful connection. | |
68 | notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado. |
|
68 | notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado. | |
69 | notice_locking_conflict: Data have been updated by another user. |
|
69 | notice_locking_conflict: Data have been updated by another user. | |
70 | notice_scm_error: La entrada y/o la revisión no existe en el depósito. |
|
70 | notice_scm_error: La entrada y/o la revisión no existe en el depósito. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Tu contraseña del redMine |
|
73 | mail_subject_lost_password: Tu contraseña del redMine | |
74 | mail_subject_register: Activación de la cuenta del redMine |
|
74 | mail_subject_register: Activación de la cuenta del redMine | |
75 |
|
75 | |||
76 | gui_validation_error: 1 error |
|
76 | gui_validation_error: 1 error | |
77 | gui_validation_error_plural: %d errores |
|
77 | gui_validation_error_plural: %d errores | |
78 |
|
78 | |||
79 | field_name: Nombre |
|
79 | field_name: Nombre | |
80 | field_description: Descripción |
|
80 | field_description: Descripción | |
81 | field_summary: Resumen |
|
81 | field_summary: Resumen | |
82 | field_is_required: Obligatorio |
|
82 | field_is_required: Obligatorio | |
83 | field_firstname: Nombre |
|
83 | field_firstname: Nombre | |
84 | field_lastname: Apellido |
|
84 | field_lastname: Apellido | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Fichero |
|
86 | field_filename: Fichero | |
87 | field_filesize: Tamaño |
|
87 | field_filesize: Tamaño | |
88 | field_downloads: Telecargas |
|
88 | field_downloads: Telecargas | |
89 | field_author: Autor |
|
89 | field_author: Autor | |
90 | field_created_on: Creado |
|
90 | field_created_on: Creado | |
91 | field_updated_on: Actualizado |
|
91 | field_updated_on: Actualizado | |
92 | field_field_format: Formato |
|
92 | field_field_format: Formato | |
93 | field_is_for_all: Para todos los proyectos |
|
93 | field_is_for_all: Para todos los proyectos | |
94 | field_possible_values: Valores posibles |
|
94 | field_possible_values: Valores posibles | |
95 | field_regexp: Expresión regular |
|
95 | field_regexp: Expresión regular | |
96 | field_min_length: Longitud mínima |
|
96 | field_min_length: Longitud mínima | |
97 | field_max_length: Longitud máxima |
|
97 | field_max_length: Longitud máxima | |
98 | field_value: Valor |
|
98 | field_value: Valor | |
99 | field_category: Categoría |
|
99 | field_category: Categoría | |
100 | field_title: Título |
|
100 | field_title: Título | |
101 | field_project: Proyecto |
|
101 | field_project: Proyecto | |
102 | field_issue: Petición |
|
102 | field_issue: Petición | |
103 | field_status: Estatuto |
|
103 | field_status: Estatuto | |
104 | field_notes: Notas |
|
104 | field_notes: Notas | |
105 | field_is_closed: Petición resuelta |
|
105 | field_is_closed: Petición resuelta | |
106 | field_is_default: Estatuto por defecto |
|
106 | field_is_default: Estatuto por defecto | |
107 | field_html_color: Color |
|
107 | field_html_color: Color | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Tema |
|
109 | field_subject: Tema | |
110 | field_due_date: Fecha debida |
|
110 | field_due_date: Fecha debida | |
111 | field_assigned_to: Asignado a |
|
111 | field_assigned_to: Asignado a | |
112 | field_priority: Prioridad |
|
112 | field_priority: Prioridad | |
113 | field_fixed_version: Versión corregida |
|
113 | field_fixed_version: Versión corregida | |
114 | field_user: Usuario |
|
114 | field_user: Usuario | |
115 | field_role: Papel |
|
115 | field_role: Papel | |
116 | field_homepage: Sitio web |
|
116 | field_homepage: Sitio web | |
117 | field_is_public: Público |
|
117 | field_is_public: Público | |
118 | field_parent: Proyecto secundario de |
|
118 | field_parent: Proyecto secundario de | |
119 | field_is_in_chlog: Consultar las peticiones en el histórico |
|
119 | field_is_in_chlog: Consultar las peticiones en el histórico | |
120 | field_is_in_roadmap: Consultar las peticiones en el roadmap |
|
120 | field_is_in_roadmap: Consultar las peticiones en el roadmap | |
121 | field_login: Identificador |
|
121 | field_login: Identificador | |
122 | field_mail_notification: Notificación por mail |
|
122 | field_mail_notification: Notificación por mail | |
123 | field_admin: Administrador |
|
123 | field_admin: Administrador | |
124 | field_last_login_on: Última conexión |
|
124 | field_last_login_on: Última conexión | |
125 | field_language: Lengua |
|
125 | field_language: Lengua | |
126 | field_effective_date: Fecha |
|
126 | field_effective_date: Fecha | |
127 | field_password: Contraseña |
|
127 | field_password: Contraseña | |
128 | field_new_password: Nueva contraseña |
|
128 | field_new_password: Nueva contraseña | |
129 | field_password_confirmation: Confirmación |
|
129 | field_password_confirmation: Confirmación | |
130 | field_version: Versión |
|
130 | field_version: Versión | |
131 | field_type: Tipo |
|
131 | field_type: Tipo | |
132 | field_host: Anfitrión |
|
132 | field_host: Anfitrión | |
133 | field_port: Puerto |
|
133 | field_port: Puerto | |
134 | field_account: Cuenta |
|
134 | field_account: Cuenta | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Cualidad del identificador |
|
136 | field_attr_login: Cualidad del identificador | |
137 | field_attr_firstname: Cualidad del nombre |
|
137 | field_attr_firstname: Cualidad del nombre | |
138 | field_attr_lastname: Cualidad del apellido |
|
138 | field_attr_lastname: Cualidad del apellido | |
139 | field_attr_mail: Cualidad del Email |
|
139 | field_attr_mail: Cualidad del Email | |
140 | field_onthefly: Creación del usuario On-the-fly |
|
140 | field_onthefly: Creación del usuario On-the-fly | |
141 | field_start_date: Comienzo |
|
141 | field_start_date: Comienzo | |
142 | field_done_ratio: %% Realizado |
|
142 | field_done_ratio: %% Realizado | |
143 | field_auth_source: Modo de la autentificación |
|
143 | field_auth_source: Modo de la autentificación | |
144 | field_hide_mail: Ocultar mi email address |
|
144 | field_hide_mail: Ocultar mi email address | |
145 | field_comments: Comentario |
|
145 | field_comments: Comentario | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Página principal |
|
147 | field_start_page: Página principal | |
148 | field_subproject: Proyecto secundario |
|
148 | field_subproject: Proyecto secundario | |
149 | field_hours: Hours |
|
149 | field_hours: Hours | |
150 | field_activity: Activity |
|
150 | field_activity: Activity | |
151 | field_spent_on: Fecha |
|
151 | field_spent_on: Fecha | |
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 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Título del aplicación |
|
157 | setting_app_title: Título del aplicación | |
158 | setting_app_subtitle: Subtítulo del aplicación |
|
158 | setting_app_subtitle: Subtítulo del aplicación | |
159 | setting_welcome_text: Texto acogida |
|
159 | setting_welcome_text: Texto acogida | |
160 | setting_default_language: Lengua del defecto |
|
160 | setting_default_language: Lengua del defecto | |
161 | setting_login_required: Autentif. requerida |
|
161 | setting_login_required: Autentif. requerida | |
162 | setting_self_registration: Registro permitido |
|
162 | setting_self_registration: Registro permitido | |
163 | setting_attachment_max_size: Tamaño máximo del fichero |
|
163 | setting_attachment_max_size: Tamaño máximo del fichero | |
164 | setting_issues_export_limit: Issues export limit |
|
164 | setting_issues_export_limit: Issues export limit | |
165 | setting_mail_from: Email de la emisión |
|
165 | setting_mail_from: Email de la emisión | |
166 | setting_host_name: Nombre de anfitrión |
|
166 | setting_host_name: Nombre de anfitrión | |
167 | setting_text_formatting: Formato de texto |
|
167 | setting_text_formatting: Formato de texto | |
168 | setting_wiki_compression: Compresión de la historia de Wiki |
|
168 | setting_wiki_compression: Compresión de la historia de Wiki | |
169 | setting_feeds_limit: Feed content limit |
|
169 | setting_feeds_limit: Feed content limit | |
170 | setting_autofetch_changesets: Autofetch commits |
|
170 | setting_autofetch_changesets: Autofetch commits | |
171 | setting_sys_api_enabled: Enable WS for repository management |
|
171 | setting_sys_api_enabled: Enable WS for repository management | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Usuario |
|
178 | label_user: Usuario | |
178 | label_user_plural: Usuarios |
|
179 | label_user_plural: Usuarios | |
179 | label_user_new: Nuevo usuario |
|
180 | label_user_new: Nuevo usuario | |
180 | label_project: Proyecto |
|
181 | label_project: Proyecto | |
181 | label_project_new: Nuevo proyecto |
|
182 | label_project_new: Nuevo proyecto | |
182 | label_project_plural: Proyectos |
|
183 | label_project_plural: Proyectos | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Los proyectos más últimos |
|
185 | label_project_latest: Los proyectos más últimos | |
185 | label_issue: Petición |
|
186 | label_issue: Petición | |
186 | label_issue_new: Nueva petición |
|
187 | label_issue_new: Nueva petición | |
187 | label_issue_plural: Peticiones |
|
188 | label_issue_plural: Peticiones | |
188 | label_issue_view_all: Ver todas las peticiones |
|
189 | label_issue_view_all: Ver todas las peticiones | |
189 | label_document: Documento |
|
190 | label_document: Documento | |
190 | label_document_new: Nuevo documento |
|
191 | label_document_new: Nuevo documento | |
191 | label_document_plural: Documentos |
|
192 | label_document_plural: Documentos | |
192 | label_role: Papel |
|
193 | label_role: Papel | |
193 | label_role_plural: Papeles |
|
194 | label_role_plural: Papeles | |
194 | label_role_new: Nuevo papel |
|
195 | label_role_new: Nuevo papel | |
195 | label_role_and_permissions: Papeles y permisos |
|
196 | label_role_and_permissions: Papeles y permisos | |
196 | label_member: Miembro |
|
197 | label_member: Miembro | |
197 | label_member_new: Nuevo miembro |
|
198 | label_member_new: Nuevo miembro | |
198 | label_member_plural: Miembros |
|
199 | label_member_plural: Miembros | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Trackers |
|
201 | label_tracker_plural: Trackers | |
201 | label_tracker_new: Nuevo tracker |
|
202 | label_tracker_new: Nuevo tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Estatuto de petición |
|
204 | label_issue_status: Estatuto de petición | |
204 | label_issue_status_plural: Estatutos de las peticiones |
|
205 | label_issue_status_plural: Estatutos de las peticiones | |
205 | label_issue_status_new: Nuevo estatuto |
|
206 | label_issue_status_new: Nuevo estatuto | |
206 | label_issue_category: Categoría de las peticiones |
|
207 | label_issue_category: Categoría de las peticiones | |
207 | label_issue_category_plural: Categorías de las peticiones |
|
208 | label_issue_category_plural: Categorías de las peticiones | |
208 | label_issue_category_new: Nueva categoría |
|
209 | label_issue_category_new: Nueva categoría | |
209 | label_custom_field: Campo personalizado |
|
210 | label_custom_field: Campo personalizado | |
210 | label_custom_field_plural: Campos personalizados |
|
211 | label_custom_field_plural: Campos personalizados | |
211 | label_custom_field_new: Nuevo campo personalizado |
|
212 | label_custom_field_new: Nuevo campo personalizado | |
212 | label_enumerations: Listas de valores |
|
213 | label_enumerations: Listas de valores | |
213 | label_enumeration_new: Nuevo valor |
|
214 | label_enumeration_new: Nuevo valor | |
214 | label_information: Informacion |
|
215 | label_information: Informacion | |
215 | label_information_plural: Informaciones |
|
216 | label_information_plural: Informaciones | |
216 | label_please_login: Conexión |
|
217 | label_please_login: Conexión | |
217 | label_register: Registrar |
|
218 | label_register: Registrar | |
218 | label_password_lost: ¿Olvidaste la contraseña? |
|
219 | label_password_lost: ¿Olvidaste la contraseña? | |
219 | label_home: Acogida |
|
220 | label_home: Acogida | |
220 | label_my_page: Mi página |
|
221 | label_my_page: Mi página | |
221 | label_my_account: Mi cuenta |
|
222 | label_my_account: Mi cuenta | |
222 | label_my_projects: Mis proyectos |
|
223 | label_my_projects: Mis proyectos | |
223 | label_administration: Administración |
|
224 | label_administration: Administración | |
224 | label_login: Conexión |
|
225 | label_login: Conexión | |
225 | label_logout: Desconexión |
|
226 | label_logout: Desconexión | |
226 | label_help: Ayuda |
|
227 | label_help: Ayuda | |
227 | label_reported_issues: Peticiones registradas |
|
228 | label_reported_issues: Peticiones registradas | |
228 | label_assigned_to_me_issues: Peticiones que me están asignadas |
|
229 | label_assigned_to_me_issues: Peticiones que me están asignadas | |
229 | label_last_login: Última conexión |
|
230 | label_last_login: Última conexión | |
230 | label_last_updates: Actualizado |
|
231 | label_last_updates: Actualizado | |
231 | label_last_updates_plural: %d Actualizados |
|
232 | label_last_updates_plural: %d Actualizados | |
232 | label_registered_on: Inscrito el |
|
233 | label_registered_on: Inscrito el | |
233 | label_activity: Actividad |
|
234 | label_activity: Actividad | |
234 | label_new: Nuevo |
|
235 | label_new: Nuevo | |
235 | label_logged_as: Conectado como |
|
236 | label_logged_as: Conectado como | |
236 | label_environment: Environment |
|
237 | label_environment: Environment | |
237 | label_authentication: Autentificación |
|
238 | label_authentication: Autentificación | |
238 | label_auth_source: Modo de la autentificación |
|
239 | label_auth_source: Modo de la autentificación | |
239 | label_auth_source_new: Nuevo modo de la autentificación |
|
240 | label_auth_source_new: Nuevo modo de la autentificación | |
240 | label_auth_source_plural: Modos de la autentificación |
|
241 | label_auth_source_plural: Modos de la autentificación | |
241 | label_subproject_plural: Proyectos secundarios |
|
242 | label_subproject_plural: Proyectos secundarios | |
242 | label_min_max_length: Longitud mín - máx |
|
243 | label_min_max_length: Longitud mín - máx | |
243 | label_list: Lista |
|
244 | label_list: Lista | |
244 | label_date: Fecha |
|
245 | label_date: Fecha | |
245 | label_integer: Número |
|
246 | label_integer: Número | |
246 | label_boolean: Boleano |
|
247 | label_boolean: Boleano | |
247 | label_string: Texto |
|
248 | label_string: Texto | |
248 | label_text: Texto largo |
|
249 | label_text: Texto largo | |
249 | label_attribute: Cualidad |
|
250 | label_attribute: Cualidad | |
250 | label_attribute_plural: Cualidades |
|
251 | label_attribute_plural: Cualidades | |
251 | label_download: %d Telecarga |
|
252 | label_download: %d Telecarga | |
252 | label_download_plural: %d Telecargas |
|
253 | label_download_plural: %d Telecargas | |
253 | label_no_data: Ningunos datos a exhibir |
|
254 | label_no_data: Ningunos datos a exhibir | |
254 | label_change_status: Cambiar el estatuto |
|
255 | label_change_status: Cambiar el estatuto | |
255 | label_history: Histórico |
|
256 | label_history: Histórico | |
256 | label_attachment: Fichero |
|
257 | label_attachment: Fichero | |
257 | label_attachment_new: Nuevo fichero |
|
258 | label_attachment_new: Nuevo fichero | |
258 | label_attachment_delete: Suprimir el fichero |
|
259 | label_attachment_delete: Suprimir el fichero | |
259 | label_attachment_plural: Ficheros |
|
260 | label_attachment_plural: Ficheros | |
260 | label_report: Informe |
|
261 | label_report: Informe | |
261 | label_report_plural: Informes |
|
262 | label_report_plural: Informes | |
262 | label_news: Noticia |
|
263 | label_news: Noticia | |
263 | label_news_new: Nueva noticia |
|
264 | label_news_new: Nueva noticia | |
264 | label_news_plural: Noticias |
|
265 | label_news_plural: Noticias | |
265 | label_news_latest: Últimas noticias |
|
266 | label_news_latest: Últimas noticias | |
266 | label_news_view_all: Ver todas las noticias |
|
267 | label_news_view_all: Ver todas las noticias | |
267 | label_change_log: Cambios |
|
268 | label_change_log: Cambios | |
268 | label_settings: Configuración |
|
269 | label_settings: Configuración | |
269 | label_overview: Vistazo |
|
270 | label_overview: Vistazo | |
270 | label_version: Versión |
|
271 | label_version: Versión | |
271 | label_version_new: Nueva versión |
|
272 | label_version_new: Nueva versión | |
272 | label_version_plural: Versiónes |
|
273 | label_version_plural: Versiónes | |
273 | label_confirmation: Confirmación |
|
274 | label_confirmation: Confirmación | |
274 | label_export_to: Exportar a |
|
275 | label_export_to: Exportar a | |
275 | label_read: Leer... |
|
276 | label_read: Leer... | |
276 | label_public_projects: Proyectos publicos |
|
277 | label_public_projects: Proyectos publicos | |
277 | label_open_issues: abierta |
|
278 | label_open_issues: abierta | |
278 | label_open_issues_plural: abiertas |
|
279 | label_open_issues_plural: abiertas | |
279 | label_closed_issues: cerrada |
|
280 | label_closed_issues: cerrada | |
280 | label_closed_issues_plural: cerradas |
|
281 | label_closed_issues_plural: cerradas | |
281 | label_total: Total |
|
282 | label_total: Total | |
282 | label_permissions: Permisos |
|
283 | label_permissions: Permisos | |
283 | label_current_status: Estado actual |
|
284 | label_current_status: Estado actual | |
284 | label_new_statuses_allowed: Nuevos estatutos autorizados |
|
285 | label_new_statuses_allowed: Nuevos estatutos autorizados | |
285 | label_all: todos |
|
286 | label_all: todos | |
286 | label_none: ninguno |
|
287 | label_none: ninguno | |
287 | label_next: Próximo |
|
288 | label_next: Próximo | |
288 | label_previous: Precedente |
|
289 | label_previous: Precedente | |
289 | label_used_by: Utilizado por |
|
290 | label_used_by: Utilizado por | |
290 | label_details: Detalles |
|
291 | label_details: Detalles | |
291 | label_add_note: Agregar una nota |
|
292 | label_add_note: Agregar una nota | |
292 | label_per_page: Por la página |
|
293 | label_per_page: Por la página | |
293 | label_calendar: Calendario |
|
294 | label_calendar: Calendario | |
294 | label_months_from: meses de |
|
295 | label_months_from: meses de | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Interno |
|
297 | label_internal: Interno | |
297 | label_last_changes: %d cambios del último |
|
298 | label_last_changes: %d cambios del último | |
298 | label_change_view_all: Ver todos los cambios |
|
299 | label_change_view_all: Ver todos los cambios | |
299 | label_personalize_page: Personalizar esta página |
|
300 | label_personalize_page: Personalizar esta página | |
300 | label_comment: Comentario |
|
301 | label_comment: Comentario | |
301 | label_comment_plural: Comentarios |
|
302 | label_comment_plural: Comentarios | |
302 | label_comment_add: Agregar un comentario |
|
303 | label_comment_add: Agregar un comentario | |
303 | label_comment_added: Comentario agregó |
|
304 | label_comment_added: Comentario agregó | |
304 | label_comment_delete: Suprimir comentarios |
|
305 | label_comment_delete: Suprimir comentarios | |
305 | label_query: Pregunta personalizada |
|
306 | label_query: Pregunta personalizada | |
306 | label_query_plural: Preguntas personalizadas |
|
307 | label_query_plural: Preguntas personalizadas | |
307 | label_query_new: Nueva preguntas |
|
308 | label_query_new: Nueva preguntas | |
308 | label_filter_add: Agregar el filtro |
|
309 | label_filter_add: Agregar el filtro | |
309 | label_filter_plural: Filtros |
|
310 | label_filter_plural: Filtros | |
310 | label_equals: igual |
|
311 | label_equals: igual | |
311 | label_not_equals: no igual |
|
312 | label_not_equals: no igual | |
312 | label_in_less_than: en menos que |
|
313 | label_in_less_than: en menos que | |
313 | label_in_more_than: en más que |
|
314 | label_in_more_than: en más que | |
314 | label_in: en |
|
315 | label_in: en | |
315 | label_today: hoy |
|
316 | label_today: hoy | |
316 | label_less_than_ago: hace menos de |
|
317 | label_less_than_ago: hace menos de | |
317 | label_more_than_ago: hace más de |
|
318 | label_more_than_ago: hace más de | |
318 | label_ago: hace |
|
319 | label_ago: hace | |
319 | label_contains: contiene |
|
320 | label_contains: contiene | |
320 | label_not_contains: no contiene |
|
321 | label_not_contains: no contiene | |
321 | label_day_plural: días |
|
322 | label_day_plural: días | |
322 | label_repository: Depósito |
|
323 | label_repository: Depósito | |
323 | label_browse: Hojear |
|
324 | label_browse: Hojear | |
324 | label_modification: %d modificación |
|
325 | label_modification: %d modificación | |
325 | label_modification_plural: %d modificaciones |
|
326 | label_modification_plural: %d modificaciones | |
326 | label_revision: Revisión |
|
327 | label_revision: Revisión | |
327 | label_revision_plural: Revisiones |
|
328 | label_revision_plural: Revisiones | |
328 | label_added: agregado |
|
329 | label_added: agregado | |
329 | label_modified: modificado |
|
330 | label_modified: modificado | |
330 | label_deleted: suprimido |
|
331 | label_deleted: suprimido | |
331 | label_latest_revision: La revisión más última |
|
332 | label_latest_revision: La revisión más última | |
332 | label_latest_revision_plural: Latest revisions |
|
333 | label_latest_revision_plural: Latest revisions | |
333 | label_view_revisions: Ver las revisiones |
|
334 | label_view_revisions: Ver las revisiones | |
334 | label_max_size: Tamaño máximo |
|
335 | label_max_size: Tamaño máximo | |
335 | label_on: en |
|
336 | label_on: en | |
336 | label_sort_highest: Primero |
|
337 | label_sort_highest: Primero | |
337 | label_sort_higher: Subir |
|
338 | label_sort_higher: Subir | |
338 | label_sort_lower: Bajar |
|
339 | label_sort_lower: Bajar | |
339 | label_sort_lowest: Último |
|
340 | label_sort_lowest: Último | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Due in |
|
342 | label_roadmap_due_in: Due in | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: No issues for this version |
|
344 | label_roadmap_no_issues: No issues for this version | |
344 | label_search: Búsqueda |
|
345 | label_search: Búsqueda | |
345 | label_result: %d resultado |
|
346 | label_result: %d resultado | |
346 | label_result_plural: %d resultados |
|
347 | label_result_plural: %d resultados | |
347 | label_all_words: Todas las palabras |
|
348 | label_all_words: Todas las palabras | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki edit |
|
350 | label_wiki_edit: Wiki edit | |
350 | label_wiki_edit_plural: Wiki edits |
|
351 | label_wiki_edit_plural: Wiki edits | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Índice |
|
354 | label_page_index: Índice | |
354 | label_current_version: Versión actual |
|
355 | label_current_version: Versión actual | |
355 | label_preview: Previo |
|
356 | label_preview: Previo | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Detalles de todos los cambios |
|
358 | label_changes_details: Detalles de todos los cambios | |
358 | label_issue_tracking: Issue tracking |
|
359 | label_issue_tracking: Issue tracking | |
359 | label_spent_time: Spent time |
|
360 | label_spent_time: Spent time | |
360 | label_f_hour: %.2f hour |
|
361 | label_f_hour: %.2f hour | |
361 | label_f_hour_plural: %.2f hours |
|
362 | label_f_hour_plural: %.2f hours | |
362 | label_time_tracking: Time tracking |
|
363 | label_time_tracking: Time tracking | |
363 | label_change_plural: Changes |
|
364 | label_change_plural: Changes | |
364 | label_statistics: Statistics |
|
365 | label_statistics: Statistics | |
365 | label_commits_per_month: Commits per month |
|
366 | label_commits_per_month: Commits per month | |
366 | label_commits_per_author: Commits per author |
|
367 | label_commits_per_author: Commits per author | |
367 | label_view_diff: View differences |
|
368 | label_view_diff: View differences | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: side by side |
|
370 | label_diff_side_by_side: side by side | |
370 | label_options: Options |
|
371 | label_options: Options | |
371 | label_copy_workflow_from: Copy workflow from |
|
372 | label_copy_workflow_from: Copy workflow from | |
372 | label_permissions_report: Permissions report |
|
373 | label_permissions_report: Permissions report | |
373 | label_watched_issues: Watched issues |
|
374 | label_watched_issues: Watched issues | |
374 | label_related_issues: Related issues |
|
375 | label_related_issues: Related issues | |
375 | label_applied_status: Applied status |
|
376 | label_applied_status: Applied status | |
376 | label_loading: Loading... |
|
377 | label_loading: Loading... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Conexión |
|
411 | button_login: Conexión | |
411 | button_submit: Someter |
|
412 | button_submit: Someter | |
412 | button_save: Validar |
|
413 | button_save: Validar | |
413 | button_check_all: Seleccionar todo |
|
414 | button_check_all: Seleccionar todo | |
414 | button_uncheck_all: No seleccionar nada |
|
415 | button_uncheck_all: No seleccionar nada | |
415 | button_delete: Suprimir |
|
416 | button_delete: Suprimir | |
416 | button_create: Crear |
|
417 | button_create: Crear | |
417 | button_test: Testar |
|
418 | button_test: Testar | |
418 | button_edit: Modificar |
|
419 | button_edit: Modificar | |
419 | button_add: Añadir |
|
420 | button_add: Añadir | |
420 | button_change: Cambiar |
|
421 | button_change: Cambiar | |
421 | button_apply: Aplicar |
|
422 | button_apply: Aplicar | |
422 | button_clear: Anular |
|
423 | button_clear: Anular | |
423 | button_lock: Bloquear |
|
424 | button_lock: Bloquear | |
424 | button_unlock: Desbloquear |
|
425 | button_unlock: Desbloquear | |
425 | button_download: Telecargar |
|
426 | button_download: Telecargar | |
426 | button_list: Listar |
|
427 | button_list: Listar | |
427 | button_view: Ver |
|
428 | button_view: Ver | |
428 | button_move: Mover |
|
429 | button_move: Mover | |
429 | button_back: Atrás |
|
430 | button_back: Atrás | |
430 | button_cancel: Cancelar |
|
431 | button_cancel: Cancelar | |
431 | button_activate: Activar |
|
432 | button_activate: Activar | |
432 | button_sort: Clasificar |
|
433 | button_sort: Clasificar | |
433 | button_log_time: Log time |
|
434 | button_log_time: Log time | |
434 | button_rollback: Rollback to this version |
|
435 | button_rollback: Rollback to this version | |
435 | button_watch: Watch |
|
436 | button_watch: Watch | |
436 | button_unwatch: Unwatch |
|
437 | button_unwatch: Unwatch | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: active |
|
442 | status_active: active | |
442 | status_registered: registered |
|
443 | status_registered: registered | |
443 | status_locked: locked |
|
444 | status_locked: locked | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. |
|
446 | text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail. | |
446 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 para ninguna restricción |
|
448 | text_min_max_length_info: 0 para ninguna restricción | |
448 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? |
|
449 | text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ? | |
449 | text_workflow_edit: Seleccionar un workflow para actualizar |
|
450 | text_workflow_edit: Seleccionar un workflow para actualizar | |
450 | text_are_you_sure: ¿ Estás seguro ? |
|
451 | text_are_you_sure: ¿ Estás seguro ? | |
451 | text_journal_changed: cambiado de %s a %s |
|
452 | text_journal_changed: cambiado de %s a %s | |
452 | text_journal_set_to: fijado a %s |
|
453 | text_journal_set_to: fijado a %s | |
453 | text_journal_deleted: suprimido |
|
454 | text_journal_deleted: suprimido | |
454 | text_tip_task_begin_day: tarea que comienza este día |
|
455 | text_tip_task_begin_day: tarea que comienza este día | |
455 | text_tip_task_end_day: tarea que termina este día |
|
456 | text_tip_task_end_day: tarea que termina este día | |
456 | text_tip_task_begin_end_day: tarea que comienza y termina este día |
|
457 | text_tip_task_begin_end_day: tarea que comienza y termina este día | |
457 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
458 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
458 | text_caracters_maximum: %d characters maximum. |
|
459 | text_caracters_maximum: %d characters maximum. | |
459 | text_length_between: Length between %d and %d characters. |
|
460 | text_length_between: Length between %d and %d characters. | |
460 | text_tracker_no_workflow: No workflow defined for this tracker |
|
461 | text_tracker_no_workflow: No workflow defined for this tracker | |
461 | text_unallowed_characters: Unallowed characters |
|
462 | text_unallowed_characters: Unallowed characters | |
462 | text_comma_separated: Multiple values allowed (comma separated). |
|
463 | text_comma_separated: Multiple values allowed (comma separated). | |
463 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
464 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
464 |
|
465 | |||
465 | default_role_manager: Manager |
|
466 | default_role_manager: Manager | |
466 | default_role_developper: Desarrollador |
|
467 | default_role_developper: Desarrollador | |
467 | default_role_reporter: Informador |
|
468 | default_role_reporter: Informador | |
468 | default_tracker_bug: Anomalía |
|
469 | default_tracker_bug: Anomalía | |
469 | default_tracker_feature: Evolución |
|
470 | default_tracker_feature: Evolución | |
470 | default_tracker_support: Asistencia |
|
471 | default_tracker_support: Asistencia | |
471 | default_issue_status_new: Nuevo |
|
472 | default_issue_status_new: Nuevo | |
472 | default_issue_status_assigned: Asignada |
|
473 | default_issue_status_assigned: Asignada | |
473 | default_issue_status_resolved: Resuelta |
|
474 | default_issue_status_resolved: Resuelta | |
474 | default_issue_status_feedback: Comentario |
|
475 | default_issue_status_feedback: Comentario | |
475 | default_issue_status_closed: Cerrada |
|
476 | default_issue_status_closed: Cerrada | |
476 | default_issue_status_rejected: Rechazada |
|
477 | default_issue_status_rejected: Rechazada | |
477 | default_doc_category_user: Documentación del usuario |
|
478 | default_doc_category_user: Documentación del usuario | |
478 | default_doc_category_tech: Documentación tecnica |
|
479 | default_doc_category_tech: Documentación tecnica | |
479 | default_priority_low: Bajo |
|
480 | default_priority_low: Bajo | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: Alto |
|
482 | default_priority_high: Alto | |
482 | default_priority_urgent: Urgente |
|
483 | default_priority_urgent: Urgente | |
483 | default_priority_immediate: Ahora |
|
484 | default_priority_immediate: Ahora | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Development |
|
486 | default_activity_development: Development | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Prioridad de las peticiones |
|
488 | enumeration_issue_priorities: Prioridad de las peticiones | |
488 | enumeration_doc_categories: Categorías del documento |
|
489 | enumeration_doc_categories: Categorías del documento | |
489 | enumeration_activities: Activities (time tracking) |
|
490 | enumeration_activities: Activities (time tracking) |
@@ -1,489 +1,490 | |||||
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 | activerecord_error_not_same_project: n'appartient pas au même projet |
|
36 | activerecord_error_not_same_project: n'appartient pas au même projet | |
37 | activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire |
|
37 | activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire | |
38 |
|
38 | |||
39 | general_fmt_age: %d an |
|
39 | general_fmt_age: %d an | |
40 | general_fmt_age_plural: %d ans |
|
40 | general_fmt_age_plural: %d ans | |
41 | general_fmt_date: %%d/%%m/%%Y |
|
41 | general_fmt_date: %%d/%%m/%%Y | |
42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M |
|
42 | general_fmt_datetime: %%d/%%m/%%Y %%H:%%M | |
43 | general_fmt_datetime_short: %%d/%%m %%H:%%M |
|
43 | general_fmt_datetime_short: %%d/%%m %%H:%%M | |
44 | general_fmt_time: %%H:%%M |
|
44 | general_fmt_time: %%H:%%M | |
45 | general_text_No: 'Non' |
|
45 | general_text_No: 'Non' | |
46 | general_text_Yes: 'Oui' |
|
46 | general_text_Yes: 'Oui' | |
47 | general_text_no: 'non' |
|
47 | general_text_no: 'non' | |
48 | general_text_yes: 'oui' |
|
48 | general_text_yes: 'oui' | |
49 | general_lang_name: 'Français' |
|
49 | general_lang_name: 'Français' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche |
|
53 | general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche | |
54 |
|
54 | |||
55 | notice_account_updated: Le compte a été mis à jour avec succès. |
|
55 | notice_account_updated: Le compte a été mis à jour avec succès. | |
56 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. |
|
56 | notice_account_invalid_creditentials: Identifiant ou mot de passe invalide. | |
57 | notice_account_password_updated: Mot de passe mis à jour avec succès. |
|
57 | notice_account_password_updated: Mot de passe mis à jour avec succès. | |
58 | notice_account_wrong_password: Mot de passe incorrect |
|
58 | notice_account_wrong_password: Mot de passe incorrect | |
59 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. |
|
59 | notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé. | |
60 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. |
|
60 | notice_account_unknown_email: Aucun compte ne correspond à cette adresse. | |
61 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. |
|
61 | notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe. | |
62 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. |
|
62 | notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé. | |
63 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. |
|
63 | notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter. | |
64 | notice_successful_create: Création effectuée avec succès. |
|
64 | notice_successful_create: Création effectuée avec succès. | |
65 | notice_successful_update: Mise à jour effectuée avec succès. |
|
65 | notice_successful_update: Mise à jour effectuée avec succès. | |
66 | notice_successful_delete: Suppression effectuée avec succès. |
|
66 | notice_successful_delete: Suppression effectuée avec succès. | |
67 | notice_successful_connection: Connection réussie. |
|
67 | notice_successful_connection: Connection réussie. | |
68 | notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée. |
|
68 | notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée. | |
69 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. |
|
69 | notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible. | |
70 | notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt. |
|
70 | notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt. | |
71 | notice_not_authorized: Vous n'êtes pas autorisés à accéder à cette page. |
|
71 | notice_not_authorized: Vous n'êtes pas autorisés à accéder à cette page. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Votre mot de passe redMine |
|
73 | mail_subject_lost_password: Votre mot de passe redMine | |
74 | mail_subject_register: Activation de votre compte redMine |
|
74 | mail_subject_register: Activation de votre compte redMine | |
75 |
|
75 | |||
76 | gui_validation_error: 1 erreur |
|
76 | gui_validation_error: 1 erreur | |
77 | gui_validation_error_plural: %d erreurs |
|
77 | gui_validation_error_plural: %d erreurs | |
78 |
|
78 | |||
79 | field_name: Nom |
|
79 | field_name: Nom | |
80 | field_description: Description |
|
80 | field_description: Description | |
81 | field_summary: Résumé |
|
81 | field_summary: Résumé | |
82 | field_is_required: Obligatoire |
|
82 | field_is_required: Obligatoire | |
83 | field_firstname: Prénom |
|
83 | field_firstname: Prénom | |
84 | field_lastname: Nom |
|
84 | field_lastname: Nom | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Fichier |
|
86 | field_filename: Fichier | |
87 | field_filesize: Taille |
|
87 | field_filesize: Taille | |
88 | field_downloads: Téléchargements |
|
88 | field_downloads: Téléchargements | |
89 | field_author: Auteur |
|
89 | field_author: Auteur | |
90 | field_created_on: Créé |
|
90 | field_created_on: Créé | |
91 | field_updated_on: Mis à jour |
|
91 | field_updated_on: Mis à jour | |
92 | field_field_format: Format |
|
92 | field_field_format: Format | |
93 | field_is_for_all: Pour tous les projets |
|
93 | field_is_for_all: Pour tous les projets | |
94 | field_possible_values: Valeurs possibles |
|
94 | field_possible_values: Valeurs possibles | |
95 | field_regexp: Expression régulière |
|
95 | field_regexp: Expression régulière | |
96 | field_min_length: Longueur minimum |
|
96 | field_min_length: Longueur minimum | |
97 | field_max_length: Longueur maximum |
|
97 | field_max_length: Longueur maximum | |
98 | field_value: Valeur |
|
98 | field_value: Valeur | |
99 | field_category: Catégorie |
|
99 | field_category: Catégorie | |
100 | field_title: Titre |
|
100 | field_title: Titre | |
101 | field_project: Projet |
|
101 | field_project: Projet | |
102 | field_issue: Demande |
|
102 | field_issue: Demande | |
103 | field_status: Statut |
|
103 | field_status: Statut | |
104 | field_notes: Notes |
|
104 | field_notes: Notes | |
105 | field_is_closed: Demande fermée |
|
105 | field_is_closed: Demande fermée | |
106 | field_is_default: Statut par défaut |
|
106 | field_is_default: Statut par défaut | |
107 | field_html_color: Couleur |
|
107 | field_html_color: Couleur | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Sujet |
|
109 | field_subject: Sujet | |
110 | field_due_date: Date d'échéance |
|
110 | field_due_date: Date d'échéance | |
111 | field_assigned_to: Assigné à |
|
111 | field_assigned_to: Assigné à | |
112 | field_priority: Priorité |
|
112 | field_priority: Priorité | |
113 | field_fixed_version: Version corrigée |
|
113 | field_fixed_version: Version corrigée | |
114 | field_user: Utilisateur |
|
114 | field_user: Utilisateur | |
115 | field_role: Rôle |
|
115 | field_role: Rôle | |
116 | field_homepage: Site web |
|
116 | field_homepage: Site web | |
117 | field_is_public: Public |
|
117 | field_is_public: Public | |
118 | field_parent: Sous-projet de |
|
118 | field_parent: Sous-projet de | |
119 | field_is_in_chlog: Demandes affichées dans l'historique |
|
119 | field_is_in_chlog: Demandes affichées dans l'historique | |
120 | field_is_in_roadmap: Demandes affichées dans la roadmap |
|
120 | field_is_in_roadmap: Demandes affichées dans la roadmap | |
121 | field_login: Identifiant |
|
121 | field_login: Identifiant | |
122 | field_mail_notification: Notifications par mail |
|
122 | field_mail_notification: Notifications par mail | |
123 | field_admin: Administrateur |
|
123 | field_admin: Administrateur | |
124 | field_last_login_on: Dernière connexion |
|
124 | field_last_login_on: Dernière connexion | |
125 | field_language: Langue |
|
125 | field_language: Langue | |
126 | field_effective_date: Date |
|
126 | field_effective_date: Date | |
127 | field_password: Mot de passe |
|
127 | field_password: Mot de passe | |
128 | field_new_password: Nouveau mot de passe |
|
128 | field_new_password: Nouveau mot de passe | |
129 | field_password_confirmation: Confirmation |
|
129 | field_password_confirmation: Confirmation | |
130 | field_version: Version |
|
130 | field_version: Version | |
131 | field_type: Type |
|
131 | field_type: Type | |
132 | field_host: Hôte |
|
132 | field_host: Hôte | |
133 | field_port: Port |
|
133 | field_port: Port | |
134 | field_account: Compte |
|
134 | field_account: Compte | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Attribut Identifiant |
|
136 | field_attr_login: Attribut Identifiant | |
137 | field_attr_firstname: Attribut Prénom |
|
137 | field_attr_firstname: Attribut Prénom | |
138 | field_attr_lastname: Attribut Nom |
|
138 | field_attr_lastname: Attribut Nom | |
139 | field_attr_mail: Attribut Email |
|
139 | field_attr_mail: Attribut Email | |
140 | field_onthefly: Création des utilisateurs à la volée |
|
140 | field_onthefly: Création des utilisateurs à la volée | |
141 | field_start_date: Début |
|
141 | field_start_date: Début | |
142 | field_done_ratio: %% Réalisé |
|
142 | field_done_ratio: %% Réalisé | |
143 | field_auth_source: Mode d'authentification |
|
143 | field_auth_source: Mode d'authentification | |
144 | field_hide_mail: Cacher mon adresse mail |
|
144 | field_hide_mail: Cacher mon adresse mail | |
145 | field_comments: Commentaire |
|
145 | field_comments: Commentaire | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Page de démarrage |
|
147 | field_start_page: Page de démarrage | |
148 | field_subproject: Sous-projet |
|
148 | field_subproject: Sous-projet | |
149 | field_hours: Heures |
|
149 | field_hours: Heures | |
150 | field_activity: Activité |
|
150 | field_activity: Activité | |
151 | field_spent_on: Date |
|
151 | field_spent_on: Date | |
152 | field_identifier: Identifiant |
|
152 | field_identifier: Identifiant | |
153 | field_is_filter: Utilisé comme filtre |
|
153 | field_is_filter: Utilisé comme filtre | |
154 | field_issue_to_id: Demande liée |
|
154 | field_issue_to_id: Demande liée | |
155 | field_delay: Retard |
|
155 | field_delay: Retard | |
156 |
|
156 | |||
157 | setting_app_title: Titre de l'application |
|
157 | setting_app_title: Titre de l'application | |
158 | setting_app_subtitle: Sous-titre de l'application |
|
158 | setting_app_subtitle: Sous-titre de l'application | |
159 | setting_welcome_text: Texte d'accueil |
|
159 | setting_welcome_text: Texte d'accueil | |
160 | setting_default_language: Langue par défaut |
|
160 | setting_default_language: Langue par défaut | |
161 | setting_login_required: Authentif. obligatoire |
|
161 | setting_login_required: Authentif. obligatoire | |
162 | setting_self_registration: Enregistrement autorisé |
|
162 | setting_self_registration: Enregistrement autorisé | |
163 | setting_attachment_max_size: Taille max des fichiers |
|
163 | setting_attachment_max_size: Taille max des fichiers | |
164 | setting_issues_export_limit: Limite export demandes |
|
164 | setting_issues_export_limit: Limite export demandes | |
165 | setting_mail_from: Adresse d'émission |
|
165 | setting_mail_from: Adresse d'émission | |
166 | setting_host_name: Nom d'hôte |
|
166 | setting_host_name: Nom d'hôte | |
167 | setting_text_formatting: Formatage du texte |
|
167 | setting_text_formatting: Formatage du texte | |
168 | setting_wiki_compression: Compression historique wiki |
|
168 | setting_wiki_compression: Compression historique wiki | |
169 | setting_feeds_limit: Limite du contenu des flux RSS |
|
169 | setting_feeds_limit: Limite du contenu des flux RSS | |
170 | setting_autofetch_changesets: Récupération auto. des commits |
|
170 | setting_autofetch_changesets: Récupération auto. des commits | |
171 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts |
|
171 | setting_sys_api_enabled: Activer les WS pour la gestion des dépôts | |
172 | setting_commit_ref_keywords: Mot-clés de référencement |
|
172 | setting_commit_ref_keywords: Mot-clés de référencement | |
173 | setting_commit_fix_keywords: Mot-clés de résolution |
|
173 | setting_commit_fix_keywords: Mot-clés de résolution | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Format de date |
|
175 | setting_date_format: Format de date | |
|
176 | setting_cross_project_issue_relations: Autoriser les relations entre demandes de différents projets | |||
176 |
|
177 | |||
177 | label_user: Utilisateur |
|
178 | label_user: Utilisateur | |
178 | label_user_plural: Utilisateurs |
|
179 | label_user_plural: Utilisateurs | |
179 | label_user_new: Nouvel utilisateur |
|
180 | label_user_new: Nouvel utilisateur | |
180 | label_project: Projet |
|
181 | label_project: Projet | |
181 | label_project_new: Nouveau projet |
|
182 | label_project_new: Nouveau projet | |
182 | label_project_plural: Projets |
|
183 | label_project_plural: Projets | |
183 | label_project_all: Tous les projets |
|
184 | label_project_all: Tous les projets | |
184 | label_project_latest: Derniers projets |
|
185 | label_project_latest: Derniers projets | |
185 | label_issue: Demande |
|
186 | label_issue: Demande | |
186 | label_issue_new: Nouvelle demande |
|
187 | label_issue_new: Nouvelle demande | |
187 | label_issue_plural: Demandes |
|
188 | label_issue_plural: Demandes | |
188 | label_issue_view_all: Voir toutes les demandes |
|
189 | label_issue_view_all: Voir toutes les demandes | |
189 | label_document: Document |
|
190 | label_document: Document | |
190 | label_document_new: Nouveau document |
|
191 | label_document_new: Nouveau document | |
191 | label_document_plural: Documents |
|
192 | label_document_plural: Documents | |
192 | label_role: Rôle |
|
193 | label_role: Rôle | |
193 | label_role_plural: Rôles |
|
194 | label_role_plural: Rôles | |
194 | label_role_new: Nouveau rôle |
|
195 | label_role_new: Nouveau rôle | |
195 | label_role_and_permissions: Rôles et permissions |
|
196 | label_role_and_permissions: Rôles et permissions | |
196 | label_member: Membre |
|
197 | label_member: Membre | |
197 | label_member_new: Nouveau membre |
|
198 | label_member_new: Nouveau membre | |
198 | label_member_plural: Membres |
|
199 | label_member_plural: Membres | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Trackers |
|
201 | label_tracker_plural: Trackers | |
201 | label_tracker_new: Nouveau tracker |
|
202 | label_tracker_new: Nouveau tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Statut de demandes |
|
204 | label_issue_status: Statut de demandes | |
204 | label_issue_status_plural: Statuts de demandes |
|
205 | label_issue_status_plural: Statuts de demandes | |
205 | label_issue_status_new: Nouveau statut |
|
206 | label_issue_status_new: Nouveau statut | |
206 | label_issue_category: Catégorie de demandes |
|
207 | label_issue_category: Catégorie de demandes | |
207 | label_issue_category_plural: Catégories de demandes |
|
208 | label_issue_category_plural: Catégories de demandes | |
208 | label_issue_category_new: Nouvelle catégorie |
|
209 | label_issue_category_new: Nouvelle catégorie | |
209 | label_custom_field: Champ personnalisé |
|
210 | label_custom_field: Champ personnalisé | |
210 | label_custom_field_plural: Champs personnalisés |
|
211 | label_custom_field_plural: Champs personnalisés | |
211 | label_custom_field_new: Nouveau champ personnalisé |
|
212 | label_custom_field_new: Nouveau champ personnalisé | |
212 | label_enumerations: Listes de valeurs |
|
213 | label_enumerations: Listes de valeurs | |
213 | label_enumeration_new: Nouvelle valeur |
|
214 | label_enumeration_new: Nouvelle valeur | |
214 | label_information: Information |
|
215 | label_information: Information | |
215 | label_information_plural: Informations |
|
216 | label_information_plural: Informations | |
216 | label_please_login: Identification |
|
217 | label_please_login: Identification | |
217 | label_register: S'enregistrer |
|
218 | label_register: S'enregistrer | |
218 | label_password_lost: Mot de passe perdu |
|
219 | label_password_lost: Mot de passe perdu | |
219 | label_home: Accueil |
|
220 | label_home: Accueil | |
220 | label_my_page: Ma page |
|
221 | label_my_page: Ma page | |
221 | label_my_account: Mon compte |
|
222 | label_my_account: Mon compte | |
222 | label_my_projects: Mes projets |
|
223 | label_my_projects: Mes projets | |
223 | label_administration: Administration |
|
224 | label_administration: Administration | |
224 | label_login: Connexion |
|
225 | label_login: Connexion | |
225 | label_logout: Déconnexion |
|
226 | label_logout: Déconnexion | |
226 | label_help: Aide |
|
227 | label_help: Aide | |
227 | label_reported_issues: Demandes soumises |
|
228 | label_reported_issues: Demandes soumises | |
228 | label_assigned_to_me_issues: Demandes qui me sont assignées |
|
229 | label_assigned_to_me_issues: Demandes qui me sont assignées | |
229 | label_last_login: Dernière connexion |
|
230 | label_last_login: Dernière connexion | |
230 | label_last_updates: Dernière mise à jour |
|
231 | label_last_updates: Dernière mise à jour | |
231 | label_last_updates_plural: %d dernières mises à jour |
|
232 | label_last_updates_plural: %d dernières mises à jour | |
232 | label_registered_on: Inscrit le |
|
233 | label_registered_on: Inscrit le | |
233 | label_activity: Activité |
|
234 | label_activity: Activité | |
234 | label_new: Nouveau |
|
235 | label_new: Nouveau | |
235 | label_logged_as: Connecté en tant que |
|
236 | label_logged_as: Connecté en tant que | |
236 | label_environment: Environnement |
|
237 | label_environment: Environnement | |
237 | label_authentication: Authentification |
|
238 | label_authentication: Authentification | |
238 | label_auth_source: Mode d'authentification |
|
239 | label_auth_source: Mode d'authentification | |
239 | label_auth_source_new: Nouveau mode d'authentification |
|
240 | label_auth_source_new: Nouveau mode d'authentification | |
240 | label_auth_source_plural: Modes d'authentification |
|
241 | label_auth_source_plural: Modes d'authentification | |
241 | label_subproject_plural: Sous-projets |
|
242 | label_subproject_plural: Sous-projets | |
242 | label_min_max_length: Longueurs mini - maxi |
|
243 | label_min_max_length: Longueurs mini - maxi | |
243 | label_list: Liste |
|
244 | label_list: Liste | |
244 | label_date: Date |
|
245 | label_date: Date | |
245 | label_integer: Entier |
|
246 | label_integer: Entier | |
246 | label_boolean: Booléen |
|
247 | label_boolean: Booléen | |
247 | label_string: Texte |
|
248 | label_string: Texte | |
248 | label_text: Texte long |
|
249 | label_text: Texte long | |
249 | label_attribute: Attribut |
|
250 | label_attribute: Attribut | |
250 | label_attribute_plural: Attributs |
|
251 | label_attribute_plural: Attributs | |
251 | label_download: %d Téléchargement |
|
252 | label_download: %d Téléchargement | |
252 | label_download_plural: %d Téléchargements |
|
253 | label_download_plural: %d Téléchargements | |
253 | label_no_data: Aucune donnée à afficher |
|
254 | label_no_data: Aucune donnée à afficher | |
254 | label_change_status: Changer le statut |
|
255 | label_change_status: Changer le statut | |
255 | label_history: Historique |
|
256 | label_history: Historique | |
256 | label_attachment: Fichier |
|
257 | label_attachment: Fichier | |
257 | label_attachment_new: Nouveau fichier |
|
258 | label_attachment_new: Nouveau fichier | |
258 | label_attachment_delete: Supprimer le fichier |
|
259 | label_attachment_delete: Supprimer le fichier | |
259 | label_attachment_plural: Fichiers |
|
260 | label_attachment_plural: Fichiers | |
260 | label_report: Rapport |
|
261 | label_report: Rapport | |
261 | label_report_plural: Rapports |
|
262 | label_report_plural: Rapports | |
262 | label_news: Annonce |
|
263 | label_news: Annonce | |
263 | label_news_new: Nouvelle annonce |
|
264 | label_news_new: Nouvelle annonce | |
264 | label_news_plural: Annonces |
|
265 | label_news_plural: Annonces | |
265 | label_news_latest: Dernières annonces |
|
266 | label_news_latest: Dernières annonces | |
266 | label_news_view_all: Voir toutes les annonces |
|
267 | label_news_view_all: Voir toutes les annonces | |
267 | label_change_log: Historique |
|
268 | label_change_log: Historique | |
268 | label_settings: Configuration |
|
269 | label_settings: Configuration | |
269 | label_overview: Aperçu |
|
270 | label_overview: Aperçu | |
270 | label_version: Version |
|
271 | label_version: Version | |
271 | label_version_new: Nouvelle version |
|
272 | label_version_new: Nouvelle version | |
272 | label_version_plural: Versions |
|
273 | label_version_plural: Versions | |
273 | label_confirmation: Confirmation |
|
274 | label_confirmation: Confirmation | |
274 | label_export_to: Exporter en |
|
275 | label_export_to: Exporter en | |
275 | label_read: Lire... |
|
276 | label_read: Lire... | |
276 | label_public_projects: Projets publics |
|
277 | label_public_projects: Projets publics | |
277 | label_open_issues: ouvert |
|
278 | label_open_issues: ouvert | |
278 | label_open_issues_plural: ouverts |
|
279 | label_open_issues_plural: ouverts | |
279 | label_closed_issues: fermé |
|
280 | label_closed_issues: fermé | |
280 | label_closed_issues_plural: fermés |
|
281 | label_closed_issues_plural: fermés | |
281 | label_total: Total |
|
282 | label_total: Total | |
282 | label_permissions: Permissions |
|
283 | label_permissions: Permissions | |
283 | label_current_status: Statut actuel |
|
284 | label_current_status: Statut actuel | |
284 | label_new_statuses_allowed: Nouveaux statuts autorisés |
|
285 | label_new_statuses_allowed: Nouveaux statuts autorisés | |
285 | label_all: tous |
|
286 | label_all: tous | |
286 | label_none: aucun |
|
287 | label_none: aucun | |
287 | label_next: Suivant |
|
288 | label_next: Suivant | |
288 | label_previous: Précédent |
|
289 | label_previous: Précédent | |
289 | label_used_by: Utilisé par |
|
290 | label_used_by: Utilisé par | |
290 | label_details: Détails |
|
291 | label_details: Détails | |
291 | label_add_note: Ajouter une note |
|
292 | label_add_note: Ajouter une note | |
292 | label_per_page: Par page |
|
293 | label_per_page: Par page | |
293 | label_calendar: Calendrier |
|
294 | label_calendar: Calendrier | |
294 | label_months_from: mois depuis |
|
295 | label_months_from: mois depuis | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Interne |
|
297 | label_internal: Interne | |
297 | label_last_changes: %d derniers changements |
|
298 | label_last_changes: %d derniers changements | |
298 | label_change_view_all: Voir tous les changements |
|
299 | label_change_view_all: Voir tous les changements | |
299 | label_personalize_page: Personnaliser cette page |
|
300 | label_personalize_page: Personnaliser cette page | |
300 | label_comment: Commentaire |
|
301 | label_comment: Commentaire | |
301 | label_comment_plural: Commentaires |
|
302 | label_comment_plural: Commentaires | |
302 | label_comment_add: Ajouter un commentaire |
|
303 | label_comment_add: Ajouter un commentaire | |
303 | label_comment_added: Commentaire ajouté |
|
304 | label_comment_added: Commentaire ajouté | |
304 | label_comment_delete: Supprimer les commentaires |
|
305 | label_comment_delete: Supprimer les commentaires | |
305 | label_query: Rapport personnalisé |
|
306 | label_query: Rapport personnalisé | |
306 | label_query_plural: Rapports personnalisés |
|
307 | label_query_plural: Rapports personnalisés | |
307 | label_query_new: Nouveau rapport |
|
308 | label_query_new: Nouveau rapport | |
308 | label_filter_add: Ajouter le filtre |
|
309 | label_filter_add: Ajouter le filtre | |
309 | label_filter_plural: Filtres |
|
310 | label_filter_plural: Filtres | |
310 | label_equals: égal |
|
311 | label_equals: égal | |
311 | label_not_equals: différent |
|
312 | label_not_equals: différent | |
312 | label_in_less_than: dans moins de |
|
313 | label_in_less_than: dans moins de | |
313 | label_in_more_than: dans plus de |
|
314 | label_in_more_than: dans plus de | |
314 | label_in: dans |
|
315 | label_in: dans | |
315 | label_today: aujourd'hui |
|
316 | label_today: aujourd'hui | |
316 | label_less_than_ago: il y a moins de |
|
317 | label_less_than_ago: il y a moins de | |
317 | label_more_than_ago: il y a plus de |
|
318 | label_more_than_ago: il y a plus de | |
318 | label_ago: il y a |
|
319 | label_ago: il y a | |
319 | label_contains: contient |
|
320 | label_contains: contient | |
320 | label_not_contains: ne contient pas |
|
321 | label_not_contains: ne contient pas | |
321 | label_day_plural: jours |
|
322 | label_day_plural: jours | |
322 | label_repository: Dépôt |
|
323 | label_repository: Dépôt | |
323 | label_browse: Parcourir |
|
324 | label_browse: Parcourir | |
324 | label_modification: %d modification |
|
325 | label_modification: %d modification | |
325 | label_modification_plural: %d modifications |
|
326 | label_modification_plural: %d modifications | |
326 | label_revision: Révision |
|
327 | label_revision: Révision | |
327 | label_revision_plural: Révisions |
|
328 | label_revision_plural: Révisions | |
328 | label_added: ajouté |
|
329 | label_added: ajouté | |
329 | label_modified: modifié |
|
330 | label_modified: modifié | |
330 | label_deleted: supprimé |
|
331 | label_deleted: supprimé | |
331 | label_latest_revision: Dernière révision |
|
332 | label_latest_revision: Dernière révision | |
332 | label_latest_revision_plural: Dernières révisions |
|
333 | label_latest_revision_plural: Dernières révisions | |
333 | label_view_revisions: Voir les révisions |
|
334 | label_view_revisions: Voir les révisions | |
334 | label_max_size: Taille maximale |
|
335 | label_max_size: Taille maximale | |
335 | label_on: sur |
|
336 | label_on: sur | |
336 | label_sort_highest: Remonter en premier |
|
337 | label_sort_highest: Remonter en premier | |
337 | label_sort_higher: Remonter |
|
338 | label_sort_higher: Remonter | |
338 | label_sort_lower: Descendre |
|
339 | label_sort_lower: Descendre | |
339 | label_sort_lowest: Descendre en dernier |
|
340 | label_sort_lowest: Descendre en dernier | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Echéance dans |
|
342 | label_roadmap_due_in: Echéance dans | |
342 | label_roadmap_overdue: En retard de %s |
|
343 | label_roadmap_overdue: En retard de %s | |
343 | label_roadmap_no_issues: Aucune demande pour cette version |
|
344 | label_roadmap_no_issues: Aucune demande pour cette version | |
344 | label_search: Recherche |
|
345 | label_search: Recherche | |
345 | label_result: %d résultat |
|
346 | label_result: %d résultat | |
346 | label_result_plural: %d résultats |
|
347 | label_result_plural: %d résultats | |
347 | label_all_words: Tous les mots |
|
348 | label_all_words: Tous les mots | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Révision wiki |
|
350 | label_wiki_edit: Révision wiki | |
350 | label_wiki_edit_plural: Révisions wiki |
|
351 | label_wiki_edit_plural: Révisions wiki | |
351 | label_wiki_page: Page wiki |
|
352 | label_wiki_page: Page wiki | |
352 | label_wiki_page_plural: Pages wiki |
|
353 | label_wiki_page_plural: Pages wiki | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Version actuelle |
|
355 | label_current_version: Version actuelle | |
355 | label_preview: Prévisualisation |
|
356 | label_preview: Prévisualisation | |
356 | label_feed_plural: Flux RSS |
|
357 | label_feed_plural: Flux RSS | |
357 | label_changes_details: Détails de tous les changements |
|
358 | label_changes_details: Détails de tous les changements | |
358 | label_issue_tracking: Suivi des demandes |
|
359 | label_issue_tracking: Suivi des demandes | |
359 | label_spent_time: Temps passé |
|
360 | label_spent_time: Temps passé | |
360 | label_f_hour: %.2f heure |
|
361 | label_f_hour: %.2f heure | |
361 | label_f_hour_plural: %.2f heures |
|
362 | label_f_hour_plural: %.2f heures | |
362 | label_time_tracking: Suivi du temps |
|
363 | label_time_tracking: Suivi du temps | |
363 | label_change_plural: Changements |
|
364 | label_change_plural: Changements | |
364 | label_statistics: Statistiques |
|
365 | label_statistics: Statistiques | |
365 | label_commits_per_month: Commits par mois |
|
366 | label_commits_per_month: Commits par mois | |
366 | label_commits_per_author: Commits par auteur |
|
367 | label_commits_per_author: Commits par auteur | |
367 | label_view_diff: Voir les différences |
|
368 | label_view_diff: Voir les différences | |
368 | label_diff_inline: en ligne |
|
369 | label_diff_inline: en ligne | |
369 | label_diff_side_by_side: côte à côte |
|
370 | label_diff_side_by_side: côte à côte | |
370 | label_options: Options |
|
371 | label_options: Options | |
371 | label_copy_workflow_from: Copier le workflow de |
|
372 | label_copy_workflow_from: Copier le workflow de | |
372 | label_permissions_report: Synthèse des permissions |
|
373 | label_permissions_report: Synthèse des permissions | |
373 | label_watched_issues: Demandes surveillées |
|
374 | label_watched_issues: Demandes surveillées | |
374 | label_related_issues: Demandes liées |
|
375 | label_related_issues: Demandes liées | |
375 | label_applied_status: Statut appliqué |
|
376 | label_applied_status: Statut appliqué | |
376 | label_loading: Chargement... |
|
377 | label_loading: Chargement... | |
377 | label_relation_new: Nouvelle relation |
|
378 | label_relation_new: Nouvelle relation | |
378 | label_relation_delete: Supprimer la relation |
|
379 | label_relation_delete: Supprimer la relation | |
379 | label_relates_to: lié à |
|
380 | label_relates_to: lié à | |
380 | label_duplicates: doublon de |
|
381 | label_duplicates: doublon de | |
381 | label_blocks: bloque |
|
382 | label_blocks: bloque | |
382 | label_blocked_by: bloqué par |
|
383 | label_blocked_by: bloqué par | |
383 | label_precedes: précède |
|
384 | label_precedes: précède | |
384 | label_follows: suit |
|
385 | label_follows: suit | |
385 | label_end_to_start: début à fin |
|
386 | label_end_to_start: début à fin | |
386 | label_end_to_end: fin à fin |
|
387 | label_end_to_end: fin à fin | |
387 | label_start_to_start: début à début |
|
388 | label_start_to_start: début à début | |
388 | label_start_to_end: début à fin |
|
389 | label_start_to_end: début à fin | |
389 | label_stay_logged_in: Rester connecté |
|
390 | label_stay_logged_in: Rester connecté | |
390 | label_disabled: désactivé |
|
391 | label_disabled: désactivé | |
391 | label_show_completed_versions: Voire les versions passées |
|
392 | label_show_completed_versions: Voire les versions passées | |
392 | label_me: moi |
|
393 | label_me: moi | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: Nouveau forum |
|
395 | label_board_new: Nouveau forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Discussions |
|
397 | label_topic_plural: Discussions | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Dernier message |
|
399 | label_message_last: Dernier message | |
399 | label_message_new: Nouveau message |
|
400 | label_message_new: Nouveau message | |
400 | label_reply_plural: Réponses |
|
401 | label_reply_plural: Réponses | |
401 | label_send_information: Envoyer les informations à l'utilisateur |
|
402 | label_send_information: Envoyer les informations à l'utilisateur | |
402 | label_year: Année |
|
403 | label_year: Année | |
403 | label_month: Mois |
|
404 | label_month: Mois | |
404 | label_week: Semaine |
|
405 | label_week: Semaine | |
405 | label_date_from: Du |
|
406 | label_date_from: Du | |
406 | label_date_to: Au |
|
407 | label_date_to: Au | |
407 | label_language_based: Basé sur la langue |
|
408 | label_language_based: Basé sur la langue | |
408 | label_sort_by: Trier par "%s" |
|
409 | label_sort_by: Trier par "%s" | |
409 |
|
410 | |||
410 | button_login: Connexion |
|
411 | button_login: Connexion | |
411 | button_submit: Soumettre |
|
412 | button_submit: Soumettre | |
412 | button_save: Sauvegarder |
|
413 | button_save: Sauvegarder | |
413 | button_check_all: Tout cocher |
|
414 | button_check_all: Tout cocher | |
414 | button_uncheck_all: Tout décocher |
|
415 | button_uncheck_all: Tout décocher | |
415 | button_delete: Supprimer |
|
416 | button_delete: Supprimer | |
416 | button_create: Créer |
|
417 | button_create: Créer | |
417 | button_test: Tester |
|
418 | button_test: Tester | |
418 | button_edit: Modifier |
|
419 | button_edit: Modifier | |
419 | button_add: Ajouter |
|
420 | button_add: Ajouter | |
420 | button_change: Changer |
|
421 | button_change: Changer | |
421 | button_apply: Appliquer |
|
422 | button_apply: Appliquer | |
422 | button_clear: Effacer |
|
423 | button_clear: Effacer | |
423 | button_lock: Verrouiller |
|
424 | button_lock: Verrouiller | |
424 | button_unlock: Déverrouiller |
|
425 | button_unlock: Déverrouiller | |
425 | button_download: Télécharger |
|
426 | button_download: Télécharger | |
426 | button_list: Lister |
|
427 | button_list: Lister | |
427 | button_view: Voir |
|
428 | button_view: Voir | |
428 | button_move: Déplacer |
|
429 | button_move: Déplacer | |
429 | button_back: Retour |
|
430 | button_back: Retour | |
430 | button_cancel: Annuler |
|
431 | button_cancel: Annuler | |
431 | button_activate: Activer |
|
432 | button_activate: Activer | |
432 | button_sort: Trier |
|
433 | button_sort: Trier | |
433 | button_log_time: Saisir temps |
|
434 | button_log_time: Saisir temps | |
434 | button_rollback: Revenir à cette version |
|
435 | button_rollback: Revenir à cette version | |
435 | button_watch: Surveiller |
|
436 | button_watch: Surveiller | |
436 | button_unwatch: Ne plus surveiller |
|
437 | button_unwatch: Ne plus surveiller | |
437 | button_reply: Répondre |
|
438 | button_reply: Répondre | |
438 | button_archive: Archiver |
|
439 | button_archive: Archiver | |
439 | button_unarchive: Désarchiver |
|
440 | button_unarchive: Désarchiver | |
440 |
|
441 | |||
441 | status_active: actif |
|
442 | status_active: actif | |
442 | status_registered: enregistré |
|
443 | status_registered: enregistré | |
443 | status_locked: vérouillé |
|
444 | status_locked: vérouillé | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. |
|
446 | text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée. | |
446 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 pour aucune restriction |
|
448 | text_min_max_length_info: 0 pour aucune restriction | |
448 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? |
|
449 | text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ? | |
449 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow |
|
450 | text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow | |
450 | text_are_you_sure: Etes-vous sûr ? |
|
451 | text_are_you_sure: Etes-vous sûr ? | |
451 | text_journal_changed: changé de %s à %s |
|
452 | text_journal_changed: changé de %s à %s | |
452 | text_journal_set_to: mis à %s |
|
453 | text_journal_set_to: mis à %s | |
453 | text_journal_deleted: supprimé |
|
454 | text_journal_deleted: supprimé | |
454 | text_tip_task_begin_day: tâche commençant ce jour |
|
455 | text_tip_task_begin_day: tâche commençant ce jour | |
455 | text_tip_task_end_day: tâche finissant ce jour |
|
456 | text_tip_task_end_day: tâche finissant ce jour | |
456 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour |
|
457 | text_tip_task_begin_end_day: tâche commençant et finissant ce jour | |
457 | text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' |
|
458 | text_project_identifier_info: 'Lettres minuscules (a-z), chiffres et tirets autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' | |
458 | text_caracters_maximum: %d caractères maximum. |
|
459 | text_caracters_maximum: %d caractères maximum. | |
459 | text_length_between: Longueur comprise entre %d et %d caractères. |
|
460 | text_length_between: Longueur comprise entre %d et %d caractères. | |
460 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker |
|
461 | text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker | |
461 | text_unallowed_characters: Caractères non autorisés |
|
462 | text_unallowed_characters: Caractères non autorisés | |
462 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). |
|
463 | text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules). | |
463 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits |
|
464 | text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits | |
464 |
|
465 | |||
465 | default_role_manager: Manager |
|
466 | default_role_manager: Manager | |
466 | default_role_developper: Développeur |
|
467 | default_role_developper: Développeur | |
467 | default_role_reporter: Rapporteur |
|
468 | default_role_reporter: Rapporteur | |
468 | default_tracker_bug: Anomalie |
|
469 | default_tracker_bug: Anomalie | |
469 | default_tracker_feature: Evolution |
|
470 | default_tracker_feature: Evolution | |
470 | default_tracker_support: Assistance |
|
471 | default_tracker_support: Assistance | |
471 | default_issue_status_new: Nouveau |
|
472 | default_issue_status_new: Nouveau | |
472 | default_issue_status_assigned: Assigné |
|
473 | default_issue_status_assigned: Assigné | |
473 | default_issue_status_resolved: Résolu |
|
474 | default_issue_status_resolved: Résolu | |
474 | default_issue_status_feedback: Commentaire |
|
475 | default_issue_status_feedback: Commentaire | |
475 | default_issue_status_closed: Fermé |
|
476 | default_issue_status_closed: Fermé | |
476 | default_issue_status_rejected: Rejeté |
|
477 | default_issue_status_rejected: Rejeté | |
477 | default_doc_category_user: Documentation utilisateur |
|
478 | default_doc_category_user: Documentation utilisateur | |
478 | default_doc_category_tech: Documentation technique |
|
479 | default_doc_category_tech: Documentation technique | |
479 | default_priority_low: Bas |
|
480 | default_priority_low: Bas | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: Haut |
|
482 | default_priority_high: Haut | |
482 | default_priority_urgent: Urgent |
|
483 | default_priority_urgent: Urgent | |
483 | default_priority_immediate: Immédiat |
|
484 | default_priority_immediate: Immédiat | |
484 | default_activity_design: Conception |
|
485 | default_activity_design: Conception | |
485 | default_activity_development: Développement |
|
486 | default_activity_development: Développement | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Priorités des demandes |
|
488 | enumeration_issue_priorities: Priorités des demandes | |
488 | enumeration_doc_categories: Catégories des documents |
|
489 | enumeration_doc_categories: Catégories des documents | |
489 | enumeration_activities: Activités (suivi du temps) |
|
490 | enumeration_activities: Activités (suivi du temps) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre |
|
4 | actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre | |
5 | actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic |
|
5 | actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 giorno |
|
8 | actionview_datehelper_time_in_words_day: 1 giorno | |
9 | actionview_datehelper_time_in_words_day_plural: %d giorni |
|
9 | actionview_datehelper_time_in_words_day_plural: %d giorni | |
10 | actionview_datehelper_time_in_words_hour_about: circa un'ora |
|
10 | actionview_datehelper_time_in_words_hour_about: circa un'ora | |
11 | actionview_datehelper_time_in_words_hour_about_plural: circa %d ore |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: circa %d ore | |
12 | actionview_datehelper_time_in_words_hour_about_single: circa un'ora |
|
12 | actionview_datehelper_time_in_words_hour_about_single: circa un'ora | |
13 | actionview_datehelper_time_in_words_minute: 1 minuto |
|
13 | actionview_datehelper_time_in_words_minute: 1 minuto | |
14 | actionview_datehelper_time_in_words_minute_half: mezzo minuto |
|
14 | actionview_datehelper_time_in_words_minute_half: mezzo minuto | |
15 | actionview_datehelper_time_in_words_minute_less_than: meno di un minuto |
|
15 | actionview_datehelper_time_in_words_minute_less_than: meno di un minuto | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minuti |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minuti | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto | |
18 | actionview_datehelper_time_in_words_second_less_than: meno di un secondo |
|
18 | actionview_datehelper_time_in_words_second_less_than: meno di un secondo | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi | |
20 | actionview_instancetag_blank_option: Scegli |
|
20 | actionview_instancetag_blank_option: Scegli | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: non è incluso nella lista |
|
22 | activerecord_error_inclusion: non è incluso nella lista | |
23 | activerecord_error_exclusion: e' riservato |
|
23 | activerecord_error_exclusion: e' riservato | |
24 | activerecord_error_invalid: non e' valido |
|
24 | activerecord_error_invalid: non e' valido | |
25 | activerecord_error_confirmation: non coincide con la conferma |
|
25 | activerecord_error_confirmation: non coincide con la conferma | |
26 | activerecord_error_accepted: deve essere accettato |
|
26 | activerecord_error_accepted: deve essere accettato | |
27 | activerecord_error_empty: non puo' essere vuoto |
|
27 | activerecord_error_empty: non puo' essere vuoto | |
28 | activerecord_error_blank: non puo' essere blank |
|
28 | activerecord_error_blank: non puo' essere blank | |
29 | activerecord_error_too_long: e' troppo lungo/a |
|
29 | activerecord_error_too_long: e' troppo lungo/a | |
30 | activerecord_error_too_short: e' troppo corto/a |
|
30 | activerecord_error_too_short: e' troppo corto/a | |
31 | activerecord_error_wrong_length: e' della lunghezza sbagliata |
|
31 | activerecord_error_wrong_length: e' della lunghezza sbagliata | |
32 | activerecord_error_taken: e' gia' stato/a preso/a |
|
32 | activerecord_error_taken: e' gia' stato/a preso/a | |
33 | activerecord_error_not_a_number: non e' un numero |
|
33 | activerecord_error_not_a_number: non e' un numero | |
34 | activerecord_error_not_a_date: non e' una data valida |
|
34 | activerecord_error_not_a_date: non e' una data valida | |
35 | activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza |
|
35 | activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza | |
36 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d yr |
|
39 | general_fmt_age: %d yr | |
40 | general_fmt_age_plural: %d yrs |
|
40 | general_fmt_age_plural: %d yrs | |
41 | general_fmt_date: %%d/%%m/%%Y |
|
41 | general_fmt_date: %%d/%%m/%%Y | |
42 | general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p |
|
42 | general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'No' |
|
45 | general_text_No: 'No' | |
46 | general_text_Yes: 'Si' |
|
46 | general_text_Yes: 'Si' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'si' |
|
48 | general_text_yes: 'si' | |
49 | general_lang_name: 'Italiano' |
|
49 | general_lang_name: 'Italiano' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica |
|
53 | general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica | |
54 |
|
54 | |||
55 | notice_account_updated: L'utenza è stata aggiornata. |
|
55 | notice_account_updated: L'utenza è stata aggiornata. | |
56 | notice_account_invalid_creditentials: Nome utente o password non validi. |
|
56 | notice_account_invalid_creditentials: Nome utente o password non validi. | |
57 | notice_account_password_updated: La password è stata aggiornata. |
|
57 | notice_account_password_updated: La password è stata aggiornata. | |
58 | notice_account_wrong_password: Password errata |
|
58 | notice_account_wrong_password: Password errata | |
59 | notice_account_register_done: L'utenza è stata creata. |
|
59 | notice_account_register_done: L'utenza è stata creata. | |
60 | notice_account_unknown_email: Utente sconosciuto. |
|
60 | notice_account_unknown_email: Utente sconosciuto. | |
61 | notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. |
|
61 | notice_can_t_change_password: Questa utenza utilizza un metodo di autenticazione esterno. Impossibile cambiare la password. | |
62 | notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. |
|
62 | notice_account_lost_email_sent: Ti è stata spedita una email con le istruzioni per cambiare la password. | |
63 | notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. |
|
63 | notice_account_activated: Il tuo account è stato attivato. Ora puoi effettuare l'accesso. | |
64 | notice_successful_create: Creazione effettuata. |
|
64 | notice_successful_create: Creazione effettuata. | |
65 | notice_successful_update: Modifica effettuata. |
|
65 | notice_successful_update: Modifica effettuata. | |
66 | notice_successful_delete: Eliminazione effettuata. |
|
66 | notice_successful_delete: Eliminazione effettuata. | |
67 | notice_successful_connection: Connessione effettuata. |
|
67 | notice_successful_connection: Connessione effettuata. | |
68 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. |
|
68 | notice_file_not_found: La pagina desiderata non esiste o è stata rimossa. | |
69 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. |
|
69 | notice_locking_conflict: Le informazioni sono state modificate da un altro utente. | |
70 | notice_scm_error: La risorsa e/o la versione non esistono nel repository. |
|
70 | notice_scm_error: La risorsa e/o la versione non esistono nel repository. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Password redMine |
|
73 | mail_subject_lost_password: Password redMine | |
74 | mail_subject_register: Attivazione utenza redMine |
|
74 | mail_subject_register: Attivazione utenza redMine | |
75 |
|
75 | |||
76 | gui_validation_error: 1 errore |
|
76 | gui_validation_error: 1 errore | |
77 | gui_validation_error_plural: %d errori |
|
77 | gui_validation_error_plural: %d errori | |
78 |
|
78 | |||
79 | field_name: Nome |
|
79 | field_name: Nome | |
80 | field_description: Descrizione |
|
80 | field_description: Descrizione | |
81 | field_summary: Sommario |
|
81 | field_summary: Sommario | |
82 | field_is_required: Richiesto |
|
82 | field_is_required: Richiesto | |
83 | field_firstname: Nome |
|
83 | field_firstname: Nome | |
84 | field_lastname: Cognome |
|
84 | field_lastname: Cognome | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: File |
|
86 | field_filename: File | |
87 | field_filesize: Dimensione |
|
87 | field_filesize: Dimensione | |
88 | field_downloads: Download |
|
88 | field_downloads: Download | |
89 | field_author: Autore |
|
89 | field_author: Autore | |
90 | field_created_on: Creato |
|
90 | field_created_on: Creato | |
91 | field_updated_on: Aggiornato |
|
91 | field_updated_on: Aggiornato | |
92 | field_field_format: Formato |
|
92 | field_field_format: Formato | |
93 | field_is_for_all: Per tutti i progetti |
|
93 | field_is_for_all: Per tutti i progetti | |
94 | field_possible_values: Valori possibili |
|
94 | field_possible_values: Valori possibili | |
95 | field_regexp: Espressione regolare |
|
95 | field_regexp: Espressione regolare | |
96 | field_min_length: Lunghezza minima |
|
96 | field_min_length: Lunghezza minima | |
97 | field_max_length: Lunghezza massima |
|
97 | field_max_length: Lunghezza massima | |
98 | field_value: Valore |
|
98 | field_value: Valore | |
99 | field_category: Categoria |
|
99 | field_category: Categoria | |
100 | field_title: Titolo |
|
100 | field_title: Titolo | |
101 | field_project: Progetto |
|
101 | field_project: Progetto | |
102 | field_issue: Issue |
|
102 | field_issue: Issue | |
103 | field_status: Stato |
|
103 | field_status: Stato | |
104 | field_notes: Note |
|
104 | field_notes: Note | |
105 | field_is_closed: Chiude il contesto |
|
105 | field_is_closed: Chiude il contesto | |
106 | field_is_default: Stato predefinito |
|
106 | field_is_default: Stato predefinito | |
107 | field_html_color: Colore |
|
107 | field_html_color: Colore | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Oggetto |
|
109 | field_subject: Oggetto | |
110 | field_due_date: Data ultima |
|
110 | field_due_date: Data ultima | |
111 | field_assigned_to: Assegnato a |
|
111 | field_assigned_to: Assegnato a | |
112 | field_priority: Priorita' |
|
112 | field_priority: Priorita' | |
113 | field_fixed_version: Versione di fix |
|
113 | field_fixed_version: Versione di fix | |
114 | field_user: Utente |
|
114 | field_user: Utente | |
115 | field_role: Ruolo |
|
115 | field_role: Ruolo | |
116 | field_homepage: Homepage |
|
116 | field_homepage: Homepage | |
117 | field_is_public: Pubblico |
|
117 | field_is_public: Pubblico | |
118 | field_parent: Sottoprogetto di |
|
118 | field_parent: Sottoprogetto di | |
119 | field_is_in_chlog: Contesti mostrati nel changelog |
|
119 | field_is_in_chlog: Contesti mostrati nel changelog | |
120 | field_is_in_roadmap: Contesti mostrati nel roadmap |
|
120 | field_is_in_roadmap: Contesti mostrati nel roadmap | |
121 | field_login: Login |
|
121 | field_login: Login | |
122 | field_mail_notification: Notifiche via e-mail |
|
122 | field_mail_notification: Notifiche via e-mail | |
123 | field_admin: Amministratore |
|
123 | field_admin: Amministratore | |
124 | field_last_login_on: Ultima connessione |
|
124 | field_last_login_on: Ultima connessione | |
125 | field_language: Lingua |
|
125 | field_language: Lingua | |
126 | field_effective_date: Data |
|
126 | field_effective_date: Data | |
127 | field_password: Password |
|
127 | field_password: Password | |
128 | field_new_password: Nuova password |
|
128 | field_new_password: Nuova password | |
129 | field_password_confirmation: Conferma |
|
129 | field_password_confirmation: Conferma | |
130 | field_version: Versione |
|
130 | field_version: Versione | |
131 | field_type: Tipo |
|
131 | field_type: Tipo | |
132 | field_host: Host |
|
132 | field_host: Host | |
133 | field_port: Porta |
|
133 | field_port: Porta | |
134 | field_account: Utenza |
|
134 | field_account: Utenza | |
135 | field_base_dn: DN base |
|
135 | field_base_dn: DN base | |
136 | field_attr_login: Attributo login |
|
136 | field_attr_login: Attributo login | |
137 | field_attr_firstname: Attributo nome |
|
137 | field_attr_firstname: Attributo nome | |
138 | field_attr_lastname: Attributo cognome |
|
138 | field_attr_lastname: Attributo cognome | |
139 | field_attr_mail: Attributo e-mail |
|
139 | field_attr_mail: Attributo e-mail | |
140 | field_onthefly: Creazione utenza "al volo" |
|
140 | field_onthefly: Creazione utenza "al volo" | |
141 | field_start_date: Inizio |
|
141 | field_start_date: Inizio | |
142 | field_done_ratio: %% completo |
|
142 | field_done_ratio: %% completo | |
143 | field_auth_source: Modalità di autenticazione |
|
143 | field_auth_source: Modalità di autenticazione | |
144 | field_hide_mail: Nascondi il mio indirizzo di e-mail |
|
144 | field_hide_mail: Nascondi il mio indirizzo di e-mail | |
145 | field_comments: Commento |
|
145 | field_comments: Commento | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Pagina principale |
|
147 | field_start_page: Pagina principale | |
148 | field_subproject: Sottoprogetto |
|
148 | field_subproject: Sottoprogetto | |
149 | field_hours: Hours |
|
149 | field_hours: Hours | |
150 | field_activity: Activity |
|
150 | field_activity: Activity | |
151 | field_spent_on: Data |
|
151 | field_spent_on: Data | |
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 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Titolo applicazione |
|
157 | setting_app_title: Titolo applicazione | |
158 | setting_app_subtitle: Sottotitolo applicazione |
|
158 | setting_app_subtitle: Sottotitolo applicazione | |
159 | setting_welcome_text: Testo di benvenuto |
|
159 | setting_welcome_text: Testo di benvenuto | |
160 | setting_default_language: Lingua di default |
|
160 | setting_default_language: Lingua di default | |
161 | setting_login_required: Autenticazione richiesta |
|
161 | setting_login_required: Autenticazione richiesta | |
162 | setting_self_registration: Auto-registrazione abilitata |
|
162 | setting_self_registration: Auto-registrazione abilitata | |
163 | setting_attachment_max_size: Massima dimensione allegati |
|
163 | setting_attachment_max_size: Massima dimensione allegati | |
164 | setting_issues_export_limit: Limite esportazione contesti |
|
164 | setting_issues_export_limit: Limite esportazione contesti | |
165 | setting_mail_from: Indirizzo sorgente e-mail |
|
165 | setting_mail_from: Indirizzo sorgente e-mail | |
166 | setting_host_name: Nome host |
|
166 | setting_host_name: Nome host | |
167 | setting_text_formatting: Formattazione testo |
|
167 | setting_text_formatting: Formattazione testo | |
168 | setting_wiki_compression: Compressione di storia di Wiki |
|
168 | setting_wiki_compression: Compressione di storia di Wiki | |
169 | setting_feeds_limit: Limite contenuti del feed |
|
169 | setting_feeds_limit: Limite contenuti del feed | |
170 | setting_autofetch_changesets: Acquisisci automaticamente le commit |
|
170 | setting_autofetch_changesets: Acquisisci automaticamente le commit | |
171 | setting_sys_api_enabled: Abilita WS per la gestione del repository |
|
171 | setting_sys_api_enabled: Abilita WS per la gestione del repository | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Utente |
|
178 | label_user: Utente | |
178 | label_user_plural: Utenti |
|
179 | label_user_plural: Utenti | |
179 | label_user_new: Nuovo utente |
|
180 | label_user_new: Nuovo utente | |
180 | label_project: Progetto |
|
181 | label_project: Progetto | |
181 | label_project_new: Nuovo progetto |
|
182 | label_project_new: Nuovo progetto | |
182 | label_project_plural: Progetti |
|
183 | label_project_plural: Progetti | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Ultimi progetti registrati |
|
185 | label_project_latest: Ultimi progetti registrati | |
185 | label_issue: Contesto |
|
186 | label_issue: Contesto | |
186 | label_issue_new: Nuovo contesto |
|
187 | label_issue_new: Nuovo contesto | |
187 | label_issue_plural: Contesti |
|
188 | label_issue_plural: Contesti | |
188 | label_issue_view_all: Mostra tutti i contesti |
|
189 | label_issue_view_all: Mostra tutti i contesti | |
189 | label_document: Documento |
|
190 | label_document: Documento | |
190 | label_document_new: Nuovo documento |
|
191 | label_document_new: Nuovo documento | |
191 | label_document_plural: Documenti |
|
192 | label_document_plural: Documenti | |
192 | label_role: Ruolo |
|
193 | label_role: Ruolo | |
193 | label_role_plural: Ruoli |
|
194 | label_role_plural: Ruoli | |
194 | label_role_new: Nuovo ruolo |
|
195 | label_role_new: Nuovo ruolo | |
195 | label_role_and_permissions: Ruoli e permessi |
|
196 | label_role_and_permissions: Ruoli e permessi | |
196 | label_member: Membro |
|
197 | label_member: Membro | |
197 | label_member_new: Nuovo membro |
|
198 | label_member_new: Nuovo membro | |
198 | label_member_plural: Membri |
|
199 | label_member_plural: Membri | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Tracker |
|
201 | label_tracker_plural: Tracker | |
201 | label_tracker_new: Nuovo tracker |
|
202 | label_tracker_new: Nuovo tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Stato contesti |
|
204 | label_issue_status: Stato contesti | |
204 | label_issue_status_plural: Stati contesto |
|
205 | label_issue_status_plural: Stati contesto | |
205 | label_issue_status_new: Nuovo stato |
|
206 | label_issue_status_new: Nuovo stato | |
206 | label_issue_category: Categorie contesti |
|
207 | label_issue_category: Categorie contesti | |
207 | label_issue_category_plural: Categorie contesto |
|
208 | label_issue_category_plural: Categorie contesto | |
208 | label_issue_category_new: Nuova categoria |
|
209 | label_issue_category_new: Nuova categoria | |
209 | label_custom_field: Campo personalizzato |
|
210 | label_custom_field: Campo personalizzato | |
210 | label_custom_field_plural: Campi personalizzati |
|
211 | label_custom_field_plural: Campi personalizzati | |
211 | label_custom_field_new: Nuovo campo personalizzato |
|
212 | label_custom_field_new: Nuovo campo personalizzato | |
212 | label_enumerations: Enumerazioni |
|
213 | label_enumerations: Enumerazioni | |
213 | label_enumeration_new: Nuovo valore |
|
214 | label_enumeration_new: Nuovo valore | |
214 | label_information: Informazione |
|
215 | label_information: Informazione | |
215 | label_information_plural: Informazioni |
|
216 | label_information_plural: Informazioni | |
216 | label_please_login: Autenticarsi |
|
217 | label_please_login: Autenticarsi | |
217 | label_register: Registrati |
|
218 | label_register: Registrati | |
218 | label_password_lost: Password dimenticata |
|
219 | label_password_lost: Password dimenticata | |
219 | label_home: Home |
|
220 | label_home: Home | |
220 | label_my_page: Pagina personale |
|
221 | label_my_page: Pagina personale | |
221 | label_my_account: La mia utenza |
|
222 | label_my_account: La mia utenza | |
222 | label_my_projects: I miei progetti |
|
223 | label_my_projects: I miei progetti | |
223 | label_administration: Amministrazione |
|
224 | label_administration: Amministrazione | |
224 | label_login: Login |
|
225 | label_login: Login | |
225 | label_logout: Logout |
|
226 | label_logout: Logout | |
226 | label_help: Aiuto |
|
227 | label_help: Aiuto | |
227 | label_reported_issues: Contesti segnalati |
|
228 | label_reported_issues: Contesti segnalati | |
228 | label_assigned_to_me_issues: I miei contesti |
|
229 | label_assigned_to_me_issues: I miei contesti | |
229 | label_last_login: Ultimo collegamento |
|
230 | label_last_login: Ultimo collegamento | |
230 | label_last_updates: Ultimo aggiornamento |
|
231 | label_last_updates: Ultimo aggiornamento | |
231 | label_last_updates_plural: %d ultimo aggiornamento |
|
232 | label_last_updates_plural: %d ultimo aggiornamento | |
232 | label_registered_on: Registrato il |
|
233 | label_registered_on: Registrato il | |
233 | label_activity: Attività |
|
234 | label_activity: Attività | |
234 | label_new: Nuovo |
|
235 | label_new: Nuovo | |
235 | label_logged_as: Autenticato come |
|
236 | label_logged_as: Autenticato come | |
236 | label_environment: Ambiente |
|
237 | label_environment: Ambiente | |
237 | label_authentication: Autenticazione |
|
238 | label_authentication: Autenticazione | |
238 | label_auth_source: Modalità di autenticazione |
|
239 | label_auth_source: Modalità di autenticazione | |
239 | label_auth_source_new: Nuova modalità di autenticazione |
|
240 | label_auth_source_new: Nuova modalità di autenticazione | |
240 | label_auth_source_plural: Modalità di autenticazione |
|
241 | label_auth_source_plural: Modalità di autenticazione | |
241 | label_subproject_plural: Sottoprogetti |
|
242 | label_subproject_plural: Sottoprogetti | |
242 | label_min_max_length: Lunghezza minima - massima |
|
243 | label_min_max_length: Lunghezza minima - massima | |
243 | label_list: Elenco |
|
244 | label_list: Elenco | |
244 | label_date: Data |
|
245 | label_date: Data | |
245 | label_integer: Intero |
|
246 | label_integer: Intero | |
246 | label_boolean: Booleano |
|
247 | label_boolean: Booleano | |
247 | label_string: Testo |
|
248 | label_string: Testo | |
248 | label_text: Testo esteso |
|
249 | label_text: Testo esteso | |
249 | label_attribute: Attributo |
|
250 | label_attribute: Attributo | |
250 | label_attribute_plural: Attributi |
|
251 | label_attribute_plural: Attributi | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Download |
|
253 | label_download_plural: %d Download | |
253 | label_no_data: Nessun dato disponibile |
|
254 | label_no_data: Nessun dato disponibile | |
254 | label_change_status: Cambia stato |
|
255 | label_change_status: Cambia stato | |
255 | label_history: Cronologia |
|
256 | label_history: Cronologia | |
256 | label_attachment: File |
|
257 | label_attachment: File | |
257 | label_attachment_new: Nuovo file |
|
258 | label_attachment_new: Nuovo file | |
258 | label_attachment_delete: Elimina file |
|
259 | label_attachment_delete: Elimina file | |
259 | label_attachment_plural: File |
|
260 | label_attachment_plural: File | |
260 | label_report: Report |
|
261 | label_report: Report | |
261 | label_report_plural: Report |
|
262 | label_report_plural: Report | |
262 | label_news: Notizia |
|
263 | label_news: Notizia | |
263 | label_news_new: Aggiungi notizia |
|
264 | label_news_new: Aggiungi notizia | |
264 | label_news_plural: Notizie |
|
265 | label_news_plural: Notizie | |
265 | label_news_latest: Utime notizie |
|
266 | label_news_latest: Utime notizie | |
266 | label_news_view_all: Tutte le notizie |
|
267 | label_news_view_all: Tutte le notizie | |
267 | label_change_log: Change log |
|
268 | label_change_log: Change log | |
268 | label_settings: Impostazioni |
|
269 | label_settings: Impostazioni | |
269 | label_overview: Panoramica |
|
270 | label_overview: Panoramica | |
270 | label_version: Versione |
|
271 | label_version: Versione | |
271 | label_version_new: Nuova versione |
|
272 | label_version_new: Nuova versione | |
272 | label_version_plural: Versioni |
|
273 | label_version_plural: Versioni | |
273 | label_confirmation: Conferma |
|
274 | label_confirmation: Conferma | |
274 | label_export_to: Esporta su |
|
275 | label_export_to: Esporta su | |
275 | label_read: Leggi... |
|
276 | label_read: Leggi... | |
276 | label_public_projects: Progetti pubblici |
|
277 | label_public_projects: Progetti pubblici | |
277 | label_open_issues: aperta |
|
278 | label_open_issues: aperta | |
278 | label_open_issues_plural: aperte |
|
279 | label_open_issues_plural: aperte | |
279 | label_closed_issues: chiusa |
|
280 | label_closed_issues: chiusa | |
280 | label_closed_issues_plural: chiuse |
|
281 | label_closed_issues_plural: chiuse | |
281 | label_total: Totale |
|
282 | label_total: Totale | |
282 | label_permissions: Permessi |
|
283 | label_permissions: Permessi | |
283 | label_current_status: Stato attuale |
|
284 | label_current_status: Stato attuale | |
284 | label_new_statuses_allowed: Nuovi stati possibili |
|
285 | label_new_statuses_allowed: Nuovi stati possibili | |
285 | label_all: tutti |
|
286 | label_all: tutti | |
286 | label_none: nessuno |
|
287 | label_none: nessuno | |
287 | label_next: Successivo |
|
288 | label_next: Successivo | |
288 | label_previous: Precedente |
|
289 | label_previous: Precedente | |
289 | label_used_by: Usato da |
|
290 | label_used_by: Usato da | |
290 | label_details: Dettagli |
|
291 | label_details: Dettagli | |
291 | label_add_note: Aggiungi una nota |
|
292 | label_add_note: Aggiungi una nota | |
292 | label_per_page: Per pagina |
|
293 | label_per_page: Per pagina | |
293 | label_calendar: Calendario |
|
294 | label_calendar: Calendario | |
294 | label_months_from: mesi da |
|
295 | label_months_from: mesi da | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Interno |
|
297 | label_internal: Interno | |
297 | label_last_changes: ultime %d modifiche |
|
298 | label_last_changes: ultime %d modifiche | |
298 | label_change_view_all: Tutte le modifiche |
|
299 | label_change_view_all: Tutte le modifiche | |
299 | label_personalize_page: Personalizza la pagina |
|
300 | label_personalize_page: Personalizza la pagina | |
300 | label_comment: Commento |
|
301 | label_comment: Commento | |
301 | label_comment_plural: Commenti |
|
302 | label_comment_plural: Commenti | |
302 | label_comment_add: Aggiungi un commento |
|
303 | label_comment_add: Aggiungi un commento | |
303 | label_comment_added: Commento aggiunto |
|
304 | label_comment_added: Commento aggiunto | |
304 | label_comment_delete: Elimina commenti |
|
305 | label_comment_delete: Elimina commenti | |
305 | label_query: Custom query |
|
306 | label_query: Custom query | |
306 | label_query_plural: Query personalizzate |
|
307 | label_query_plural: Query personalizzate | |
307 | label_query_new: Nuova query |
|
308 | label_query_new: Nuova query | |
308 | label_filter_add: Aggiungi filtro |
|
309 | label_filter_add: Aggiungi filtro | |
309 | label_filter_plural: Filtri |
|
310 | label_filter_plural: Filtri | |
310 | label_equals: è |
|
311 | label_equals: è | |
311 | label_not_equals: non è |
|
312 | label_not_equals: non è | |
312 | label_in_less_than: è minore di |
|
313 | label_in_less_than: è minore di | |
313 | label_in_more_than: è maggiore di |
|
314 | label_in_more_than: è maggiore di | |
314 | label_in: in |
|
315 | label_in: in | |
315 | label_today: oggi |
|
316 | label_today: oggi | |
316 | label_less_than_ago: meno di giorni fa |
|
317 | label_less_than_ago: meno di giorni fa | |
317 | label_more_than_ago: più di giorni fa |
|
318 | label_more_than_ago: più di giorni fa | |
318 | label_ago: giorni fa |
|
319 | label_ago: giorni fa | |
319 | label_contains: contiene |
|
320 | label_contains: contiene | |
320 | label_not_contains: non contiene |
|
321 | label_not_contains: non contiene | |
321 | label_day_plural: giorni |
|
322 | label_day_plural: giorni | |
322 | label_repository: Repository |
|
323 | label_repository: Repository | |
323 | label_browse: Browse |
|
324 | label_browse: Browse | |
324 | label_modification: %d modifica |
|
325 | label_modification: %d modifica | |
325 | label_modification_plural: %d modifiche |
|
326 | label_modification_plural: %d modifiche | |
326 | label_revision: Versione |
|
327 | label_revision: Versione | |
327 | label_revision_plural: Versioni |
|
328 | label_revision_plural: Versioni | |
328 | label_added: aggiunto |
|
329 | label_added: aggiunto | |
329 | label_modified: modificato |
|
330 | label_modified: modificato | |
330 | label_deleted: eliminato |
|
331 | label_deleted: eliminato | |
331 | label_latest_revision: Ultima versione |
|
332 | label_latest_revision: Ultima versione | |
332 | label_latest_revision_plural: Ultime versioni |
|
333 | label_latest_revision_plural: Ultime versioni | |
333 | label_view_revisions: Mostra versioni |
|
334 | label_view_revisions: Mostra versioni | |
334 | label_max_size: Dimensione massima |
|
335 | label_max_size: Dimensione massima | |
335 | label_on: 'on' |
|
336 | label_on: 'on' | |
336 | label_sort_highest: Sposta in cima |
|
337 | label_sort_highest: Sposta in cima | |
337 | label_sort_higher: Su |
|
338 | label_sort_higher: Su | |
338 | label_sort_lower: Giù |
|
339 | label_sort_lower: Giù | |
339 | label_sort_lowest: Sposta in fondo |
|
340 | label_sort_lowest: Sposta in fondo | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Da ultimare in |
|
342 | label_roadmap_due_in: Da ultimare in | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Nessun contesto per questa versione |
|
344 | label_roadmap_no_issues: Nessun contesto per questa versione | |
344 | label_search: Ricerca |
|
345 | label_search: Ricerca | |
345 | label_result: %d risultato |
|
346 | label_result: %d risultato | |
346 | label_result_plural: %d risultati |
|
347 | label_result_plural: %d risultati | |
347 | label_all_words: Tutte le parole |
|
348 | label_all_words: Tutte le parole | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Modifica Wiki |
|
350 | label_wiki_edit: Modifica Wiki | |
350 | label_wiki_edit_plural: Modfiche wiki |
|
351 | label_wiki_edit_plural: Modfiche wiki | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Indice |
|
354 | label_page_index: Indice | |
354 | label_current_version: Versione corrente |
|
355 | label_current_version: Versione corrente | |
355 | label_preview: Anteprima |
|
356 | label_preview: Anteprima | |
356 | label_feed_plural: Feed |
|
357 | label_feed_plural: Feed | |
357 | label_changes_details: Particolari di tutti i cambiamenti |
|
358 | label_changes_details: Particolari di tutti i cambiamenti | |
358 | label_issue_tracking: tracking dei contesti |
|
359 | label_issue_tracking: tracking dei contesti | |
359 | label_spent_time: Tempo impiegato |
|
360 | label_spent_time: Tempo impiegato | |
360 | label_f_hour: %.2f ora |
|
361 | label_f_hour: %.2f ora | |
361 | label_f_hour_plural: %.2f ore |
|
362 | label_f_hour_plural: %.2f ore | |
362 | label_time_tracking: Tracking del tempo |
|
363 | label_time_tracking: Tracking del tempo | |
363 | label_change_plural: Modifiche |
|
364 | label_change_plural: Modifiche | |
364 | label_statistics: Statistiche |
|
365 | label_statistics: Statistiche | |
365 | label_commits_per_month: Commit per mese |
|
366 | label_commits_per_month: Commit per mese | |
366 | label_commits_per_author: Commit per autore |
|
367 | label_commits_per_author: Commit per autore | |
367 | label_view_diff: mostra differenze |
|
368 | label_view_diff: mostra differenze | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: side by side |
|
370 | label_diff_side_by_side: side by side | |
370 | label_options: Opzioni |
|
371 | label_options: Opzioni | |
371 | label_copy_workflow_from: Copia workflow da |
|
372 | label_copy_workflow_from: Copia workflow da | |
372 | label_permissions_report: Report permessi |
|
373 | label_permissions_report: Report permessi | |
373 | label_watched_issues: Watched issues |
|
374 | label_watched_issues: Watched issues | |
374 | label_related_issues: Related issues |
|
375 | label_related_issues: Related issues | |
375 | label_applied_status: Applied status |
|
376 | label_applied_status: Applied status | |
376 | label_loading: Loading... |
|
377 | label_loading: Loading... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Login |
|
411 | button_login: Login | |
411 | button_submit: Invia |
|
412 | button_submit: Invia | |
412 | button_save: Salva |
|
413 | button_save: Salva | |
413 | button_check_all: Seleziona tutti |
|
414 | button_check_all: Seleziona tutti | |
414 | button_uncheck_all: Deseleziona tutti |
|
415 | button_uncheck_all: Deseleziona tutti | |
415 | button_delete: Elimina |
|
416 | button_delete: Elimina | |
416 | button_create: Crea |
|
417 | button_create: Crea | |
417 | button_test: Test |
|
418 | button_test: Test | |
418 | button_edit: Modifica |
|
419 | button_edit: Modifica | |
419 | button_add: Aggiungi |
|
420 | button_add: Aggiungi | |
420 | button_change: Modifica |
|
421 | button_change: Modifica | |
421 | button_apply: Applica |
|
422 | button_apply: Applica | |
422 | button_clear: Pulisci |
|
423 | button_clear: Pulisci | |
423 | button_lock: Blocca |
|
424 | button_lock: Blocca | |
424 | button_unlock: Sblocca |
|
425 | button_unlock: Sblocca | |
425 | button_download: Scarica |
|
426 | button_download: Scarica | |
426 | button_list: Elenca |
|
427 | button_list: Elenca | |
427 | button_view: Mostra |
|
428 | button_view: Mostra | |
428 | button_move: Sposta |
|
429 | button_move: Sposta | |
429 | button_back: Indietro |
|
430 | button_back: Indietro | |
430 | button_cancel: Annulla |
|
431 | button_cancel: Annulla | |
431 | button_activate: Attiva |
|
432 | button_activate: Attiva | |
432 | button_sort: Ordina |
|
433 | button_sort: Ordina | |
433 | button_log_time: Registra tempo |
|
434 | button_log_time: Registra tempo | |
434 | button_rollback: Ripristina questa versione |
|
435 | button_rollback: Ripristina questa versione | |
435 | button_watch: Watch |
|
436 | button_watch: Watch | |
436 | button_unwatch: Unwatch |
|
437 | button_unwatch: Unwatch | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: attivo |
|
442 | status_active: attivo | |
442 | status_registered: registrato |
|
443 | status_registered: registrato | |
443 | status_locked: bloccato |
|
444 | status_locked: bloccato | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. |
|
446 | text_select_mail_notifications: Seleziona le azioni per cui deve essere inviata una notifica. | |
446 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 significa nessuna restrizione |
|
448 | text_min_max_length_info: 0 significa nessuna restrizione | |
448 | text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati? |
|
449 | text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati? | |
449 | text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow |
|
450 | text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow | |
450 | text_are_you_sure: Sei sicuro ? |
|
451 | text_are_you_sure: Sei sicuro ? | |
451 | text_journal_changed: cambiato da %s a %s |
|
452 | text_journal_changed: cambiato da %s a %s | |
452 | text_journal_set_to: impostato a %s |
|
453 | text_journal_set_to: impostato a %s | |
453 | text_journal_deleted: cancellato |
|
454 | text_journal_deleted: cancellato | |
454 | text_tip_task_begin_day: attività che iniziano in questa giornata |
|
455 | text_tip_task_begin_day: attività che iniziano in questa giornata | |
455 | text_tip_task_end_day: attività che terminano in questa giornata |
|
456 | text_tip_task_end_day: attività che terminano in questa giornata | |
456 | text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata |
|
457 | text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata | |
457 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
458 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
458 | text_caracters_maximum: massimo %d caratteri. |
|
459 | text_caracters_maximum: massimo %d caratteri. | |
459 | text_length_between: Lunghezza compresa tra %d e %d caratteri. |
|
460 | text_length_between: Lunghezza compresa tra %d e %d caratteri. | |
460 | text_tracker_no_workflow: Nessun workflow definito per questo tracker |
|
461 | text_tracker_no_workflow: Nessun workflow definito per questo tracker | |
461 | text_unallowed_characters: Unallowed characters |
|
462 | text_unallowed_characters: Unallowed characters | |
462 | text_comma_separated: Multiple values allowed (comma separated). |
|
463 | text_comma_separated: Multiple values allowed (comma separated). | |
463 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
464 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
464 |
|
465 | |||
465 | default_role_manager: Manager |
|
466 | default_role_manager: Manager | |
466 | default_role_developper: Sviluppatore |
|
467 | default_role_developper: Sviluppatore | |
467 | default_role_reporter: Reporter |
|
468 | default_role_reporter: Reporter | |
468 | default_tracker_bug: Contesto |
|
469 | default_tracker_bug: Contesto | |
469 | default_tracker_feature: Funzione |
|
470 | default_tracker_feature: Funzione | |
470 | default_tracker_support: Supporto |
|
471 | default_tracker_support: Supporto | |
471 | default_issue_status_new: Nuovo/a |
|
472 | default_issue_status_new: Nuovo/a | |
472 | default_issue_status_assigned: Assegnato/a |
|
473 | default_issue_status_assigned: Assegnato/a | |
473 | default_issue_status_resolved: Risolto/a |
|
474 | default_issue_status_resolved: Risolto/a | |
474 | default_issue_status_feedback: Feedback |
|
475 | default_issue_status_feedback: Feedback | |
475 | default_issue_status_closed: Chiuso/a |
|
476 | default_issue_status_closed: Chiuso/a | |
476 | default_issue_status_rejected: Rifiutato/a |
|
477 | default_issue_status_rejected: Rifiutato/a | |
477 | default_doc_category_user: Documentazione utente |
|
478 | default_doc_category_user: Documentazione utente | |
478 | default_doc_category_tech: Documentazione tecnica |
|
479 | default_doc_category_tech: Documentazione tecnica | |
479 | default_priority_low: Bassa |
|
480 | default_priority_low: Bassa | |
480 | default_priority_normal: Normale |
|
481 | default_priority_normal: Normale | |
481 | default_priority_high: Alta |
|
482 | default_priority_high: Alta | |
482 | default_priority_urgent: Urgente |
|
483 | default_priority_urgent: Urgente | |
483 | default_priority_immediate: Immediata |
|
484 | default_priority_immediate: Immediata | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Development |
|
486 | default_activity_development: Development | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Priorità contesti |
|
488 | enumeration_issue_priorities: Priorità contesti | |
488 | enumeration_doc_categories: Categorie di documenti |
|
489 | enumeration_doc_categories: Categorie di documenti | |
489 | enumeration_activities: Attività (time tracking) |
|
490 | enumeration_activities: Attività (time tracking) |
@@ -1,490 +1,491 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月 |
|
4 | actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月 | |
5 | actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月 |
|
5 | actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月 | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_select_year_suffix: 月 |
|
8 | actionview_datehelper_select_year_suffix: 月 | |
9 | actionview_datehelper_time_in_words_day: 1日 |
|
9 | actionview_datehelper_time_in_words_day: 1日 | |
10 | actionview_datehelper_time_in_words_day_plural: %d日間 |
|
10 | actionview_datehelper_time_in_words_day_plural: %d日間 | |
11 | actionview_datehelper_time_in_words_hour_about: 約1時間 |
|
11 | actionview_datehelper_time_in_words_hour_about: 約1時間 | |
12 | actionview_datehelper_time_in_words_hour_about_plural: 約%d時間 |
|
12 | actionview_datehelper_time_in_words_hour_about_plural: 約%d時間 | |
13 | actionview_datehelper_time_in_words_hour_about_single: 約1時間 |
|
13 | actionview_datehelper_time_in_words_hour_about_single: 約1時間 | |
14 | actionview_datehelper_time_in_words_minute: 1分 |
|
14 | actionview_datehelper_time_in_words_minute: 1分 | |
15 | actionview_datehelper_time_in_words_minute_half: 約30秒 |
|
15 | actionview_datehelper_time_in_words_minute_half: 約30秒 | |
16 | actionview_datehelper_time_in_words_minute_less_than: 1分以内 |
|
16 | actionview_datehelper_time_in_words_minute_less_than: 1分以内 | |
17 | actionview_datehelper_time_in_words_minute_plural: %d分 |
|
17 | actionview_datehelper_time_in_words_minute_plural: %d分 | |
18 | actionview_datehelper_time_in_words_minute_single: 1分 |
|
18 | actionview_datehelper_time_in_words_minute_single: 1分 | |
19 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 |
|
19 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 | |
20 | actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内 |
|
20 | actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内 | |
21 | actionview_instancetag_blank_option: 選んでください |
|
21 | actionview_instancetag_blank_option: 選んでください | |
22 |
|
22 | |||
23 | activerecord_error_inclusion: がリストに含まれていません |
|
23 | activerecord_error_inclusion: がリストに含まれていません | |
24 | activerecord_error_exclusion: が予約されています |
|
24 | activerecord_error_exclusion: が予約されています | |
25 | activerecord_error_invalid: が無効です |
|
25 | activerecord_error_invalid: が無効です | |
26 | activerecord_error_confirmation: 確認のパスワードと合っていません |
|
26 | activerecord_error_confirmation: 確認のパスワードと合っていません | |
27 | activerecord_error_accepted: を承諾してください |
|
27 | activerecord_error_accepted: を承諾してください | |
28 | activerecord_error_empty: が空です |
|
28 | activerecord_error_empty: が空です | |
29 | activerecord_error_blank: が空白です |
|
29 | activerecord_error_blank: が空白です | |
30 | activerecord_error_too_long: が長すぎます |
|
30 | activerecord_error_too_long: が長すぎます | |
31 | activerecord_error_too_short: が短かすぎます |
|
31 | activerecord_error_too_short: が短かすぎます | |
32 | activerecord_error_wrong_length: の長さが間違っています |
|
32 | activerecord_error_wrong_length: の長さが間違っています | |
33 | activerecord_error_taken: はすでに登録されています |
|
33 | activerecord_error_taken: はすでに登録されています | |
34 | activerecord_error_not_a_number: が数字ではありません |
|
34 | activerecord_error_not_a_number: が数字ではありません | |
35 | activerecord_error_not_a_date: の日付が間違っています |
|
35 | activerecord_error_not_a_date: の日付が間違っています | |
36 | activerecord_error_greater_than_start_date: を開始日より後にしてください |
|
36 | activerecord_error_greater_than_start_date: を開始日より後にしてください | |
37 | activerecord_error_not_same_project: 同じプロジェクトに属していません |
|
37 | activerecord_error_not_same_project: 同じプロジェクトに属していません | |
38 | activerecord_error_circular_dependency: この関係では、循環依存になります |
|
38 | activerecord_error_circular_dependency: この関係では、循環依存になります | |
39 |
|
39 | |||
40 | general_fmt_age: %d歳 |
|
40 | general_fmt_age: %d歳 | |
41 | general_fmt_age_plural: %d歳 |
|
41 | general_fmt_age_plural: %d歳 | |
42 | general_fmt_date: %%Y年%%m月%%d日 |
|
42 | general_fmt_date: %%Y年%%m月%%d日 | |
43 | general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p |
|
43 | general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p | |
44 | general_fmt_datetime_short: %%b %%d, %%H:%%M %%p |
|
44 | general_fmt_datetime_short: %%b %%d, %%H:%%M %%p | |
45 | general_fmt_time: %%H:%%M %%p |
|
45 | general_fmt_time: %%H:%%M %%p | |
46 | general_text_No: 'いいえ' |
|
46 | general_text_No: 'いいえ' | |
47 | general_text_Yes: 'はい' |
|
47 | general_text_Yes: 'はい' | |
48 | general_text_no: 'いいえ' |
|
48 | general_text_no: 'いいえ' | |
49 | general_text_yes: 'はい' |
|
49 | general_text_yes: 'はい' | |
50 | general_lang_name: 'Japanese (日本語)' |
|
50 | general_lang_name: 'Japanese (日本語)' | |
51 | general_csv_separator: ',' |
|
51 | general_csv_separator: ',' | |
52 | general_csv_encoding: SJIS |
|
52 | general_csv_encoding: SJIS | |
53 | general_pdf_encoding: SJIS |
|
53 | general_pdf_encoding: SJIS | |
54 | general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日 |
|
54 | general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日 | |
55 |
|
55 | |||
56 | notice_account_updated: アカウントが更新されました。 |
|
56 | notice_account_updated: アカウントが更新されました。 | |
57 | notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効 |
|
57 | notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効 | |
58 | notice_account_password_updated: パスワードが更新されました。 |
|
58 | notice_account_password_updated: パスワードが更新されました。 | |
59 | notice_account_wrong_password: パスワードが違います |
|
59 | notice_account_wrong_password: パスワードが違います | |
60 | notice_account_register_done: アカウントが作成されました。 |
|
60 | notice_account_register_done: アカウントが作成されました。 | |
61 | notice_account_unknown_email: ユーザが存在しません。 |
|
61 | notice_account_unknown_email: ユーザが存在しません。 | |
62 | notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。 |
|
62 | notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。 | |
63 | notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。 |
|
63 | notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。 | |
64 | notice_account_activated: アカウントが有効になりました。ログインできます。 |
|
64 | notice_account_activated: アカウントが有効になりました。ログインできます。 | |
65 | notice_successful_create: 作成しました。 |
|
65 | notice_successful_create: 作成しました。 | |
66 | notice_successful_update: 更新しました。 |
|
66 | notice_successful_update: 更新しました。 | |
67 | notice_successful_delete: 削除しました。 |
|
67 | notice_successful_delete: 削除しました。 | |
68 | notice_successful_connection: 接続しました。 |
|
68 | notice_successful_connection: 接続しました。 | |
69 | notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。 |
|
69 | notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。 | |
70 | notice_locking_conflict: 別のユーザがデータを更新しています。 |
|
70 | notice_locking_conflict: 別のユーザがデータを更新しています。 | |
71 | notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。 |
|
71 | notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。 | |
72 | notice_not_authorized: このページにアクセスするには認証が必要です。 |
|
72 | notice_not_authorized: このページにアクセスするには認証が必要です。 | |
73 |
|
73 | |||
74 | mail_subject_lost_password: redMineパスワード |
|
74 | mail_subject_lost_password: redMineパスワード | |
75 | mail_subject_register: redMineアカウントが有効になりました |
|
75 | mail_subject_register: redMineアカウントが有効になりました | |
76 |
|
76 | |||
77 | gui_validation_error: 1件のエラー |
|
77 | gui_validation_error: 1件のエラー | |
78 | gui_validation_error_plural: %d件のエラー |
|
78 | gui_validation_error_plural: %d件のエラー | |
79 |
|
79 | |||
80 | field_name: 名前 |
|
80 | field_name: 名前 | |
81 | field_description: 説明 |
|
81 | field_description: 説明 | |
82 | field_summary: サマリ |
|
82 | field_summary: サマリ | |
83 | field_is_required: 必須 |
|
83 | field_is_required: 必須 | |
84 | field_firstname: 名前 |
|
84 | field_firstname: 名前 | |
85 | field_lastname: 苗字 |
|
85 | field_lastname: 苗字 | |
86 | field_mail: メールアドレス |
|
86 | field_mail: メールアドレス | |
87 | field_filename: ファイル |
|
87 | field_filename: ファイル | |
88 | field_filesize: サイズ |
|
88 | field_filesize: サイズ | |
89 | field_downloads: ダウンロード |
|
89 | field_downloads: ダウンロード | |
90 | field_author: 起票者 |
|
90 | field_author: 起票者 | |
91 | field_created_on: 作成日 |
|
91 | field_created_on: 作成日 | |
92 | field_updated_on: 更新日 |
|
92 | field_updated_on: 更新日 | |
93 | field_field_format: 書式 |
|
93 | field_field_format: 書式 | |
94 | field_is_for_all: 全プロジェクト向け |
|
94 | field_is_for_all: 全プロジェクト向け | |
95 | field_possible_values: 選択肢 |
|
95 | field_possible_values: 選択肢 | |
96 | field_regexp: 正規表現 |
|
96 | field_regexp: 正規表現 | |
97 | field_min_length: 最小値 |
|
97 | field_min_length: 最小値 | |
98 | field_max_length: 最大値 |
|
98 | field_max_length: 最大値 | |
99 | field_value: 値 |
|
99 | field_value: 値 | |
100 | field_category: カテゴリ |
|
100 | field_category: カテゴリ | |
101 | field_title: タイトル |
|
101 | field_title: タイトル | |
102 | field_project: プロジェクト |
|
102 | field_project: プロジェクト | |
103 | field_issue: 問題 |
|
103 | field_issue: 問題 | |
104 | field_status: ステータス |
|
104 | field_status: ステータス | |
105 | field_notes: 注記 |
|
105 | field_notes: 注記 | |
106 | field_is_closed: 終了した問題 |
|
106 | field_is_closed: 終了した問題 | |
107 | field_is_default: デフォルトのステータス |
|
107 | field_is_default: デフォルトのステータス | |
108 | field_html_color: 色 |
|
108 | field_html_color: 色 | |
109 | field_tracker: トラッカー |
|
109 | field_tracker: トラッカー | |
110 | field_subject: 題名 |
|
110 | field_subject: 題名 | |
111 | field_due_date: 期限日 |
|
111 | field_due_date: 期限日 | |
112 | field_assigned_to: 担当者 |
|
112 | field_assigned_to: 担当者 | |
113 | field_priority: 優先度 |
|
113 | field_priority: 優先度 | |
114 | field_fixed_version: 修正されたバージョン |
|
114 | field_fixed_version: 修正されたバージョン | |
115 | field_user: ユーザ |
|
115 | field_user: ユーザ | |
116 | field_role: 役割 |
|
116 | field_role: 役割 | |
117 | field_homepage: ホームページ |
|
117 | field_homepage: ホームページ | |
118 | field_is_public: 公開 |
|
118 | field_is_public: 公開 | |
119 | field_parent: 親プロジェクト名 |
|
119 | field_parent: 親プロジェクト名 | |
120 | field_is_in_chlog: 変更記録に表示されている問題 |
|
120 | field_is_in_chlog: 変更記録に表示されている問題 | |
121 | field_is_in_roadmap: ロードマップに表示されている問題 |
|
121 | field_is_in_roadmap: ロードマップに表示されている問題 | |
122 | field_login: ログイン |
|
122 | field_login: ログイン | |
123 | field_mail_notification: メール通知 |
|
123 | field_mail_notification: メール通知 | |
124 | field_admin: 管理者 |
|
124 | field_admin: 管理者 | |
125 | field_last_login_on: 最終接続日 |
|
125 | field_last_login_on: 最終接続日 | |
126 | field_language: 言語 |
|
126 | field_language: 言語 | |
127 | field_effective_date: 日付 |
|
127 | field_effective_date: 日付 | |
128 | field_password: パスワード |
|
128 | field_password: パスワード | |
129 | field_new_password: 新しいパスワード |
|
129 | field_new_password: 新しいパスワード | |
130 | field_password_confirmation: パスワードの確認 |
|
130 | field_password_confirmation: パスワードの確認 | |
131 | field_version: バージョン |
|
131 | field_version: バージョン | |
132 | field_type: タイプ |
|
132 | field_type: タイプ | |
133 | field_host: ホスト |
|
133 | field_host: ホスト | |
134 | field_port: ポート |
|
134 | field_port: ポート | |
135 | field_account: アカウント |
|
135 | field_account: アカウント | |
136 | field_base_dn: Base DN |
|
136 | field_base_dn: Base DN | |
137 | field_attr_login: ログイン名属性 |
|
137 | field_attr_login: ログイン名属性 | |
138 | field_attr_firstname: 名前属性 |
|
138 | field_attr_firstname: 名前属性 | |
139 | field_attr_lastname: 苗字属性 |
|
139 | field_attr_lastname: 苗字属性 | |
140 | field_attr_mail: メール属性 |
|
140 | field_attr_mail: メール属性 | |
141 | field_onthefly: あわせてユーザを作成 |
|
141 | field_onthefly: あわせてユーザを作成 | |
142 | field_start_date: 開始日 |
|
142 | field_start_date: 開始日 | |
143 | field_done_ratio: 進捗 %% |
|
143 | field_done_ratio: 進捗 %% | |
144 | field_auth_source: 認証モード |
|
144 | field_auth_source: 認証モード | |
145 | field_hide_mail: メールアドレスを隠す |
|
145 | field_hide_mail: メールアドレスを隠す | |
146 | field_comments: コメント |
|
146 | field_comments: コメント | |
147 | field_url: URL |
|
147 | field_url: URL | |
148 | field_start_page: メインページ |
|
148 | field_start_page: メインページ | |
149 | field_subproject: サブプロジェクト |
|
149 | field_subproject: サブプロジェクト | |
150 | field_hours: 時間 |
|
150 | field_hours: 時間 | |
151 | field_activity: 活動 |
|
151 | field_activity: 活動 | |
152 | field_spent_on: 日付 |
|
152 | field_spent_on: 日付 | |
153 | field_identifier: 識別子 |
|
153 | field_identifier: 識別子 | |
154 | field_is_filter: フィルタとして使う |
|
154 | field_is_filter: フィルタとして使う | |
155 | field_issue_to_id: 関連する問題 |
|
155 | field_issue_to_id: 関連する問題 | |
156 | field_delay: 遅延 |
|
156 | field_delay: 遅延 | |
157 |
|
157 | |||
158 | setting_app_title: アプリケーションのタイトル |
|
158 | setting_app_title: アプリケーションのタイトル | |
159 | setting_app_subtitle: アプリケーションのサブタイトル |
|
159 | setting_app_subtitle: アプリケーションのサブタイトル | |
160 | setting_welcome_text: ウェルカムメッセージ |
|
160 | setting_welcome_text: ウェルカムメッセージ | |
161 | setting_default_language: 既定の言語 |
|
161 | setting_default_language: 既定の言語 | |
162 | setting_login_required: 認証が必要 |
|
162 | setting_login_required: 認証が必要 | |
163 | setting_self_registration: ユーザは自分で登録できる |
|
163 | setting_self_registration: ユーザは自分で登録できる | |
164 | setting_attachment_max_size: 添付の最大サイズ |
|
164 | setting_attachment_max_size: 添付の最大サイズ | |
165 | setting_issues_export_limit: 出力する問題数の上限 |
|
165 | setting_issues_export_limit: 出力する問題数の上限 | |
166 | setting_mail_from: 送信元メールアドレス |
|
166 | setting_mail_from: 送信元メールアドレス | |
167 | setting_host_name: ホスト名 |
|
167 | setting_host_name: ホスト名 | |
168 | setting_text_formatting: テキストの書式 |
|
168 | setting_text_formatting: テキストの書式 | |
169 | setting_wiki_compression: Wiki履歴を圧縮する |
|
169 | setting_wiki_compression: Wiki履歴を圧縮する | |
170 | setting_feeds_limit: フィード内容の上限 |
|
170 | setting_feeds_limit: フィード内容の上限 | |
171 | setting_autofetch_changesets: コミットを自動取得する |
|
171 | setting_autofetch_changesets: コミットを自動取得する | |
172 | setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する |
|
172 | setting_sys_api_enabled: リポジトリ管理用のWeb Serviceを有効化する | |
173 | setting_commit_ref_keywords: 参照用キーワード |
|
173 | setting_commit_ref_keywords: 参照用キーワード | |
174 | setting_commit_fix_keywords: 修正用キーワード |
|
174 | setting_commit_fix_keywords: 修正用キーワード | |
175 | setting_autologin: 自動ログイン |
|
175 | setting_autologin: 自動ログイン | |
176 | setting_date_format: Date format |
|
176 | setting_date_format: Date format | |
|
177 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
177 |
|
178 | |||
178 | label_user: ユーザ |
|
179 | label_user: ユーザ | |
179 | label_user_plural: ユーザ |
|
180 | label_user_plural: ユーザ | |
180 | label_user_new: 新しいユーザ |
|
181 | label_user_new: 新しいユーザ | |
181 | label_project: プロジェクト |
|
182 | label_project: プロジェクト | |
182 | label_project_new: 新しいプロジェクト |
|
183 | label_project_new: 新しいプロジェクト | |
183 | label_project_plural: プロジェクト |
|
184 | label_project_plural: プロジェクト | |
184 | label_project_all: 全プロジェクト |
|
185 | label_project_all: 全プロジェクト | |
185 | label_project_latest: 最近のプロジェクト |
|
186 | label_project_latest: 最近のプロジェクト | |
186 | label_issue: 問題 |
|
187 | label_issue: 問題 | |
187 | label_issue_new: 新しい問題 |
|
188 | label_issue_new: 新しい問題 | |
188 | label_issue_plural: 問題 |
|
189 | label_issue_plural: 問題 | |
189 | label_issue_view_all: 問題を全て見る |
|
190 | label_issue_view_all: 問題を全て見る | |
190 | label_document: 文書 |
|
191 | label_document: 文書 | |
191 | label_document_new: 新しい文書 |
|
192 | label_document_new: 新しい文書 | |
192 | label_document_plural: 文書 |
|
193 | label_document_plural: 文書 | |
193 | label_role: ロール |
|
194 | label_role: ロール | |
194 | label_role_plural: ロール |
|
195 | label_role_plural: ロール | |
195 | label_role_new: 新しいロール |
|
196 | label_role_new: 新しいロール | |
196 | label_role_and_permissions: ロールと権限 |
|
197 | label_role_and_permissions: ロールと権限 | |
197 | label_member: メンバー |
|
198 | label_member: メンバー | |
198 | label_member_new: 新しいメンバー |
|
199 | label_member_new: 新しいメンバー | |
199 | label_member_plural: メンバー |
|
200 | label_member_plural: メンバー | |
200 | label_tracker: トラッカー |
|
201 | label_tracker: トラッカー | |
201 | label_tracker_plural: トラッカー |
|
202 | label_tracker_plural: トラッカー | |
202 | label_tracker_new: 新しいトラッカーを作成 |
|
203 | label_tracker_new: 新しいトラッカーを作成 | |
203 | label_workflow: ワークフロー |
|
204 | label_workflow: ワークフロー | |
204 | label_issue_status: 問題のステータス |
|
205 | label_issue_status: 問題のステータス | |
205 | label_issue_status_plural: 問題のステータス |
|
206 | label_issue_status_plural: 問題のステータス | |
206 | label_issue_status_new: 新しいステータス |
|
207 | label_issue_status_new: 新しいステータス | |
207 | label_issue_category: 問題のカテゴリ |
|
208 | label_issue_category: 問題のカテゴリ | |
208 | label_issue_category_plural: 問題のカテゴリ |
|
209 | label_issue_category_plural: 問題のカテゴリ | |
209 | label_issue_category_new: 新しいカテゴリ |
|
210 | label_issue_category_new: 新しいカテゴリ | |
210 | label_custom_field: カスタムフィールド |
|
211 | label_custom_field: カスタムフィールド | |
211 | label_custom_field_plural: カスタムフィールド |
|
212 | label_custom_field_plural: カスタムフィールド | |
212 | label_custom_field_new: 新しいカスタムフィールドを作成 |
|
213 | label_custom_field_new: 新しいカスタムフィールドを作成 | |
213 | label_enumerations: 列挙項目 |
|
214 | label_enumerations: 列挙項目 | |
214 | label_enumeration_new: 新しい値 |
|
215 | label_enumeration_new: 新しい値 | |
215 | label_information: 情報 |
|
216 | label_information: 情報 | |
216 | label_information_plural: 情報 |
|
217 | label_information_plural: 情報 | |
217 | label_please_login: ログインしてください |
|
218 | label_please_login: ログインしてください | |
218 | label_register: 登録する |
|
219 | label_register: 登録する | |
219 | label_password_lost: パスワードの再発行 |
|
220 | label_password_lost: パスワードの再発行 | |
220 | label_home: ホーム |
|
221 | label_home: ホーム | |
221 | label_my_page: マイページ |
|
222 | label_my_page: マイページ | |
222 | label_my_account: マイアカウント |
|
223 | label_my_account: マイアカウント | |
223 | label_my_projects: マイプロジェクト |
|
224 | label_my_projects: マイプロジェクト | |
224 | label_administration: 管理 |
|
225 | label_administration: 管理 | |
225 | label_login: ログイン |
|
226 | label_login: ログイン | |
226 | label_logout: ログアウト |
|
227 | label_logout: ログアウト | |
227 | label_help: ヘルプ |
|
228 | label_help: ヘルプ | |
228 | label_reported_issues: 報告した問題 |
|
229 | label_reported_issues: 報告した問題 | |
229 | label_assigned_to_me_issues: 担当している問題 |
|
230 | label_assigned_to_me_issues: 担当している問題 | |
230 | label_last_login: 最近の接続 |
|
231 | label_last_login: 最近の接続 | |
231 | label_last_updates: 最近の更新1件 |
|
232 | label_last_updates: 最近の更新1件 | |
232 | label_last_updates_plural: 最近の更新%d件 |
|
233 | label_last_updates_plural: 最近の更新%d件 | |
233 | label_registered_on: 登録日 |
|
234 | label_registered_on: 登録日 | |
234 | label_activity: 活動 |
|
235 | label_activity: 活動 | |
235 | label_new: 新しく作成 |
|
236 | label_new: 新しく作成 | |
236 | label_logged_as: ログイン中: |
|
237 | label_logged_as: ログイン中: | |
237 | label_environment: 環境 |
|
238 | label_environment: 環境 | |
238 | label_authentication: 認証 |
|
239 | label_authentication: 認証 | |
239 | label_auth_source: 認証モード |
|
240 | label_auth_source: 認証モード | |
240 | label_auth_source_new: 新しい認証モード |
|
241 | label_auth_source_new: 新しい認証モード | |
241 | label_auth_source_plural: 認証モード |
|
242 | label_auth_source_plural: 認証モード | |
242 | label_subproject_plural: サブプロジェクト |
|
243 | label_subproject_plural: サブプロジェクト | |
243 | label_min_max_length: 最小値 - 最大値の長さ |
|
244 | label_min_max_length: 最小値 - 最大値の長さ | |
244 | label_list: リストから選択 |
|
245 | label_list: リストから選択 | |
245 | label_date: 日付 |
|
246 | label_date: 日付 | |
246 | label_integer: 整数 |
|
247 | label_integer: 整数 | |
247 | label_boolean: 真偽値 |
|
248 | label_boolean: 真偽値 | |
248 | label_string: テキスト |
|
249 | label_string: テキスト | |
249 | label_text: 長いテキスト |
|
250 | label_text: 長いテキスト | |
250 | label_attribute: 属性 |
|
251 | label_attribute: 属性 | |
251 | label_attribute_plural: 属性 |
|
252 | label_attribute_plural: 属性 | |
252 | label_download: %d ダウンロード |
|
253 | label_download: %d ダウンロード | |
253 | label_download_plural: %d ダウンロード |
|
254 | label_download_plural: %d ダウンロード | |
254 | label_no_data: 表示するデータがありません |
|
255 | label_no_data: 表示するデータがありません | |
255 | label_change_status: ステータスの変更 |
|
256 | label_change_status: ステータスの変更 | |
256 | label_history: 履歴 |
|
257 | label_history: 履歴 | |
257 | label_attachment: ファイル |
|
258 | label_attachment: ファイル | |
258 | label_attachment_new: 新しいファイル |
|
259 | label_attachment_new: 新しいファイル | |
259 | label_attachment_delete: ファイルを削除 |
|
260 | label_attachment_delete: ファイルを削除 | |
260 | label_attachment_plural: ファイル |
|
261 | label_attachment_plural: ファイル | |
261 | label_report: レポート |
|
262 | label_report: レポート | |
262 | label_report_plural: レポート |
|
263 | label_report_plural: レポート | |
263 | label_news: ニュース |
|
264 | label_news: ニュース | |
264 | label_news_new: ニュースを追加 |
|
265 | label_news_new: ニュースを追加 | |
265 | label_news_plural: ニュース |
|
266 | label_news_plural: ニュース | |
266 | label_news_latest: 最新ニュース |
|
267 | label_news_latest: 最新ニュース | |
267 | label_news_view_all: 全てのニュースを見る |
|
268 | label_news_view_all: 全てのニュースを見る | |
268 | label_change_log: 変更記録 |
|
269 | label_change_log: 変更記録 | |
269 | label_settings: 設定 |
|
270 | label_settings: 設定 | |
270 | label_overview: 概要 |
|
271 | label_overview: 概要 | |
271 | label_version: バージョン |
|
272 | label_version: バージョン | |
272 | label_version_new: 新しいバージョン |
|
273 | label_version_new: 新しいバージョン | |
273 | label_version_plural: バージョン |
|
274 | label_version_plural: バージョン | |
274 | label_confirmation: 確認 |
|
275 | label_confirmation: 確認 | |
275 | label_export_to: 他の形式に出力 |
|
276 | label_export_to: 他の形式に出力 | |
276 | label_read: 読む... |
|
277 | label_read: 読む... | |
277 | label_public_projects: 公開プロジェクト |
|
278 | label_public_projects: 公開プロジェクト | |
278 | label_open_issues: 未完了 |
|
279 | label_open_issues: 未完了 | |
279 | label_open_issues_plural: 未完了 |
|
280 | label_open_issues_plural: 未完了 | |
280 | label_closed_issues: 終了 |
|
281 | label_closed_issues: 終了 | |
281 | label_closed_issues_plural: 終了 |
|
282 | label_closed_issues_plural: 終了 | |
282 | label_total: 合計 |
|
283 | label_total: 合計 | |
283 | label_permissions: 権限 |
|
284 | label_permissions: 権限 | |
284 | label_current_status: 現在のステータス |
|
285 | label_current_status: 現在のステータス | |
285 | label_new_statuses_allowed: ステータスの移行先 |
|
286 | label_new_statuses_allowed: ステータスの移行先 | |
286 | label_all: 全て |
|
287 | label_all: 全て | |
287 | label_none: なし |
|
288 | label_none: なし | |
288 | label_next: 次 |
|
289 | label_next: 次 | |
289 | label_previous: 前 |
|
290 | label_previous: 前 | |
290 | label_used_by: 使用中 |
|
291 | label_used_by: 使用中 | |
291 | label_details: 詳細 |
|
292 | label_details: 詳細 | |
292 | label_add_note: 注記を追加 |
|
293 | label_add_note: 注記を追加 | |
293 | label_per_page: ページ毎 |
|
294 | label_per_page: ページ毎 | |
294 | label_calendar: カレンダー |
|
295 | label_calendar: カレンダー | |
295 | label_months_from: ヶ月 from |
|
296 | label_months_from: ヶ月 from | |
296 | label_gantt: ガントチャート |
|
297 | label_gantt: ガントチャート | |
297 | label_internal: Internal |
|
298 | label_internal: Internal | |
298 | label_last_changes: 最新の変更%d件 |
|
299 | label_last_changes: 最新の変更%d件 | |
299 | label_change_view_all: 全ての変更を見る |
|
300 | label_change_view_all: 全ての変更を見る | |
300 | label_personalize_page: このページをパーソナライズする |
|
301 | label_personalize_page: このページをパーソナライズする | |
301 | label_comment: コメント |
|
302 | label_comment: コメント | |
302 | label_comment_plural: コメント |
|
303 | label_comment_plural: コメント | |
303 | label_comment_add: コメント追加 |
|
304 | label_comment_add: コメント追加 | |
304 | label_comment_added: 追加されたコメント |
|
305 | label_comment_added: 追加されたコメント | |
305 | label_comment_delete: コメント削除 |
|
306 | label_comment_delete: コメント削除 | |
306 | label_query: カスタムクエリ |
|
307 | label_query: カスタムクエリ | |
307 | label_query_plural: カスタムクエリ |
|
308 | label_query_plural: カスタムクエリ | |
308 | label_query_new: 新しいクエリ |
|
309 | label_query_new: 新しいクエリ | |
309 | label_filter_add: フィルタ追加 |
|
310 | label_filter_add: フィルタ追加 | |
310 | label_filter_plural: フィルタ |
|
311 | label_filter_plural: フィルタ | |
311 | label_equals: 等しい |
|
312 | label_equals: 等しい | |
312 | label_not_equals: 等しくない |
|
313 | label_not_equals: 等しくない | |
313 | label_in_less_than: 残日数がこれより多い |
|
314 | label_in_less_than: 残日数がこれより多い | |
314 | label_in_more_than: 残日数がこれより少ない |
|
315 | label_in_more_than: 残日数がこれより少ない | |
315 | label_in: 残日数 |
|
316 | label_in: 残日数 | |
316 | label_today: 今日 |
|
317 | label_today: 今日 | |
317 | label_less_than_ago: 経過日数がこれより少ない |
|
318 | label_less_than_ago: 経過日数がこれより少ない | |
318 | label_more_than_ago: 経過日数がこれより多い |
|
319 | label_more_than_ago: 経過日数がこれより多い | |
319 | label_ago: 日前 |
|
320 | label_ago: 日前 | |
320 | label_contains: 含む |
|
321 | label_contains: 含む | |
321 | label_not_contains: 含まない |
|
322 | label_not_contains: 含まない | |
322 | label_day_plural: 日 |
|
323 | label_day_plural: 日 | |
323 | label_repository: リポジトリ |
|
324 | label_repository: リポジトリ | |
324 | label_browse: ブラウズ |
|
325 | label_browse: ブラウズ | |
325 | label_modification: %d点の変更 |
|
326 | label_modification: %d点の変更 | |
326 | label_modification_plural: %d点の変更 |
|
327 | label_modification_plural: %d点の変更 | |
327 | label_revision: リビジョン |
|
328 | label_revision: リビジョン | |
328 | label_revision_plural: リビジョン |
|
329 | label_revision_plural: リビジョン | |
329 | label_added: 追加 |
|
330 | label_added: 追加 | |
330 | label_modified: 変更 |
|
331 | label_modified: 変更 | |
331 | label_deleted: 削除 |
|
332 | label_deleted: 削除 | |
332 | label_latest_revision: 最新リビジョン |
|
333 | label_latest_revision: 最新リビジョン | |
333 | label_latest_revision_plural: 最新リビジョン |
|
334 | label_latest_revision_plural: 最新リビジョン | |
334 | label_view_revisions: リビジョンを見る |
|
335 | label_view_revisions: リビジョンを見る | |
335 | label_max_size: 最大サイズ |
|
336 | label_max_size: 最大サイズ | |
336 | label_on: 合計 |
|
337 | label_on: 合計 | |
337 | label_sort_highest: 一番上へ |
|
338 | label_sort_highest: 一番上へ | |
338 | label_sort_higher: 上へ |
|
339 | label_sort_higher: 上へ | |
339 | label_sort_lower: 下へ |
|
340 | label_sort_lower: 下へ | |
340 | label_sort_lowest: 一番下へ |
|
341 | label_sort_lowest: 一番下へ | |
341 | label_roadmap: ロードマップ |
|
342 | label_roadmap: ロードマップ | |
342 | label_roadmap_due_in: 期日まで |
|
343 | label_roadmap_due_in: 期日まで | |
343 | label_roadmap_overdue: %s late |
|
344 | label_roadmap_overdue: %s late | |
344 | label_roadmap_no_issues: このバージョンに向けての問題はありません |
|
345 | label_roadmap_no_issues: このバージョンに向けての問題はありません | |
345 | label_search: 検索 |
|
346 | label_search: 検索 | |
346 | label_result: %d件の結果 |
|
347 | label_result: %d件の結果 | |
347 | label_result_plural: %d件の結果 |
|
348 | label_result_plural: %d件の結果 | |
348 | label_all_words: すべての単語 |
|
349 | label_all_words: すべての単語 | |
349 | label_wiki: Wiki |
|
350 | label_wiki: Wiki | |
350 | label_wiki_edit: Wiki編集 |
|
351 | label_wiki_edit: Wiki編集 | |
351 | label_wiki_edit_plural: Wiki編集 |
|
352 | label_wiki_edit_plural: Wiki編集 | |
352 | label_wiki_page: Wiki page |
|
353 | label_wiki_page: Wiki page | |
353 | label_wiki_page_plural: Wikiページ |
|
354 | label_wiki_page_plural: Wikiページ | |
354 | label_page_index: 索引 |
|
355 | label_page_index: 索引 | |
355 | label_current_version: 最新版 |
|
356 | label_current_version: 最新版 | |
356 | label_preview: プレビュー |
|
357 | label_preview: プレビュー | |
357 | label_feed_plural: フィード |
|
358 | label_feed_plural: フィード | |
358 | label_changes_details: 全変更の詳細 |
|
359 | label_changes_details: 全変更の詳細 | |
359 | label_issue_tracking: 問題トラッキング |
|
360 | label_issue_tracking: 問題トラッキング | |
360 | label_spent_time: 経過時間 |
|
361 | label_spent_time: 経過時間 | |
361 | label_f_hour: %.2f 時間 |
|
362 | label_f_hour: %.2f 時間 | |
362 | label_f_hour_plural: %.2f 時間 |
|
363 | label_f_hour_plural: %.2f 時間 | |
363 | label_time_tracking: 時間トラッキング |
|
364 | label_time_tracking: 時間トラッキング | |
364 | label_change_plural: 変更 |
|
365 | label_change_plural: 変更 | |
365 | label_statistics: 統計 |
|
366 | label_statistics: 統計 | |
366 | label_commits_per_month: 月別のコミット |
|
367 | label_commits_per_month: 月別のコミット | |
367 | label_commits_per_author: 起票者別のコミット |
|
368 | label_commits_per_author: 起票者別のコミット | |
368 | label_view_diff: 差分を見る |
|
369 | label_view_diff: 差分を見る | |
369 | label_diff_inline: インライン |
|
370 | label_diff_inline: インライン | |
370 | label_diff_side_by_side: 横に並べる |
|
371 | label_diff_side_by_side: 横に並べる | |
371 | label_options: オプション |
|
372 | label_options: オプション | |
372 | label_copy_workflow_from: ワークフローをここからコピー |
|
373 | label_copy_workflow_from: ワークフローをここからコピー | |
373 | label_permissions_report: 権限レポート |
|
374 | label_permissions_report: 権限レポート | |
374 | label_watched_issues: ウォッチ中の問題 |
|
375 | label_watched_issues: ウォッチ中の問題 | |
375 | label_related_issues: 関連する問題 |
|
376 | label_related_issues: 関連する問題 | |
376 | label_applied_status: 適用されたステータス |
|
377 | label_applied_status: 適用されたステータス | |
377 | label_loading: ロード中... |
|
378 | label_loading: ロード中... | |
378 | label_relation_new: 新しい関連 |
|
379 | label_relation_new: 新しい関連 | |
379 | label_relation_delete: 関連の削除 |
|
380 | label_relation_delete: 関連の削除 | |
380 | label_relates_to: 関係している |
|
381 | label_relates_to: 関係している | |
381 | label_duplicates: 重複している |
|
382 | label_duplicates: 重複している | |
382 | label_blocks: ブロックしている |
|
383 | label_blocks: ブロックしている | |
383 | label_blocked_by: ブロックされている |
|
384 | label_blocked_by: ブロックされている | |
384 | label_precedes: 先行する |
|
385 | label_precedes: 先行する | |
385 | label_follows: 後続する |
|
386 | label_follows: 後続する | |
386 | label_end_to_start: start to end |
|
387 | label_end_to_start: start to end | |
387 | label_end_to_end: end to end |
|
388 | label_end_to_end: end to end | |
388 | label_start_to_start: start to start |
|
389 | label_start_to_start: start to start | |
389 | label_start_to_end: start to end |
|
390 | label_start_to_end: start to end | |
390 | label_stay_logged_in: ログインを維持 |
|
391 | label_stay_logged_in: ログインを維持 | |
391 | label_disabled: 無効 |
|
392 | label_disabled: 無効 | |
392 | label_show_completed_versions: 完了したバージョンを表示 |
|
393 | label_show_completed_versions: 完了したバージョンを表示 | |
393 | label_me: 自分 |
|
394 | label_me: 自分 | |
394 | label_board: フォーラム |
|
395 | label_board: フォーラム | |
395 | label_board_new: 新しいフォーラム |
|
396 | label_board_new: 新しいフォーラム | |
396 | label_board_plural: フォーラム |
|
397 | label_board_plural: フォーラム | |
397 | label_topic_plural: トピック |
|
398 | label_topic_plural: トピック | |
398 | label_message_plural: メッセージ |
|
399 | label_message_plural: メッセージ | |
399 | label_message_last: 最新のメッセージ |
|
400 | label_message_last: 最新のメッセージ | |
400 | label_message_new: 新しいメッセージ |
|
401 | label_message_new: 新しいメッセージ | |
401 | label_reply_plural: 返答 |
|
402 | label_reply_plural: 返答 | |
402 | label_send_information: アカウント情報をユーザに送信 |
|
403 | label_send_information: アカウント情報をユーザに送信 | |
403 | label_year: Year |
|
404 | label_year: Year | |
404 | label_month: Month |
|
405 | label_month: Month | |
405 | label_week: Week |
|
406 | label_week: Week | |
406 | label_date_from: From |
|
407 | label_date_from: From | |
407 | label_date_to: To |
|
408 | label_date_to: To | |
408 | label_language_based: Language based |
|
409 | label_language_based: Language based | |
409 | label_sort_by: Sort by "%s" |
|
410 | label_sort_by: Sort by "%s" | |
410 |
|
411 | |||
411 | button_login: ログイン |
|
412 | button_login: ログイン | |
412 | button_submit: 変更 |
|
413 | button_submit: 変更 | |
413 | button_save: 保存 |
|
414 | button_save: 保存 | |
414 | button_check_all: チェックを全部つける |
|
415 | button_check_all: チェックを全部つける | |
415 | button_uncheck_all: チェックを全部外す |
|
416 | button_uncheck_all: チェックを全部外す | |
416 | button_delete: 削除 |
|
417 | button_delete: 削除 | |
417 | button_create: 作成 |
|
418 | button_create: 作成 | |
418 | button_test: テスト |
|
419 | button_test: テスト | |
419 | button_edit: 編集 |
|
420 | button_edit: 編集 | |
420 | button_add: 追加 |
|
421 | button_add: 追加 | |
421 | button_change: 変更 |
|
422 | button_change: 変更 | |
422 | button_apply: 適用 |
|
423 | button_apply: 適用 | |
423 | button_clear: クリア |
|
424 | button_clear: クリア | |
424 | button_lock: ロック |
|
425 | button_lock: ロック | |
425 | button_unlock: アンロック |
|
426 | button_unlock: アンロック | |
426 | button_download: ダウンロード |
|
427 | button_download: ダウンロード | |
427 | button_list: 一覧 |
|
428 | button_list: 一覧 | |
428 | button_view: 見る |
|
429 | button_view: 見る | |
429 | button_move: 移動 |
|
430 | button_move: 移動 | |
430 | button_back: 戻る |
|
431 | button_back: 戻る | |
431 | button_cancel: キャンセル |
|
432 | button_cancel: キャンセル | |
432 | button_activate: 有効にする |
|
433 | button_activate: 有効にする | |
433 | button_sort: ソート |
|
434 | button_sort: ソート | |
434 | button_log_time: 時間を記録 |
|
435 | button_log_time: 時間を記録 | |
435 | button_rollback: このバージョンにロールバック |
|
436 | button_rollback: このバージョンにロールバック | |
436 | button_watch: ウォッチ |
|
437 | button_watch: ウォッチ | |
437 | button_unwatch: ウォッチをやめる |
|
438 | button_unwatch: ウォッチをやめる | |
438 | button_reply: 返答 |
|
439 | button_reply: 返答 | |
439 | button_archive: 書庫に保存 |
|
440 | button_archive: 書庫に保存 | |
440 | button_unarchive: 書庫から戻す |
|
441 | button_unarchive: 書庫から戻す | |
441 |
|
442 | |||
442 | status_active: 有効 |
|
443 | status_active: 有効 | |
443 | status_registered: 登録 |
|
444 | status_registered: 登録 | |
444 | status_locked: ロック |
|
445 | status_locked: ロック | |
445 |
|
446 | |||
446 | text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。 |
|
447 | text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。 | |
447 | text_regexp_info: 例) ^[A-Z0-9]+$ |
|
448 | text_regexp_info: 例) ^[A-Z0-9]+$ | |
448 | text_min_max_length_info: 0だと無制限になります |
|
449 | text_min_max_length_info: 0だと無制限になります | |
449 | text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか? |
|
450 | text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか? | |
450 | text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください |
|
451 | text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください | |
451 | text_are_you_sure: 本当に? |
|
452 | text_are_you_sure: 本当に? | |
452 | text_journal_changed: %sから%sに変更 |
|
453 | text_journal_changed: %sから%sに変更 | |
453 | text_journal_set_to: %sにセット |
|
454 | text_journal_set_to: %sにセット | |
454 | text_journal_deleted: 削除 |
|
455 | text_journal_deleted: 削除 | |
455 | text_tip_task_begin_day: この日に開始するタスク |
|
456 | text_tip_task_begin_day: この日に開始するタスク | |
456 | text_tip_task_end_day: この日に終了するタスク |
|
457 | text_tip_task_end_day: この日に終了するタスク | |
457 | text_tip_task_begin_end_day: この日のうちに開始して終了するタスク |
|
458 | text_tip_task_begin_end_day: この日のうちに開始して終了するタスク | |
458 | text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。' |
|
459 | text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。' | |
459 | text_caracters_maximum: 最大 %d 文字です。 |
|
460 | text_caracters_maximum: 最大 %d 文字です。 | |
460 | text_length_between: 長さは %d から %d 文字までです。 |
|
461 | text_length_between: 長さは %d から %d 文字までです。 | |
461 | text_tracker_no_workflow: このトラッカーにワークフローが定義されていません |
|
462 | text_tracker_no_workflow: このトラッカーにワークフローが定義されていません | |
462 | text_unallowed_characters: 使えない文字です |
|
463 | text_unallowed_characters: 使えない文字です | |
463 | text_comma_separated: (カンマで区切った)複数の値が使えます |
|
464 | text_comma_separated: (カンマで区切った)複数の値が使えます | |
464 | text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正 |
|
465 | text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正 | |
465 |
|
466 | |||
466 | default_role_manager: 管理者 |
|
467 | default_role_manager: 管理者 | |
467 | default_role_developper: 開発者 |
|
468 | default_role_developper: 開発者 | |
468 | default_role_reporter: 報告者 |
|
469 | default_role_reporter: 報告者 | |
469 | default_tracker_bug: バグ |
|
470 | default_tracker_bug: バグ | |
470 | default_tracker_feature: 機能 |
|
471 | default_tracker_feature: 機能 | |
471 | default_tracker_support: サポート |
|
472 | default_tracker_support: サポート | |
472 | default_issue_status_new: 新規 |
|
473 | default_issue_status_new: 新規 | |
473 | default_issue_status_assigned: 担当 |
|
474 | default_issue_status_assigned: 担当 | |
474 | default_issue_status_resolved: 解決 |
|
475 | default_issue_status_resolved: 解決 | |
475 | default_issue_status_feedback: フィードバック |
|
476 | default_issue_status_feedback: フィードバック | |
476 | default_issue_status_closed: 終了 |
|
477 | default_issue_status_closed: 終了 | |
477 | default_issue_status_rejected: 却下 |
|
478 | default_issue_status_rejected: 却下 | |
478 | default_doc_category_user: ユーザ文書 |
|
479 | default_doc_category_user: ユーザ文書 | |
479 | default_doc_category_tech: 技術文書 |
|
480 | default_doc_category_tech: 技術文書 | |
480 | default_priority_low: 低め |
|
481 | default_priority_low: 低め | |
481 | default_priority_normal: 通常 |
|
482 | default_priority_normal: 通常 | |
482 | default_priority_high: 高め |
|
483 | default_priority_high: 高め | |
483 | default_priority_urgent: 急いで |
|
484 | default_priority_urgent: 急いで | |
484 | default_priority_immediate: 今すぐ |
|
485 | default_priority_immediate: 今すぐ | |
485 | default_activity_design: デザイン作業 |
|
486 | default_activity_design: デザイン作業 | |
486 | default_activity_development: 開発作業 |
|
487 | default_activity_development: 開発作業 | |
487 |
|
488 | |||
488 | enumeration_issue_priorities: 問題の優先度 |
|
489 | enumeration_issue_priorities: 問題の優先度 | |
489 | enumeration_doc_categories: 文書カテゴリ |
|
490 | enumeration_doc_categories: 文書カテゴリ | |
490 | enumeration_activities: 作業分類 (時間トラッキング) |
|
491 | enumeration_activities: 作業分類 (時間トラッキング) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December |
|
4 | actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 dag |
|
8 | actionview_datehelper_time_in_words_day: 1 dag | |
9 | actionview_datehelper_time_in_words_day_plural: %d dagen |
|
9 | actionview_datehelper_time_in_words_day_plural: %d dagen | |
10 | actionview_datehelper_time_in_words_hour_about: ongeveer een uur |
|
10 | actionview_datehelper_time_in_words_hour_about: ongeveer een uur | |
11 | actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur | |
12 | actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur |
|
12 | actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur | |
13 | actionview_datehelper_time_in_words_minute: 1 minuut |
|
13 | actionview_datehelper_time_in_words_minute: 1 minuut | |
14 | actionview_datehelper_time_in_words_minute_half: een halve minuut |
|
14 | actionview_datehelper_time_in_words_minute_half: een halve minuut | |
15 | actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut |
|
15 | actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minuten |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minuten | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minuut |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minuut | |
18 | actionview_datehelper_time_in_words_second_less_than: minder dan een seconde |
|
18 | actionview_datehelper_time_in_words_second_less_than: minder dan een seconde | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden | |
20 | actionview_instancetag_blank_option: Selecteer |
|
20 | actionview_instancetag_blank_option: Selecteer | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: staat niet in de lijst |
|
22 | activerecord_error_inclusion: staat niet in de lijst | |
23 | activerecord_error_exclusion: is gereserveerd |
|
23 | activerecord_error_exclusion: is gereserveerd | |
24 | activerecord_error_invalid: is ongeldig |
|
24 | activerecord_error_invalid: is ongeldig | |
25 | activerecord_error_confirmation: komt niet overeen met confirmatie |
|
25 | activerecord_error_confirmation: komt niet overeen met confirmatie | |
26 | activerecord_error_accepted: moet geaccepteerd worden |
|
26 | activerecord_error_accepted: moet geaccepteerd worden | |
27 | activerecord_error_empty: mag niet leeg zijn |
|
27 | activerecord_error_empty: mag niet leeg zijn | |
28 | activerecord_error_blank: mag niet blanco zijn |
|
28 | activerecord_error_blank: mag niet blanco zijn | |
29 | activerecord_error_too_long: is te lang |
|
29 | activerecord_error_too_long: is te lang | |
30 | activerecord_error_too_short: is te kort |
|
30 | activerecord_error_too_short: is te kort | |
31 | activerecord_error_wrong_length: heeft de verkeerde lengte |
|
31 | activerecord_error_wrong_length: heeft de verkeerde lengte | |
32 | activerecord_error_taken: is al in gebruik |
|
32 | activerecord_error_taken: is al in gebruik | |
33 | activerecord_error_not_a_number: is geen getal |
|
33 | activerecord_error_not_a_number: is geen getal | |
34 | activerecord_error_not_a_date: is geen valide datum |
|
34 | activerecord_error_not_a_date: is geen valide datum | |
35 | activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum |
|
35 | activerecord_error_greater_than_start_date: moet hoger zijn dan startdatum | |
36 | activerecord_error_not_same_project: hoort niet bij hetzelfde project |
|
36 | activerecord_error_not_same_project: hoort niet bij hetzelfde project | |
37 | activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben |
|
37 | activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben | |
38 |
|
38 | |||
39 | general_fmt_age: %d jr |
|
39 | general_fmt_age: %d jr | |
40 | general_fmt_age_plural: %d jr |
|
40 | general_fmt_age_plural: %d jr | |
41 | general_fmt_date: %%m/%%d/%%Y |
|
41 | general_fmt_date: %%m/%%d/%%Y | |
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'Nee' |
|
45 | general_text_No: 'Nee' | |
46 | general_text_Yes: 'Ja' |
|
46 | general_text_Yes: 'Ja' | |
47 | general_text_no: 'nee' |
|
47 | general_text_no: 'nee' | |
48 | general_text_yes: 'ja' |
|
48 | general_text_yes: 'ja' | |
49 | general_lang_name: 'Nederlands' |
|
49 | general_lang_name: 'Nederlands' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag |
|
53 | general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag | |
54 |
|
54 | |||
55 | notice_account_updated: Account is met succes gewijzigd |
|
55 | notice_account_updated: Account is met succes gewijzigd | |
56 | notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord |
|
56 | notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord | |
57 | notice_account_password_updated: Wachtwoord is met succes gewijzigd |
|
57 | notice_account_password_updated: Wachtwoord is met succes gewijzigd | |
58 | notice_account_wrong_password: Incorrect wachtwoord |
|
58 | notice_account_wrong_password: Incorrect wachtwoord | |
59 | notice_account_register_done: Account is met succes aangemaakt. |
|
59 | notice_account_register_done: Account is met succes aangemaakt. | |
60 | notice_account_unknown_email: Onbekende gebruiker. |
|
60 | notice_account_unknown_email: Onbekende gebruiker. | |
61 | notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen. |
|
61 | notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen. | |
62 | notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord. |
|
62 | notice_account_lost_email_sent: Er is een email naar U verstuurd met instructies over het kiezen van een nieuw wachtwoord. | |
63 | notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen. |
|
63 | notice_account_activated: Uw account is geactiveerd. U kunt nu inloggen. | |
64 | notice_successful_create: Maken succesvol. |
|
64 | notice_successful_create: Maken succesvol. | |
65 | notice_successful_update: Wijzigen succesvol. |
|
65 | notice_successful_update: Wijzigen succesvol. | |
66 | notice_successful_delete: Verwijderen succesvol. |
|
66 | notice_successful_delete: Verwijderen succesvol. | |
67 | notice_successful_connection: Verbinding succesvol. |
|
67 | notice_successful_connection: Verbinding succesvol. | |
68 | notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd. |
|
68 | notice_file_not_found: De pagina die U probeerde te benaderen bestaat niet of is verwijderd. | |
69 | notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker. |
|
69 | notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker. | |
70 | notice_scm_error: Deze ingang of revisie bestaat niet in de repository. |
|
70 | notice_scm_error: Deze ingang of revisie bestaat niet in de repository. | |
71 | notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen. |
|
71 | notice_not_authorized: Het is U niet toegestaan om deze pagina te raadplegen. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Uw redMine wachtwoord |
|
73 | mail_subject_lost_password: Uw redMine wachtwoord | |
74 | mail_subject_register: redMine account activatie |
|
74 | mail_subject_register: redMine account activatie | |
75 |
|
75 | |||
76 | gui_validation_error: 1 fout |
|
76 | gui_validation_error: 1 fout | |
77 | gui_validation_error_plural: %d fouten |
|
77 | gui_validation_error_plural: %d fouten | |
78 |
|
78 | |||
79 | field_name: Naam |
|
79 | field_name: Naam | |
80 | field_description: Beschrijving |
|
80 | field_description: Beschrijving | |
81 | field_summary: Samenvatting |
|
81 | field_summary: Samenvatting | |
82 | field_is_required: Verplicht |
|
82 | field_is_required: Verplicht | |
83 | field_firstname: Voornaam |
|
83 | field_firstname: Voornaam | |
84 | field_lastname: Achternaam |
|
84 | field_lastname: Achternaam | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Bestand |
|
86 | field_filename: Bestand | |
87 | field_filesize: Grootte |
|
87 | field_filesize: Grootte | |
88 | field_downloads: Downloads |
|
88 | field_downloads: Downloads | |
89 | field_author: Auteur |
|
89 | field_author: Auteur | |
90 | field_created_on: Aangemaakt |
|
90 | field_created_on: Aangemaakt | |
91 | field_updated_on: Gewijzigd |
|
91 | field_updated_on: Gewijzigd | |
92 | field_field_format: Formaat |
|
92 | field_field_format: Formaat | |
93 | field_is_for_all: Voor alle projecten |
|
93 | field_is_for_all: Voor alle projecten | |
94 | field_possible_values: Mogelijke waarden |
|
94 | field_possible_values: Mogelijke waarden | |
95 | field_regexp: Reguliere expressie |
|
95 | field_regexp: Reguliere expressie | |
96 | field_min_length: Minimale lengte |
|
96 | field_min_length: Minimale lengte | |
97 | field_max_length: Maximale lengte |
|
97 | field_max_length: Maximale lengte | |
98 | field_value: Waarde |
|
98 | field_value: Waarde | |
99 | field_category: Categorie |
|
99 | field_category: Categorie | |
100 | field_title: Titel |
|
100 | field_title: Titel | |
101 | field_project: Project |
|
101 | field_project: Project | |
102 | field_issue: Issue |
|
102 | field_issue: Issue | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Notities |
|
104 | field_notes: Notities | |
105 | field_is_closed: Issue gesloten |
|
105 | field_is_closed: Issue gesloten | |
106 | field_is_default: Default status |
|
106 | field_is_default: Default status | |
107 | field_html_color: Kleur |
|
107 | field_html_color: Kleur | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Onderwerp |
|
109 | field_subject: Onderwerp | |
110 | field_due_date: Verwachte datum gereed |
|
110 | field_due_date: Verwachte datum gereed | |
111 | field_assigned_to: Toegewezen aan |
|
111 | field_assigned_to: Toegewezen aan | |
112 | field_priority: Prioriteit |
|
112 | field_priority: Prioriteit | |
113 | field_fixed_version: Opgeloste versie |
|
113 | field_fixed_version: Opgeloste versie | |
114 | field_user: Gebruiker |
|
114 | field_user: Gebruiker | |
115 | field_role: Rol |
|
115 | field_role: Rol | |
116 | field_homepage: Homepage |
|
116 | field_homepage: Homepage | |
117 | field_is_public: Publiek |
|
117 | field_is_public: Publiek | |
118 | field_parent: Subproject van |
|
118 | field_parent: Subproject van | |
119 | field_is_in_chlog: Issues weergegeven in wijzigingslog |
|
119 | field_is_in_chlog: Issues weergegeven in wijzigingslog | |
120 | field_is_in_roadmap: Issues weergegeven in roadmap |
|
120 | field_is_in_roadmap: Issues weergegeven in roadmap | |
121 | field_login: Inloggen |
|
121 | field_login: Inloggen | |
122 | field_mail_notification: Mail mededelingen |
|
122 | field_mail_notification: Mail mededelingen | |
123 | field_admin: Administrateur |
|
123 | field_admin: Administrateur | |
124 | field_last_login_on: Laatste bezoek |
|
124 | field_last_login_on: Laatste bezoek | |
125 | field_language: Taal |
|
125 | field_language: Taal | |
126 | field_effective_date: Datum |
|
126 | field_effective_date: Datum | |
127 | field_password: Wachtwoord |
|
127 | field_password: Wachtwoord | |
128 | field_new_password: Nieuw wachtwoord |
|
128 | field_new_password: Nieuw wachtwoord | |
129 | field_password_confirmation: Bevestigen |
|
129 | field_password_confirmation: Bevestigen | |
130 | field_version: Versie |
|
130 | field_version: Versie | |
131 | field_type: Type |
|
131 | field_type: Type | |
132 | field_host: Host |
|
132 | field_host: Host | |
133 | field_port: Port |
|
133 | field_port: Port | |
134 | field_account: Account |
|
134 | field_account: Account | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Login attribuut |
|
136 | field_attr_login: Login attribuut | |
137 | field_attr_firstname: Voornaam attribuut |
|
137 | field_attr_firstname: Voornaam attribuut | |
138 | field_attr_lastname: Achternaam attribuut |
|
138 | field_attr_lastname: Achternaam attribuut | |
139 | field_attr_mail: Email attribuut |
|
139 | field_attr_mail: Email attribuut | |
140 | field_onthefly: On-the-fly aanmaken van een gebruiker |
|
140 | field_onthefly: On-the-fly aanmaken van een gebruiker | |
141 | field_start_date: Start |
|
141 | field_start_date: Start | |
142 | field_done_ratio: %% Gereed |
|
142 | field_done_ratio: %% Gereed | |
143 | field_auth_source: Authenticatiemethode |
|
143 | field_auth_source: Authenticatiemethode | |
144 | field_hide_mail: Verberg mijn emailadres |
|
144 | field_hide_mail: Verberg mijn emailadres | |
145 | field_comments: Commentaar |
|
145 | field_comments: Commentaar | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Startpagina |
|
147 | field_start_page: Startpagina | |
148 | field_subproject: Subproject |
|
148 | field_subproject: Subproject | |
149 | field_hours: Uren |
|
149 | field_hours: Uren | |
150 | field_activity: Activiteit |
|
150 | field_activity: Activiteit | |
151 | field_spent_on: Datum |
|
151 | field_spent_on: Datum | |
152 | field_identifier: Identificatiecode |
|
152 | field_identifier: Identificatiecode | |
153 | field_is_filter: Gebruikt als een filter |
|
153 | field_is_filter: Gebruikt als een filter | |
154 | field_issue_to_id: Gerelateerd issue |
|
154 | field_issue_to_id: Gerelateerd issue | |
155 | field_delay: Vertraging |
|
155 | field_delay: Vertraging | |
156 |
|
156 | |||
157 | setting_app_title: Applicatie titel |
|
157 | setting_app_title: Applicatie titel | |
158 | setting_app_subtitle: Applicatie ondertitel |
|
158 | setting_app_subtitle: Applicatie ondertitel | |
159 | setting_welcome_text: Welkomsttekst |
|
159 | setting_welcome_text: Welkomsttekst | |
160 | setting_default_language: Default taal |
|
160 | setting_default_language: Default taal | |
161 | setting_login_required: Authent. nodig |
|
161 | setting_login_required: Authent. nodig | |
162 | setting_self_registration: Zelf-registratie toegestaan |
|
162 | setting_self_registration: Zelf-registratie toegestaan | |
163 | setting_attachment_max_size: Attachment max. grootte |
|
163 | setting_attachment_max_size: Attachment max. grootte | |
164 | setting_issues_export_limit: Limiet export issues |
|
164 | setting_issues_export_limit: Limiet export issues | |
165 | setting_mail_from: Afzender mail adres |
|
165 | setting_mail_from: Afzender mail adres | |
166 | setting_host_name: Host naam |
|
166 | setting_host_name: Host naam | |
167 | setting_text_formatting: Tekst formaat |
|
167 | setting_text_formatting: Tekst formaat | |
168 | setting_wiki_compression: Wiki geschiedenis comprimeren |
|
168 | setting_wiki_compression: Wiki geschiedenis comprimeren | |
169 | setting_feeds_limit: Feed inhoud limiet |
|
169 | setting_feeds_limit: Feed inhoud limiet | |
170 | setting_autofetch_changesets: Haal commits automatisch op |
|
170 | setting_autofetch_changesets: Haal commits automatisch op | |
171 | setting_sys_api_enabled: Gebruik WS voor repository beheer |
|
171 | setting_sys_api_enabled: Gebruik WS voor repository beheer | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Gebruiker |
|
178 | label_user: Gebruiker | |
178 | label_user_plural: Gebruikers |
|
179 | label_user_plural: Gebruikers | |
179 | label_user_new: Nieuwe gebruiker |
|
180 | label_user_new: Nieuwe gebruiker | |
180 | label_project: Project |
|
181 | label_project: Project | |
181 | label_project_new: Nieuw project |
|
182 | label_project_new: Nieuw project | |
182 | label_project_plural: Projecten |
|
183 | label_project_plural: Projecten | |
183 | label_project_all: Alle Projecten |
|
184 | label_project_all: Alle Projecten | |
184 | label_project_latest: Nieuwste projecten |
|
185 | label_project_latest: Nieuwste projecten | |
185 | label_issue: Issue |
|
186 | label_issue: Issue | |
186 | label_issue_new: Nieuw issue |
|
187 | label_issue_new: Nieuw issue | |
187 | label_issue_plural: Issues |
|
188 | label_issue_plural: Issues | |
188 | label_issue_view_all: Bekijk alle issues |
|
189 | label_issue_view_all: Bekijk alle issues | |
189 | label_document: Document |
|
190 | label_document: Document | |
190 | label_document_new: Nieuw document |
|
191 | label_document_new: Nieuw document | |
191 | label_document_plural: Documenten |
|
192 | label_document_plural: Documenten | |
192 | label_role: Rol |
|
193 | label_role: Rol | |
193 | label_role_plural: Rollen |
|
194 | label_role_plural: Rollen | |
194 | label_role_new: Nieuwe rol |
|
195 | label_role_new: Nieuwe rol | |
195 | label_role_and_permissions: Rollen en permissies |
|
196 | label_role_and_permissions: Rollen en permissies | |
196 | label_member: Lid |
|
197 | label_member: Lid | |
197 | label_member_new: Nieuw lid |
|
198 | label_member_new: Nieuw lid | |
198 | label_member_plural: Leden |
|
199 | label_member_plural: Leden | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Trackers |
|
201 | label_tracker_plural: Trackers | |
201 | label_tracker_new: Nieuwe tracker |
|
202 | label_tracker_new: Nieuwe tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Issue status |
|
204 | label_issue_status: Issue status | |
204 | label_issue_status_plural: Issue statussen |
|
205 | label_issue_status_plural: Issue statussen | |
205 | label_issue_status_new: Nieuwe status |
|
206 | label_issue_status_new: Nieuwe status | |
206 | label_issue_category: Issue categorie |
|
207 | label_issue_category: Issue categorie | |
207 | label_issue_category_plural: Issue categorieën |
|
208 | label_issue_category_plural: Issue categorieën | |
208 | label_issue_category_new: Nieuwe categorie |
|
209 | label_issue_category_new: Nieuwe categorie | |
209 | label_custom_field: Custom veld |
|
210 | label_custom_field: Custom veld | |
210 | label_custom_field_plural: Custom velden |
|
211 | label_custom_field_plural: Custom velden | |
211 | label_custom_field_new: Nieuw custom veld |
|
212 | label_custom_field_new: Nieuw custom veld | |
212 | label_enumerations: Enumeraties |
|
213 | label_enumerations: Enumeraties | |
213 | label_enumeration_new: Nieuwe waarde |
|
214 | label_enumeration_new: Nieuwe waarde | |
214 | label_information: Informatie |
|
215 | label_information: Informatie | |
215 | label_information_plural: Informatie |
|
216 | label_information_plural: Informatie | |
216 | label_please_login: Gaarne inloggen |
|
217 | label_please_login: Gaarne inloggen | |
217 | label_register: Registreer |
|
218 | label_register: Registreer | |
218 | label_password_lost: Wachtwoord verloren |
|
219 | label_password_lost: Wachtwoord verloren | |
219 | label_home: Home |
|
220 | label_home: Home | |
220 | label_my_page: Mijn pagina |
|
221 | label_my_page: Mijn pagina | |
221 | label_my_account: Mijn account |
|
222 | label_my_account: Mijn account | |
222 | label_my_projects: Mijn projecten |
|
223 | label_my_projects: Mijn projecten | |
223 | label_administration: Administratie |
|
224 | label_administration: Administratie | |
224 | label_login: Inloggen |
|
225 | label_login: Inloggen | |
225 | label_logout: Uitloggen |
|
226 | label_logout: Uitloggen | |
226 | label_help: Help |
|
227 | label_help: Help | |
227 | label_reported_issues: Gemelde issues |
|
228 | label_reported_issues: Gemelde issues | |
228 | label_assigned_to_me_issues: Aan mij toegewezen issues |
|
229 | label_assigned_to_me_issues: Aan mij toegewezen issues | |
229 | label_last_login: Laatste bezoek |
|
230 | label_last_login: Laatste bezoek | |
230 | label_last_updates: Laatste wijziging |
|
231 | label_last_updates: Laatste wijziging | |
231 | label_last_updates_plural: %d laatste wijziging |
|
232 | label_last_updates_plural: %d laatste wijziging | |
232 | label_registered_on: Geregistreerd op |
|
233 | label_registered_on: Geregistreerd op | |
233 | label_activity: Activiteit |
|
234 | label_activity: Activiteit | |
234 | label_new: Nieuw |
|
235 | label_new: Nieuw | |
235 | label_logged_as: Ingelogd als |
|
236 | label_logged_as: Ingelogd als | |
236 | label_environment: Omgeving |
|
237 | label_environment: Omgeving | |
237 | label_authentication: Authenticatie |
|
238 | label_authentication: Authenticatie | |
238 | label_auth_source: Authenticatie modus |
|
239 | label_auth_source: Authenticatie modus | |
239 | label_auth_source_new: Nieuwe authenticatie modus |
|
240 | label_auth_source_new: Nieuwe authenticatie modus | |
240 | label_auth_source_plural: Authenticatie modi |
|
241 | label_auth_source_plural: Authenticatie modi | |
241 | label_subproject_plural: Subprojecten |
|
242 | label_subproject_plural: Subprojecten | |
242 | label_min_max_length: Min - Max lengte |
|
243 | label_min_max_length: Min - Max lengte | |
243 | label_list: Lijst |
|
244 | label_list: Lijst | |
244 | label_date: Datum |
|
245 | label_date: Datum | |
245 | label_integer: Integer |
|
246 | label_integer: Integer | |
246 | label_boolean: Boolean |
|
247 | label_boolean: Boolean | |
247 | label_string: Tekst |
|
248 | label_string: Tekst | |
248 | label_text: Lange tekst |
|
249 | label_text: Lange tekst | |
249 | label_attribute: Attribuut |
|
250 | label_attribute: Attribuut | |
250 | label_attribute_plural: Attributen |
|
251 | label_attribute_plural: Attributen | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Downloads |
|
253 | label_download_plural: %d Downloads | |
253 | label_no_data: Geen gegevens om te tonen |
|
254 | label_no_data: Geen gegevens om te tonen | |
254 | label_change_status: Wijzig status |
|
255 | label_change_status: Wijzig status | |
255 | label_history: Geschiedenis |
|
256 | label_history: Geschiedenis | |
256 | label_attachment: Bestand |
|
257 | label_attachment: Bestand | |
257 | label_attachment_new: Nieuw bestand |
|
258 | label_attachment_new: Nieuw bestand | |
258 | label_attachment_delete: Verwijder bestand |
|
259 | label_attachment_delete: Verwijder bestand | |
259 | label_attachment_plural: Bestanden |
|
260 | label_attachment_plural: Bestanden | |
260 | label_report: Rapport |
|
261 | label_report: Rapport | |
261 | label_report_plural: Rapporten |
|
262 | label_report_plural: Rapporten | |
262 | label_news: Nieuws |
|
263 | label_news: Nieuws | |
263 | label_news_new: Voeg nieuws toe |
|
264 | label_news_new: Voeg nieuws toe | |
264 | label_news_plural: Nieuws |
|
265 | label_news_plural: Nieuws | |
265 | label_news_latest: Laatste nieuws |
|
266 | label_news_latest: Laatste nieuws | |
266 | label_news_view_all: Bekijk al het nieuws |
|
267 | label_news_view_all: Bekijk al het nieuws | |
267 | label_change_log: Wijzigingslog |
|
268 | label_change_log: Wijzigingslog | |
268 | label_settings: Instellingen |
|
269 | label_settings: Instellingen | |
269 | label_overview: Overzicht |
|
270 | label_overview: Overzicht | |
270 | label_version: Versie |
|
271 | label_version: Versie | |
271 | label_version_new: Nieuwe versie |
|
272 | label_version_new: Nieuwe versie | |
272 | label_version_plural: Versies |
|
273 | label_version_plural: Versies | |
273 | label_confirmation: Bevestiging |
|
274 | label_confirmation: Bevestiging | |
274 | label_export_to: Exporteer naar |
|
275 | label_export_to: Exporteer naar | |
275 | label_read: Lees... |
|
276 | label_read: Lees... | |
276 | label_public_projects: Publieke projecten |
|
277 | label_public_projects: Publieke projecten | |
277 | label_open_issues: open |
|
278 | label_open_issues: open | |
278 | label_open_issues_plural: open |
|
279 | label_open_issues_plural: open | |
279 | label_closed_issues: gesloten |
|
280 | label_closed_issues: gesloten | |
280 | label_closed_issues_plural: gesloten |
|
281 | label_closed_issues_plural: gesloten | |
281 | label_total: Totaal |
|
282 | label_total: Totaal | |
282 | label_permissions: Permissies |
|
283 | label_permissions: Permissies | |
283 | label_current_status: Huidige status |
|
284 | label_current_status: Huidige status | |
284 | label_new_statuses_allowed: Nieuwe statuses toegestaan |
|
285 | label_new_statuses_allowed: Nieuwe statuses toegestaan | |
285 | label_all: alle |
|
286 | label_all: alle | |
286 | label_none: geen |
|
287 | label_none: geen | |
287 | label_next: Volgende |
|
288 | label_next: Volgende | |
288 | label_previous: Vorige |
|
289 | label_previous: Vorige | |
289 | label_used_by: Gebruikt door |
|
290 | label_used_by: Gebruikt door | |
290 | label_details: Details |
|
291 | label_details: Details | |
291 | label_add_note: Voeg een notitie toe |
|
292 | label_add_note: Voeg een notitie toe | |
292 | label_per_page: Per pagina |
|
293 | label_per_page: Per pagina | |
293 | label_calendar: Kalender |
|
294 | label_calendar: Kalender | |
294 | label_months_from: maanden vanaf |
|
295 | label_months_from: maanden vanaf | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Intern |
|
297 | label_internal: Intern | |
297 | label_last_changes: laatste %d wijzigingen |
|
298 | label_last_changes: laatste %d wijzigingen | |
298 | label_change_view_all: Bekijk alle wijzigingen |
|
299 | label_change_view_all: Bekijk alle wijzigingen | |
299 | label_personalize_page: Personaliseer deze pagina |
|
300 | label_personalize_page: Personaliseer deze pagina | |
300 | label_comment: Commentaar |
|
301 | label_comment: Commentaar | |
301 | label_comment_plural: Commentaar |
|
302 | label_comment_plural: Commentaar | |
302 | label_comment_add: Voeg commentaar toe |
|
303 | label_comment_add: Voeg commentaar toe | |
303 | label_comment_added: Commentaar toegevoegd |
|
304 | label_comment_added: Commentaar toegevoegd | |
304 | label_comment_delete: Verwijder commentaar |
|
305 | label_comment_delete: Verwijder commentaar | |
305 | label_query: Eigen zoekvraag |
|
306 | label_query: Eigen zoekvraag | |
306 | label_query_plural: Eigen zoekvragen |
|
307 | label_query_plural: Eigen zoekvragen | |
307 | label_query_new: Nieuwe zoekvraag |
|
308 | label_query_new: Nieuwe zoekvraag | |
308 | label_filter_add: Voeg filter toe |
|
309 | label_filter_add: Voeg filter toe | |
309 | label_filter_plural: Filters |
|
310 | label_filter_plural: Filters | |
310 | label_equals: is gelijk |
|
311 | label_equals: is gelijk | |
311 | label_not_equals: is niet gelijk |
|
312 | label_not_equals: is niet gelijk | |
312 | label_in_less_than: in minder dan |
|
313 | label_in_less_than: in minder dan | |
313 | label_in_more_than: in meer dan |
|
314 | label_in_more_than: in meer dan | |
314 | label_in: in |
|
315 | label_in: in | |
315 | label_today: vandaag |
|
316 | label_today: vandaag | |
316 | label_less_than_ago: minder dan dagen geleden |
|
317 | label_less_than_ago: minder dan dagen geleden | |
317 | label_more_than_ago: meer dan dagen geleden |
|
318 | label_more_than_ago: meer dan dagen geleden | |
318 | label_ago: dagen geleden |
|
319 | label_ago: dagen geleden | |
319 | label_contains: bevat |
|
320 | label_contains: bevat | |
320 | label_not_contains: bevat niet |
|
321 | label_not_contains: bevat niet | |
321 | label_day_plural: dagen |
|
322 | label_day_plural: dagen | |
322 | label_repository: Repository |
|
323 | label_repository: Repository | |
323 | label_browse: Blader |
|
324 | label_browse: Blader | |
324 | label_modification: %d wijziging |
|
325 | label_modification: %d wijziging | |
325 | label_modification_plural: %d wijzigingen |
|
326 | label_modification_plural: %d wijzigingen | |
326 | label_revision: Revisie |
|
327 | label_revision: Revisie | |
327 | label_revision_plural: Revisies |
|
328 | label_revision_plural: Revisies | |
328 | label_added: toegevoegd |
|
329 | label_added: toegevoegd | |
329 | label_modified: gewijzigd |
|
330 | label_modified: gewijzigd | |
330 | label_deleted: verwijderd |
|
331 | label_deleted: verwijderd | |
331 | label_latest_revision: Meest recente revisie |
|
332 | label_latest_revision: Meest recente revisie | |
332 | label_latest_revision_plural: Meest recente revisies |
|
333 | label_latest_revision_plural: Meest recente revisies | |
333 | label_view_revisions: Bekijk revisies |
|
334 | label_view_revisions: Bekijk revisies | |
334 | label_max_size: Maximum grootte |
|
335 | label_max_size: Maximum grootte | |
335 | label_on: 'van' |
|
336 | label_on: 'van' | |
336 | label_sort_highest: Verplaats naar begin |
|
337 | label_sort_highest: Verplaats naar begin | |
337 | label_sort_higher: Verplaats naar boven |
|
338 | label_sort_higher: Verplaats naar boven | |
338 | label_sort_lower: Verplaats naar beneden |
|
339 | label_sort_lower: Verplaats naar beneden | |
339 | label_sort_lowest: Verplaats naar eind |
|
340 | label_sort_lowest: Verplaats naar eind | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Due in |
|
342 | label_roadmap_due_in: Due in | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Geen issues voor deze versie |
|
344 | label_roadmap_no_issues: Geen issues voor deze versie | |
344 | label_search: Zoeken |
|
345 | label_search: Zoeken | |
345 | label_result: %d resultaat |
|
346 | label_result: %d resultaat | |
346 | label_result_plural: %d resultaten |
|
347 | label_result_plural: %d resultaten | |
347 | label_all_words: Alle woorden |
|
348 | label_all_words: Alle woorden | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki edit |
|
350 | label_wiki_edit: Wiki edit | |
350 | label_wiki_edit_plural: Wiki edits |
|
351 | label_wiki_edit_plural: Wiki edits | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Huidige versie |
|
355 | label_current_version: Huidige versie | |
355 | label_preview: Testweergave |
|
356 | label_preview: Testweergave | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Details van alle wijzigingen |
|
358 | label_changes_details: Details van alle wijzigingen | |
358 | label_issue_tracking: Issue tracking |
|
359 | label_issue_tracking: Issue tracking | |
359 | label_spent_time: Gespendeerde tijd |
|
360 | label_spent_time: Gespendeerde tijd | |
360 | label_f_hour: %.2f uur |
|
361 | label_f_hour: %.2f uur | |
361 | label_f_hour_plural: %.2f uren |
|
362 | label_f_hour_plural: %.2f uren | |
362 | label_time_tracking: Tijd tracking |
|
363 | label_time_tracking: Tijd tracking | |
363 | label_change_plural: Wijzigingen |
|
364 | label_change_plural: Wijzigingen | |
364 | label_statistics: Statistieken |
|
365 | label_statistics: Statistieken | |
365 | label_commits_per_month: Commits per maand |
|
366 | label_commits_per_month: Commits per maand | |
366 | label_commits_per_author: Commits per auteur |
|
367 | label_commits_per_author: Commits per auteur | |
367 | label_view_diff: Bekijk verschillen |
|
368 | label_view_diff: Bekijk verschillen | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: naast elkaar |
|
370 | label_diff_side_by_side: naast elkaar | |
370 | label_options: Opties |
|
371 | label_options: Opties | |
371 | label_copy_workflow_from: Kopieer workflow van |
|
372 | label_copy_workflow_from: Kopieer workflow van | |
372 | label_permissions_report: Permissies rapport |
|
373 | label_permissions_report: Permissies rapport | |
373 | label_watched_issues: Gemonitorde issues |
|
374 | label_watched_issues: Gemonitorde issues | |
374 | label_related_issues: Gerelateerde issues |
|
375 | label_related_issues: Gerelateerde issues | |
375 | label_applied_status: Toegekende status |
|
376 | label_applied_status: Toegekende status | |
376 | label_loading: Laden... |
|
377 | label_loading: Laden... | |
377 | label_relation_new: Nieuwe relatie |
|
378 | label_relation_new: Nieuwe relatie | |
378 | label_relation_delete: Verwijder relatie |
|
379 | label_relation_delete: Verwijder relatie | |
379 | label_relates_to: gerelateerd aan |
|
380 | label_relates_to: gerelateerd aan | |
380 | label_duplicates: dupliceert |
|
381 | label_duplicates: dupliceert | |
381 | label_blocks: blokkeert |
|
382 | label_blocks: blokkeert | |
382 | label_blocked_by: geblokkeerd door |
|
383 | label_blocked_by: geblokkeerd door | |
383 | label_precedes: gaat vooraf aan |
|
384 | label_precedes: gaat vooraf aan | |
384 | label_follows: volgt op |
|
385 | label_follows: volgt op | |
385 | label_end_to_start: eind tot start |
|
386 | label_end_to_start: eind tot start | |
386 | label_end_to_end: eind tot eind |
|
387 | label_end_to_end: eind tot eind | |
387 | label_start_to_start: start tot start |
|
388 | label_start_to_start: start tot start | |
388 | label_start_to_end: start tot eind |
|
389 | label_start_to_end: start tot eind | |
389 | label_stay_logged_in: Blijf ingelogd |
|
390 | label_stay_logged_in: Blijf ingelogd | |
390 | label_disabled: uitgeschakeld |
|
391 | label_disabled: uitgeschakeld | |
391 | label_show_completed_versions: Toon afgeronde versies |
|
392 | label_show_completed_versions: Toon afgeronde versies | |
392 | label_me: ik |
|
393 | label_me: ik | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: Nieuw forum |
|
395 | label_board_new: Nieuw forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Onderwerpen |
|
397 | label_topic_plural: Onderwerpen | |
397 | label_message_plural: Berichten |
|
398 | label_message_plural: Berichten | |
398 | label_message_last: Laatste bericht |
|
399 | label_message_last: Laatste bericht | |
399 | label_message_new: Nieuw bericht |
|
400 | label_message_new: Nieuw bericht | |
400 | label_reply_plural: Antwoorden |
|
401 | label_reply_plural: Antwoorden | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Inloggen |
|
411 | button_login: Inloggen | |
411 | button_submit: Toevoegen |
|
412 | button_submit: Toevoegen | |
412 | button_save: Bewaren |
|
413 | button_save: Bewaren | |
413 | button_check_all: Selecteer alle |
|
414 | button_check_all: Selecteer alle | |
414 | button_uncheck_all: Deselecteer alle |
|
415 | button_uncheck_all: Deselecteer alle | |
415 | button_delete: Verwijder |
|
416 | button_delete: Verwijder | |
416 | button_create: Maak |
|
417 | button_create: Maak | |
417 | button_test: Test |
|
418 | button_test: Test | |
418 | button_edit: Bewerk |
|
419 | button_edit: Bewerk | |
419 | button_add: Voeg toe |
|
420 | button_add: Voeg toe | |
420 | button_change: Wijzig |
|
421 | button_change: Wijzig | |
421 | button_apply: Pas toe |
|
422 | button_apply: Pas toe | |
422 | button_clear: Leeg maken |
|
423 | button_clear: Leeg maken | |
423 | button_lock: Lock |
|
424 | button_lock: Lock | |
424 | button_unlock: Unlock |
|
425 | button_unlock: Unlock | |
425 | button_download: Download |
|
426 | button_download: Download | |
426 | button_list: Lijst |
|
427 | button_list: Lijst | |
427 | button_view: Bekijken |
|
428 | button_view: Bekijken | |
428 | button_move: Verplaatsen |
|
429 | button_move: Verplaatsen | |
429 | button_back: Terug |
|
430 | button_back: Terug | |
430 | button_cancel: Annuleer |
|
431 | button_cancel: Annuleer | |
431 | button_activate: Activeer |
|
432 | button_activate: Activeer | |
432 | button_sort: Sorteer |
|
433 | button_sort: Sorteer | |
433 | button_log_time: Log tijd |
|
434 | button_log_time: Log tijd | |
434 | button_rollback: Rollback naar deze versie |
|
435 | button_rollback: Rollback naar deze versie | |
435 | button_watch: Monitor |
|
436 | button_watch: Monitor | |
436 | button_unwatch: Niet meer monitoren |
|
437 | button_unwatch: Niet meer monitoren | |
437 | button_reply: Antwoord |
|
438 | button_reply: Antwoord | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: Actief |
|
442 | status_active: Actief | |
442 | status_registered: geregistreerd |
|
443 | status_registered: geregistreerd | |
443 | status_locked: gelockt |
|
444 | status_locked: gelockt | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd. |
|
446 | text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd. | |
446 | text_regexp_info: bv. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: bv. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 betekent geen restrictie |
|
448 | text_min_max_length_info: 0 betekent geen restrictie | |
448 | text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ? |
|
449 | text_project_destroy_confirmation: Weet U zeker dat U dit project en alle gerelateerde gegevens wilt verwijderen ? | |
449 | text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen |
|
450 | text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen | |
450 | text_are_you_sure: Weet U het zeker ? |
|
451 | text_are_you_sure: Weet U het zeker ? | |
451 | text_journal_changed: gewijzigd van %s naar %s |
|
452 | text_journal_changed: gewijzigd van %s naar %s | |
452 | text_journal_set_to: ingesteld op %s |
|
453 | text_journal_set_to: ingesteld op %s | |
453 | text_journal_deleted: verwijderd |
|
454 | text_journal_deleted: verwijderd | |
454 | text_tip_task_begin_day: taak die op deze dag begint |
|
455 | text_tip_task_begin_day: taak die op deze dag begint | |
455 | text_tip_task_end_day: taak die op deze dag eindigt |
|
456 | text_tip_task_end_day: taak die op deze dag eindigt | |
456 | text_tip_task_begin_end_day: taak die op deze dag begint en eindigt |
|
457 | text_tip_task_begin_end_day: taak die op deze dag begint en eindigt | |
457 | text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.' |
|
458 | text_project_identifier_info: 'kleine letters (a-z), cijfers en liggende streepjes toegestaan.<br />Eenmaal bewaard kan de identificatiecode niet meer worden gewijzigd.' | |
458 | text_caracters_maximum: %d van maximum aantal tekens. |
|
459 | text_caracters_maximum: %d van maximum aantal tekens. | |
459 | text_length_between: Lengte tussen %d en %d tekens. |
|
460 | text_length_between: Lengte tussen %d en %d tekens. | |
460 | text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker |
|
461 | text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker | |
461 | text_unallowed_characters: Niet toegestane tekens |
|
462 | text_unallowed_characters: Niet toegestane tekens | |
462 | text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden). |
|
463 | text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden). | |
463 | text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten |
|
464 | text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten | |
464 |
|
465 | |||
465 | default_role_manager: Manager |
|
466 | default_role_manager: Manager | |
466 | default_role_developper: Ontwikkelaar |
|
467 | default_role_developper: Ontwikkelaar | |
467 | default_role_reporter: Rapporteur |
|
468 | default_role_reporter: Rapporteur | |
468 | default_tracker_bug: Bug |
|
469 | default_tracker_bug: Bug | |
469 | default_tracker_feature: Feature |
|
470 | default_tracker_feature: Feature | |
470 | default_tracker_support: Support |
|
471 | default_tracker_support: Support | |
471 | default_issue_status_new: Nieuw |
|
472 | default_issue_status_new: Nieuw | |
472 | default_issue_status_assigned: Toegewezen |
|
473 | default_issue_status_assigned: Toegewezen | |
473 | default_issue_status_resolved: Opgelost |
|
474 | default_issue_status_resolved: Opgelost | |
474 | default_issue_status_feedback: Terugkoppeling |
|
475 | default_issue_status_feedback: Terugkoppeling | |
475 | default_issue_status_closed: Gesloten |
|
476 | default_issue_status_closed: Gesloten | |
476 | default_issue_status_rejected: Afgewezen |
|
477 | default_issue_status_rejected: Afgewezen | |
477 | default_doc_category_user: Gebruikersdocumentatie |
|
478 | default_doc_category_user: Gebruikersdocumentatie | |
478 | default_doc_category_tech: Technische documentatie |
|
479 | default_doc_category_tech: Technische documentatie | |
479 | default_priority_low: Laag |
|
480 | default_priority_low: Laag | |
480 | default_priority_normal: Normaal |
|
481 | default_priority_normal: Normaal | |
481 | default_priority_high: Hoog |
|
482 | default_priority_high: Hoog | |
482 | default_priority_urgent: Spoed |
|
483 | default_priority_urgent: Spoed | |
483 | default_priority_immediate: Onmiddellijk |
|
484 | default_priority_immediate: Onmiddellijk | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Development |
|
486 | default_activity_development: Development | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Issue prioriteiten |
|
488 | enumeration_issue_priorities: Issue prioriteiten | |
488 | enumeration_doc_categories: Document categorieën |
|
489 | enumeration_doc_categories: Document categorieën | |
489 | enumeration_activities: Activiteiten (tijd tracking) |
|
490 | enumeration_activities: Activiteiten (tijd tracking) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro |
|
4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 dia |
|
8 | actionview_datehelper_time_in_words_day: 1 dia | |
9 | actionview_datehelper_time_in_words_day_plural: %d dias |
|
9 | actionview_datehelper_time_in_words_day_plural: %d dias | |
10 | actionview_datehelper_time_in_words_hour_about: sobre uma hora |
|
10 | actionview_datehelper_time_in_words_hour_about: sobre uma hora | |
11 | actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas | |
12 | actionview_datehelper_time_in_words_hour_about_single: sobre uma hora |
|
12 | actionview_datehelper_time_in_words_hour_about_single: sobre uma hora | |
13 | actionview_datehelper_time_in_words_minute: 1 minuto |
|
13 | actionview_datehelper_time_in_words_minute: 1 minuto | |
14 | actionview_datehelper_time_in_words_minute_half: meio minuto |
|
14 | actionview_datehelper_time_in_words_minute_half: meio minuto | |
15 | actionview_datehelper_time_in_words_minute_less_than: menos que um minuto |
|
15 | actionview_datehelper_time_in_words_minute_less_than: menos que um minuto | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto | |
18 | actionview_datehelper_time_in_words_second_less_than: menos que um segundo |
|
18 | actionview_datehelper_time_in_words_second_less_than: menos que um segundo | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos | |
20 | actionview_instancetag_blank_option: Selecione |
|
20 | actionview_instancetag_blank_option: Selecione | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: nao esta incluido na lista |
|
22 | activerecord_error_inclusion: nao esta incluido na lista | |
23 | activerecord_error_exclusion: esta reservado |
|
23 | activerecord_error_exclusion: esta reservado | |
24 | activerecord_error_invalid: e invalido |
|
24 | activerecord_error_invalid: e invalido | |
25 | activerecord_error_confirmation: confirmacao nao confere |
|
25 | activerecord_error_confirmation: confirmacao nao confere | |
26 | activerecord_error_accepted: deve ser aceito |
|
26 | activerecord_error_accepted: deve ser aceito | |
27 | activerecord_error_empty: nao pode ser vazio |
|
27 | activerecord_error_empty: nao pode ser vazio | |
28 | activerecord_error_blank: nao pode estar em branco |
|
28 | activerecord_error_blank: nao pode estar em branco | |
29 | activerecord_error_too_long: e muito longo |
|
29 | activerecord_error_too_long: e muito longo | |
30 | activerecord_error_too_short: e muito comprido |
|
30 | activerecord_error_too_short: e muito comprido | |
31 | activerecord_error_wrong_length: esta com o comprimento errado |
|
31 | activerecord_error_wrong_length: esta com o comprimento errado | |
32 | activerecord_error_taken: ja esta examinado |
|
32 | activerecord_error_taken: ja esta examinado | |
33 | activerecord_error_not_a_number: nao e um numero |
|
33 | activerecord_error_not_a_number: nao e um numero | |
34 | activerecord_error_not_a_date: nao e uma data valida |
|
34 | activerecord_error_not_a_date: nao e uma data valida | |
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial |
|
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial | |
36 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d yr |
|
39 | general_fmt_age: %d yr | |
40 | general_fmt_age_plural: %d yrs |
|
40 | general_fmt_age_plural: %d yrs | |
41 | general_fmt_date: %%m/%%d/%%Y |
|
41 | general_fmt_date: %%m/%%d/%%Y | |
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'Nao' |
|
45 | general_text_No: 'Nao' | |
46 | general_text_Yes: 'Sim' |
|
46 | general_text_Yes: 'Sim' | |
47 | general_text_no: 'nao' |
|
47 | general_text_no: 'nao' | |
48 | general_text_yes: 'sim' |
|
48 | general_text_yes: 'sim' | |
49 | general_lang_name: 'Portugues Brasileiro' |
|
49 | general_lang_name: 'Portugues Brasileiro' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo |
|
53 | general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo | |
54 |
|
54 | |||
55 | notice_account_updated: Conta foi alterada com sucesso. |
|
55 | notice_account_updated: Conta foi alterada com sucesso. | |
56 | notice_account_invalid_creditentials: Usuario ou senha invalido. |
|
56 | notice_account_invalid_creditentials: Usuario ou senha invalido. | |
57 | notice_account_password_updated: Senha foi alterada com sucesso. |
|
57 | notice_account_password_updated: Senha foi alterada com sucesso. | |
58 | notice_account_wrong_password: Senha errada. |
|
58 | notice_account_wrong_password: Senha errada. | |
59 | notice_account_register_done: Conta foi criada com sucesso. |
|
59 | notice_account_register_done: Conta foi criada com sucesso. | |
60 | notice_account_unknown_email: Usuario desconhecido. |
|
60 | notice_account_unknown_email: Usuario desconhecido. | |
61 | notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha. |
|
61 | notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha. | |
62 | notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce. |
|
62 | notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce. | |
63 | notice_account_activated: Sua conta foi ativada. Voce pode logar agora |
|
63 | notice_account_activated: Sua conta foi ativada. Voce pode logar agora | |
64 | notice_successful_create: Criado com sucesso. |
|
64 | notice_successful_create: Criado com sucesso. | |
65 | notice_successful_update: Alterado com sucesso. |
|
65 | notice_successful_update: Alterado com sucesso. | |
66 | notice_successful_delete: Apagado com sucesso. |
|
66 | notice_successful_delete: Apagado com sucesso. | |
67 | notice_successful_connection: Conectado com sucesso. |
|
67 | notice_successful_connection: Conectado com sucesso. | |
68 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. |
|
68 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. | |
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. |
|
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. | |
70 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. |
|
70 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Sua senha do redMine. |
|
73 | mail_subject_lost_password: Sua senha do redMine. | |
74 | mail_subject_register: Ativacao de conta do redMine. |
|
74 | mail_subject_register: Ativacao de conta do redMine. | |
75 |
|
75 | |||
76 | gui_validation_error: 1 erro |
|
76 | gui_validation_error: 1 erro | |
77 | gui_validation_error_plural: %d erros |
|
77 | gui_validation_error_plural: %d erros | |
78 |
|
78 | |||
79 | field_name: Nome |
|
79 | field_name: Nome | |
80 | field_description: Descricao |
|
80 | field_description: Descricao | |
81 | field_summary: Sumario |
|
81 | field_summary: Sumario | |
82 | field_is_required: Obrigatorio |
|
82 | field_is_required: Obrigatorio | |
83 | field_firstname: Primeiro nome |
|
83 | field_firstname: Primeiro nome | |
84 | field_lastname: Ultimo nome |
|
84 | field_lastname: Ultimo nome | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Arquivo |
|
86 | field_filename: Arquivo | |
87 | field_filesize: Tamanho |
|
87 | field_filesize: Tamanho | |
88 | field_downloads: Downloads |
|
88 | field_downloads: Downloads | |
89 | field_author: Autor |
|
89 | field_author: Autor | |
90 | field_created_on: Criado |
|
90 | field_created_on: Criado | |
91 | field_updated_on: Alterado |
|
91 | field_updated_on: Alterado | |
92 | field_field_format: Formato |
|
92 | field_field_format: Formato | |
93 | field_is_for_all: Para todos os projetos |
|
93 | field_is_for_all: Para todos os projetos | |
94 | field_possible_values: Possiveis valores |
|
94 | field_possible_values: Possiveis valores | |
95 | field_regexp: Expressao regular |
|
95 | field_regexp: Expressao regular | |
96 | field_min_length: Tamanho minimo |
|
96 | field_min_length: Tamanho minimo | |
97 | field_max_length: Tamanho maximo |
|
97 | field_max_length: Tamanho maximo | |
98 | field_value: Valor |
|
98 | field_value: Valor | |
99 | field_category: Categoria |
|
99 | field_category: Categoria | |
100 | field_title: Titulo |
|
100 | field_title: Titulo | |
101 | field_project: Projeto |
|
101 | field_project: Projeto | |
102 | field_issue: Tarefa |
|
102 | field_issue: Tarefa | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Notas |
|
104 | field_notes: Notas | |
105 | field_is_closed: Tarefa fechada |
|
105 | field_is_closed: Tarefa fechada | |
106 | field_is_default: Status padrao |
|
106 | field_is_default: Status padrao | |
107 | field_html_color: Cor |
|
107 | field_html_color: Cor | |
108 | field_tracker: Tipo |
|
108 | field_tracker: Tipo | |
109 | field_subject: Titulo |
|
109 | field_subject: Titulo | |
110 | field_due_date: Data devida |
|
110 | field_due_date: Data devida | |
111 | field_assigned_to: Atribuido para |
|
111 | field_assigned_to: Atribuido para | |
112 | field_priority: Prioridade |
|
112 | field_priority: Prioridade | |
113 | field_fixed_version: Versao corrigida |
|
113 | field_fixed_version: Versao corrigida | |
114 | field_user: Usuario |
|
114 | field_user: Usuario | |
115 | field_role: Regra |
|
115 | field_role: Regra | |
116 | field_homepage: Pagina inicial |
|
116 | field_homepage: Pagina inicial | |
117 | field_is_public: Publico |
|
117 | field_is_public: Publico | |
118 | field_parent: Sub-projeto de |
|
118 | field_parent: Sub-projeto de | |
119 | field_is_in_chlog: Tarefas mostradas no changelog |
|
119 | field_is_in_chlog: Tarefas mostradas no changelog | |
120 | field_is_in_roadmap: Tarefas mostradas no roadmap |
|
120 | field_is_in_roadmap: Tarefas mostradas no roadmap | |
121 | field_login: Login |
|
121 | field_login: Login | |
122 | field_mail_notification: Notificacoes por email |
|
122 | field_mail_notification: Notificacoes por email | |
123 | field_admin: Administrador |
|
123 | field_admin: Administrador | |
124 | field_last_login_on: Ultima conexao |
|
124 | field_last_login_on: Ultima conexao | |
125 | field_language: Lingua |
|
125 | field_language: Lingua | |
126 | field_effective_date: Data |
|
126 | field_effective_date: Data | |
127 | field_password: Senha |
|
127 | field_password: Senha | |
128 | field_new_password: Nova senha |
|
128 | field_new_password: Nova senha | |
129 | field_password_confirmation: Confirmacao |
|
129 | field_password_confirmation: Confirmacao | |
130 | field_version: Versao |
|
130 | field_version: Versao | |
131 | field_type: Tipo |
|
131 | field_type: Tipo | |
132 | field_host: Servidor |
|
132 | field_host: Servidor | |
133 | field_port: Porta |
|
133 | field_port: Porta | |
134 | field_account: Conta |
|
134 | field_account: Conta | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Atributo login |
|
136 | field_attr_login: Atributo login | |
137 | field_attr_firstname: Atributo primeiro nome |
|
137 | field_attr_firstname: Atributo primeiro nome | |
138 | field_attr_lastname: Atributo ultimo nome |
|
138 | field_attr_lastname: Atributo ultimo nome | |
139 | field_attr_mail: Atributo email |
|
139 | field_attr_mail: Atributo email | |
140 | field_onthefly: Criacao de usuario on-the-fly |
|
140 | field_onthefly: Criacao de usuario on-the-fly | |
141 | field_start_date: Inicio |
|
141 | field_start_date: Inicio | |
142 | field_done_ratio: %% Terminado |
|
142 | field_done_ratio: %% Terminado | |
143 | field_auth_source: Modo de autenticacao |
|
143 | field_auth_source: Modo de autenticacao | |
144 | field_hide_mail: Esconder meu email |
|
144 | field_hide_mail: Esconder meu email | |
145 | field_comments: Comentario |
|
145 | field_comments: Comentario | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Pagina inicial |
|
147 | field_start_page: Pagina inicial | |
148 | field_subproject: Sub-projeto |
|
148 | field_subproject: Sub-projeto | |
149 | field_hours: Horas |
|
149 | field_hours: Horas | |
150 | field_activity: Atividade |
|
150 | field_activity: Atividade | |
151 | field_spent_on: Data |
|
151 | field_spent_on: Data | |
152 | field_identifier: Identificador |
|
152 | field_identifier: Identificador | |
153 | field_is_filter: Used as a filter |
|
153 | field_is_filter: Used as a filter | |
154 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Titulo da aplicacao |
|
157 | setting_app_title: Titulo da aplicacao | |
158 | setting_app_subtitle: Sub-titulo da aplicacao |
|
158 | setting_app_subtitle: Sub-titulo da aplicacao | |
159 | setting_welcome_text: Texto de boa-vinda |
|
159 | setting_welcome_text: Texto de boa-vinda | |
160 | setting_default_language: Lingua padrao |
|
160 | setting_default_language: Lingua padrao | |
161 | setting_login_required: Autenticacao obrigatoria |
|
161 | setting_login_required: Autenticacao obrigatoria | |
162 | setting_self_registration: Registro de si mesmo permitido |
|
162 | setting_self_registration: Registro de si mesmo permitido | |
163 | setting_attachment_max_size: Tamanho maximo do anexo |
|
163 | setting_attachment_max_size: Tamanho maximo do anexo | |
164 | setting_issues_export_limit: Limite de exportacao das tarefas |
|
164 | setting_issues_export_limit: Limite de exportacao das tarefas | |
165 | setting_mail_from: Email enviado de |
|
165 | setting_mail_from: Email enviado de | |
166 | setting_host_name: Servidor |
|
166 | setting_host_name: Servidor | |
167 | setting_text_formatting: Formato do texto |
|
167 | setting_text_formatting: Formato do texto | |
168 | setting_wiki_compression: Compactacao do historio do Wiki |
|
168 | setting_wiki_compression: Compactacao do historio do Wiki | |
169 | setting_feeds_limit: Limite do Feed |
|
169 | setting_feeds_limit: Limite do Feed | |
170 | setting_autofetch_changesets: Autofetch commits |
|
170 | setting_autofetch_changesets: Autofetch commits | |
171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio |
|
171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Usuario |
|
178 | label_user: Usuario | |
178 | label_user_plural: Usuarios |
|
179 | label_user_plural: Usuarios | |
179 | label_user_new: Novo usuario |
|
180 | label_user_new: Novo usuario | |
180 | label_project: Projeto |
|
181 | label_project: Projeto | |
181 | label_project_new: Novo projeto |
|
182 | label_project_new: Novo projeto | |
182 | label_project_plural: Projetos |
|
183 | label_project_plural: Projetos | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Ultimos projetos |
|
185 | label_project_latest: Ultimos projetos | |
185 | label_issue: Tarefa |
|
186 | label_issue: Tarefa | |
186 | label_issue_new: Nova tarefa |
|
187 | label_issue_new: Nova tarefa | |
187 | label_issue_plural: Tarefas |
|
188 | label_issue_plural: Tarefas | |
188 | label_issue_view_all: Ver todas as tarefas |
|
189 | label_issue_view_all: Ver todas as tarefas | |
189 | label_document: Documento |
|
190 | label_document: Documento | |
190 | label_document_new: Novo documento |
|
191 | label_document_new: Novo documento | |
191 | label_document_plural: Documentos |
|
192 | label_document_plural: Documentos | |
192 | label_role: Regra |
|
193 | label_role: Regra | |
193 | label_role_plural: Regras |
|
194 | label_role_plural: Regras | |
194 | label_role_new: Nova regra |
|
195 | label_role_new: Nova regra | |
195 | label_role_and_permissions: Regras e permissoes |
|
196 | label_role_and_permissions: Regras e permissoes | |
196 | label_member: Membro |
|
197 | label_member: Membro | |
197 | label_member_new: Novo membro |
|
198 | label_member_new: Novo membro | |
198 | label_member_plural: Membros |
|
199 | label_member_plural: Membros | |
199 | label_tracker: Tipo |
|
200 | label_tracker: Tipo | |
200 | label_tracker_plural: Tipos |
|
201 | label_tracker_plural: Tipos | |
201 | label_tracker_new: Novo tipo |
|
202 | label_tracker_new: Novo tipo | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Status da tarefa |
|
204 | label_issue_status: Status da tarefa | |
204 | label_issue_status_plural: Status das tarefas |
|
205 | label_issue_status_plural: Status das tarefas | |
205 | label_issue_status_new: Novo status |
|
206 | label_issue_status_new: Novo status | |
206 | label_issue_category: Categoria de tarefa |
|
207 | label_issue_category: Categoria de tarefa | |
207 | label_issue_category_plural: Categorias de tarefa |
|
208 | label_issue_category_plural: Categorias de tarefa | |
208 | label_issue_category_new: Nova categoria |
|
209 | label_issue_category_new: Nova categoria | |
209 | label_custom_field: Campo personalizado |
|
210 | label_custom_field: Campo personalizado | |
210 | label_custom_field_plural: Campos personalizado |
|
211 | label_custom_field_plural: Campos personalizado | |
211 | label_custom_field_new: Novo campo personalizado |
|
212 | label_custom_field_new: Novo campo personalizado | |
212 | label_enumerations: Enumeracao |
|
213 | label_enumerations: Enumeracao | |
213 | label_enumeration_new: Novo valor |
|
214 | label_enumeration_new: Novo valor | |
214 | label_information: Informacao |
|
215 | label_information: Informacao | |
215 | label_information_plural: Informacoes |
|
216 | label_information_plural: Informacoes | |
216 | label_please_login: Efetue login |
|
217 | label_please_login: Efetue login | |
217 | label_register: Registre-se |
|
218 | label_register: Registre-se | |
218 | label_password_lost: Perdi a senha |
|
219 | label_password_lost: Perdi a senha | |
219 | label_home: Pagina inicial |
|
220 | label_home: Pagina inicial | |
220 | label_my_page: Minha pagina |
|
221 | label_my_page: Minha pagina | |
221 | label_my_account: Minha conta |
|
222 | label_my_account: Minha conta | |
222 | label_my_projects: Meus projetos |
|
223 | label_my_projects: Meus projetos | |
223 | label_administration: Administracao |
|
224 | label_administration: Administracao | |
224 | label_login: Login |
|
225 | label_login: Login | |
225 | label_logout: Logout |
|
226 | label_logout: Logout | |
226 | label_help: Ajuda |
|
227 | label_help: Ajuda | |
227 | label_reported_issues: Tarefas reportadas |
|
228 | label_reported_issues: Tarefas reportadas | |
228 | label_assigned_to_me_issues: Tarefas atribuidas a mim |
|
229 | label_assigned_to_me_issues: Tarefas atribuidas a mim | |
229 | label_last_login: Utima conexao |
|
230 | label_last_login: Utima conexao | |
230 | label_last_updates: Ultima alteracao |
|
231 | label_last_updates: Ultima alteracao | |
231 | label_last_updates_plural: %d Ultimas alteracoes |
|
232 | label_last_updates_plural: %d Ultimas alteracoes | |
232 | label_registered_on: Registrado em |
|
233 | label_registered_on: Registrado em | |
233 | label_activity: Atividade |
|
234 | label_activity: Atividade | |
234 | label_new: Novo |
|
235 | label_new: Novo | |
235 | label_logged_as: Logado como |
|
236 | label_logged_as: Logado como | |
236 | label_environment: Ambiente |
|
237 | label_environment: Ambiente | |
237 | label_authentication: Autenticacao |
|
238 | label_authentication: Autenticacao | |
238 | label_auth_source: Modo de autenticacao |
|
239 | label_auth_source: Modo de autenticacao | |
239 | label_auth_source_new: Novo modo de autenticacao |
|
240 | label_auth_source_new: Novo modo de autenticacao | |
240 | label_auth_source_plural: Modos de autenticacao |
|
241 | label_auth_source_plural: Modos de autenticacao | |
241 | label_subproject_plural: Sub-projetos |
|
242 | label_subproject_plural: Sub-projetos | |
242 | label_min_max_length: Tamanho min-max |
|
243 | label_min_max_length: Tamanho min-max | |
243 | label_list: Lista |
|
244 | label_list: Lista | |
244 | label_date: Data |
|
245 | label_date: Data | |
245 | label_integer: Inteiro |
|
246 | label_integer: Inteiro | |
246 | label_boolean: Boleano |
|
247 | label_boolean: Boleano | |
247 | label_string: Texto |
|
248 | label_string: Texto | |
248 | label_text: Texto longo |
|
249 | label_text: Texto longo | |
249 | label_attribute: Atributo |
|
250 | label_attribute: Atributo | |
250 | label_attribute_plural: Atributos |
|
251 | label_attribute_plural: Atributos | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Downloads |
|
253 | label_download_plural: %d Downloads | |
253 | label_no_data: Sem dados para mostrar |
|
254 | label_no_data: Sem dados para mostrar | |
254 | label_change_status: Mudar status |
|
255 | label_change_status: Mudar status | |
255 | label_history: Historico |
|
256 | label_history: Historico | |
256 | label_attachment: Arquivo |
|
257 | label_attachment: Arquivo | |
257 | label_attachment_new: Novo arquivo |
|
258 | label_attachment_new: Novo arquivo | |
258 | label_attachment_delete: Apagar arquivo |
|
259 | label_attachment_delete: Apagar arquivo | |
259 | label_attachment_plural: Arquivos |
|
260 | label_attachment_plural: Arquivos | |
260 | label_report: Relatorio |
|
261 | label_report: Relatorio | |
261 | label_report_plural: Relatorio |
|
262 | label_report_plural: Relatorio | |
262 | label_news: Noticias |
|
263 | label_news: Noticias | |
263 | label_news_new: Adicionar noticias |
|
264 | label_news_new: Adicionar noticias | |
264 | label_news_plural: Noticias |
|
265 | label_news_plural: Noticias | |
265 | label_news_latest: Ultimas noticias |
|
266 | label_news_latest: Ultimas noticias | |
266 | label_news_view_all: Ver todas as noticias |
|
267 | label_news_view_all: Ver todas as noticias | |
267 | label_change_log: Change log |
|
268 | label_change_log: Change log | |
268 | label_settings: Ajustes |
|
269 | label_settings: Ajustes | |
269 | label_overview: Visao geral |
|
270 | label_overview: Visao geral | |
270 | label_version: Versao |
|
271 | label_version: Versao | |
271 | label_version_new: Nova versao |
|
272 | label_version_new: Nova versao | |
272 | label_version_plural: Versoes |
|
273 | label_version_plural: Versoes | |
273 | label_confirmation: Confirmacao |
|
274 | label_confirmation: Confirmacao | |
274 | label_export_to: Exportar para |
|
275 | label_export_to: Exportar para | |
275 | label_read: Ler... |
|
276 | label_read: Ler... | |
276 | label_public_projects: Projetos publicos |
|
277 | label_public_projects: Projetos publicos | |
277 | label_open_issues: Aberto |
|
278 | label_open_issues: Aberto | |
278 | label_open_issues_plural: Abertos |
|
279 | label_open_issues_plural: Abertos | |
279 | label_closed_issues: Fechado |
|
280 | label_closed_issues: Fechado | |
280 | label_closed_issues_plural: Fechados |
|
281 | label_closed_issues_plural: Fechados | |
281 | label_total: Total |
|
282 | label_total: Total | |
282 | label_permissions: Permissoes |
|
283 | label_permissions: Permissoes | |
283 | label_current_status: Status atual |
|
284 | label_current_status: Status atual | |
284 | label_new_statuses_allowed: Novo status permitido |
|
285 | label_new_statuses_allowed: Novo status permitido | |
285 | label_all: todos |
|
286 | label_all: todos | |
286 | label_none: nenhum |
|
287 | label_none: nenhum | |
287 | label_next: Proximo |
|
288 | label_next: Proximo | |
288 | label_previous: Anterior |
|
289 | label_previous: Anterior | |
289 | label_used_by: Usado por |
|
290 | label_used_by: Usado por | |
290 | label_details: Detalhes |
|
291 | label_details: Detalhes | |
291 | label_add_note: Adicionar nota |
|
292 | label_add_note: Adicionar nota | |
292 | label_per_page: Por pagina |
|
293 | label_per_page: Por pagina | |
293 | label_calendar: Calendario |
|
294 | label_calendar: Calendario | |
294 | label_months_from: Meses de |
|
295 | label_months_from: Meses de | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Interno |
|
297 | label_internal: Interno | |
297 | label_last_changes: utlimas %d mudancas |
|
298 | label_last_changes: utlimas %d mudancas | |
298 | label_change_view_all: Mostrar todas as mudancas |
|
299 | label_change_view_all: Mostrar todas as mudancas | |
299 | label_personalize_page: Personalizar esta pagina |
|
300 | label_personalize_page: Personalizar esta pagina | |
300 | label_comment: Comentario |
|
301 | label_comment: Comentario | |
301 | label_comment_plural: Comentarios |
|
302 | label_comment_plural: Comentarios | |
302 | label_comment_add: Adicionar comentario |
|
303 | label_comment_add: Adicionar comentario | |
303 | label_comment_added: Comentario adicionado |
|
304 | label_comment_added: Comentario adicionado | |
304 | label_comment_delete: Apagar comentario |
|
305 | label_comment_delete: Apagar comentario | |
305 | label_query: Consulta personalizada |
|
306 | label_query: Consulta personalizada | |
306 | label_query_plural: Consultas personalizadas |
|
307 | label_query_plural: Consultas personalizadas | |
307 | label_query_new: Nova consulta |
|
308 | label_query_new: Nova consulta | |
308 | label_filter_add: Adicionar filtro |
|
309 | label_filter_add: Adicionar filtro | |
309 | label_filter_plural: Filtros |
|
310 | label_filter_plural: Filtros | |
310 | label_equals: e |
|
311 | label_equals: e | |
311 | label_not_equals: nao e |
|
312 | label_not_equals: nao e | |
312 | label_in_less_than: e maior que |
|
313 | label_in_less_than: e maior que | |
313 | label_in_more_than: e menor que |
|
314 | label_in_more_than: e menor que | |
314 | label_in: em |
|
315 | label_in: em | |
315 | label_today: hoje |
|
316 | label_today: hoje | |
316 | label_less_than_ago: faz menos de |
|
317 | label_less_than_ago: faz menos de | |
317 | label_more_than_ago: faz mais de |
|
318 | label_more_than_ago: faz mais de | |
318 | label_ago: dias atras |
|
319 | label_ago: dias atras | |
319 | label_contains: contem |
|
320 | label_contains: contem | |
320 | label_not_contains: nao contem |
|
321 | label_not_contains: nao contem | |
321 | label_day_plural: dias |
|
322 | label_day_plural: dias | |
322 | label_repository: Repository |
|
323 | label_repository: Repository | |
323 | label_browse: Browse |
|
324 | label_browse: Browse | |
324 | label_modification: %d change |
|
325 | label_modification: %d change | |
325 | label_modification_plural: %d changes |
|
326 | label_modification_plural: %d changes | |
326 | label_revision: Revision |
|
327 | label_revision: Revision | |
327 | label_revision_plural: Revisions |
|
328 | label_revision_plural: Revisions | |
328 | label_added: added |
|
329 | label_added: added | |
329 | label_modified: modified |
|
330 | label_modified: modified | |
330 | label_deleted: deleted |
|
331 | label_deleted: deleted | |
331 | label_latest_revision: Latest revision |
|
332 | label_latest_revision: Latest revision | |
332 | label_latest_revision_plural: Latest revisions |
|
333 | label_latest_revision_plural: Latest revisions | |
333 | label_view_revisions: View revisions |
|
334 | label_view_revisions: View revisions | |
334 | label_max_size: Maximum size |
|
335 | label_max_size: Maximum size | |
335 | label_on: 'em' |
|
336 | label_on: 'em' | |
336 | label_sort_highest: Mover para o inicio |
|
337 | label_sort_highest: Mover para o inicio | |
337 | label_sort_higher: Mover para cima |
|
338 | label_sort_higher: Mover para cima | |
338 | label_sort_lower: Mover para baixo |
|
339 | label_sort_lower: Mover para baixo | |
339 | label_sort_lowest: Mover para o fim |
|
340 | label_sort_lowest: Mover para o fim | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Due in |
|
342 | label_roadmap_due_in: Due in | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Sem tarefas para essa versao |
|
344 | label_roadmap_no_issues: Sem tarefas para essa versao | |
344 | label_search: Busca |
|
345 | label_search: Busca | |
345 | label_result: %d resultado |
|
346 | label_result: %d resultado | |
346 | label_result_plural: %d resultados |
|
347 | label_result_plural: %d resultados | |
347 | label_all_words: Todas as palavras |
|
348 | label_all_words: Todas as palavras | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki edit |
|
350 | label_wiki_edit: Wiki edit | |
350 | label_wiki_edit_plural: Wiki edits |
|
351 | label_wiki_edit_plural: Wiki edits | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Versao atual |
|
355 | label_current_version: Versao atual | |
355 | label_preview: Previa |
|
356 | label_preview: Previa | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Detalhes de todas as mudancas |
|
358 | label_changes_details: Detalhes de todas as mudancas | |
358 | label_issue_tracking: Tarefas |
|
359 | label_issue_tracking: Tarefas | |
359 | label_spent_time: Tempo gasto |
|
360 | label_spent_time: Tempo gasto | |
360 | label_f_hour: %.2f hora |
|
361 | label_f_hour: %.2f hora | |
361 | label_f_hour_plural: %.2f horas |
|
362 | label_f_hour_plural: %.2f horas | |
362 | label_time_tracking: Tempo trabalhado |
|
363 | label_time_tracking: Tempo trabalhado | |
363 | label_change_plural: Mudancas |
|
364 | label_change_plural: Mudancas | |
364 | label_statistics: Estatisticas |
|
365 | label_statistics: Estatisticas | |
365 | label_commits_per_month: Commits por mes |
|
366 | label_commits_per_month: Commits por mes | |
366 | label_commits_per_author: Commits por autor |
|
367 | label_commits_per_author: Commits por autor | |
367 | label_view_diff: Ver diferencas |
|
368 | label_view_diff: Ver diferencas | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: side by side |
|
370 | label_diff_side_by_side: side by side | |
370 | label_options: Opcoes |
|
371 | label_options: Opcoes | |
371 | label_copy_workflow_from: Copiar workflow de |
|
372 | label_copy_workflow_from: Copiar workflow de | |
372 | label_permissions_report: Relatorio de permissoes |
|
373 | label_permissions_report: Relatorio de permissoes | |
373 | label_watched_issues: Watched issues |
|
374 | label_watched_issues: Watched issues | |
374 | label_related_issues: Related issues |
|
375 | label_related_issues: Related issues | |
375 | label_applied_status: Applied status |
|
376 | label_applied_status: Applied status | |
376 | label_loading: Loading... |
|
377 | label_loading: Loading... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Login |
|
411 | button_login: Login | |
411 | button_submit: Enviar |
|
412 | button_submit: Enviar | |
412 | button_save: Salvar |
|
413 | button_save: Salvar | |
413 | button_check_all: Marcar todos |
|
414 | button_check_all: Marcar todos | |
414 | button_uncheck_all: Desmarcar todos |
|
415 | button_uncheck_all: Desmarcar todos | |
415 | button_delete: Apagar |
|
416 | button_delete: Apagar | |
416 | button_create: Criar |
|
417 | button_create: Criar | |
417 | button_test: Testar |
|
418 | button_test: Testar | |
418 | button_edit: Editar |
|
419 | button_edit: Editar | |
419 | button_add: Adicionar |
|
420 | button_add: Adicionar | |
420 | button_change: Mudar |
|
421 | button_change: Mudar | |
421 | button_apply: Aplicar |
|
422 | button_apply: Aplicar | |
422 | button_clear: Limpar |
|
423 | button_clear: Limpar | |
423 | button_lock: Bloquear |
|
424 | button_lock: Bloquear | |
424 | button_unlock: Desbloquear |
|
425 | button_unlock: Desbloquear | |
425 | button_download: Download |
|
426 | button_download: Download | |
426 | button_list: Listar |
|
427 | button_list: Listar | |
427 | button_view: Ver |
|
428 | button_view: Ver | |
428 | button_move: Mover |
|
429 | button_move: Mover | |
429 | button_back: Voltar |
|
430 | button_back: Voltar | |
430 | button_cancel: Cancelar |
|
431 | button_cancel: Cancelar | |
431 | button_activate: Ativar |
|
432 | button_activate: Ativar | |
432 | button_sort: Ordenar |
|
433 | button_sort: Ordenar | |
433 | button_log_time: Tempo de trabalho |
|
434 | button_log_time: Tempo de trabalho | |
434 | button_rollback: Voltar para esta versao |
|
435 | button_rollback: Voltar para esta versao | |
435 | button_watch: Watch |
|
436 | button_watch: Watch | |
436 | button_unwatch: Unwatch |
|
437 | button_unwatch: Unwatch | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: ativo |
|
442 | status_active: ativo | |
442 | status_registered: registrado |
|
443 | status_registered: registrado | |
443 | status_locked: bloqueado |
|
444 | status_locked: bloqueado | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email |
|
446 | text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email | |
446 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 siginifica sem restricao |
|
448 | text_min_max_length_info: 0 siginifica sem restricao | |
448 | text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados? |
|
449 | text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados? | |
449 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow |
|
450 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow | |
450 | text_are_you_sure: Voce tem certeza ? |
|
451 | text_are_you_sure: Voce tem certeza ? | |
451 | text_journal_changed: alterado de %s para %s |
|
452 | text_journal_changed: alterado de %s para %s | |
452 | text_journal_set_to: setar para %s |
|
453 | text_journal_set_to: setar para %s | |
453 | text_journal_deleted: apagado |
|
454 | text_journal_deleted: apagado | |
454 | text_tip_task_begin_day: tarefa comeca neste dia |
|
455 | text_tip_task_begin_day: tarefa comeca neste dia | |
455 | text_tip_task_end_day: tarefa termina neste dia |
|
456 | text_tip_task_end_day: tarefa termina neste dia | |
456 | text_tip_task_begin_end_day: tarefa comeca e termina neste dia |
|
457 | text_tip_task_begin_end_day: tarefa comeca e termina neste dia | |
457 | text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' |
|
458 | text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' | |
458 | text_caracters_maximum: %d maximo de caracteres |
|
459 | text_caracters_maximum: %d maximo de caracteres | |
459 | text_length_between: Tamanho entre %d e %d caracteres. |
|
460 | text_length_between: Tamanho entre %d e %d caracteres. | |
460 | text_tracker_no_workflow: Sem workflow definido para este tipo. |
|
461 | text_tracker_no_workflow: Sem workflow definido para este tipo. | |
461 | text_unallowed_characters: Unallowed characters |
|
462 | text_unallowed_characters: Unallowed characters | |
462 | text_comma_separated: Multiple values allowed (comma separated). |
|
463 | text_comma_separated: Multiple values allowed (comma separated). | |
463 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
464 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
464 |
|
465 | |||
465 | default_role_manager: Analista de Negocio ou Gerente de Projeto |
|
466 | default_role_manager: Analista de Negocio ou Gerente de Projeto | |
466 | default_role_developper: Desenvolvedor |
|
467 | default_role_developper: Desenvolvedor | |
467 | default_role_reporter: Analista de Suporte |
|
468 | default_role_reporter: Analista de Suporte | |
468 | default_tracker_bug: Bug |
|
469 | default_tracker_bug: Bug | |
469 | default_tracker_feature: Implementacao |
|
470 | default_tracker_feature: Implementacao | |
470 | default_tracker_support: Suporte |
|
471 | default_tracker_support: Suporte | |
471 | default_issue_status_new: Novo |
|
472 | default_issue_status_new: Novo | |
472 | default_issue_status_assigned: Atribuido |
|
473 | default_issue_status_assigned: Atribuido | |
473 | default_issue_status_resolved: Resolvido |
|
474 | default_issue_status_resolved: Resolvido | |
474 | default_issue_status_feedback: Feedback |
|
475 | default_issue_status_feedback: Feedback | |
475 | default_issue_status_closed: Fechado |
|
476 | default_issue_status_closed: Fechado | |
476 | default_issue_status_rejected: Rejeitado |
|
477 | default_issue_status_rejected: Rejeitado | |
477 | default_doc_category_user: Documentacao do usuario |
|
478 | default_doc_category_user: Documentacao do usuario | |
478 | default_doc_category_tech: Documentacao do tecnica |
|
479 | default_doc_category_tech: Documentacao do tecnica | |
479 | default_priority_low: Baixo |
|
480 | default_priority_low: Baixo | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: Alto |
|
482 | default_priority_high: Alto | |
482 | default_priority_urgent: Urgente |
|
483 | default_priority_urgent: Urgente | |
483 | default_priority_immediate: Imediato |
|
484 | default_priority_immediate: Imediato | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Desenvolvimento |
|
486 | default_activity_development: Desenvolvimento | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Prioridade das tarefas |
|
488 | enumeration_issue_priorities: Prioridade das tarefas | |
488 | enumeration_doc_categories: Categorias de documento |
|
489 | enumeration_doc_categories: Categorias de documento | |
489 | enumeration_activities: Atividades (time tracking) |
|
490 | enumeration_activities: Atividades (time tracking) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro |
|
4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 dia |
|
8 | actionview_datehelper_time_in_words_day: 1 dia | |
9 | actionview_datehelper_time_in_words_day_plural: %d dias |
|
9 | actionview_datehelper_time_in_words_day_plural: %d dias | |
10 | actionview_datehelper_time_in_words_hour_about: em torno de uma hora |
|
10 | actionview_datehelper_time_in_words_hour_about: em torno de uma hora | |
11 | actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas | |
12 | actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora |
|
12 | actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora | |
13 | actionview_datehelper_time_in_words_minute: 1 minuto |
|
13 | actionview_datehelper_time_in_words_minute: 1 minuto | |
14 | actionview_datehelper_time_in_words_minute_half: meio minuto |
|
14 | actionview_datehelper_time_in_words_minute_half: meio minuto | |
15 | actionview_datehelper_time_in_words_minute_less_than: menos de um minuto |
|
15 | actionview_datehelper_time_in_words_minute_less_than: menos de um minuto | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto | |
18 | actionview_datehelper_time_in_words_second_less_than: menos de um segundo |
|
18 | actionview_datehelper_time_in_words_second_less_than: menos de um segundo | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos | |
20 | actionview_instancetag_blank_option: Selecione |
|
20 | actionview_instancetag_blank_option: Selecione | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: não existe na lista |
|
22 | activerecord_error_inclusion: não existe na lista | |
23 | activerecord_error_exclusion: já existe na lista |
|
23 | activerecord_error_exclusion: já existe na lista | |
24 | activerecord_error_invalid: é inválido |
|
24 | activerecord_error_invalid: é inválido | |
25 | activerecord_error_confirmation: não confere com sua confirmação |
|
25 | activerecord_error_confirmation: não confere com sua confirmação | |
26 | activerecord_error_accepted: deve ser aceito |
|
26 | activerecord_error_accepted: deve ser aceito | |
27 | activerecord_error_empty: não pode ser vazio |
|
27 | activerecord_error_empty: não pode ser vazio | |
28 | activerecord_error_blank: não pode estar em branco |
|
28 | activerecord_error_blank: não pode estar em branco | |
29 | activerecord_error_too_long: é muito longo |
|
29 | activerecord_error_too_long: é muito longo | |
30 | activerecord_error_too_short: é muito curto |
|
30 | activerecord_error_too_short: é muito curto | |
31 | activerecord_error_wrong_length: possui o comprimento errado |
|
31 | activerecord_error_wrong_length: possui o comprimento errado | |
32 | activerecord_error_taken: já foi usado em outro registro |
|
32 | activerecord_error_taken: já foi usado em outro registro | |
33 | activerecord_error_not_a_number: não é um número |
|
33 | activerecord_error_not_a_number: não é um número | |
34 | activerecord_error_not_a_date: não é uma data válida |
|
34 | activerecord_error_not_a_date: não é uma data válida | |
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial |
|
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial | |
36 | activerecord_error_not_same_project: não pertence ao mesmo projeto |
|
36 | activerecord_error_not_same_project: não pertence ao mesmo projeto | |
37 | activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular |
|
37 | activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular | |
38 |
|
38 | |||
39 | general_fmt_age: %d ano |
|
39 | general_fmt_age: %d ano | |
40 | general_fmt_age_plural: %d anos |
|
40 | general_fmt_age_plural: %d anos | |
41 | general_fmt_date: %%d/%%m/%%Y |
|
41 | general_fmt_date: %%d/%%m/%%Y | |
42 | general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p |
|
42 | general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'Não' |
|
45 | general_text_No: 'Não' | |
46 | general_text_Yes: 'Sim' |
|
46 | general_text_Yes: 'Sim' | |
47 | general_text_no: 'não' |
|
47 | general_text_no: 'não' | |
48 | general_text_yes: 'sim' |
|
48 | general_text_yes: 'sim' | |
49 | general_lang_name: 'Português' |
|
49 | general_lang_name: 'Português' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo |
|
53 | general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo | |
54 |
|
54 | |||
55 | notice_account_updated: Conta foi atualizada com sucesso. |
|
55 | notice_account_updated: Conta foi atualizada com sucesso. | |
56 | notice_account_invalid_creditentials: Usuário ou senha inválidos. |
|
56 | notice_account_invalid_creditentials: Usuário ou senha inválidos. | |
57 | notice_account_password_updated: Senha foi alterada com sucesso. |
|
57 | notice_account_password_updated: Senha foi alterada com sucesso. | |
58 | notice_account_wrong_password: Senha errada. |
|
58 | notice_account_wrong_password: Senha errada. | |
59 | notice_account_register_done: Conta foi criada com sucesso. |
|
59 | notice_account_register_done: Conta foi criada com sucesso. | |
60 | notice_account_unknown_email: Usuário desconhecido. |
|
60 | notice_account_unknown_email: Usuário desconhecido. | |
61 | notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha. |
|
61 | notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha. | |
62 | notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você. |
|
62 | notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você. | |
63 | notice_account_activated: Sua conta foi ativada. Você pode logar agora |
|
63 | notice_account_activated: Sua conta foi ativada. Você pode logar agora | |
64 | notice_successful_create: Criado com sucesso. |
|
64 | notice_successful_create: Criado com sucesso. | |
65 | notice_successful_update: Alterado com sucesso. |
|
65 | notice_successful_update: Alterado com sucesso. | |
66 | notice_successful_delete: Apagado com sucesso. |
|
66 | notice_successful_delete: Apagado com sucesso. | |
67 | notice_successful_connection: Conectado com sucesso. |
|
67 | notice_successful_connection: Conectado com sucesso. | |
68 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. |
|
68 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. | |
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. |
|
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. | |
70 | notice_scm_error: A entrada e/ou a revisão não existem no repositório. |
|
70 | notice_scm_error: A entrada e/ou a revisão não existem no repositório. | |
71 | notice_not_authorized: Você não está autorizado a acessar esta página. |
|
71 | notice_not_authorized: Você não está autorizado a acessar esta página. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Sua senha do redMine. |
|
73 | mail_subject_lost_password: Sua senha do redMine. | |
74 | mail_subject_register: Ativação de conta do redMine. |
|
74 | mail_subject_register: Ativação de conta do redMine. | |
75 |
|
75 | |||
76 | gui_validation_error: 1 erro |
|
76 | gui_validation_error: 1 erro | |
77 | gui_validation_error_plural: %d erros |
|
77 | gui_validation_error_plural: %d erros | |
78 |
|
78 | |||
79 | field_name: Nome |
|
79 | field_name: Nome | |
80 | field_description: Descrição |
|
80 | field_description: Descrição | |
81 | field_summary: Sumário |
|
81 | field_summary: Sumário | |
82 | field_is_required: Obrigatório |
|
82 | field_is_required: Obrigatório | |
83 | field_firstname: Primeiro nome |
|
83 | field_firstname: Primeiro nome | |
84 | field_lastname: Último nome |
|
84 | field_lastname: Último nome | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Arquivo |
|
86 | field_filename: Arquivo | |
87 | field_filesize: Tamanho |
|
87 | field_filesize: Tamanho | |
88 | field_downloads: Downloads |
|
88 | field_downloads: Downloads | |
89 | field_author: Autor |
|
89 | field_author: Autor | |
90 | field_created_on: Criado |
|
90 | field_created_on: Criado | |
91 | field_updated_on: Alterado |
|
91 | field_updated_on: Alterado | |
92 | field_field_format: Formato |
|
92 | field_field_format: Formato | |
93 | field_is_for_all: Para todos os projetos |
|
93 | field_is_for_all: Para todos os projetos | |
94 | field_possible_values: Possíveis valores |
|
94 | field_possible_values: Possíveis valores | |
95 | field_regexp: Expressão regular |
|
95 | field_regexp: Expressão regular | |
96 | field_min_length: Tamanho mínimo |
|
96 | field_min_length: Tamanho mínimo | |
97 | field_max_length: Tamanho máximo |
|
97 | field_max_length: Tamanho máximo | |
98 | field_value: Valor |
|
98 | field_value: Valor | |
99 | field_category: Categoria |
|
99 | field_category: Categoria | |
100 | field_title: Título |
|
100 | field_title: Título | |
101 | field_project: Projeto |
|
101 | field_project: Projeto | |
102 | field_issue: Tarefa |
|
102 | field_issue: Tarefa | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Notas |
|
104 | field_notes: Notas | |
105 | field_is_closed: Tarefa fechada |
|
105 | field_is_closed: Tarefa fechada | |
106 | field_is_default: Status padrão |
|
106 | field_is_default: Status padrão | |
107 | field_html_color: Cor |
|
107 | field_html_color: Cor | |
108 | field_tracker: Tipo |
|
108 | field_tracker: Tipo | |
109 | field_subject: Assunto |
|
109 | field_subject: Assunto | |
110 | field_due_date: Data final |
|
110 | field_due_date: Data final | |
111 | field_assigned_to: Atribuído para |
|
111 | field_assigned_to: Atribuído para | |
112 | field_priority: Prioridade |
|
112 | field_priority: Prioridade | |
113 | field_fixed_version: Versão corrigida |
|
113 | field_fixed_version: Versão corrigida | |
114 | field_user: Usuário |
|
114 | field_user: Usuário | |
115 | field_role: Regra |
|
115 | field_role: Regra | |
116 | field_homepage: Página inicial |
|
116 | field_homepage: Página inicial | |
117 | field_is_public: Público |
|
117 | field_is_public: Público | |
118 | field_parent: Sub-projeto de |
|
118 | field_parent: Sub-projeto de | |
119 | field_is_in_chlog: Tarefas mostradas no changelog |
|
119 | field_is_in_chlog: Tarefas mostradas no changelog | |
120 | field_is_in_roadmap: Tarefas mostradas no roadmap |
|
120 | field_is_in_roadmap: Tarefas mostradas no roadmap | |
121 | field_login: Login |
|
121 | field_login: Login | |
122 | field_mail_notification: Notificações por email |
|
122 | field_mail_notification: Notificações por email | |
123 | field_admin: Administrador |
|
123 | field_admin: Administrador | |
124 | field_last_login_on: Última conexão |
|
124 | field_last_login_on: Última conexão | |
125 | field_language: Língua |
|
125 | field_language: Língua | |
126 | field_effective_date: Data |
|
126 | field_effective_date: Data | |
127 | field_password: Senha |
|
127 | field_password: Senha | |
128 | field_new_password: Nova senha |
|
128 | field_new_password: Nova senha | |
129 | field_password_confirmation: Confirmação |
|
129 | field_password_confirmation: Confirmação | |
130 | field_version: Versão |
|
130 | field_version: Versão | |
131 | field_type: Tipo |
|
131 | field_type: Tipo | |
132 | field_host: Servidor |
|
132 | field_host: Servidor | |
133 | field_port: Porta |
|
133 | field_port: Porta | |
134 | field_account: Conta |
|
134 | field_account: Conta | |
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Atributo login |
|
136 | field_attr_login: Atributo login | |
137 | field_attr_firstname: Atributo primeiro nome |
|
137 | field_attr_firstname: Atributo primeiro nome | |
138 | field_attr_lastname: Atributo último nome |
|
138 | field_attr_lastname: Atributo último nome | |
139 | field_attr_mail: Atributo email |
|
139 | field_attr_mail: Atributo email | |
140 | field_onthefly: Criação de usuário sob-demanda |
|
140 | field_onthefly: Criação de usuário sob-demanda | |
141 | field_start_date: Início |
|
141 | field_start_date: Início | |
142 | field_done_ratio: %% Terminado |
|
142 | field_done_ratio: %% Terminado | |
143 | field_auth_source: Modo de autenticação |
|
143 | field_auth_source: Modo de autenticação | |
144 | field_hide_mail: Esconda meu email |
|
144 | field_hide_mail: Esconda meu email | |
145 | field_comments: Comentário |
|
145 | field_comments: Comentário | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Página inicial |
|
147 | field_start_page: Página inicial | |
148 | field_subproject: Sub-projeto |
|
148 | field_subproject: Sub-projeto | |
149 | field_hours: Horas |
|
149 | field_hours: Horas | |
150 | field_activity: Atividade |
|
150 | field_activity: Atividade | |
151 | field_spent_on: Data |
|
151 | field_spent_on: Data | |
152 | field_identifier: Identificador |
|
152 | field_identifier: Identificador | |
153 | field_is_filter: Usado como filtro |
|
153 | field_is_filter: Usado como filtro | |
154 | field_issue_to_id: Tarefa relacionada |
|
154 | field_issue_to_id: Tarefa relacionada | |
155 | field_delay: Atraso |
|
155 | field_delay: Atraso | |
156 |
|
156 | |||
157 | setting_app_title: Título da aplicação |
|
157 | setting_app_title: Título da aplicação | |
158 | setting_app_subtitle: Sub-título da aplicação |
|
158 | setting_app_subtitle: Sub-título da aplicação | |
159 | setting_welcome_text: Texto de boas-vindas |
|
159 | setting_welcome_text: Texto de boas-vindas | |
160 | setting_default_language: Linguagem padrão |
|
160 | setting_default_language: Linguagem padrão | |
161 | setting_login_required: Autenticação obrigatória |
|
161 | setting_login_required: Autenticação obrigatória | |
162 | setting_self_registration: Registro permitido |
|
162 | setting_self_registration: Registro permitido | |
163 | setting_attachment_max_size: Tamanho máximo do anexo |
|
163 | setting_attachment_max_size: Tamanho máximo do anexo | |
164 | setting_issues_export_limit: Limite de exportação das tarefas |
|
164 | setting_issues_export_limit: Limite de exportação das tarefas | |
165 | setting_mail_from: Email enviado de |
|
165 | setting_mail_from: Email enviado de | |
166 | setting_host_name: Servidor |
|
166 | setting_host_name: Servidor | |
167 | setting_text_formatting: Formato do texto |
|
167 | setting_text_formatting: Formato do texto | |
168 | setting_wiki_compression: Compactação do histórico do Wiki |
|
168 | setting_wiki_compression: Compactação do histórico do Wiki | |
169 | setting_feeds_limit: Limite do Feed |
|
169 | setting_feeds_limit: Limite do Feed | |
170 | setting_autofetch_changesets: Buscar automaticamente commits |
|
170 | setting_autofetch_changesets: Buscar automaticamente commits | |
171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositório |
|
171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositório | |
172 | setting_commit_ref_keywords: Palavras-chave de referôncia |
|
172 | setting_commit_ref_keywords: Palavras-chave de referôncia | |
173 | setting_commit_fix_keywords: Palavras-chave fixas |
|
173 | setting_commit_fix_keywords: Palavras-chave fixas | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Usuário |
|
178 | label_user: Usuário | |
178 | label_user_plural: Usuários |
|
179 | label_user_plural: Usuários | |
179 | label_user_new: Novo usuário |
|
180 | label_user_new: Novo usuário | |
180 | label_project: Projeto |
|
181 | label_project: Projeto | |
181 | label_project_new: Novo projeto |
|
182 | label_project_new: Novo projeto | |
182 | label_project_plural: Projetos |
|
183 | label_project_plural: Projetos | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Últimos projetos |
|
185 | label_project_latest: Últimos projetos | |
185 | label_issue: Tarefa |
|
186 | label_issue: Tarefa | |
186 | label_issue_new: Nova tarefa |
|
187 | label_issue_new: Nova tarefa | |
187 | label_issue_plural: Tarefas |
|
188 | label_issue_plural: Tarefas | |
188 | label_issue_view_all: Ver todas as tarefas |
|
189 | label_issue_view_all: Ver todas as tarefas | |
189 | label_document: Documento |
|
190 | label_document: Documento | |
190 | label_document_new: Novo documento |
|
191 | label_document_new: Novo documento | |
191 | label_document_plural: Documentos |
|
192 | label_document_plural: Documentos | |
192 | label_role: Regra |
|
193 | label_role: Regra | |
193 | label_role_plural: Regras |
|
194 | label_role_plural: Regras | |
194 | label_role_new: Nova regra |
|
195 | label_role_new: Nova regra | |
195 | label_role_and_permissions: Regras e permissões |
|
196 | label_role_and_permissions: Regras e permissões | |
196 | label_member: Membro |
|
197 | label_member: Membro | |
197 | label_member_new: Novo membro |
|
198 | label_member_new: Novo membro | |
198 | label_member_plural: Membros |
|
199 | label_member_plural: Membros | |
199 | label_tracker: Tipo |
|
200 | label_tracker: Tipo | |
200 | label_tracker_plural: Tipos |
|
201 | label_tracker_plural: Tipos | |
201 | label_tracker_new: Novo tipo |
|
202 | label_tracker_new: Novo tipo | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Status da tarefa |
|
204 | label_issue_status: Status da tarefa | |
204 | label_issue_status_plural: Status das tarefas |
|
205 | label_issue_status_plural: Status das tarefas | |
205 | label_issue_status_new: Novo status |
|
206 | label_issue_status_new: Novo status | |
206 | label_issue_category: Categoria da tarefa |
|
207 | label_issue_category: Categoria da tarefa | |
207 | label_issue_category_plural: Categorias das tarefas |
|
208 | label_issue_category_plural: Categorias das tarefas | |
208 | label_issue_category_new: Nova categoria |
|
209 | label_issue_category_new: Nova categoria | |
209 | label_custom_field: Campo personalizado |
|
210 | label_custom_field: Campo personalizado | |
210 | label_custom_field_plural: Campos personalizados |
|
211 | label_custom_field_plural: Campos personalizados | |
211 | label_custom_field_new: Novo campo personalizado |
|
212 | label_custom_field_new: Novo campo personalizado | |
212 | label_enumerations: Enumeração |
|
213 | label_enumerations: Enumeração | |
213 | label_enumeration_new: Novo valor |
|
214 | label_enumeration_new: Novo valor | |
214 | label_information: Informação |
|
215 | label_information: Informação | |
215 | label_information_plural: Informações |
|
216 | label_information_plural: Informações | |
216 | label_please_login: Efetue login |
|
217 | label_please_login: Efetue login | |
217 | label_register: Registre-se |
|
218 | label_register: Registre-se | |
218 | label_password_lost: Perdi a senha |
|
219 | label_password_lost: Perdi a senha | |
219 | label_home: Página inicial |
|
220 | label_home: Página inicial | |
220 | label_my_page: Minha página |
|
221 | label_my_page: Minha página | |
221 | label_my_account: Minha conta |
|
222 | label_my_account: Minha conta | |
222 | label_my_projects: Meus projetos |
|
223 | label_my_projects: Meus projetos | |
223 | label_administration: Administração |
|
224 | label_administration: Administração | |
224 | label_login: Login |
|
225 | label_login: Login | |
225 | label_logout: Logout |
|
226 | label_logout: Logout | |
226 | label_help: Ajuda |
|
227 | label_help: Ajuda | |
227 | label_reported_issues: Tarefas reportadas |
|
228 | label_reported_issues: Tarefas reportadas | |
228 | label_assigned_to_me_issues: Tarefas atribuídas à mim |
|
229 | label_assigned_to_me_issues: Tarefas atribuídas à mim | |
229 | label_last_login: Útima conexão |
|
230 | label_last_login: Útima conexão | |
230 | label_last_updates: Última alteração |
|
231 | label_last_updates: Última alteração | |
231 | label_last_updates_plural: %d Últimas alterações |
|
232 | label_last_updates_plural: %d Últimas alterações | |
232 | label_registered_on: Registrado em |
|
233 | label_registered_on: Registrado em | |
233 | label_activity: Atividade |
|
234 | label_activity: Atividade | |
234 | label_new: Novo |
|
235 | label_new: Novo | |
235 | label_logged_as: Logado como |
|
236 | label_logged_as: Logado como | |
236 | label_environment: Ambiente |
|
237 | label_environment: Ambiente | |
237 | label_authentication: Autenticação |
|
238 | label_authentication: Autenticação | |
238 | label_auth_source: Modo de autenticação |
|
239 | label_auth_source: Modo de autenticação | |
239 | label_auth_source_new: Novo modo de autenticação |
|
240 | label_auth_source_new: Novo modo de autenticação | |
240 | label_auth_source_plural: Modos de autenticação |
|
241 | label_auth_source_plural: Modos de autenticação | |
241 | label_subproject_plural: Sub-projetos |
|
242 | label_subproject_plural: Sub-projetos | |
242 | label_min_max_length: Tamanho min-max |
|
243 | label_min_max_length: Tamanho min-max | |
243 | label_list: Lista |
|
244 | label_list: Lista | |
244 | label_date: Data |
|
245 | label_date: Data | |
245 | label_integer: Inteiro |
|
246 | label_integer: Inteiro | |
246 | label_boolean: Booleano |
|
247 | label_boolean: Booleano | |
247 | label_string: Texto |
|
248 | label_string: Texto | |
248 | label_text: Texto longo |
|
249 | label_text: Texto longo | |
249 | label_attribute: Atributo |
|
250 | label_attribute: Atributo | |
250 | label_attribute_plural: Atributos |
|
251 | label_attribute_plural: Atributos | |
251 | label_download: %d Download |
|
252 | label_download: %d Download | |
252 | label_download_plural: %d Downloads |
|
253 | label_download_plural: %d Downloads | |
253 | label_no_data: Sem dados para mostrar |
|
254 | label_no_data: Sem dados para mostrar | |
254 | label_change_status: Mudar status |
|
255 | label_change_status: Mudar status | |
255 | label_history: Histórico |
|
256 | label_history: Histórico | |
256 | label_attachment: Arquivo |
|
257 | label_attachment: Arquivo | |
257 | label_attachment_new: Novo arquivo |
|
258 | label_attachment_new: Novo arquivo | |
258 | label_attachment_delete: Apagar arquivo |
|
259 | label_attachment_delete: Apagar arquivo | |
259 | label_attachment_plural: Arquivos |
|
260 | label_attachment_plural: Arquivos | |
260 | label_report: Relatório |
|
261 | label_report: Relatório | |
261 | label_report_plural: Relatório |
|
262 | label_report_plural: Relatório | |
262 | label_news: Notícias |
|
263 | label_news: Notícias | |
263 | label_news_new: Adicionar notícias |
|
264 | label_news_new: Adicionar notícias | |
264 | label_news_plural: Notícias |
|
265 | label_news_plural: Notícias | |
265 | label_news_latest: Últimas notícias |
|
266 | label_news_latest: Últimas notícias | |
266 | label_news_view_all: Ver todas as notícias |
|
267 | label_news_view_all: Ver todas as notícias | |
267 | label_change_log: Log de mudanças |
|
268 | label_change_log: Log de mudanças | |
268 | label_settings: Configurações |
|
269 | label_settings: Configurações | |
269 | label_overview: Visão geral |
|
270 | label_overview: Visão geral | |
270 | label_version: Versão |
|
271 | label_version: Versão | |
271 | label_version_new: Nova versão |
|
272 | label_version_new: Nova versão | |
272 | label_version_plural: Versões |
|
273 | label_version_plural: Versões | |
273 | label_confirmation: Confirmação |
|
274 | label_confirmation: Confirmação | |
274 | label_export_to: Exportar para |
|
275 | label_export_to: Exportar para | |
275 | label_read: Ler... |
|
276 | label_read: Ler... | |
276 | label_public_projects: Projetos públicos |
|
277 | label_public_projects: Projetos públicos | |
277 | label_open_issues: Aberto |
|
278 | label_open_issues: Aberto | |
278 | label_open_issues_plural: Abertos |
|
279 | label_open_issues_plural: Abertos | |
279 | label_closed_issues: Fechado |
|
280 | label_closed_issues: Fechado | |
280 | label_closed_issues_plural: Fechados |
|
281 | label_closed_issues_plural: Fechados | |
281 | label_total: Total |
|
282 | label_total: Total | |
282 | label_permissions: Permissões |
|
283 | label_permissions: Permissões | |
283 | label_current_status: Status atual |
|
284 | label_current_status: Status atual | |
284 | label_new_statuses_allowed: Novo status permitido |
|
285 | label_new_statuses_allowed: Novo status permitido | |
285 | label_all: todos |
|
286 | label_all: todos | |
286 | label_none: nenhum |
|
287 | label_none: nenhum | |
287 | label_next: Próximo |
|
288 | label_next: Próximo | |
288 | label_previous: Anterior |
|
289 | label_previous: Anterior | |
289 | label_used_by: Usado por |
|
290 | label_used_by: Usado por | |
290 | label_details: Detalhes |
|
291 | label_details: Detalhes | |
291 | label_add_note: Adicionar nota |
|
292 | label_add_note: Adicionar nota | |
292 | label_per_page: Por página |
|
293 | label_per_page: Por página | |
293 | label_calendar: Calendário |
|
294 | label_calendar: Calendário | |
294 | label_months_from: Meses de |
|
295 | label_months_from: Meses de | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Interno |
|
297 | label_internal: Interno | |
297 | label_last_changes: últimas %d mudanças |
|
298 | label_last_changes: últimas %d mudanças | |
298 | label_change_view_all: Mostrar todas as mudanças |
|
299 | label_change_view_all: Mostrar todas as mudanças | |
299 | label_personalize_page: Personalizar esta página |
|
300 | label_personalize_page: Personalizar esta página | |
300 | label_comment: Comentário |
|
301 | label_comment: Comentário | |
301 | label_comment_plural: Comentários |
|
302 | label_comment_plural: Comentários | |
302 | label_comment_add: Adicionar comentário |
|
303 | label_comment_add: Adicionar comentário | |
303 | label_comment_added: Comentário adicionado |
|
304 | label_comment_added: Comentário adicionado | |
304 | label_comment_delete: Apagar comentário |
|
305 | label_comment_delete: Apagar comentário | |
305 | label_query: Consulta personalizada |
|
306 | label_query: Consulta personalizada | |
306 | label_query_plural: Consultas personalizadas |
|
307 | label_query_plural: Consultas personalizadas | |
307 | label_query_new: Nova consulta |
|
308 | label_query_new: Nova consulta | |
308 | label_filter_add: Adicionar filtro |
|
309 | label_filter_add: Adicionar filtro | |
309 | label_filter_plural: Filtros |
|
310 | label_filter_plural: Filtros | |
310 | label_equals: é |
|
311 | label_equals: é | |
311 | label_not_equals: não e |
|
312 | label_not_equals: não e | |
312 | label_in_less_than: é maior que |
|
313 | label_in_less_than: é maior que | |
313 | label_in_more_than: é menor que |
|
314 | label_in_more_than: é menor que | |
314 | label_in: em |
|
315 | label_in: em | |
315 | label_today: hoje |
|
316 | label_today: hoje | |
316 | label_less_than_ago: faz menos de |
|
317 | label_less_than_ago: faz menos de | |
317 | label_more_than_ago: faz mais de |
|
318 | label_more_than_ago: faz mais de | |
318 | label_ago: dias atrás |
|
319 | label_ago: dias atrás | |
319 | label_contains: contém |
|
320 | label_contains: contém | |
320 | label_not_contains: não contém |
|
321 | label_not_contains: não contém | |
321 | label_day_plural: dias |
|
322 | label_day_plural: dias | |
322 | label_repository: Repositório |
|
323 | label_repository: Repositório | |
323 | label_browse: Procurar |
|
324 | label_browse: Procurar | |
324 | label_modification: %d mudança |
|
325 | label_modification: %d mudança | |
325 | label_modification_plural: %d mudanças |
|
326 | label_modification_plural: %d mudanças | |
326 | label_revision: Revisão |
|
327 | label_revision: Revisão | |
327 | label_revision_plural: Revisões |
|
328 | label_revision_plural: Revisões | |
328 | label_added: adicionado |
|
329 | label_added: adicionado | |
329 | label_modified: modificado |
|
330 | label_modified: modificado | |
330 | label_deleted: deletado |
|
331 | label_deleted: deletado | |
331 | label_latest_revision: Última revisão |
|
332 | label_latest_revision: Última revisão | |
332 | label_latest_revision_plural: Últimas revisões |
|
333 | label_latest_revision_plural: Últimas revisões | |
333 | label_view_revisions: Ver revisões |
|
334 | label_view_revisions: Ver revisões | |
334 | label_max_size: Tamanho máximo |
|
335 | label_max_size: Tamanho máximo | |
335 | label_on: em |
|
336 | label_on: em | |
336 | label_sort_highest: Mover para o início |
|
337 | label_sort_highest: Mover para o início | |
337 | label_sort_higher: Mover para cima |
|
338 | label_sort_higher: Mover para cima | |
338 | label_sort_lower: Mover para baixo |
|
339 | label_sort_lower: Mover para baixo | |
339 | label_sort_lowest: Mover para o fim |
|
340 | label_sort_lowest: Mover para o fim | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Termina em |
|
342 | label_roadmap_due_in: Termina em | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Sem tarefas para essa versão |
|
344 | label_roadmap_no_issues: Sem tarefas para essa versão | |
344 | label_search: Busca |
|
345 | label_search: Busca | |
345 | label_result: %d resultado |
|
346 | label_result: %d resultado | |
346 | label_result_plural: %d resultados |
|
347 | label_result_plural: %d resultados | |
347 | label_all_words: Todas as palavras |
|
348 | label_all_words: Todas as palavras | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki edit |
|
350 | label_wiki_edit: Wiki edit | |
350 | label_wiki_edit_plural: Wiki edits |
|
351 | label_wiki_edit_plural: Wiki edits | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Versão atual |
|
355 | label_current_version: Versão atual | |
355 | label_preview: Prévia |
|
356 | label_preview: Prévia | |
356 | label_feed_plural: Feeds |
|
357 | label_feed_plural: Feeds | |
357 | label_changes_details: Detalhes de todas as mudanças |
|
358 | label_changes_details: Detalhes de todas as mudanças | |
358 | label_issue_tracking: Tarefas |
|
359 | label_issue_tracking: Tarefas | |
359 | label_spent_time: Tempo gasto |
|
360 | label_spent_time: Tempo gasto | |
360 | label_f_hour: %.2f hora |
|
361 | label_f_hour: %.2f hora | |
361 | label_f_hour_plural: %.2f horas |
|
362 | label_f_hour_plural: %.2f horas | |
362 | label_time_tracking: Tempo trabalhado |
|
363 | label_time_tracking: Tempo trabalhado | |
363 | label_change_plural: Mudanças |
|
364 | label_change_plural: Mudanças | |
364 | label_statistics: Estatísticas |
|
365 | label_statistics: Estatísticas | |
365 | label_commits_per_month: Commits por mês |
|
366 | label_commits_per_month: Commits por mês | |
366 | label_commits_per_author: Commits por autor |
|
367 | label_commits_per_author: Commits por autor | |
367 | label_view_diff: Ver diferenças |
|
368 | label_view_diff: Ver diferenças | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: lado a lado |
|
370 | label_diff_side_by_side: lado a lado | |
370 | label_options: Opções |
|
371 | label_options: Opções | |
371 | label_copy_workflow_from: Copiar workflow de |
|
372 | label_copy_workflow_from: Copiar workflow de | |
372 | label_permissions_report: Relatório de permissões |
|
373 | label_permissions_report: Relatório de permissões | |
373 | label_watched_issues: Tarefas observadas |
|
374 | label_watched_issues: Tarefas observadas | |
374 | label_related_issues: tarefas relacionadas |
|
375 | label_related_issues: tarefas relacionadas | |
375 | label_applied_status: Status aplicado |
|
376 | label_applied_status: Status aplicado | |
376 | label_loading: Carregando... |
|
377 | label_loading: Carregando... | |
377 | label_relation_new: Nova relação |
|
378 | label_relation_new: Nova relação | |
378 | label_relation_delete: Deletar relação |
|
379 | label_relation_delete: Deletar relação | |
379 | label_relates_to: relacionado à |
|
380 | label_relates_to: relacionado à | |
380 | label_duplicates: duplicadas |
|
381 | label_duplicates: duplicadas | |
381 | label_blocks: bloqueios |
|
382 | label_blocks: bloqueios | |
382 | label_blocked_by: bloqueado por |
|
383 | label_blocked_by: bloqueado por | |
383 | label_precedes: procede |
|
384 | label_precedes: procede | |
384 | label_follows: segue |
|
385 | label_follows: segue | |
385 | label_end_to_start: fim ao início |
|
386 | label_end_to_start: fim ao início | |
386 | label_end_to_end: fim ao fim |
|
387 | label_end_to_end: fim ao fim | |
387 | label_start_to_start: ínícia ao inícia |
|
388 | label_start_to_start: ínícia ao inícia | |
388 | label_start_to_end: inícia ao fim |
|
389 | label_start_to_end: inícia ao fim | |
389 | label_stay_logged_in: Rester connecté |
|
390 | label_stay_logged_in: Rester connecté | |
390 | label_disabled: désactivé |
|
391 | label_disabled: désactivé | |
391 | label_show_completed_versions: Voire les versions passées |
|
392 | label_show_completed_versions: Voire les versions passées | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Login |
|
411 | button_login: Login | |
411 | button_submit: Enviar |
|
412 | button_submit: Enviar | |
412 | button_save: Salvar |
|
413 | button_save: Salvar | |
413 | button_check_all: Marcar todos |
|
414 | button_check_all: Marcar todos | |
414 | button_uncheck_all: Desmarcar todos |
|
415 | button_uncheck_all: Desmarcar todos | |
415 | button_delete: Apagar |
|
416 | button_delete: Apagar | |
416 | button_create: Criar |
|
417 | button_create: Criar | |
417 | button_test: Testar |
|
418 | button_test: Testar | |
418 | button_edit: Editar |
|
419 | button_edit: Editar | |
419 | button_add: Adicionar |
|
420 | button_add: Adicionar | |
420 | button_change: Mudar |
|
421 | button_change: Mudar | |
421 | button_apply: Aplicar |
|
422 | button_apply: Aplicar | |
422 | button_clear: Limpar |
|
423 | button_clear: Limpar | |
423 | button_lock: Bloquear |
|
424 | button_lock: Bloquear | |
424 | button_unlock: Desbloquear |
|
425 | button_unlock: Desbloquear | |
425 | button_download: Download |
|
426 | button_download: Download | |
426 | button_list: Listar |
|
427 | button_list: Listar | |
427 | button_view: Ver |
|
428 | button_view: Ver | |
428 | button_move: Mover |
|
429 | button_move: Mover | |
429 | button_back: Voltar |
|
430 | button_back: Voltar | |
430 | button_cancel: Cancelar |
|
431 | button_cancel: Cancelar | |
431 | button_activate: Ativar |
|
432 | button_activate: Ativar | |
432 | button_sort: Ordenar |
|
433 | button_sort: Ordenar | |
433 | button_log_time: Tempo de trabalho |
|
434 | button_log_time: Tempo de trabalho | |
434 | button_rollback: Voltar para esta versão |
|
435 | button_rollback: Voltar para esta versão | |
435 | button_watch: Observar |
|
436 | button_watch: Observar | |
436 | button_unwatch: Não observar |
|
437 | button_unwatch: Não observar | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: ativo |
|
442 | status_active: ativo | |
442 | status_registered: registrado |
|
443 | status_registered: registrado | |
443 | status_locked: bloqueado |
|
444 | status_locked: bloqueado | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email |
|
446 | text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email | |
446 | text_regexp_info: ex. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 siginifica sem restrição |
|
448 | text_min_max_length_info: 0 siginifica sem restrição | |
448 | text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados? |
|
449 | text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados? | |
449 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow |
|
450 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow | |
450 | text_are_you_sure: Você tem certeza ? |
|
451 | text_are_you_sure: Você tem certeza ? | |
451 | text_journal_changed: alterado de %s para %s |
|
452 | text_journal_changed: alterado de %s para %s | |
452 | text_journal_set_to: alterar para %s |
|
453 | text_journal_set_to: alterar para %s | |
453 | text_journal_deleted: apagado |
|
454 | text_journal_deleted: apagado | |
454 | text_tip_task_begin_day: tarefa começa neste dia |
|
455 | text_tip_task_begin_day: tarefa começa neste dia | |
455 | text_tip_task_end_day: tarefa termina neste dia |
|
456 | text_tip_task_end_day: tarefa termina neste dia | |
456 | text_tip_task_begin_end_day: tarefa começa e termina neste dia |
|
457 | text_tip_task_begin_end_day: tarefa começa e termina neste dia | |
457 | text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' |
|
458 | text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' | |
458 | text_caracters_maximum: %d móximo de caracteres |
|
459 | text_caracters_maximum: %d móximo de caracteres | |
459 | text_length_between: Tamanho entre %d e %d caracteres. |
|
460 | text_length_between: Tamanho entre %d e %d caracteres. | |
460 | text_tracker_no_workflow: Sem workflow definido para este tipo. |
|
461 | text_tracker_no_workflow: Sem workflow definido para este tipo. | |
461 | text_unallowed_characters: Caracteres não permitidos |
|
462 | text_unallowed_characters: Caracteres não permitidos | |
462 | text_comma_separated: Permitido múltiplos valores (separados por vírgula). |
|
463 | text_comma_separated: Permitido múltiplos valores (separados por vírgula). | |
463 | text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit |
|
464 | text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit | |
464 |
|
465 | |||
465 | default_role_manager: Analista de Negócio ou Gerente de Projeto |
|
466 | default_role_manager: Analista de Negócio ou Gerente de Projeto | |
466 | default_role_developper: Desenvolvedor |
|
467 | default_role_developper: Desenvolvedor | |
467 | default_role_reporter: Analista de Suporte |
|
468 | default_role_reporter: Analista de Suporte | |
468 | default_tracker_bug: Bug |
|
469 | default_tracker_bug: Bug | |
469 | default_tracker_feature: Implementaçõo |
|
470 | default_tracker_feature: Implementaçõo | |
470 | default_tracker_support: Suporte |
|
471 | default_tracker_support: Suporte | |
471 | default_issue_status_new: Novo |
|
472 | default_issue_status_new: Novo | |
472 | default_issue_status_assigned: Atribuído |
|
473 | default_issue_status_assigned: Atribuído | |
473 | default_issue_status_resolved: Resolvido |
|
474 | default_issue_status_resolved: Resolvido | |
474 | default_issue_status_feedback: Feedback |
|
475 | default_issue_status_feedback: Feedback | |
475 | default_issue_status_closed: Fechado |
|
476 | default_issue_status_closed: Fechado | |
476 | default_issue_status_rejected: Rejeitado |
|
477 | default_issue_status_rejected: Rejeitado | |
477 | default_doc_category_user: Documentação do usuário |
|
478 | default_doc_category_user: Documentação do usuário | |
478 | default_doc_category_tech: Documentação técnica |
|
479 | default_doc_category_tech: Documentação técnica | |
479 | default_priority_low: Baixo |
|
480 | default_priority_low: Baixo | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: Alto |
|
482 | default_priority_high: Alto | |
482 | default_priority_urgent: Urgente |
|
483 | default_priority_urgent: Urgente | |
483 | default_priority_immediate: Imediato |
|
484 | default_priority_immediate: Imediato | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Desenvolvimento |
|
486 | default_activity_development: Desenvolvimento | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Prioridade das tarefas |
|
488 | enumeration_issue_priorities: Prioridade das tarefas | |
488 | enumeration_doc_categories: Categorias de documento |
|
489 | enumeration_doc_categories: Categorias de documento | |
489 | enumeration_activities: Atividades (time tracking) |
|
490 | enumeration_activities: Atividades (time tracking) |
@@ -1,489 +1,490 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 | actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December |
|
4 | actionview_datehelper_select_month_names: Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 dag |
|
8 | actionview_datehelper_time_in_words_day: 1 dag | |
9 | actionview_datehelper_time_in_words_day_plural: %d dagar |
|
9 | actionview_datehelper_time_in_words_day_plural: %d dagar | |
10 | actionview_datehelper_time_in_words_hour_about: cirka en timme |
|
10 | actionview_datehelper_time_in_words_hour_about: cirka en timme | |
11 | actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: cirka %d timmar | |
12 | actionview_datehelper_time_in_words_hour_about_single: cirka en timme |
|
12 | actionview_datehelper_time_in_words_hour_about_single: cirka en timme | |
13 | actionview_datehelper_time_in_words_minute: 1 minut |
|
13 | actionview_datehelper_time_in_words_minute: 1 minut | |
14 | actionview_datehelper_time_in_words_minute_half: en halv minute |
|
14 | actionview_datehelper_time_in_words_minute_half: en halv minute | |
15 | actionview_datehelper_time_in_words_minute_less_than: mindre än en minut |
|
15 | actionview_datehelper_time_in_words_minute_less_than: mindre än en minut | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minuter |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minuter | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minut |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minut | |
18 | actionview_datehelper_time_in_words_second_less_than: mindre än en sekund |
|
18 | actionview_datehelper_time_in_words_second_less_than: mindre än en sekund | |
19 | actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: mindre än %d sekunder | |
20 | actionview_instancetag_blank_option: Var god välj |
|
20 | actionview_instancetag_blank_option: Var god välj | |
21 |
|
21 | |||
22 | activerecord_error_inclusion: finns inte i listan |
|
22 | activerecord_error_inclusion: finns inte i listan | |
23 | activerecord_error_exclusion: är reserverad |
|
23 | activerecord_error_exclusion: är reserverad | |
24 | activerecord_error_invalid: är ogiltig |
|
24 | activerecord_error_invalid: är ogiltig | |
25 | activerecord_error_confirmation: överränsstämmer inte med bekräftelsen |
|
25 | activerecord_error_confirmation: överränsstämmer inte med bekräftelsen | |
26 | activerecord_error_accepted: måste accepteras |
|
26 | activerecord_error_accepted: måste accepteras | |
27 | activerecord_error_empty: får inte vara tom |
|
27 | activerecord_error_empty: får inte vara tom | |
28 | activerecord_error_blank: får inte vara tom |
|
28 | activerecord_error_blank: får inte vara tom | |
29 | activerecord_error_too_long: är för lång |
|
29 | activerecord_error_too_long: är för lång | |
30 | activerecord_error_too_short: är för kort |
|
30 | activerecord_error_too_short: är för kort | |
31 | activerecord_error_wrong_length: har fel längd |
|
31 | activerecord_error_wrong_length: har fel längd | |
32 | activerecord_error_taken: har redan blivit tagen |
|
32 | activerecord_error_taken: har redan blivit tagen | |
33 | activerecord_error_not_a_number: är inte ett nummer |
|
33 | activerecord_error_not_a_number: är inte ett nummer | |
34 | activerecord_error_not_a_date: är inte ett korrekt datum |
|
34 | activerecord_error_not_a_date: är inte ett korrekt datum | |
35 | activerecord_error_greater_than_start_date: måste vara senare än startdatumet |
|
35 | activerecord_error_greater_than_start_date: måste vara senare än startdatumet | |
36 | activerecord_error_not_same_project: doesn't belong to the same project |
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |
37 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
38 |
|
38 | |||
39 | general_fmt_age: %d år |
|
39 | general_fmt_age: %d år | |
40 | general_fmt_age_plural: %d år |
|
40 | general_fmt_age_plural: %d år | |
41 | general_fmt_date: %%Y-%%m-%%d |
|
41 | general_fmt_date: %%Y-%%m-%%d | |
42 | general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p |
|
42 | general_fmt_datetime: %%Y-%%m-%%d %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 | general_text_No: 'Nej' |
|
45 | general_text_No: 'Nej' | |
46 | general_text_Yes: 'Ja' |
|
46 | general_text_Yes: 'Ja' | |
47 | general_text_no: 'nej' |
|
47 | general_text_no: 'nej' | |
48 | general_text_yes: 'ja' |
|
48 | general_text_yes: 'ja' | |
49 | general_lang_name: 'Svenska' |
|
49 | general_lang_name: 'Svenska' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 | general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag |
|
53 | general_day_names: Måndag,Tisdag,Onsdag,Torsdag,Fredag,Lördag,Söndag | |
54 |
|
54 | |||
55 | notice_account_updated: Kontot har uppdaterats |
|
55 | notice_account_updated: Kontot har uppdaterats | |
56 | notice_account_invalid_creditentials: Fel användarnamn eller lösenord |
|
56 | notice_account_invalid_creditentials: Fel användarnamn eller lösenord | |
57 | notice_account_password_updated: Lösenordet har uppdaterats |
|
57 | notice_account_password_updated: Lösenordet har uppdaterats | |
58 | notice_account_wrong_password: Fel lösenord |
|
58 | notice_account_wrong_password: Fel lösenord | |
59 | notice_account_register_done: Kontot har skapats. |
|
59 | notice_account_register_done: Kontot har skapats. | |
60 | notice_account_unknown_email: Okäns användare. |
|
60 | notice_account_unknown_email: Okäns användare. | |
61 | notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord. |
|
61 | notice_can_t_change_password: Detta konto använder en extern authentikeringskälla. Det går inte att byta lösenord. | |
62 | notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig. |
|
62 | notice_account_lost_email_sent: Ett email med instruktioner om hur man väljer ett nytt lösenord har skickats till dig. | |
63 | notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in. |
|
63 | notice_account_activated: Ditt konto har blivit aktiverat. Du kan nu logga in. | |
64 | notice_successful_create: Lyckat skapande. |
|
64 | notice_successful_create: Lyckat skapande. | |
65 | notice_successful_update: Lyckad uppdatering. |
|
65 | notice_successful_update: Lyckad uppdatering. | |
66 | notice_successful_delete: Lyckad borttagning. |
|
66 | notice_successful_delete: Lyckad borttagning. | |
67 | notice_successful_connection: Lyckad uppkoppling. |
|
67 | notice_successful_connection: Lyckad uppkoppling. | |
68 | notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen. |
|
68 | notice_file_not_found: Sidan du försökte komma åt existerar inte eller har blivit borttagen. | |
69 | notice_locking_conflict: Data har uppdaterats av en annan användare. |
|
69 | notice_locking_conflict: Data har uppdaterats av en annan användare. | |
70 | notice_scm_error: Inlägg och/eller revision finns inte i repositoriet. |
|
70 | notice_scm_error: Inlägg och/eller revision finns inte i repositoriet. | |
71 | notice_not_authorized: You are not authorized to access this page. |
|
71 | notice_not_authorized: You are not authorized to access this page. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Ditt redMine lösenord |
|
73 | mail_subject_lost_password: Ditt redMine lösenord | |
74 | mail_subject_register: redMine kontoaktivering |
|
74 | mail_subject_register: redMine kontoaktivering | |
75 |
|
75 | |||
76 | gui_validation_error: 1 fel |
|
76 | gui_validation_error: 1 fel | |
77 | gui_validation_error_plural: %d fel |
|
77 | gui_validation_error_plural: %d fel | |
78 |
|
78 | |||
79 | field_name: Namn |
|
79 | field_name: Namn | |
80 | field_description: Beskrivning |
|
80 | field_description: Beskrivning | |
81 | field_summary: Sammanfattning |
|
81 | field_summary: Sammanfattning | |
82 | field_is_required: Obligatorisk |
|
82 | field_is_required: Obligatorisk | |
83 | field_firstname: Förnamn |
|
83 | field_firstname: Förnamn | |
84 | field_lastname: Efternamn |
|
84 | field_lastname: Efternamn | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Fil |
|
86 | field_filename: Fil | |
87 | field_filesize: Storlek |
|
87 | field_filesize: Storlek | |
88 | field_downloads: Nerladdningar |
|
88 | field_downloads: Nerladdningar | |
89 | field_author: Författare |
|
89 | field_author: Författare | |
90 | field_created_on: Skapad |
|
90 | field_created_on: Skapad | |
91 | field_updated_on: Uppdaterad |
|
91 | field_updated_on: Uppdaterad | |
92 | field_field_format: Format |
|
92 | field_field_format: Format | |
93 | field_is_for_all: För alla projekt |
|
93 | field_is_for_all: För alla projekt | |
94 | field_possible_values: Möjliga värden |
|
94 | field_possible_values: Möjliga värden | |
95 | field_regexp: Regular expression |
|
95 | field_regexp: Regular expression | |
96 | field_min_length: Minimilängd |
|
96 | field_min_length: Minimilängd | |
97 | field_max_length: Maximumlängd |
|
97 | field_max_length: Maximumlängd | |
98 | field_value: Värde |
|
98 | field_value: Värde | |
99 | field_category: Kategori |
|
99 | field_category: Kategori | |
100 | field_title: Titel |
|
100 | field_title: Titel | |
101 | field_project: Projekt |
|
101 | field_project: Projekt | |
102 | field_issue: Brist |
|
102 | field_issue: Brist | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Anteckningar |
|
104 | field_notes: Anteckningar | |
105 | field_is_closed: Brist stängd |
|
105 | field_is_closed: Brist stängd | |
106 | field_is_default: Defaultstatus |
|
106 | field_is_default: Defaultstatus | |
107 | field_html_color: Färg |
|
107 | field_html_color: Färg | |
108 | field_tracker: Tracker |
|
108 | field_tracker: Tracker | |
109 | field_subject: Rubrik |
|
109 | field_subject: Rubrik | |
110 | field_due_date: Färdigdatum |
|
110 | field_due_date: Färdigdatum | |
111 | field_assigned_to: Tilldelad |
|
111 | field_assigned_to: Tilldelad | |
112 | field_priority: Prioritet |
|
112 | field_priority: Prioritet | |
113 | field_fixed_version: Fixed version |
|
113 | field_fixed_version: Fixed version | |
114 | field_user: Användare |
|
114 | field_user: Användare | |
115 | field_role: Roll |
|
115 | field_role: Roll | |
116 | field_homepage: Hemsida |
|
116 | field_homepage: Hemsida | |
117 | field_is_public: Offentlig |
|
117 | field_is_public: Offentlig | |
118 | field_parent: Delprojekt av |
|
118 | field_parent: Delprojekt av | |
119 | field_is_in_chlog: Brister visade i ändringslogg |
|
119 | field_is_in_chlog: Brister visade i ändringslogg | |
120 | field_is_in_roadmap: Bsiter visade i roadmap |
|
120 | field_is_in_roadmap: Bsiter visade i roadmap | |
121 | field_login: Inloggning |
|
121 | field_login: Inloggning | |
122 | field_mail_notification: Emailnotifieringar |
|
122 | field_mail_notification: Emailnotifieringar | |
123 | field_admin: Administratör |
|
123 | field_admin: Administratör | |
124 | field_last_login_on: Senaste inloggning |
|
124 | field_last_login_on: Senaste inloggning | |
125 | field_language: Språk |
|
125 | field_language: Språk | |
126 | field_effective_date: Datum |
|
126 | field_effective_date: Datum | |
127 | field_password: Lösenord |
|
127 | field_password: Lösenord | |
128 | field_new_password: Nytt lösenord |
|
128 | field_new_password: Nytt lösenord | |
129 | field_password_confirmation: Bekräfta |
|
129 | field_password_confirmation: Bekräfta | |
130 | field_version: Version |
|
130 | field_version: Version | |
131 | field_type: Typ |
|
131 | field_type: Typ | |
132 | field_host: Värddator |
|
132 | field_host: Värddator | |
133 | field_port: Port |
|
133 | field_port: Port | |
134 | field_account: Konto |
|
134 | field_account: Konto | |
135 | field_base_dn: Bas DN |
|
135 | field_base_dn: Bas DN | |
136 | field_attr_login: Inloggningsattribut |
|
136 | field_attr_login: Inloggningsattribut | |
137 | field_attr_firstname: Förnamnattribut |
|
137 | field_attr_firstname: Förnamnattribut | |
138 | field_attr_lastname: Efternamnattribut |
|
138 | field_attr_lastname: Efternamnattribut | |
139 | field_attr_mail: Emailattribut |
|
139 | field_attr_mail: Emailattribut | |
140 | field_onthefly: On-the-fly användarskapning |
|
140 | field_onthefly: On-the-fly användarskapning | |
141 | field_start_date: Start |
|
141 | field_start_date: Start | |
142 | field_done_ratio: %% Done |
|
142 | field_done_ratio: %% Done | |
143 | field_auth_source: Authentikeringsläge |
|
143 | field_auth_source: Authentikeringsläge | |
144 | field_hide_mail: Dölj min emailadress |
|
144 | field_hide_mail: Dölj min emailadress | |
145 | field_comment: Kommentar |
|
145 | field_comment: Kommentar | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 | field_start_page: Startsida |
|
147 | field_start_page: Startsida | |
148 | field_subproject: Delprojekt |
|
148 | field_subproject: Delprojekt | |
149 | field_hours: Timmar |
|
149 | field_hours: Timmar | |
150 | field_activity: Aktivitet |
|
150 | field_activity: Aktivitet | |
151 | field_spent_on: Datum |
|
151 | field_spent_on: Datum | |
152 | field_identifier: Identifierare |
|
152 | field_identifier: Identifierare | |
153 | field_is_filter: Used as a filter |
|
153 | field_is_filter: Used as a filter | |
154 | field_issue_to_id: Related issue |
|
154 | field_issue_to_id: Related issue | |
155 | field_delay: Delay |
|
155 | field_delay: Delay | |
156 |
|
156 | |||
157 | setting_app_title: Applikationstitel |
|
157 | setting_app_title: Applikationstitel | |
158 | setting_app_subtitle: Applicationsunderrubrik |
|
158 | setting_app_subtitle: Applicationsunderrubrik | |
159 | setting_welcome_text: Välkommentext |
|
159 | setting_welcome_text: Välkommentext | |
160 | setting_default_language: Default språk |
|
160 | setting_default_language: Default språk | |
161 | setting_login_required: Authent. obligatoriskt |
|
161 | setting_login_required: Authent. obligatoriskt | |
162 | setting_self_registration: Självregistrering påslaget |
|
162 | setting_self_registration: Självregistrering påslaget | |
163 | setting_attachment_max_size: Bifogad maxstorlek |
|
163 | setting_attachment_max_size: Bifogad maxstorlek | |
164 | setting_issues_export_limit: Brist exportgräns |
|
164 | setting_issues_export_limit: Brist exportgräns | |
165 | setting_mail_from: Emailavsändare |
|
165 | setting_mail_from: Emailavsändare | |
166 | setting_host_name: Värddatornamn |
|
166 | setting_host_name: Värddatornamn | |
167 | setting_text_formatting: Textformattering |
|
167 | setting_text_formatting: Textformattering | |
168 | setting_wiki_compression: Wiki historiekomprimering |
|
168 | setting_wiki_compression: Wiki historiekomprimering | |
169 | setting_feeds_limit: Feed innehållsgräns |
|
169 | setting_feeds_limit: Feed innehållsgräns | |
170 | setting_autofetch_changesets: Automatisk hämtning av commits |
|
170 | setting_autofetch_changesets: Automatisk hämtning av commits | |
171 | setting_sys_api_enabled: Aktivera WS för repository management |
|
171 | setting_sys_api_enabled: Aktivera WS för repository management | |
172 | setting_commit_ref_keywords: Referencing keywords |
|
172 | setting_commit_ref_keywords: Referencing keywords | |
173 | setting_commit_fix_keywords: Fixing keywords |
|
173 | setting_commit_fix_keywords: Fixing keywords | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 | setting_date_format: Date format |
|
175 | setting_date_format: Date format | |
|
176 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
176 |
|
177 | |||
177 | label_user: Användare |
|
178 | label_user: Användare | |
178 | label_user_plural: Användare |
|
179 | label_user_plural: Användare | |
179 | label_user_new: Ny användare |
|
180 | label_user_new: Ny användare | |
180 | label_project: Projekt |
|
181 | label_project: Projekt | |
181 | label_project_new: Nytt projekt |
|
182 | label_project_new: Nytt projekt | |
182 | label_project_plural: Projekt |
|
183 | label_project_plural: Projekt | |
183 | label_project_all: All Projects |
|
184 | label_project_all: All Projects | |
184 | label_project_latest: Senaste projekt |
|
185 | label_project_latest: Senaste projekt | |
185 | label_issue: Brist |
|
186 | label_issue: Brist | |
186 | label_issue_new: Ny brist |
|
187 | label_issue_new: Ny brist | |
187 | label_issue_plural: Brister |
|
188 | label_issue_plural: Brister | |
188 | label_issue_view_all: Visa alla brister |
|
189 | label_issue_view_all: Visa alla brister | |
189 | label_document: Dokument |
|
190 | label_document: Dokument | |
190 | label_document_new: Nytt dokument |
|
191 | label_document_new: Nytt dokument | |
191 | label_document_plural: Dokument |
|
192 | label_document_plural: Dokument | |
192 | label_role: Roll |
|
193 | label_role: Roll | |
193 | label_role_plural: Roller |
|
194 | label_role_plural: Roller | |
194 | label_role_new: Ny roll |
|
195 | label_role_new: Ny roll | |
195 | label_role_and_permissions: Roller och rättigheter |
|
196 | label_role_and_permissions: Roller och rättigheter | |
196 | label_member: Medlem |
|
197 | label_member: Medlem | |
197 | label_member_new: Ny medlem |
|
198 | label_member_new: Ny medlem | |
198 | label_member_plural: Medlemmar |
|
199 | label_member_plural: Medlemmar | |
199 | label_tracker: Tracker |
|
200 | label_tracker: Tracker | |
200 | label_tracker_plural: Trackers |
|
201 | label_tracker_plural: Trackers | |
201 | label_tracker_new: Ny tracker |
|
202 | label_tracker_new: Ny tracker | |
202 | label_workflow: Workflow |
|
203 | label_workflow: Workflow | |
203 | label_issue_status: Briststatus |
|
204 | label_issue_status: Briststatus | |
204 | label_issue_status_plural: Briststatusar |
|
205 | label_issue_status_plural: Briststatusar | |
205 | label_issue_status_new: Ny status |
|
206 | label_issue_status_new: Ny status | |
206 | label_issue_category: Bristkategori |
|
207 | label_issue_category: Bristkategori | |
207 | label_issue_category_plural: Bristkategorier |
|
208 | label_issue_category_plural: Bristkategorier | |
208 | label_issue_category_new: Ny kategori |
|
209 | label_issue_category_new: Ny kategori | |
209 | label_custom_field: Användardefinerat fält |
|
210 | label_custom_field: Användardefinerat fält | |
210 | label_custom_field_plural: Användardefinerade fält |
|
211 | label_custom_field_plural: Användardefinerade fält | |
211 | label_custom_field_new: Nytt Användardefinerat fält |
|
212 | label_custom_field_new: Nytt Användardefinerat fält | |
212 | label_enumerations: Uppräkningar |
|
213 | label_enumerations: Uppräkningar | |
213 | label_enumeration_new: Nytt värde |
|
214 | label_enumeration_new: Nytt värde | |
214 | label_information: Information |
|
215 | label_information: Information | |
215 | label_information_plural: Information |
|
216 | label_information_plural: Information | |
216 | label_please_login: Var god logga in |
|
217 | label_please_login: Var god logga in | |
217 | label_register: Registrera |
|
218 | label_register: Registrera | |
218 | label_password_lost: Glömt lösenord |
|
219 | label_password_lost: Glömt lösenord | |
219 | label_home: Hem |
|
220 | label_home: Hem | |
220 | label_my_page: Min sida |
|
221 | label_my_page: Min sida | |
221 | label_my_account: Mitt konto |
|
222 | label_my_account: Mitt konto | |
222 | label_my_projects: Mina projekt |
|
223 | label_my_projects: Mina projekt | |
223 | label_administration: Administration |
|
224 | label_administration: Administration | |
224 | label_login: Logga in |
|
225 | label_login: Logga in | |
225 | label_logout: Logga ut |
|
226 | label_logout: Logga ut | |
226 | label_help: Hjälp |
|
227 | label_help: Hjälp | |
227 | label_reported_issues: Rapporterade brister |
|
228 | label_reported_issues: Rapporterade brister | |
228 | label_assigned_to_me_issues: Brister tilldelade mig |
|
229 | label_assigned_to_me_issues: Brister tilldelade mig | |
229 | label_last_login: Senaste inloggning |
|
230 | label_last_login: Senaste inloggning | |
230 | label_last_updates: Senast uppdaterad |
|
231 | label_last_updates: Senast uppdaterad | |
231 | label_last_updates_plural: %d senaste uppdateringarna |
|
232 | label_last_updates_plural: %d senaste uppdateringarna | |
232 | label_registered_on: Registrerad |
|
233 | label_registered_on: Registrerad | |
233 | label_activity: Aktivitet |
|
234 | label_activity: Aktivitet | |
234 | label_new: Ny |
|
235 | label_new: Ny | |
235 | label_logged_as: Loggad som |
|
236 | label_logged_as: Loggad som | |
236 | label_environment: Miljö |
|
237 | label_environment: Miljö | |
237 | label_authentication: Authentikering |
|
238 | label_authentication: Authentikering | |
238 | label_auth_source: Authentikeringsläge |
|
239 | label_auth_source: Authentikeringsläge | |
239 | label_auth_source_new: Nytt authentikeringsläge |
|
240 | label_auth_source_new: Nytt authentikeringsläge | |
240 | label_auth_source_plural: Authentikeringslägen |
|
241 | label_auth_source_plural: Authentikeringslägen | |
241 | label_subproject_plural: Delprojekt |
|
242 | label_subproject_plural: Delprojekt | |
242 | label_min_max_length: Min - Max längd |
|
243 | label_min_max_length: Min - Max längd | |
243 | label_list: Lista |
|
244 | label_list: Lista | |
244 | label_date: Datum |
|
245 | label_date: Datum | |
245 | label_integer: Heltal |
|
246 | label_integer: Heltal | |
246 | label_boolean: Boolean |
|
247 | label_boolean: Boolean | |
247 | label_string: Text |
|
248 | label_string: Text | |
248 | label_text: Long text |
|
249 | label_text: Long text | |
249 | label_attribute: Attribut |
|
250 | label_attribute: Attribut | |
250 | label_attribute_plural: Attribut |
|
251 | label_attribute_plural: Attribut | |
251 | label_download: %d Nerladdning |
|
252 | label_download: %d Nerladdning | |
252 | label_download_plural: %d Nerladdningar |
|
253 | label_download_plural: %d Nerladdningar | |
253 | label_no_data: Ingen data att visa |
|
254 | label_no_data: Ingen data att visa | |
254 | label_change_status: Ändra status |
|
255 | label_change_status: Ändra status | |
255 | label_history: Historia |
|
256 | label_history: Historia | |
256 | label_attachment: Fil |
|
257 | label_attachment: Fil | |
257 | label_attachment_new: Ny fil |
|
258 | label_attachment_new: Ny fil | |
258 | label_attachment_delete: Ta bort fil |
|
259 | label_attachment_delete: Ta bort fil | |
259 | label_attachment_plural: Filer |
|
260 | label_attachment_plural: Filer | |
260 | label_report: Rapport |
|
261 | label_report: Rapport | |
261 | label_report_plural: Rapporter |
|
262 | label_report_plural: Rapporter | |
262 | label_news: Nyhet |
|
263 | label_news: Nyhet | |
263 | label_news_new: Lägg till nyhet |
|
264 | label_news_new: Lägg till nyhet | |
264 | label_news_plural: Nyheter |
|
265 | label_news_plural: Nyheter | |
265 | label_news_latest: Senaste neheten |
|
266 | label_news_latest: Senaste neheten | |
266 | label_news_view_all: Visa alla nyheter |
|
267 | label_news_view_all: Visa alla nyheter | |
267 | label_change_log: Ändringslogg |
|
268 | label_change_log: Ändringslogg | |
268 | label_settings: Inställningar |
|
269 | label_settings: Inställningar | |
269 | label_overview: Överblick |
|
270 | label_overview: Överblick | |
270 | label_version: Version |
|
271 | label_version: Version | |
271 | label_version_new: Ny version |
|
272 | label_version_new: Ny version | |
272 | label_version_plural: Versioner |
|
273 | label_version_plural: Versioner | |
273 | label_confirmation: Bekräftelse |
|
274 | label_confirmation: Bekräftelse | |
274 | label_export_to: Exportera till |
|
275 | label_export_to: Exportera till | |
275 | label_read: Läs... |
|
276 | label_read: Läs... | |
276 | label_public_projects: Offentligt projekt |
|
277 | label_public_projects: Offentligt projekt | |
277 | label_open_issues: öppen |
|
278 | label_open_issues: öppen | |
278 | label_open_issues_plural: öppna |
|
279 | label_open_issues_plural: öppna | |
279 | label_closed_issues: stängd |
|
280 | label_closed_issues: stängd | |
280 | label_closed_issues_plural: stängda |
|
281 | label_closed_issues_plural: stängda | |
281 | label_total: Total |
|
282 | label_total: Total | |
282 | label_permissions: Rättigheter |
|
283 | label_permissions: Rättigheter | |
283 | label_current_status: Nuvarande status |
|
284 | label_current_status: Nuvarande status | |
284 | label_new_statuses_allowed: Nya statusar tillåtna |
|
285 | label_new_statuses_allowed: Nya statusar tillåtna | |
285 | label_all: alla |
|
286 | label_all: alla | |
286 | label_none: inga |
|
287 | label_none: inga | |
287 | label_next: Nästa |
|
288 | label_next: Nästa | |
288 | label_previous: Föregående |
|
289 | label_previous: Föregående | |
289 | label_used_by: Använd av |
|
290 | label_used_by: Använd av | |
290 | label_details: Detaljer |
|
291 | label_details: Detaljer | |
291 | label_add_note: Lägg till anteckning |
|
292 | label_add_note: Lägg till anteckning | |
292 | label_per_page: Per sida |
|
293 | label_per_page: Per sida | |
293 | label_calendar: Kalender |
|
294 | label_calendar: Kalender | |
294 | label_months_from: månader från |
|
295 | label_months_from: månader från | |
295 | label_gantt: Gantt |
|
296 | label_gantt: Gantt | |
296 | label_internal: Intern |
|
297 | label_internal: Intern | |
297 | label_last_changes: senaste %d ändringar |
|
298 | label_last_changes: senaste %d ändringar | |
298 | label_change_view_all: Visa alla ändringar |
|
299 | label_change_view_all: Visa alla ändringar | |
299 | label_personalize_page: Anpassa denna sida |
|
300 | label_personalize_page: Anpassa denna sida | |
300 | label_comment: Kommentar |
|
301 | label_comment: Kommentar | |
301 | label_comment_plural: Kommentarer |
|
302 | label_comment_plural: Kommentarer | |
302 | label_comment_add: Lägg till kommentar |
|
303 | label_comment_add: Lägg till kommentar | |
303 | label_comment_added: Kommentar tillagd |
|
304 | label_comment_added: Kommentar tillagd | |
304 | label_comment_delete: Ta bort kommentar |
|
305 | label_comment_delete: Ta bort kommentar | |
305 | label_query: Användardefinerad fråga |
|
306 | label_query: Användardefinerad fråga | |
306 | label_query_plural: Användardefinerade frågor |
|
307 | label_query_plural: Användardefinerade frågor | |
307 | label_query_new: Ny fråga |
|
308 | label_query_new: Ny fråga | |
308 | label_filter_add: Lägg till filter |
|
309 | label_filter_add: Lägg till filter | |
309 | label_filter_plural: Filter |
|
310 | label_filter_plural: Filter | |
310 | label_equals: är |
|
311 | label_equals: är | |
311 | label_not_equals: är inte |
|
312 | label_not_equals: är inte | |
312 | label_in_less_than: i mindre än |
|
313 | label_in_less_than: i mindre än | |
313 | label_in_more_than: i mer än |
|
314 | label_in_more_than: i mer än | |
314 | label_in: i |
|
315 | label_in: i | |
315 | label_today: idag |
|
316 | label_today: idag | |
316 | label_less_than_ago: mindre än dagar sedan |
|
317 | label_less_than_ago: mindre än dagar sedan | |
317 | label_more_than_ago: mer än dagar sedan |
|
318 | label_more_than_ago: mer än dagar sedan | |
318 | label_ago: dagar sedan |
|
319 | label_ago: dagar sedan | |
319 | label_contains: innehåller |
|
320 | label_contains: innehåller | |
320 | label_not_contains: innehåller inte |
|
321 | label_not_contains: innehåller inte | |
321 | label_day_plural: dagar |
|
322 | label_day_plural: dagar | |
322 | label_repository: Repositorie |
|
323 | label_repository: Repositorie | |
323 | label_browse: Bläddra |
|
324 | label_browse: Bläddra | |
324 | label_modification: %d ändring |
|
325 | label_modification: %d ändring | |
325 | label_modification_plural: %d ändringar |
|
326 | label_modification_plural: %d ändringar | |
326 | label_revision: Revision |
|
327 | label_revision: Revision | |
327 | label_revision_plural: Revisioner |
|
328 | label_revision_plural: Revisioner | |
328 | label_added: tillagd |
|
329 | label_added: tillagd | |
329 | label_modified: modifierad |
|
330 | label_modified: modifierad | |
330 | label_deleted: borttagen |
|
331 | label_deleted: borttagen | |
331 | label_latest_revision: Senaste revisionen |
|
332 | label_latest_revision: Senaste revisionen | |
332 | label_latest_revision_plural: Senaste revisionerna |
|
333 | label_latest_revision_plural: Senaste revisionerna | |
333 | label_view_revisions: Visa revisioner |
|
334 | label_view_revisions: Visa revisioner | |
334 | label_max_size: Maximumstorlek |
|
335 | label_max_size: Maximumstorlek | |
335 | label_on: 'på' |
|
336 | label_on: 'på' | |
336 | label_sort_highest: Flytta till top |
|
337 | label_sort_highest: Flytta till top | |
337 | label_sort_higher: Flytta up |
|
338 | label_sort_higher: Flytta up | |
338 | label_sort_lower: Flytta ner |
|
339 | label_sort_lower: Flytta ner | |
339 | label_sort_lowest: Flytta till botten |
|
340 | label_sort_lowest: Flytta till botten | |
340 | label_roadmap: Roadmap |
|
341 | label_roadmap: Roadmap | |
341 | label_roadmap_due_in: Färdig om |
|
342 | label_roadmap_due_in: Färdig om | |
342 | label_roadmap_overdue: %s late |
|
343 | label_roadmap_overdue: %s late | |
343 | label_roadmap_no_issues: Inga brister för denna version |
|
344 | label_roadmap_no_issues: Inga brister för denna version | |
344 | label_search: Sök |
|
345 | label_search: Sök | |
345 | label_result: %d resultat |
|
346 | label_result: %d resultat | |
346 | label_result_plural: %d resultat |
|
347 | label_result_plural: %d resultat | |
347 | label_all_words: Alla ord |
|
348 | label_all_words: Alla ord | |
348 | label_wiki: Wiki |
|
349 | label_wiki: Wiki | |
349 | label_wiki_edit: Wiki editera |
|
350 | label_wiki_edit: Wiki editera | |
350 | label_wiki_edit_plural: Wiki editeringar |
|
351 | label_wiki_edit_plural: Wiki editeringar | |
351 | label_wiki_page: Wiki page |
|
352 | label_wiki_page: Wiki page | |
352 | label_wiki_page_plural: Wiki pages |
|
353 | label_wiki_page_plural: Wiki pages | |
353 | label_page_index: Index |
|
354 | label_page_index: Index | |
354 | label_current_version: Nuvarande version |
|
355 | label_current_version: Nuvarande version | |
355 | label_preview: Preview |
|
356 | label_preview: Preview | |
356 | label_feed_plural: Feeder |
|
357 | label_feed_plural: Feeder | |
357 | label_changes_details: Detaljer om alla ändringar |
|
358 | label_changes_details: Detaljer om alla ändringar | |
358 | label_issue_tracking: Bristspårning |
|
359 | label_issue_tracking: Bristspårning | |
359 | label_spent_time: Spenderad tid |
|
360 | label_spent_time: Spenderad tid | |
360 | label_f_hour: %.2f timmar |
|
361 | label_f_hour: %.2f timmar | |
361 | label_f_hour_plural: %.2f timmar |
|
362 | label_f_hour_plural: %.2f timmar | |
362 | label_time_tracking: Tidsspårning |
|
363 | label_time_tracking: Tidsspårning | |
363 | label_change_plural: Ändringar |
|
364 | label_change_plural: Ändringar | |
364 | label_statistics: Statistik |
|
365 | label_statistics: Statistik | |
365 | label_commits_per_month: Commit per månad |
|
366 | label_commits_per_month: Commit per månad | |
366 | label_commits_per_author: Commit per författare |
|
367 | label_commits_per_author: Commit per författare | |
367 | label_view_diff: Visa skillnader |
|
368 | label_view_diff: Visa skillnader | |
368 | label_diff_inline: inline |
|
369 | label_diff_inline: inline | |
369 | label_diff_side_by_side: sida vid sida |
|
370 | label_diff_side_by_side: sida vid sida | |
370 | label_options: Inställningar |
|
371 | label_options: Inställningar | |
371 | label_copy_workflow_from: Kopiera workflow från |
|
372 | label_copy_workflow_from: Kopiera workflow från | |
372 | label_permissions_report: Rättighetsrapport |
|
373 | label_permissions_report: Rättighetsrapport | |
373 | label_watched_issues: Watched issues |
|
374 | label_watched_issues: Watched issues | |
374 | label_related_issues: Related issues |
|
375 | label_related_issues: Related issues | |
375 | label_applied_status: Applied status |
|
376 | label_applied_status: Applied status | |
376 | label_loading: Loading... |
|
377 | label_loading: Loading... | |
377 | label_relation_new: New relation |
|
378 | label_relation_new: New relation | |
378 | label_relation_delete: Delete relation |
|
379 | label_relation_delete: Delete relation | |
379 | label_relates_to: related to |
|
380 | label_relates_to: related to | |
380 | label_duplicates: duplicates |
|
381 | label_duplicates: duplicates | |
381 | label_blocks: blocks |
|
382 | label_blocks: blocks | |
382 | label_blocked_by: blocked by |
|
383 | label_blocked_by: blocked by | |
383 | label_precedes: precedes |
|
384 | label_precedes: precedes | |
384 | label_follows: follows |
|
385 | label_follows: follows | |
385 | label_end_to_start: start to end |
|
386 | label_end_to_start: start to end | |
386 | label_end_to_end: end to end |
|
387 | label_end_to_end: end to end | |
387 | label_start_to_start: start to start |
|
388 | label_start_to_start: start to start | |
388 | label_start_to_end: start to end |
|
389 | label_start_to_end: start to end | |
389 | label_stay_logged_in: Stay logged in |
|
390 | label_stay_logged_in: Stay logged in | |
390 | label_disabled: disabled |
|
391 | label_disabled: disabled | |
391 | label_show_completed_versions: Show completed versions |
|
392 | label_show_completed_versions: Show completed versions | |
392 | label_me: me |
|
393 | label_me: me | |
393 | label_board: Forum |
|
394 | label_board: Forum | |
394 | label_board_new: New forum |
|
395 | label_board_new: New forum | |
395 | label_board_plural: Forums |
|
396 | label_board_plural: Forums | |
396 | label_topic_plural: Topics |
|
397 | label_topic_plural: Topics | |
397 | label_message_plural: Messages |
|
398 | label_message_plural: Messages | |
398 | label_message_last: Last message |
|
399 | label_message_last: Last message | |
399 | label_message_new: New message |
|
400 | label_message_new: New message | |
400 | label_reply_plural: Replies |
|
401 | label_reply_plural: Replies | |
401 | label_send_information: Send account information to the user |
|
402 | label_send_information: Send account information to the user | |
402 | label_year: Year |
|
403 | label_year: Year | |
403 | label_month: Month |
|
404 | label_month: Month | |
404 | label_week: Week |
|
405 | label_week: Week | |
405 | label_date_from: From |
|
406 | label_date_from: From | |
406 | label_date_to: To |
|
407 | label_date_to: To | |
407 | label_language_based: Language based |
|
408 | label_language_based: Language based | |
408 | label_sort_by: Sort by "%s" |
|
409 | label_sort_by: Sort by "%s" | |
409 |
|
410 | |||
410 | button_login: Logga in |
|
411 | button_login: Logga in | |
411 | button_submit: Skicka |
|
412 | button_submit: Skicka | |
412 | button_save: Spara |
|
413 | button_save: Spara | |
413 | button_check_all: Markera alla |
|
414 | button_check_all: Markera alla | |
414 | button_uncheck_all: Avmarkera alla |
|
415 | button_uncheck_all: Avmarkera alla | |
415 | button_delete: Ta bort |
|
416 | button_delete: Ta bort | |
416 | button_create: Skapa |
|
417 | button_create: Skapa | |
417 | button_test: Testa |
|
418 | button_test: Testa | |
418 | button_edit: Editera |
|
419 | button_edit: Editera | |
419 | button_add: Lägg till |
|
420 | button_add: Lägg till | |
420 | button_change: Ändra |
|
421 | button_change: Ändra | |
421 | button_apply: Värkställ |
|
422 | button_apply: Värkställ | |
422 | button_clear: Rensa |
|
423 | button_clear: Rensa | |
423 | button_lock: Lås |
|
424 | button_lock: Lås | |
424 | button_unlock: Lås upp |
|
425 | button_unlock: Lås upp | |
425 | button_download: Ladda ner |
|
426 | button_download: Ladda ner | |
426 | button_list: Lista |
|
427 | button_list: Lista | |
427 | button_view: Visa |
|
428 | button_view: Visa | |
428 | button_move: Flytta |
|
429 | button_move: Flytta | |
429 | button_back: Tillbaka |
|
430 | button_back: Tillbaka | |
430 | button_cancel: Avbryt |
|
431 | button_cancel: Avbryt | |
431 | button_activate: Aktivera |
|
432 | button_activate: Aktivera | |
432 | button_sort: Sortera |
|
433 | button_sort: Sortera | |
433 | button_log_time: Logga tid |
|
434 | button_log_time: Logga tid | |
434 | button_rollback: Rulla tillbaka till denna version |
|
435 | button_rollback: Rulla tillbaka till denna version | |
435 | button_watch: Watch |
|
436 | button_watch: Watch | |
436 | button_unwatch: Unwatch |
|
437 | button_unwatch: Unwatch | |
437 | button_reply: Reply |
|
438 | button_reply: Reply | |
438 | button_archive: Archive |
|
439 | button_archive: Archive | |
439 | button_unarchive: Unarchive |
|
440 | button_unarchive: Unarchive | |
440 |
|
441 | |||
441 | status_active: activ |
|
442 | status_active: activ | |
442 | status_registered: registrerad |
|
443 | status_registered: registrerad | |
443 | status_locked: låst |
|
444 | status_locked: låst | |
444 |
|
445 | |||
445 | text_select_mail_notifications: Väl action för vilka email ska skickas. |
|
446 | text_select_mail_notifications: Väl action för vilka email ska skickas. | |
446 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
447 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
447 | text_min_max_length_info: 0 betyder ingen gräns |
|
448 | text_min_max_length_info: 0 betyder ingen gräns | |
448 | text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data? |
|
449 | text_project_destroy_confirmation: Är du säker på att du vill ta bort detta projekt och all relaterad data? | |
449 | text_workflow_edit: Väl en roll och en tracker för att editera workflow. |
|
450 | text_workflow_edit: Väl en roll och en tracker för att editera workflow. | |
450 | text_are_you_sure: Är du säker? |
|
451 | text_are_you_sure: Är du säker? | |
451 | text_journal_changed: ändrad från %s till %s |
|
452 | text_journal_changed: ändrad från %s till %s | |
452 | text_journal_set_to: satt till %s |
|
453 | text_journal_set_to: satt till %s | |
453 | text_journal_deleted: borttagen |
|
454 | text_journal_deleted: borttagen | |
454 | text_tip_task_begin_day: arbetsuppgift börjar denna dag |
|
455 | text_tip_task_begin_day: arbetsuppgift börjar denna dag | |
455 | text_tip_task_end_day: arbetsuppgift slutar denna dag |
|
456 | text_tip_task_end_day: arbetsuppgift slutar denna dag | |
456 | text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag |
|
457 | text_tip_task_begin_end_day: arbetsuppgift börjar och slutar denna dag | |
457 | text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.' |
|
458 | text_project_identifier_info: 'Små bokstäver (a-z), siffror och streck tillåtna.<br />När den är sparad kan identifieraren inte ändras.' | |
458 | text_caracters_maximum: %d tecken maximum. |
|
459 | text_caracters_maximum: %d tecken maximum. | |
459 | text_length_between: Längd mellan %d och %d tecken. |
|
460 | text_length_between: Längd mellan %d och %d tecken. | |
460 | text_tracker_no_workflow: Inget workflow definerat för denna tracker |
|
461 | text_tracker_no_workflow: Inget workflow definerat för denna tracker | |
461 | text_unallowed_characters: Unallowed characters |
|
462 | text_unallowed_characters: Unallowed characters | |
462 | text_comma_separated: Multiple values allowed (comma separated). |
|
463 | text_comma_separated: Multiple values allowed (comma separated). | |
463 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
464 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
464 |
|
465 | |||
465 | default_role_manager: Förvaltare |
|
466 | default_role_manager: Förvaltare | |
466 | default_role_developper: Utvecklare |
|
467 | default_role_developper: Utvecklare | |
467 | default_role_reporter: Rapporterare |
|
468 | default_role_reporter: Rapporterare | |
468 | default_tracker_bug: Bugg |
|
469 | default_tracker_bug: Bugg | |
469 | default_tracker_feature: Finess |
|
470 | default_tracker_feature: Finess | |
470 | default_tracker_support: Support |
|
471 | default_tracker_support: Support | |
471 | default_issue_status_new: Ny |
|
472 | default_issue_status_new: Ny | |
472 | default_issue_status_assigned: Tilldelad |
|
473 | default_issue_status_assigned: Tilldelad | |
473 | default_issue_status_resolved: Löst |
|
474 | default_issue_status_resolved: Löst | |
474 | default_issue_status_feedback: Feedback |
|
475 | default_issue_status_feedback: Feedback | |
475 | default_issue_status_closed: Stängd |
|
476 | default_issue_status_closed: Stängd | |
476 | default_issue_status_rejected: Avslagen |
|
477 | default_issue_status_rejected: Avslagen | |
477 | default_doc_category_user: Användardokumentation |
|
478 | default_doc_category_user: Användardokumentation | |
478 | default_doc_category_tech: Teknisk dokumentation |
|
479 | default_doc_category_tech: Teknisk dokumentation | |
479 | default_priority_low: Låg |
|
480 | default_priority_low: Låg | |
480 | default_priority_normal: Normal |
|
481 | default_priority_normal: Normal | |
481 | default_priority_high: Hög |
|
482 | default_priority_high: Hög | |
482 | default_priority_urgent: Bråttom |
|
483 | default_priority_urgent: Bråttom | |
483 | default_priority_immediate: Omedelbar |
|
484 | default_priority_immediate: Omedelbar | |
484 | default_activity_design: Design |
|
485 | default_activity_design: Design | |
485 | default_activity_development: Utveckling |
|
486 | default_activity_development: Utveckling | |
486 |
|
487 | |||
487 | enumeration_issue_priorities: Bristprioriteringar |
|
488 | enumeration_issue_priorities: Bristprioriteringar | |
488 | enumeration_doc_categories: Dokumentkategorier |
|
489 | enumeration_doc_categories: Dokumentkategorier | |
489 | enumeration_activities: Aktiviteter (tidsspårning) |
|
490 | enumeration_activities: Aktiviteter (tidsspårning) |
@@ -1,491 +1,492 | |||||
1 | # translated by andy wu |
|
1 | # translated by andy wu | |
2 | # email:andywu.zh@gmail.com |
|
2 | # email:andywu.zh@gmail.com | |
3 |
|
3 | |||
4 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
4 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
5 |
|
5 | |||
6 | actionview_datehelper_select_day_prefix: |
|
6 | actionview_datehelper_select_day_prefix: | |
7 | actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月 |
|
7 | actionview_datehelper_select_month_names: 一月,二月,三月,四月,五月,六月,七月,八月,九月,十月,十一月,十二月 | |
8 | actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二 |
|
8 | actionview_datehelper_select_month_names_abbr: 一,二,三,四,五,六,七,八,九,十,十一,十二 | |
9 | actionview_datehelper_select_month_prefix: |
|
9 | actionview_datehelper_select_month_prefix: | |
10 | actionview_datehelper_select_year_prefix: |
|
10 | actionview_datehelper_select_year_prefix: | |
11 | actionview_datehelper_time_in_words_day: 1 天 |
|
11 | actionview_datehelper_time_in_words_day: 1 天 | |
12 | actionview_datehelper_time_in_words_day_plural: %d 天 |
|
12 | actionview_datehelper_time_in_words_day_plural: %d 天 | |
13 | actionview_datehelper_time_in_words_hour_about: 约1小时 |
|
13 | actionview_datehelper_time_in_words_hour_about: 约1小时 | |
14 | actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时 |
|
14 | actionview_datehelper_time_in_words_hour_about_plural: 约 %d 小时 | |
15 | actionview_datehelper_time_in_words_hour_about_single: 约1小时 |
|
15 | actionview_datehelper_time_in_words_hour_about_single: 约1小时 | |
16 | actionview_datehelper_time_in_words_minute: 1分钟 |
|
16 | actionview_datehelper_time_in_words_minute: 1分钟 | |
17 | actionview_datehelper_time_in_words_minute_half: 半分钟 |
|
17 | actionview_datehelper_time_in_words_minute_half: 半分钟 | |
18 | actionview_datehelper_time_in_words_minute_less_than: 1分钟以内 |
|
18 | actionview_datehelper_time_in_words_minute_less_than: 1分钟以内 | |
19 | actionview_datehelper_time_in_words_minute_plural: %d 分钟 |
|
19 | actionview_datehelper_time_in_words_minute_plural: %d 分钟 | |
20 | actionview_datehelper_time_in_words_minute_single: 1分钟 |
|
20 | actionview_datehelper_time_in_words_minute_single: 1分钟 | |
21 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 |
|
21 | actionview_datehelper_time_in_words_second_less_than: 1秒以内 | |
22 | actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内 |
|
22 | actionview_datehelper_time_in_words_second_less_than_plural: %d 秒以内 | |
23 | actionview_instancetag_blank_option: 请选择 |
|
23 | actionview_instancetag_blank_option: 请选择 | |
24 |
|
24 | |||
25 | activerecord_error_inclusion: 未包含在列表中 |
|
25 | activerecord_error_inclusion: 未包含在列表中 | |
26 | activerecord_error_exclusion: 保留的 |
|
26 | activerecord_error_exclusion: 保留的 | |
27 | activerecord_error_invalid: 无效的 |
|
27 | activerecord_error_invalid: 无效的 | |
28 | activerecord_error_confirmation: 和确认输入不匹配 |
|
28 | activerecord_error_confirmation: 和确认输入不匹配 | |
29 | activerecord_error_accepted: 必需被接受 |
|
29 | activerecord_error_accepted: 必需被接受 | |
30 | activerecord_error_empty: 不能为空 |
|
30 | activerecord_error_empty: 不能为空 | |
31 | activerecord_error_blank: 不能是空格 |
|
31 | activerecord_error_blank: 不能是空格 | |
32 | activerecord_error_too_long: 太长 |
|
32 | activerecord_error_too_long: 太长 | |
33 | activerecord_error_too_short: 太短 |
|
33 | activerecord_error_too_short: 太短 | |
34 | activerecord_error_wrong_length: 长度有问题 |
|
34 | activerecord_error_wrong_length: 长度有问题 | |
35 | activerecord_error_taken: has already been taken |
|
35 | activerecord_error_taken: has already been taken | |
36 | activerecord_error_not_a_number: 不是数字 |
|
36 | activerecord_error_not_a_number: 不是数字 | |
37 | activerecord_error_not_a_date: 不是有效的日期 |
|
37 | activerecord_error_not_a_date: 不是有效的日期 | |
38 | activerecord_error_greater_than_start_date: 必需大于开始日期 |
|
38 | activerecord_error_greater_than_start_date: 必需大于开始日期 | |
39 | activerecord_error_not_same_project: doesn't belong to the same project |
|
39 | activerecord_error_not_same_project: doesn't belong to the same project | |
40 | activerecord_error_circular_dependency: This relation would create a circular dependency |
|
40 | activerecord_error_circular_dependency: This relation would create a circular dependency | |
41 |
|
41 | |||
42 | general_fmt_age: %d yr |
|
42 | general_fmt_age: %d yr | |
43 | general_fmt_age_plural: %d yrs |
|
43 | general_fmt_age_plural: %d yrs | |
44 | general_fmt_date: %%m/%%d/%%Y |
|
44 | general_fmt_date: %%m/%%d/%%Y | |
45 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p |
|
45 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |
46 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
46 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
47 | general_fmt_time: %%I:%%M %%p |
|
47 | general_fmt_time: %%I:%%M %%p | |
48 | general_text_No: '否' |
|
48 | general_text_No: '否' | |
49 | general_text_Yes: '是' |
|
49 | general_text_Yes: '是' | |
50 | general_text_no: '否' |
|
50 | general_text_no: '否' | |
51 | general_text_yes: '是' |
|
51 | general_text_yes: '是' | |
52 | general_lang_name: 'Chinese (简体中文)' |
|
52 | general_lang_name: 'Chinese (简体中文)' | |
53 | general_csv_separator: ',' |
|
53 | general_csv_separator: ',' | |
54 | general_csv_encoding: gb2312 |
|
54 | general_csv_encoding: gb2312 | |
55 | general_pdf_encoding: Big5 |
|
55 | general_pdf_encoding: Big5 | |
56 | general_day_names: 一,二,三,四,五,六,日 |
|
56 | general_day_names: 一,二,三,四,五,六,日 | |
57 |
|
57 | |||
58 | notice_account_updated: 帐户更新成功。 |
|
58 | notice_account_updated: 帐户更新成功。 | |
59 | notice_account_invalid_creditentials: 用户名或密码不正确 |
|
59 | notice_account_invalid_creditentials: 用户名或密码不正确 | |
60 | notice_account_password_updated: 成功更新口令 |
|
60 | notice_account_password_updated: 成功更新口令 | |
61 | notice_account_wrong_password: 错误的口令 |
|
61 | notice_account_wrong_password: 错误的口令 | |
62 | notice_account_register_done: 帐户已创建成功 |
|
62 | notice_account_register_done: 帐户已创建成功 | |
63 | notice_account_unknown_email: 未知用户 |
|
63 | notice_account_unknown_email: 未知用户 | |
64 | notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。 |
|
64 | notice_can_t_change_password: 该帐户使用了外部认证。无法更改口令。 | |
65 | notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导 |
|
65 | notice_account_lost_email_sent: 邮件已被发送,邮件中有关于选择新口令的指导 | |
66 | notice_account_activated: 您的帐号已被激活。您现在可以登录了。 |
|
66 | notice_account_activated: 您的帐号已被激活。您现在可以登录了。 | |
67 | notice_successful_create: 创建成功 |
|
67 | notice_successful_create: 创建成功 | |
68 | notice_successful_update: 更新成功 |
|
68 | notice_successful_update: 更新成功 | |
69 | notice_successful_delete: 删除成功 |
|
69 | notice_successful_delete: 删除成功 | |
70 | notice_successful_connection: 连接成功 |
|
70 | notice_successful_connection: 连接成功 | |
71 | notice_file_not_found: 您访问的页面不存在或已被删除。 |
|
71 | notice_file_not_found: 您访问的页面不存在或已被删除。 | |
72 | notice_locking_conflict: 数据已被另一个用户更新 |
|
72 | notice_locking_conflict: 数据已被另一个用户更新 | |
73 | notice_scm_error: 在版本库中不存在该条目或修订 |
|
73 | notice_scm_error: 在版本库中不存在该条目或修订 | |
74 | notice_not_authorized: You are not authorized to access this page. |
|
74 | notice_not_authorized: You are not authorized to access this page. | |
75 |
|
75 | |||
76 | mail_subject_lost_password: 您的redMine口令 |
|
76 | mail_subject_lost_password: 您的redMine口令 | |
77 | mail_subject_register: redMine帐户激活 |
|
77 | mail_subject_register: redMine帐户激活 | |
78 |
|
78 | |||
79 | gui_validation_error: 1 个错误 |
|
79 | gui_validation_error: 1 个错误 | |
80 | gui_validation_error_plural: %d 个错误 |
|
80 | gui_validation_error_plural: %d 个错误 | |
81 |
|
81 | |||
82 | field_name: 名称 |
|
82 | field_name: 名称 | |
83 | field_description: 描述 |
|
83 | field_description: 描述 | |
84 | field_summary: 摘要 |
|
84 | field_summary: 摘要 | |
85 | field_is_required: 必填 |
|
85 | field_is_required: 必填 | |
86 | field_firstname: 名字 |
|
86 | field_firstname: 名字 | |
87 | field_lastname: 姓 |
|
87 | field_lastname: 姓 | |
88 | field_mail: 邮件地址 |
|
88 | field_mail: 邮件地址 | |
89 | field_filename: 文件 |
|
89 | field_filename: 文件 | |
90 | field_filesize: 大小 |
|
90 | field_filesize: 大小 | |
91 | field_downloads: 下载次数 |
|
91 | field_downloads: 下载次数 | |
92 | field_author: 作者 |
|
92 | field_author: 作者 | |
93 | field_created_on: 创建于 |
|
93 | field_created_on: 创建于 | |
94 | field_updated_on: 更新于 |
|
94 | field_updated_on: 更新于 | |
95 | field_field_format: 格式 |
|
95 | field_field_format: 格式 | |
96 | field_is_for_all: 应用于所有项目 |
|
96 | field_is_for_all: 应用于所有项目 | |
97 | field_possible_values: 可能的值 |
|
97 | field_possible_values: 可能的值 | |
98 | field_regexp: 正则表达式 |
|
98 | field_regexp: 正则表达式 | |
99 | field_min_length: 最小长度 |
|
99 | field_min_length: 最小长度 | |
100 | field_max_length: 最大长度 |
|
100 | field_max_length: 最大长度 | |
101 | field_value: 值 |
|
101 | field_value: 值 | |
102 | field_category: 分类 |
|
102 | field_category: 分类 | |
103 | field_title: 标题 |
|
103 | field_title: 标题 | |
104 | field_project: 项目 |
|
104 | field_project: 项目 | |
105 | field_issue: 任务 |
|
105 | field_issue: 任务 | |
106 | field_status: 状态 |
|
106 | field_status: 状态 | |
107 | field_notes: 说明 |
|
107 | field_notes: 说明 | |
108 | field_is_closed: 已关闭的任务 |
|
108 | field_is_closed: 已关闭的任务 | |
109 | field_is_default: 默认状态 |
|
109 | field_is_default: 默认状态 | |
110 | field_html_color: 颜色 |
|
110 | field_html_color: 颜色 | |
111 | field_tracker: 跟踪 |
|
111 | field_tracker: 跟踪 | |
112 | field_subject: 主题 |
|
112 | field_subject: 主题 | |
113 | field_due_date: 到期日 |
|
113 | field_due_date: 到期日 | |
114 | field_assigned_to: 指派 |
|
114 | field_assigned_to: 指派 | |
115 | field_priority: 优先级 |
|
115 | field_priority: 优先级 | |
116 | field_fixed_version: 修订版本 |
|
116 | field_fixed_version: 修订版本 | |
117 | field_user: 用户 |
|
117 | field_user: 用户 | |
118 | field_role: 角色 |
|
118 | field_role: 角色 | |
119 | field_homepage: 主页 |
|
119 | field_homepage: 主页 | |
120 | field_is_public: 公开 |
|
120 | field_is_public: 公开 | |
121 | field_parent: 上级项目 |
|
121 | field_parent: 上级项目 | |
122 | field_is_in_chlog: 在更新日志中显示任务 |
|
122 | field_is_in_chlog: 在更新日志中显示任务 | |
123 | field_is_in_roadmap: 在路线图中显示任务 |
|
123 | field_is_in_roadmap: 在路线图中显示任务 | |
124 | field_login: 登录名 |
|
124 | field_login: 登录名 | |
125 | field_mail_notification: 邮件通知 |
|
125 | field_mail_notification: 邮件通知 | |
126 | field_admin: 管理员 |
|
126 | field_admin: 管理员 | |
127 | field_last_login_on: 最后登录 |
|
127 | field_last_login_on: 最后登录 | |
128 | field_language: 语言 |
|
128 | field_language: 语言 | |
129 | field_effective_date: 日期 |
|
129 | field_effective_date: 日期 | |
130 | field_password: 口令 |
|
130 | field_password: 口令 | |
131 | field_new_password: 新口令 |
|
131 | field_new_password: 新口令 | |
132 | field_password_confirmation: 确认 |
|
132 | field_password_confirmation: 确认 | |
133 | field_version: 版本 |
|
133 | field_version: 版本 | |
134 | field_type: 类别 |
|
134 | field_type: 类别 | |
135 | field_host: 主机 |
|
135 | field_host: 主机 | |
136 | field_port: 端口 |
|
136 | field_port: 端口 | |
137 | field_account: 帐号 |
|
137 | field_account: 帐号 | |
138 | field_base_dn: Base DN |
|
138 | field_base_dn: Base DN | |
139 | field_attr_login: 登录名属性 |
|
139 | field_attr_login: 登录名属性 | |
140 | field_attr_firstname: 名字属性 |
|
140 | field_attr_firstname: 名字属性 | |
141 | field_attr_lastname: 姓属性 |
|
141 | field_attr_lastname: 姓属性 | |
142 | field_attr_mail: 邮件属性 |
|
142 | field_attr_mail: 邮件属性 | |
143 | field_onthefly: On-the-fly user creation |
|
143 | field_onthefly: On-the-fly user creation | |
144 | field_start_date: 开始 |
|
144 | field_start_date: 开始 | |
145 | field_done_ratio: %% 完成 |
|
145 | field_done_ratio: %% 完成 | |
146 | field_auth_source: 认证模式 |
|
146 | field_auth_source: 认证模式 | |
147 | field_hide_mail: 隐藏我的邮件 |
|
147 | field_hide_mail: 隐藏我的邮件 | |
148 | field_comments: 注释 |
|
148 | field_comments: 注释 | |
149 | field_url: URL |
|
149 | field_url: URL | |
150 | field_start_page: 起始页 |
|
150 | field_start_page: 起始页 | |
151 | field_subproject: 子项目 |
|
151 | field_subproject: 子项目 | |
152 | field_hours: Hours |
|
152 | field_hours: Hours | |
153 | field_activity: 活动 |
|
153 | field_activity: 活动 | |
154 | field_spent_on: 日期 |
|
154 | field_spent_on: 日期 | |
155 | field_identifier: Identifier |
|
155 | field_identifier: Identifier | |
156 | field_is_filter: Used as a filter |
|
156 | field_is_filter: Used as a filter | |
157 | field_issue_to_id: Related issue |
|
157 | field_issue_to_id: Related issue | |
158 | field_delay: Delay |
|
158 | field_delay: Delay | |
159 |
|
159 | |||
160 | setting_app_title: 应用程序标题 |
|
160 | setting_app_title: 应用程序标题 | |
161 | setting_app_subtitle: 应用程序子标题 |
|
161 | setting_app_subtitle: 应用程序子标题 | |
162 | setting_welcome_text: 欢迎文字 |
|
162 | setting_welcome_text: 欢迎文字 | |
163 | setting_default_language: 默认语言 |
|
163 | setting_default_language: 默认语言 | |
164 | setting_login_required: 要求认证 |
|
164 | setting_login_required: 要求认证 | |
165 | setting_self_registration: 允许自注册 |
|
165 | setting_self_registration: 允许自注册 | |
166 | setting_attachment_max_size: 附件最大尺寸 |
|
166 | setting_attachment_max_size: 附件最大尺寸 | |
167 | setting_issues_export_limit: Issues export limit |
|
167 | setting_issues_export_limit: Issues export limit | |
168 | setting_mail_from: Emission mail address |
|
168 | setting_mail_from: Emission mail address | |
169 | setting_host_name: 主机名称 |
|
169 | setting_host_name: 主机名称 | |
170 | setting_text_formatting: 文本格式 |
|
170 | setting_text_formatting: 文本格式 | |
171 | setting_wiki_compression: Wiki history compression |
|
171 | setting_wiki_compression: Wiki history compression | |
172 | setting_feeds_limit: Feed content limit |
|
172 | setting_feeds_limit: Feed content limit | |
173 | setting_autofetch_changesets: Autofetch commits |
|
173 | setting_autofetch_changesets: Autofetch commits | |
174 | setting_sys_api_enabled: Enable WS for repository management |
|
174 | setting_sys_api_enabled: Enable WS for repository management | |
175 | setting_commit_ref_keywords: Referencing keywords |
|
175 | setting_commit_ref_keywords: Referencing keywords | |
176 | setting_commit_fix_keywords: Fixing keywords |
|
176 | setting_commit_fix_keywords: Fixing keywords | |
177 | setting_autologin: Autologin |
|
177 | setting_autologin: Autologin | |
178 | setting_date_format: Date format |
|
178 | setting_date_format: Date format | |
|
179 | setting_cross_project_issue_relations: Allow cross-project issue relations | |||
179 |
|
180 | |||
180 | label_user: 用户 |
|
181 | label_user: 用户 | |
181 | label_user_plural: 用户列表 |
|
182 | label_user_plural: 用户列表 | |
182 | label_user_new: 新建用户 |
|
183 | label_user_new: 新建用户 | |
183 | label_project: 项目 |
|
184 | label_project: 项目 | |
184 | label_project_new: 新建项目 |
|
185 | label_project_new: 新建项目 | |
185 | label_project_plural: 项目列表 |
|
186 | label_project_plural: 项目列表 | |
186 | label_project_all: All Projects |
|
187 | label_project_all: All Projects | |
187 | label_project_latest: 最近的项目列表 |
|
188 | label_project_latest: 最近的项目列表 | |
188 | label_issue: 任务 |
|
189 | label_issue: 任务 | |
189 | label_issue_new: 新建任务 |
|
190 | label_issue_new: 新建任务 | |
190 | label_issue_plural: 任务列表 |
|
191 | label_issue_plural: 任务列表 | |
191 | label_issue_view_all: 查看所有任务 |
|
192 | label_issue_view_all: 查看所有任务 | |
192 | label_document: 文档 |
|
193 | label_document: 文档 | |
193 | label_document_new: 新建文档 |
|
194 | label_document_new: 新建文档 | |
194 | label_document_plural: 文档列表 |
|
195 | label_document_plural: 文档列表 | |
195 | label_role: 角色 |
|
196 | label_role: 角色 | |
196 | label_role_plural: 角色列表 |
|
197 | label_role_plural: 角色列表 | |
197 | label_role_new: 新建角色 |
|
198 | label_role_new: 新建角色 | |
198 | label_role_and_permissions: 角色和权限 |
|
199 | label_role_and_permissions: 角色和权限 | |
199 | label_member: 成员 |
|
200 | label_member: 成员 | |
200 | label_member_new: 新建成员 |
|
201 | label_member_new: 新建成员 | |
201 | label_member_plural: 成员列表 |
|
202 | label_member_plural: 成员列表 | |
202 | label_tracker: 跟踪标签 |
|
203 | label_tracker: 跟踪标签 | |
203 | label_tracker_plural: 跟踪标签列表 |
|
204 | label_tracker_plural: 跟踪标签列表 | |
204 | label_tracker_new: 新建跟踪标签 |
|
205 | label_tracker_new: 新建跟踪标签 | |
205 | label_workflow: 工作流 |
|
206 | label_workflow: 工作流 | |
206 | label_issue_status: 任务状态列表 |
|
207 | label_issue_status: 任务状态列表 | |
207 | label_issue_status_plural: 任务状态列表 |
|
208 | label_issue_status_plural: 任务状态列表 | |
208 | label_issue_status_new: 新建任务状态列表 |
|
209 | label_issue_status_new: 新建任务状态列表 | |
209 | label_issue_category: 任务类别 |
|
210 | label_issue_category: 任务类别 | |
210 | label_issue_category_plural: 任务类别列表 |
|
211 | label_issue_category_plural: 任务类别列表 | |
211 | label_issue_category_new: 新建任务类别 |
|
212 | label_issue_category_new: 新建任务类别 | |
212 | label_custom_field: 自定义字段 |
|
213 | label_custom_field: 自定义字段 | |
213 | label_custom_field_plural: 自定义字段列表 |
|
214 | label_custom_field_plural: 自定义字段列表 | |
214 | label_custom_field_new: 新建自定义字段 |
|
215 | label_custom_field_new: 新建自定义字段 | |
215 | label_enumerations: 枚举列表 |
|
216 | label_enumerations: 枚举列表 | |
216 | label_enumeration_new: 新建枚举值 |
|
217 | label_enumeration_new: 新建枚举值 | |
217 | label_information: 信息 |
|
218 | label_information: 信息 | |
218 | label_information_plural: 信息 |
|
219 | label_information_plural: 信息 | |
219 | label_please_login: 请登录 |
|
220 | label_please_login: 请登录 | |
220 | label_register: 注册 |
|
221 | label_register: 注册 | |
221 | label_password_lost: 忘记口令 |
|
222 | label_password_lost: 忘记口令 | |
222 | label_home: 主页 |
|
223 | label_home: 主页 | |
223 | label_my_page: 我的工作台 |
|
224 | label_my_page: 我的工作台 | |
224 | label_my_account: 我的帐号 |
|
225 | label_my_account: 我的帐号 | |
225 | label_my_projects: 我的项目列表 |
|
226 | label_my_projects: 我的项目列表 | |
226 | label_administration: 管理 |
|
227 | label_administration: 管理 | |
227 | label_login: 登录 |
|
228 | label_login: 登录 | |
228 | label_logout: 退出 |
|
229 | label_logout: 退出 | |
229 | label_help: 帮助 |
|
230 | label_help: 帮助 | |
230 | label_reported_issues: 已报告的问题 |
|
231 | label_reported_issues: 已报告的问题 | |
231 | label_assigned_to_me_issues: 分配给我的任务 |
|
232 | label_assigned_to_me_issues: 分配给我的任务 | |
232 | label_last_login: 最后登录 |
|
233 | label_last_login: 最后登录 | |
233 | label_last_updates: 最后更新 |
|
234 | label_last_updates: 最后更新 | |
234 | label_last_updates_plural: %d 最后更新 |
|
235 | label_last_updates_plural: %d 最后更新 | |
235 | label_registered_on: 注册于 |
|
236 | label_registered_on: 注册于 | |
236 | label_activity: 活动 |
|
237 | label_activity: 活动 | |
237 | label_new: 新建 |
|
238 | label_new: 新建 | |
238 | label_logged_as: 登录为 |
|
239 | label_logged_as: 登录为 | |
239 | label_environment: 环境 |
|
240 | label_environment: 环境 | |
240 | label_authentication: 认证 |
|
241 | label_authentication: 认证 | |
241 | label_auth_source: 认证模式 |
|
242 | label_auth_source: 认证模式 | |
242 | label_auth_source_new: 新建认证模式 |
|
243 | label_auth_source_new: 新建认证模式 | |
243 | label_auth_source_plural: 认证模式列表 |
|
244 | label_auth_source_plural: 认证模式列表 | |
244 | label_subproject_plural: 子项目列表 |
|
245 | label_subproject_plural: 子项目列表 | |
245 | label_min_max_length: 最小 - 最大 长度 |
|
246 | label_min_max_length: 最小 - 最大 长度 | |
246 | label_list: list |
|
247 | label_list: list | |
247 | label_date: Date |
|
248 | label_date: Date | |
248 | label_integer: Integer |
|
249 | label_integer: Integer | |
249 | label_boolean: Boolean |
|
250 | label_boolean: Boolean | |
250 | label_string: Text |
|
251 | label_string: Text | |
251 | label_text: Long text |
|
252 | label_text: Long text | |
252 | label_attribute: 属性 |
|
253 | label_attribute: 属性 | |
253 | label_attribute_plural: 属性 |
|
254 | label_attribute_plural: 属性 | |
254 | label_download: %d 个下载次数 |
|
255 | label_download: %d 个下载次数 | |
255 | label_download_plural: %d 个下载次数 |
|
256 | label_download_plural: %d 个下载次数 | |
256 | label_no_data: 没有数据用于显示 |
|
257 | label_no_data: 没有数据用于显示 | |
257 | label_change_status: 改变状态 |
|
258 | label_change_status: 改变状态 | |
258 | label_history: 历史记录 |
|
259 | label_history: 历史记录 | |
259 | label_attachment: 文件 |
|
260 | label_attachment: 文件 | |
260 | label_attachment_new: 新建文件 |
|
261 | label_attachment_new: 新建文件 | |
261 | label_attachment_delete: 删除文件 |
|
262 | label_attachment_delete: 删除文件 | |
262 | label_attachment_plural: 文件列表 |
|
263 | label_attachment_plural: 文件列表 | |
263 | label_report: 报表 |
|
264 | label_report: 报表 | |
264 | label_report_plural: 报表列表 |
|
265 | label_report_plural: 报表列表 | |
265 | label_news: 新闻 |
|
266 | label_news: 新闻 | |
266 | label_news_new: 增加新闻 |
|
267 | label_news_new: 增加新闻 | |
267 | label_news_plural: 新闻列表 |
|
268 | label_news_plural: 新闻列表 | |
268 | label_news_latest: 最近的新闻 |
|
269 | label_news_latest: 最近的新闻 | |
269 | label_news_view_all: 查看所有新闻 |
|
270 | label_news_view_all: 查看所有新闻 | |
270 | label_change_log: 更新日志 |
|
271 | label_change_log: 更新日志 | |
271 | label_settings: 配置 |
|
272 | label_settings: 配置 | |
272 | label_overview: 概述 |
|
273 | label_overview: 概述 | |
273 | label_version: 版本 |
|
274 | label_version: 版本 | |
274 | label_version_new: 新建版本 |
|
275 | label_version_new: 新建版本 | |
275 | label_version_plural: 版本列表 |
|
276 | label_version_plural: 版本列表 | |
276 | label_confirmation: 确认 |
|
277 | label_confirmation: 确认 | |
277 | label_export_to: 导出 |
|
278 | label_export_to: 导出 | |
278 | label_read: 读取... |
|
279 | label_read: 读取... | |
279 | label_public_projects: 公开的项目列表 |
|
280 | label_public_projects: 公开的项目列表 | |
280 | label_open_issues: 打开 |
|
281 | label_open_issues: 打开 | |
281 | label_open_issues_plural: 打开 |
|
282 | label_open_issues_plural: 打开 | |
282 | label_closed_issues: 已关闭 |
|
283 | label_closed_issues: 已关闭 | |
283 | label_closed_issues_plural: 已关闭 |
|
284 | label_closed_issues_plural: 已关闭 | |
284 | label_total: 合计 |
|
285 | label_total: 合计 | |
285 | label_permissions: 权限列表 |
|
286 | label_permissions: 权限列表 | |
286 | label_current_status: 当前状态 |
|
287 | label_current_status: 当前状态 | |
287 | label_new_statuses_allowed: New statuses allowed |
|
288 | label_new_statuses_allowed: New statuses allowed | |
288 | label_all: 全部 |
|
289 | label_all: 全部 | |
289 | label_none: 无 |
|
290 | label_none: 无 | |
290 | label_next: 下一个 |
|
291 | label_next: 下一个 | |
291 | label_previous: 上一个 |
|
292 | label_previous: 上一个 | |
292 | label_used_by: 使用中 |
|
293 | label_used_by: 使用中 | |
293 | label_details: 详情 |
|
294 | label_details: 详情 | |
294 | label_add_note: 添加说明 |
|
295 | label_add_note: 添加说明 | |
295 | label_per_page: 每面 |
|
296 | label_per_page: 每面 | |
296 | label_calendar: 日历 |
|
297 | label_calendar: 日历 | |
297 | label_months_from: months from |
|
298 | label_months_from: months from | |
298 | label_gantt: 甘特图(Gantt) |
|
299 | label_gantt: 甘特图(Gantt) | |
299 | label_internal: 内部 |
|
300 | label_internal: 内部 | |
300 | label_last_changes: 最近的 %d 次更改 |
|
301 | label_last_changes: 最近的 %d 次更改 | |
301 | label_change_view_all: 查看所有更改 |
|
302 | label_change_view_all: 查看所有更改 | |
302 | label_personalize_page: 个性化定制本页 |
|
303 | label_personalize_page: 个性化定制本页 | |
303 | label_comment: 注释 |
|
304 | label_comment: 注释 | |
304 | label_comment_plural: 注释列表 |
|
305 | label_comment_plural: 注释列表 | |
305 | label_comment_add: 添加注释 |
|
306 | label_comment_add: 添加注释 | |
306 | label_comment_added: 已加入注释 |
|
307 | label_comment_added: 已加入注释 | |
307 | label_comment_delete: 删除注释 |
|
308 | label_comment_delete: 删除注释 | |
308 | label_query: 自定义查询 |
|
309 | label_query: 自定义查询 | |
309 | label_query_plural: 自定义查询列表 |
|
310 | label_query_plural: 自定义查询列表 | |
310 | label_query_new: 新建查询 |
|
311 | label_query_new: 新建查询 | |
311 | label_filter_add: 增加过滤器 |
|
312 | label_filter_add: 增加过滤器 | |
312 | label_filter_plural: 过滤器列表 |
|
313 | label_filter_plural: 过滤器列表 | |
313 | label_equals: 等于 |
|
314 | label_equals: 等于 | |
314 | label_not_equals: 不等于 |
|
315 | label_not_equals: 不等于 | |
315 | label_in_less_than: 剩余天数小于 |
|
316 | label_in_less_than: 剩余天数小于 | |
316 | label_in_more_than: 剩余天数大于 |
|
317 | label_in_more_than: 剩余天数大于 | |
317 | label_in: 剩余天数 |
|
318 | label_in: 剩余天数 | |
318 | label_today: 今天 |
|
319 | label_today: 今天 | |
319 | label_less_than_ago: 之前天数少于 |
|
320 | label_less_than_ago: 之前天数少于 | |
320 | label_more_than_ago: 之前天数大于 |
|
321 | label_more_than_ago: 之前天数大于 | |
321 | label_ago: 之前天数 |
|
322 | label_ago: 之前天数 | |
322 | label_contains: 包含 |
|
323 | label_contains: 包含 | |
323 | label_not_contains: 不包含 |
|
324 | label_not_contains: 不包含 | |
324 | label_day_plural: 天数 |
|
325 | label_day_plural: 天数 | |
325 | label_repository: 版本库 |
|
326 | label_repository: 版本库 | |
326 | label_browse: 浏览 |
|
327 | label_browse: 浏览 | |
327 | label_modification: %d 个更新 |
|
328 | label_modification: %d 个更新 | |
328 | label_modification_plural: %d 个更新 |
|
329 | label_modification_plural: %d 个更新 | |
329 | label_revision: 修订 |
|
330 | label_revision: 修订 | |
330 | label_revision_plural: 修订 |
|
331 | label_revision_plural: 修订 | |
331 | label_added: 已增加 |
|
332 | label_added: 已增加 | |
332 | label_modified: 已修改 |
|
333 | label_modified: 已修改 | |
333 | label_deleted: 已删除 |
|
334 | label_deleted: 已删除 | |
334 | label_latest_revision: 最近的版本 |
|
335 | label_latest_revision: 最近的版本 | |
335 | label_latest_revision_plural: 最近的版本列表 |
|
336 | label_latest_revision_plural: 最近的版本列表 | |
336 | label_view_revisions: 查看修订列表 |
|
337 | label_view_revisions: 查看修订列表 | |
337 | label_max_size: 最大尺寸 |
|
338 | label_max_size: 最大尺寸 | |
338 | label_on: 'on' |
|
339 | label_on: 'on' | |
339 | label_sort_highest: 置顶 |
|
340 | label_sort_highest: 置顶 | |
340 | label_sort_higher: 上移 |
|
341 | label_sort_higher: 上移 | |
341 | label_sort_lower: 下移 |
|
342 | label_sort_lower: 下移 | |
342 | label_sort_lowest: 置底 |
|
343 | label_sort_lowest: 置底 | |
343 | label_roadmap: 路线图 |
|
344 | label_roadmap: 路线图 | |
344 | label_roadmap_due_in: Due in |
|
345 | label_roadmap_due_in: Due in | |
345 | label_roadmap_overdue: %s late |
|
346 | label_roadmap_overdue: %s late | |
346 | label_roadmap_no_issues: 该版本没有任务 |
|
347 | label_roadmap_no_issues: 该版本没有任务 | |
347 | label_search: 查找 |
|
348 | label_search: 查找 | |
348 | label_result: %d 个结果 |
|
349 | label_result: %d 个结果 | |
349 | label_result_plural: %d 个结果 |
|
350 | label_result_plural: %d 个结果 | |
350 | label_all_words: 所有单词 |
|
351 | label_all_words: 所有单词 | |
351 | label_wiki: Wiki |
|
352 | label_wiki: Wiki | |
352 | label_wiki_edit: Wiki edit |
|
353 | label_wiki_edit: Wiki edit | |
353 | label_wiki_edit_plural: Wiki edits |
|
354 | label_wiki_edit_plural: Wiki edits | |
354 | label_wiki_page_plural: Wiki pages |
|
355 | label_wiki_page_plural: Wiki pages | |
355 | label_page_index: 索引 |
|
356 | label_page_index: 索引 | |
356 | label_current_version: 当前版本 |
|
357 | label_current_version: 当前版本 | |
357 | label_preview: 预览 |
|
358 | label_preview: 预览 | |
358 | label_feed_plural: Feeds |
|
359 | label_feed_plural: Feeds | |
359 | label_changes_details: 所有更改的详情 |
|
360 | label_changes_details: 所有更改的详情 | |
360 | label_issue_tracking: 任务跟踪 |
|
361 | label_issue_tracking: 任务跟踪 | |
361 | label_spent_time: 耗时 |
|
362 | label_spent_time: 耗时 | |
362 | label_f_hour: %.2f 小时 |
|
363 | label_f_hour: %.2f 小时 | |
363 | label_f_hour_plural: %.2f 小时 |
|
364 | label_f_hour_plural: %.2f 小时 | |
364 | label_time_tracking: 时间跟踪 |
|
365 | label_time_tracking: 时间跟踪 | |
365 | label_change_plural: 更改列表 |
|
366 | label_change_plural: 更改列表 | |
366 | label_statistics: 统计 |
|
367 | label_statistics: 统计 | |
367 | label_commits_per_month: Commits per month |
|
368 | label_commits_per_month: Commits per month | |
368 | label_commits_per_author: Commits per author |
|
369 | label_commits_per_author: Commits per author | |
369 | label_view_diff: View differences |
|
370 | label_view_diff: View differences | |
370 | label_diff_inline: inline |
|
371 | label_diff_inline: inline | |
371 | label_diff_side_by_side: side by side |
|
372 | label_diff_side_by_side: side by side | |
372 | label_options: Options |
|
373 | label_options: Options | |
373 | label_copy_workflow_from: Copy workflow from |
|
374 | label_copy_workflow_from: Copy workflow from | |
374 | label_permissions_report: Permissions report |
|
375 | label_permissions_report: Permissions report | |
375 | label_watched_issues: Watched issues |
|
376 | label_watched_issues: Watched issues | |
376 | label_related_issues: Related issues |
|
377 | label_related_issues: Related issues | |
377 | label_applied_status: Applied status |
|
378 | label_applied_status: Applied status | |
378 | label_loading: Loading... |
|
379 | label_loading: Loading... | |
379 | label_relation_new: New relation |
|
380 | label_relation_new: New relation | |
380 | label_relation_delete: Delete relation |
|
381 | label_relation_delete: Delete relation | |
381 | label_relates_to: related to |
|
382 | label_relates_to: related to | |
382 | label_duplicates: duplicates |
|
383 | label_duplicates: duplicates | |
383 | label_blocks: blocks |
|
384 | label_blocks: blocks | |
384 | label_blocked_by: blocked by |
|
385 | label_blocked_by: blocked by | |
385 | label_precedes: precedes |
|
386 | label_precedes: precedes | |
386 | label_follows: follows |
|
387 | label_follows: follows | |
387 | label_end_to_start: start to end |
|
388 | label_end_to_start: start to end | |
388 | label_end_to_end: end to end |
|
389 | label_end_to_end: end to end | |
389 | label_start_to_start: start to start |
|
390 | label_start_to_start: start to start | |
390 | label_start_to_end: start to end |
|
391 | label_start_to_end: start to end | |
391 | label_stay_logged_in: Stay logged in |
|
392 | label_stay_logged_in: Stay logged in | |
392 | label_disabled: disabled |
|
393 | label_disabled: disabled | |
393 | label_show_completed_versions: Show completed versions |
|
394 | label_show_completed_versions: Show completed versions | |
394 | label_me: me |
|
395 | label_me: me | |
395 | label_board: Forum |
|
396 | label_board: Forum | |
396 | label_board_new: New forum |
|
397 | label_board_new: New forum | |
397 | label_board_plural: Forums |
|
398 | label_board_plural: Forums | |
398 | label_topic_plural: Topics |
|
399 | label_topic_plural: Topics | |
399 | label_message_plural: Messages |
|
400 | label_message_plural: Messages | |
400 | label_message_last: Last message |
|
401 | label_message_last: Last message | |
401 | label_message_new: New message |
|
402 | label_message_new: New message | |
402 | label_reply_plural: Replies |
|
403 | label_reply_plural: Replies | |
403 | label_send_information: Send account information to the user |
|
404 | label_send_information: Send account information to the user | |
404 | label_year: Year |
|
405 | label_year: Year | |
405 | label_month: Month |
|
406 | label_month: Month | |
406 | label_week: Week |
|
407 | label_week: Week | |
407 | label_date_from: From |
|
408 | label_date_from: From | |
408 | label_date_to: To |
|
409 | label_date_to: To | |
409 | label_language_based: Language based |
|
410 | label_language_based: Language based | |
410 | label_sort_by: Sort by "%s" |
|
411 | label_sort_by: Sort by "%s" | |
411 |
|
412 | |||
412 | button_login: 登录 |
|
413 | button_login: 登录 | |
413 | button_submit: 提交 |
|
414 | button_submit: 提交 | |
414 | button_save: 保存 |
|
415 | button_save: 保存 | |
415 | button_check_all: 全选 |
|
416 | button_check_all: 全选 | |
416 | button_uncheck_all: 清除 |
|
417 | button_uncheck_all: 清除 | |
417 | button_delete: 删除 |
|
418 | button_delete: 删除 | |
418 | button_create: 创建 |
|
419 | button_create: 创建 | |
419 | button_test: 测试 |
|
420 | button_test: 测试 | |
420 | button_edit: 编辑 |
|
421 | button_edit: 编辑 | |
421 | button_add: 新增 |
|
422 | button_add: 新增 | |
422 | button_change: 修改 |
|
423 | button_change: 修改 | |
423 | button_apply: 应用 |
|
424 | button_apply: 应用 | |
424 | button_clear: 清除 |
|
425 | button_clear: 清除 | |
425 | button_lock: 锁定 |
|
426 | button_lock: 锁定 | |
426 | button_unlock: 解锁 |
|
427 | button_unlock: 解锁 | |
427 | button_download: 下载 |
|
428 | button_download: 下载 | |
428 | button_list: 列表 |
|
429 | button_list: 列表 | |
429 | button_view: 查看 |
|
430 | button_view: 查看 | |
430 | button_move: 移动 |
|
431 | button_move: 移动 | |
431 | button_back: 返回 |
|
432 | button_back: 返回 | |
432 | button_cancel: 取消 |
|
433 | button_cancel: 取消 | |
433 | button_activate: 激活 |
|
434 | button_activate: 激活 | |
434 | button_sort: 排序 |
|
435 | button_sort: 排序 | |
435 | button_log_time: 登记工时 |
|
436 | button_log_time: 登记工时 | |
436 | button_rollback: Rollback to this version |
|
437 | button_rollback: Rollback to this version | |
437 | button_watch: Watch |
|
438 | button_watch: Watch | |
438 | button_unwatch: Unwatch |
|
439 | button_unwatch: Unwatch | |
439 | button_reply: Reply |
|
440 | button_reply: Reply | |
440 | button_archive: Archive |
|
441 | button_archive: Archive | |
441 | button_unarchive: Unarchive |
|
442 | button_unarchive: Unarchive | |
442 |
|
443 | |||
443 | status_active: 激活 |
|
444 | status_active: 激活 | |
444 | status_registered: 已注册 |
|
445 | status_registered: 已注册 | |
445 | status_locked: 已锁定 |
|
446 | status_locked: 已锁定 | |
446 |
|
447 | |||
447 | text_select_mail_notifications: 选择需要发送邮件通知的动作。 |
|
448 | text_select_mail_notifications: 选择需要发送邮件通知的动作。 | |
448 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
449 | text_regexp_info: eg. ^[A-Z0-9]+$ | |
449 | text_min_max_length_info: 0 表示没有限制 |
|
450 | text_min_max_length_info: 0 表示没有限制 | |
450 | text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? |
|
451 | text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? | |
451 | text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流 |
|
452 | text_workflow_edit: 选择一个角色和跟踪标签来编辑这个工作流 | |
452 | text_are_you_sure: 您确定? |
|
453 | text_are_you_sure: 您确定? | |
453 | text_journal_changed: 从 %s 更改为 %s |
|
454 | text_journal_changed: 从 %s 更改为 %s | |
454 | text_journal_set_to: 设置为 %s |
|
455 | text_journal_set_to: 设置为 %s | |
455 | text_journal_deleted: 已删除 |
|
456 | text_journal_deleted: 已删除 | |
456 | text_tip_task_begin_day: 开始于此 |
|
457 | text_tip_task_begin_day: 开始于此 | |
457 | text_tip_task_end_day: 在此结束 |
|
458 | text_tip_task_end_day: 在此结束 | |
458 | text_tip_task_begin_end_day: 开始并结束于此 |
|
459 | text_tip_task_begin_end_day: 开始并结束于此 | |
459 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' |
|
460 | text_project_identifier_info: 'Lower case letters (a-z), numbers and dashes allowed.<br />Once saved, the identifier can not be changed.' | |
460 | text_caracters_maximum: %d characters maximum. |
|
461 | text_caracters_maximum: %d characters maximum. | |
461 | text_length_between: Length between %d and %d characters. |
|
462 | text_length_between: Length between %d and %d characters. | |
462 | text_tracker_no_workflow: No workflow defined for this tracker |
|
463 | text_tracker_no_workflow: No workflow defined for this tracker | |
463 | text_unallowed_characters: Unallowed characters |
|
464 | text_unallowed_characters: Unallowed characters | |
464 | text_comma_separated: Multiple values allowed (comma separated). |
|
465 | text_comma_separated: Multiple values allowed (comma separated). | |
465 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
466 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |
466 |
|
467 | |||
467 | default_role_manager: 管理员 |
|
468 | default_role_manager: 管理员 | |
468 | default_role_developper: 开发人员 |
|
469 | default_role_developper: 开发人员 | |
469 | default_role_reporter: 报告人员 |
|
470 | default_role_reporter: 报告人员 | |
470 | default_tracker_bug: 问题 |
|
471 | default_tracker_bug: 问题 | |
471 | default_tracker_feature: 功能 |
|
472 | default_tracker_feature: 功能 | |
472 | default_tracker_support: 支持 |
|
473 | default_tracker_support: 支持 | |
473 | default_issue_status_new: 新建 |
|
474 | default_issue_status_new: 新建 | |
474 | default_issue_status_assigned: 已分配 |
|
475 | default_issue_status_assigned: 已分配 | |
475 | default_issue_status_resolved: 已解决 |
|
476 | default_issue_status_resolved: 已解决 | |
476 | default_issue_status_feedback: 回复 |
|
477 | default_issue_status_feedback: 回复 | |
477 | default_issue_status_closed: 已关闭 |
|
478 | default_issue_status_closed: 已关闭 | |
478 | default_issue_status_rejected: 已打回 |
|
479 | default_issue_status_rejected: 已打回 | |
479 | default_doc_category_user: 用户文档 |
|
480 | default_doc_category_user: 用户文档 | |
480 | default_doc_category_tech: 技术文档 |
|
481 | default_doc_category_tech: 技术文档 | |
481 | default_priority_low: 低 |
|
482 | default_priority_low: 低 | |
482 | default_priority_normal: 普通 |
|
483 | default_priority_normal: 普通 | |
483 | default_priority_high: 高 |
|
484 | default_priority_high: 高 | |
484 | default_priority_urgent: 紧急 |
|
485 | default_priority_urgent: 紧急 | |
485 | default_priority_immediate: 立刻 |
|
486 | default_priority_immediate: 立刻 | |
486 | default_activity_design: 设计 |
|
487 | default_activity_design: 设计 | |
487 | default_activity_development: 开发 |
|
488 | default_activity_development: 开发 | |
488 |
|
489 | |||
489 | enumeration_issue_priorities: 任务优先级 |
|
490 | enumeration_issue_priorities: 任务优先级 | |
490 | enumeration_doc_categories: 文档类别 |
|
491 | enumeration_doc_categories: 文档类别 | |
491 | enumeration_activities: Activities (time tracking) |
|
492 | enumeration_activities: Activities (time tracking) |
@@ -1,692 +1,694 | |||||
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 | #header a {color:#fff;} |
|
69 | #header a {color:#fff;} | |
70 |
|
70 | |||
71 | #navigation{ |
|
71 | #navigation{ | |
72 | height:2.2em; |
|
72 | height:2.2em; | |
73 | line-height:2.2em; |
|
73 | line-height:2.2em; | |
74 | margin:0; |
|
74 | margin:0; | |
75 | background:#578bb8; |
|
75 | background:#578bb8; | |
76 | color:#ffffff; |
|
76 | color:#ffffff; | |
77 | } |
|
77 | } | |
78 |
|
78 | |||
79 | #navigation li{ |
|
79 | #navigation li{ | |
80 | float:left; |
|
80 | float:left; | |
81 | list-style-type:none; |
|
81 | list-style-type:none; | |
82 | border-right:1px solid #ffffff; |
|
82 | border-right:1px solid #ffffff; | |
83 | white-space:nowrap; |
|
83 | white-space:nowrap; | |
84 | } |
|
84 | } | |
85 |
|
85 | |||
86 | #navigation li.right { |
|
86 | #navigation li.right { | |
87 | float:right; |
|
87 | float:right; | |
88 | list-style-type:none; |
|
88 | list-style-type:none; | |
89 | border-right:0; |
|
89 | border-right:0; | |
90 | border-left:1px solid #ffffff; |
|
90 | border-left:1px solid #ffffff; | |
91 | white-space:nowrap; |
|
91 | white-space:nowrap; | |
92 | } |
|
92 | } | |
93 |
|
93 | |||
94 | #navigation li a{ |
|
94 | #navigation li a{ | |
95 | display:block; |
|
95 | display:block; | |
96 | padding:0px 10px 0px 22px; |
|
96 | padding:0px 10px 0px 22px; | |
97 | font-size:0.8em; |
|
97 | font-size:0.8em; | |
98 | font-weight:normal; |
|
98 | font-weight:normal; | |
99 | text-decoration:none; |
|
99 | text-decoration:none; | |
100 | background-color:inherit; |
|
100 | background-color:inherit; | |
101 | color: #ffffff; |
|
101 | color: #ffffff; | |
102 | } |
|
102 | } | |
103 |
|
103 | |||
104 | #navigation li.submenu {background:url(../images/arrow_down.png) 96% 80% no-repeat;} |
|
104 | #navigation li.submenu {background:url(../images/arrow_down.png) 96% 80% no-repeat;} | |
105 | #navigation li.submenu a {padding:0px 16px 0px 22px;} |
|
105 | #navigation li.submenu a {padding:0px 16px 0px 22px;} | |
106 | * html #navigation a {width:1%;} |
|
106 | * html #navigation a {width:1%;} | |
107 |
|
107 | |||
108 | #navigation .selected,#navigation a:hover{ |
|
108 | #navigation .selected,#navigation a:hover{ | |
109 | color:#ffffff; |
|
109 | color:#ffffff; | |
110 | text-decoration:none; |
|
110 | text-decoration:none; | |
111 | background-color: #80b0da; |
|
111 | background-color: #80b0da; | |
112 | } |
|
112 | } | |
113 |
|
113 | |||
114 | /**************** Icons *******************/ |
|
114 | /**************** Icons *******************/ | |
115 | .icon { |
|
115 | .icon { | |
116 | background-position: 0% 40%; |
|
116 | background-position: 0% 40%; | |
117 | background-repeat: no-repeat; |
|
117 | background-repeat: no-repeat; | |
118 | padding-left: 20px; |
|
118 | padding-left: 20px; | |
119 | padding-top: 2px; |
|
119 | padding-top: 2px; | |
120 | padding-bottom: 3px; |
|
120 | padding-bottom: 3px; | |
121 | vertical-align: middle; |
|
121 | vertical-align: middle; | |
122 | } |
|
122 | } | |
123 |
|
123 | |||
124 | #navigation .icon { |
|
124 | #navigation .icon { | |
125 | background-position: 4px 50%; |
|
125 | background-position: 4px 50%; | |
126 | } |
|
126 | } | |
127 |
|
127 | |||
128 | .icon22 { |
|
128 | .icon22 { | |
129 | background-position: 0% 40%; |
|
129 | background-position: 0% 40%; | |
130 | background-repeat: no-repeat; |
|
130 | background-repeat: no-repeat; | |
131 | padding-left: 26px; |
|
131 | padding-left: 26px; | |
132 | line-height: 22px; |
|
132 | line-height: 22px; | |
133 | vertical-align: middle; |
|
133 | vertical-align: middle; | |
134 | } |
|
134 | } | |
135 |
|
135 | |||
136 | .icon-add { background-image: url(../images/add.png); } |
|
136 | .icon-add { background-image: url(../images/add.png); } | |
137 | .icon-edit { background-image: url(../images/edit.png); } |
|
137 | .icon-edit { background-image: url(../images/edit.png); } | |
138 | .icon-del { background-image: url(../images/delete.png); } |
|
138 | .icon-del { background-image: url(../images/delete.png); } | |
139 | .icon-move { background-image: url(../images/move.png); } |
|
139 | .icon-move { background-image: url(../images/move.png); } | |
140 | .icon-save { background-image: url(../images/save.png); } |
|
140 | .icon-save { background-image: url(../images/save.png); } | |
141 | .icon-cancel { background-image: url(../images/cancel.png); } |
|
141 | .icon-cancel { background-image: url(../images/cancel.png); } | |
142 | .icon-pdf { background-image: url(../images/pdf.png); } |
|
142 | .icon-pdf { background-image: url(../images/pdf.png); } | |
143 | .icon-csv { background-image: url(../images/csv.png); } |
|
143 | .icon-csv { background-image: url(../images/csv.png); } | |
144 | .icon-html { background-image: url(../images/html.png); } |
|
144 | .icon-html { background-image: url(../images/html.png); } | |
145 | .icon-txt { background-image: url(../images/txt.png); } |
|
145 | .icon-txt { background-image: url(../images/txt.png); } | |
146 | .icon-file { background-image: url(../images/file.png); } |
|
146 | .icon-file { background-image: url(../images/file.png); } | |
147 | .icon-folder { background-image: url(../images/folder.png); } |
|
147 | .icon-folder { background-image: url(../images/folder.png); } | |
148 | .icon-package { background-image: url(../images/package.png); } |
|
148 | .icon-package { background-image: url(../images/package.png); } | |
149 | .icon-home { background-image: url(../images/home.png); } |
|
149 | .icon-home { background-image: url(../images/home.png); } | |
150 | .icon-user { background-image: url(../images/user.png); } |
|
150 | .icon-user { background-image: url(../images/user.png); } | |
151 | .icon-mypage { background-image: url(../images/user_page.png); } |
|
151 | .icon-mypage { background-image: url(../images/user_page.png); } | |
152 | .icon-admin { background-image: url(../images/admin.png); } |
|
152 | .icon-admin { background-image: url(../images/admin.png); } | |
153 | .icon-projects { background-image: url(../images/projects.png); } |
|
153 | .icon-projects { background-image: url(../images/projects.png); } | |
154 | .icon-logout { background-image: url(../images/logout.png); } |
|
154 | .icon-logout { background-image: url(../images/logout.png); } | |
155 | .icon-help { background-image: url(../images/help.png); } |
|
155 | .icon-help { background-image: url(../images/help.png); } | |
156 | .icon-attachment { background-image: url(../images/attachment.png); } |
|
156 | .icon-attachment { background-image: url(../images/attachment.png); } | |
157 | .icon-index { background-image: url(../images/index.png); } |
|
157 | .icon-index { background-image: url(../images/index.png); } | |
158 | .icon-history { background-image: url(../images/history.png); } |
|
158 | .icon-history { background-image: url(../images/history.png); } | |
159 | .icon-feed { background-image: url(../images/feed.png); } |
|
159 | .icon-feed { background-image: url(../images/feed.png); } | |
160 | .icon-time { background-image: url(../images/time.png); } |
|
160 | .icon-time { background-image: url(../images/time.png); } | |
161 | .icon-stats { background-image: url(../images/stats.png); } |
|
161 | .icon-stats { background-image: url(../images/stats.png); } | |
162 | .icon-warning { background-image: url(../images/warning.png); } |
|
162 | .icon-warning { background-image: url(../images/warning.png); } | |
163 | .icon-fav { background-image: url(../images/fav.png); } |
|
163 | .icon-fav { background-image: url(../images/fav.png); } | |
164 | .icon-fav-off { background-image: url(../images/fav_off.png); } |
|
164 | .icon-fav-off { background-image: url(../images/fav_off.png); } | |
165 | .icon-reload { background-image: url(../images/reload.png); } |
|
165 | .icon-reload { background-image: url(../images/reload.png); } | |
166 | .icon-lock { background-image: url(../images/locked.png); } |
|
166 | .icon-lock { background-image: url(../images/locked.png); } | |
167 | .icon-unlock { background-image: url(../images/unlock.png); } |
|
167 | .icon-unlock { background-image: url(../images/unlock.png); } | |
168 |
|
168 | |||
169 | .icon22-projects { background-image: url(../images/22x22/projects.png); } |
|
169 | .icon22-projects { background-image: url(../images/22x22/projects.png); } | |
170 | .icon22-users { background-image: url(../images/22x22/users.png); } |
|
170 | .icon22-users { background-image: url(../images/22x22/users.png); } | |
171 | .icon22-tracker { background-image: url(../images/22x22/tracker.png); } |
|
171 | .icon22-tracker { background-image: url(../images/22x22/tracker.png); } | |
172 | .icon22-role { background-image: url(../images/22x22/role.png); } |
|
172 | .icon22-role { background-image: url(../images/22x22/role.png); } | |
173 | .icon22-workflow { background-image: url(../images/22x22/workflow.png); } |
|
173 | .icon22-workflow { background-image: url(../images/22x22/workflow.png); } | |
174 | .icon22-options { background-image: url(../images/22x22/options.png); } |
|
174 | .icon22-options { background-image: url(../images/22x22/options.png); } | |
175 | .icon22-notifications { background-image: url(../images/22x22/notifications.png); } |
|
175 | .icon22-notifications { background-image: url(../images/22x22/notifications.png); } | |
176 | .icon22-authent { background-image: url(../images/22x22/authent.png); } |
|
176 | .icon22-authent { background-image: url(../images/22x22/authent.png); } | |
177 | .icon22-info { background-image: url(../images/22x22/info.png); } |
|
177 | .icon22-info { background-image: url(../images/22x22/info.png); } | |
178 | .icon22-comment { background-image: url(../images/22x22/comment.png); } |
|
178 | .icon22-comment { background-image: url(../images/22x22/comment.png); } | |
179 | .icon22-package { background-image: url(../images/22x22/package.png); } |
|
179 | .icon22-package { background-image: url(../images/22x22/package.png); } | |
180 | .icon22-settings { background-image: url(../images/22x22/settings.png); } |
|
180 | .icon22-settings { background-image: url(../images/22x22/settings.png); } | |
181 |
|
181 | |||
182 | /**************** Content styles ****************/ |
|
182 | /**************** Content styles ****************/ | |
183 |
|
183 | |||
184 | html>body #content { |
|
184 | html>body #content { | |
185 | height: auto; |
|
185 | height: auto; | |
186 | min-height: 500px; |
|
186 | min-height: 500px; | |
187 | } |
|
187 | } | |
188 |
|
188 | |||
189 | #content{ |
|
189 | #content{ | |
190 | width: auto; |
|
190 | width: auto; | |
191 | height:500px; |
|
191 | height:500px; | |
192 | font-size:0.9em; |
|
192 | font-size:0.9em; | |
193 | padding:20px 10px 10px 20px; |
|
193 | padding:20px 10px 10px 20px; | |
194 | margin-left: 120px; |
|
194 | margin-left: 120px; | |
195 | border-left: 1px dashed #c0c0c0; |
|
195 | border-left: 1px dashed #c0c0c0; | |
196 |
|
196 | |||
197 | } |
|
197 | } | |
198 |
|
198 | |||
199 | #content h2, #content div.wiki h1 { |
|
199 | #content h2, #content div.wiki h1 { | |
200 | display:block; |
|
200 | display:block; | |
201 | margin:0 0 16px 0; |
|
201 | margin:0 0 16px 0; | |
202 | font-size:1.7em; |
|
202 | font-size:1.7em; | |
203 | font-weight:normal; |
|
203 | font-weight:normal; | |
204 | letter-spacing:-1px; |
|
204 | letter-spacing:-1px; | |
205 | color:#606060; |
|
205 | color:#606060; | |
206 | background-color:inherit; |
|
206 | background-color:inherit; | |
207 | font-family: Trebuchet MS,Georgia,"Times New Roman",serif; |
|
207 | font-family: Trebuchet MS,Georgia,"Times New Roman",serif; | |
208 | } |
|
208 | } | |
209 |
|
209 | |||
210 | #content h2 a{font-weight:normal;} |
|
210 | #content h2 a{font-weight:normal;} | |
211 | #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;} |
|
211 | #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;} | |
212 | #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;} |
|
212 | #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;} | |
213 | #content a:hover,#subcontent a:hover{text-decoration:underline;} |
|
213 | #content a:hover,#subcontent a:hover{text-decoration:underline;} | |
214 | #content ul,#content ol{margin:0 5px 16px 35px;} |
|
214 | #content ul,#content ol{margin:0 5px 16px 35px;} | |
215 | #content dl{margin:0 5px 10px 25px;} |
|
215 | #content dl{margin:0 5px 10px 25px;} | |
216 | #content dt{font-weight:bold; margin-bottom:5px;} |
|
216 | #content dt{font-weight:bold; margin-bottom:5px;} | |
217 | #content dd{margin:0 0 10px 15px;} |
|
217 | #content dd{margin:0 0 10px 15px;} | |
218 |
|
218 | |||
219 | #content .tabs{height: 2.6em;} |
|
219 | #content .tabs{height: 2.6em;} | |
220 | #content .tabs ul{margin:0;} |
|
220 | #content .tabs ul{margin:0;} | |
221 | #content .tabs ul li{ |
|
221 | #content .tabs ul li{ | |
222 | float:left; |
|
222 | float:left; | |
223 | list-style-type:none; |
|
223 | list-style-type:none; | |
224 | white-space:nowrap; |
|
224 | white-space:nowrap; | |
225 | margin-right:8px; |
|
225 | margin-right:8px; | |
226 | background:#fff; |
|
226 | background:#fff; | |
227 | } |
|
227 | } | |
228 | #content .tabs ul li a{ |
|
228 | #content .tabs ul li a{ | |
229 | display:block; |
|
229 | display:block; | |
230 | font-size: 0.9em; |
|
230 | font-size: 0.9em; | |
231 | text-decoration:none; |
|
231 | text-decoration:none; | |
232 | line-height:1em; |
|
232 | line-height:1em; | |
233 | padding:4px; |
|
233 | padding:4px; | |
234 | border: 1px solid #c0c0c0; |
|
234 | border: 1px solid #c0c0c0; | |
235 | } |
|
235 | } | |
236 |
|
236 | |||
237 | #content .tabs ul li a.selected, #content .tabs ul li a:hover{ |
|
237 | #content .tabs ul li a.selected, #content .tabs ul li a:hover{ | |
238 | background-color: #80b0da; |
|
238 | background-color: #80b0da; | |
239 | border: 1px solid #80b0da; |
|
239 | border: 1px solid #80b0da; | |
240 | color: #fff; |
|
240 | color: #fff; | |
241 | text-decoration:none; |
|
241 | text-decoration:none; | |
242 | } |
|
242 | } | |
243 |
|
243 | |||
244 | /***********************************************/ |
|
244 | /***********************************************/ | |
245 |
|
245 | |||
246 | form {display: inline;} |
|
246 | form {display: inline;} | |
247 | blockquote {padding-left: 6px; border-left: 2px solid #ccc;} |
|
247 | blockquote {padding-left: 6px; border-left: 2px solid #ccc;} | |
248 | input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;} |
|
248 | input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;} | |
249 |
|
249 | |||
250 | input.button-small {font-size: 0.8em;} |
|
250 | input.button-small {font-size: 0.8em;} | |
251 | textarea.wiki-edit { width: 99.5%; } |
|
251 | textarea.wiki-edit { width: 99.5%; } | |
252 | .select-small {font-size: 0.8em;} |
|
252 | .select-small {font-size: 0.8em;} | |
253 | label {font-weight: bold; font-size: 1em; color: #505050;} |
|
253 | label {font-weight: bold; font-size: 1em; color: #505050;} | |
254 | fieldset {border:1px solid #c0c0c0; padding: 6px;} |
|
254 | fieldset {border:1px solid #c0c0c0; padding: 6px;} | |
255 | legend {color: #505050;} |
|
255 | legend {color: #505050;} | |
256 | .required {color: #bb0000;} |
|
256 | .required {color: #bb0000;} | |
257 | .odd {background-color:#f6f7f8;} |
|
257 | .odd {background-color:#f6f7f8;} | |
258 | .even {background-color: #fff;} |
|
258 | .even {background-color: #fff;} | |
259 | hr { border:0; border-top: dotted 1px #fff; border-bottom: dotted 1px #c0c0c0; } |
|
259 | hr { border:0; border-top: dotted 1px #fff; border-bottom: dotted 1px #c0c0c0; } | |
260 | table p {margin:0; padding:0;} |
|
260 | table p {margin:0; padding:0;} | |
261 |
|
261 | |||
262 | .highlight { background-color: #FCFD8D;} |
|
262 | .highlight { background-color: #FCFD8D;} | |
263 |
|
263 | |||
264 | div.square { |
|
264 | div.square { | |
265 | border: 1px solid #999; |
|
265 | border: 1px solid #999; | |
266 | float: left; |
|
266 | float: left; | |
267 | margin: .4em .5em 0 0; |
|
267 | margin: .4em .5em 0 0; | |
268 | overflow: hidden; |
|
268 | overflow: hidden; | |
269 | width: .6em; height: .6em; |
|
269 | width: .6em; height: .6em; | |
270 | } |
|
270 | } | |
271 |
|
271 | |||
272 | ul.documents { |
|
272 | ul.documents { | |
273 | list-style-type: none; |
|
273 | list-style-type: none; | |
274 | padding: 0; |
|
274 | padding: 0; | |
275 | margin: 0; |
|
275 | margin: 0; | |
276 | } |
|
276 | } | |
277 |
|
277 | |||
278 | ul.documents li { |
|
278 | ul.documents li { | |
279 | background-image: url(../images/32x32/file.png); |
|
279 | background-image: url(../images/32x32/file.png); | |
280 | background-repeat: no-repeat; |
|
280 | background-repeat: no-repeat; | |
281 | background-position: 0 1px; |
|
281 | background-position: 0 1px; | |
282 | padding-left: 36px; |
|
282 | padding-left: 36px; | |
283 | margin-bottom: 10px; |
|
283 | margin-bottom: 10px; | |
284 | margin-left: -37px; |
|
284 | margin-left: -37px; | |
285 | } |
|
285 | } | |
286 |
|
286 | |||
287 | /********** Table used to display lists of things ***********/ |
|
287 | /********** Table used to display lists of things ***********/ | |
288 |
|
288 | |||
289 | table.list { |
|
289 | table.list { | |
290 | width:100%; |
|
290 | width:100%; | |
291 | border-collapse: collapse; |
|
291 | border-collapse: collapse; | |
292 | border: 1px dotted #d0d0d0; |
|
292 | border: 1px dotted #d0d0d0; | |
293 | margin-bottom: 6px; |
|
293 | margin-bottom: 6px; | |
294 | } |
|
294 | } | |
295 |
|
295 | |||
296 | table.with-cells td { |
|
296 | table.with-cells td { | |
297 | border: 1px solid #d7d7d7; |
|
297 | border: 1px solid #d7d7d7; | |
298 | } |
|
298 | } | |
299 |
|
299 | |||
300 | table.list td { |
|
300 | table.list td { | |
301 | padding:2px; |
|
301 | padding:2px; | |
302 | } |
|
302 | } | |
303 |
|
303 | |||
304 | table.list thead th { |
|
304 | table.list thead th { | |
305 | text-align: center; |
|
305 | text-align: center; | |
306 | background: #eee; |
|
306 | background: #eee; | |
307 | border: 1px solid #d7d7d7; |
|
307 | border: 1px solid #d7d7d7; | |
308 | color: #777; |
|
308 | color: #777; | |
309 | } |
|
309 | } | |
310 |
|
310 | |||
311 | table.list tbody th { |
|
311 | table.list tbody th { | |
312 | font-weight: bold; |
|
312 | font-weight: bold; | |
313 | background: #eed; |
|
313 | background: #eed; | |
314 | border: 1px solid #d7d7d7; |
|
314 | border: 1px solid #d7d7d7; | |
315 | color: #777; |
|
315 | color: #777; | |
316 | } |
|
316 | } | |
317 |
|
317 | |||
318 | /*========== Drop down menu ==============*/ |
|
318 | /*========== Drop down menu ==============*/ | |
319 | div.menu { |
|
319 | div.menu { | |
320 | background-color: #FFFFFF; |
|
320 | background-color: #FFFFFF; | |
321 | border-style: solid; |
|
321 | border-style: solid; | |
322 | border-width: 1px; |
|
322 | border-width: 1px; | |
323 | border-color: #7F9DB9; |
|
323 | border-color: #7F9DB9; | |
324 | position: absolute; |
|
324 | position: absolute; | |
325 | top: 0px; |
|
325 | top: 0px; | |
326 | left: 0px; |
|
326 | left: 0px; | |
327 | padding: 0; |
|
327 | padding: 0; | |
328 | visibility: hidden; |
|
328 | visibility: hidden; | |
329 | z-index: 101; |
|
329 | z-index: 101; | |
330 | } |
|
330 | } | |
331 |
|
331 | |||
332 | div.menu a.menuItem { |
|
332 | div.menu a.menuItem { | |
333 | font-size: 10px; |
|
333 | font-size: 10px; | |
334 | font-weight: normal; |
|
334 | font-weight: normal; | |
335 | line-height: 2em; |
|
335 | line-height: 2em; | |
336 | color: #000000; |
|
336 | color: #000000; | |
337 | background-color: #FFFFFF; |
|
337 | background-color: #FFFFFF; | |
338 | cursor: default; |
|
338 | cursor: default; | |
339 | display: block; |
|
339 | display: block; | |
340 | padding: 0 1em; |
|
340 | padding: 0 1em; | |
341 | margin: 0; |
|
341 | margin: 0; | |
342 | border: 0; |
|
342 | border: 0; | |
343 | text-decoration: none; |
|
343 | text-decoration: none; | |
344 | white-space: nowrap; |
|
344 | white-space: nowrap; | |
345 | } |
|
345 | } | |
346 |
|
346 | |||
347 | div.menu a.menuItem:hover, div.menu a.menuItemHighlight { |
|
347 | div.menu a.menuItem:hover, div.menu a.menuItemHighlight { | |
348 | background-color: #80b0da; |
|
348 | background-color: #80b0da; | |
349 | color: #ffffff; |
|
349 | color: #ffffff; | |
350 | } |
|
350 | } | |
351 |
|
351 | |||
352 | div.menu a.menuItem span.menuItemText {} |
|
352 | div.menu a.menuItem span.menuItemText {} | |
353 |
|
353 | |||
354 | div.menu a.menuItem span.menuItemArrow { |
|
354 | div.menu a.menuItem span.menuItemArrow { | |
355 | margin-right: -.75em; |
|
355 | margin-right: -.75em; | |
356 | } |
|
356 | } | |
357 |
|
357 | |||
358 | /**************** Sidebar styles ****************/ |
|
358 | /**************** Sidebar styles ****************/ | |
359 |
|
359 | |||
360 | #subcontent{ |
|
360 | #subcontent{ | |
361 | position: absolute; |
|
361 | position: absolute; | |
362 | left: 0px; |
|
362 | left: 0px; | |
363 | width:95px; |
|
363 | width:95px; | |
364 | padding:20px 20px 10px 5px; |
|
364 | padding:20px 20px 10px 5px; | |
365 | overflow: hidden; |
|
365 | overflow: hidden; | |
366 | } |
|
366 | } | |
367 |
|
367 | |||
368 | #subcontent h2{ |
|
368 | #subcontent h2{ | |
369 | display:block; |
|
369 | display:block; | |
370 | margin:0 0 5px 0; |
|
370 | margin:0 0 5px 0; | |
371 | font-size:1.0em; |
|
371 | font-size:1.0em; | |
372 | font-weight:bold; |
|
372 | font-weight:bold; | |
373 | text-align:left; |
|
373 | text-align:left; | |
374 | color:#606060; |
|
374 | color:#606060; | |
375 | background-color:inherit; |
|
375 | background-color:inherit; | |
376 | font-family: Trebuchet MS,Georgia,"Times New Roman",serif; |
|
376 | font-family: Trebuchet MS,Georgia,"Times New Roman",serif; | |
377 | } |
|
377 | } | |
378 |
|
378 | |||
379 | #subcontent p{margin:0 0 16px 0; font-size:0.9em;} |
|
379 | #subcontent p{margin:0 0 16px 0; font-size:0.9em;} | |
380 |
|
380 | |||
381 | /**************** Menublock styles ****************/ |
|
381 | /**************** Menublock styles ****************/ | |
382 |
|
382 | |||
383 | .menublock{margin:0 0 20px 8px; font-size:0.8em;} |
|
383 | .menublock{margin:0 0 20px 8px; font-size:0.8em;} | |
384 | .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;} |
|
384 | .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;} | |
385 | .menublock li a{font-weight:bold; text-decoration:none;} |
|
385 | .menublock li a{font-weight:bold; text-decoration:none;} | |
386 | .menublock li a:hover{text-decoration:none;} |
|
386 | .menublock li a:hover{text-decoration:none;} | |
387 | .menublock li ul{margin:0; font-size:1em; font-weight:normal;} |
|
387 | .menublock li ul{margin:0; font-size:1em; font-weight:normal;} | |
388 | .menublock li ul li{margin-bottom:0;} |
|
388 | .menublock li ul li{margin-bottom:0;} | |
389 | .menublock li ul a{font-weight:normal;} |
|
389 | .menublock li ul a{font-weight:normal;} | |
390 |
|
390 | |||
391 | /**************** Footer styles ****************/ |
|
391 | /**************** Footer styles ****************/ | |
392 |
|
392 | |||
393 | #footer{ |
|
393 | #footer{ | |
394 | clear:both; |
|
394 | clear:both; | |
395 | padding:5px 0; |
|
395 | padding:5px 0; | |
396 | margin:0; |
|
396 | margin:0; | |
397 | font-size:0.9em; |
|
397 | font-size:0.9em; | |
398 | color:#f0f0f0; |
|
398 | color:#f0f0f0; | |
399 | background:#467aa7; |
|
399 | background:#467aa7; | |
400 | } |
|
400 | } | |
401 |
|
401 | |||
402 | #footer p{padding:0; margin:0; text-align:center;} |
|
402 | #footer p{padding:0; margin:0; text-align:center;} | |
403 | #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;} |
|
403 | #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;} | |
404 | #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;} |
|
404 | #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;} | |
405 |
|
405 | |||
406 | /**************** Misc classes and styles ****************/ |
|
406 | /**************** Misc classes and styles ****************/ | |
407 |
|
407 | |||
408 | .splitcontentleft{float:left; width:49%;} |
|
408 | .splitcontentleft{float:left; width:49%;} | |
409 | .splitcontentright{float:right; width:49%;} |
|
409 | .splitcontentright{float:right; width:49%;} | |
410 | .clear{clear:both;} |
|
410 | .clear{clear:both;} | |
411 | .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;} |
|
411 | .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;} | |
412 | .hide{display:none;} |
|
412 | .hide{display:none;} | |
413 | .textcenter{text-align:center;} |
|
413 | .textcenter{text-align:center;} | |
414 | .textright{text-align:right;} |
|
414 | .textright{text-align:right;} | |
415 | .important{color:#f02025; background-color:inherit; font-weight:bold;} |
|
415 | .important{color:#f02025; background-color:inherit; font-weight:bold;} | |
416 |
|
416 | |||
417 | .box{ |
|
417 | .box{ | |
418 | margin:0 0 20px 0; |
|
418 | margin:0 0 20px 0; | |
419 | padding:10px; |
|
419 | padding:10px; | |
420 | border:1px solid #c0c0c0; |
|
420 | border:1px solid #c0c0c0; | |
421 | background-color:#fafbfc; |
|
421 | background-color:#fafbfc; | |
422 | color:#505050; |
|
422 | color:#505050; | |
423 | line-height:1.5em; |
|
423 | line-height:1.5em; | |
424 | } |
|
424 | } | |
425 |
|
425 | |||
426 | a.close-icon { |
|
426 | a.close-icon { | |
427 | display:block; |
|
427 | display:block; | |
428 | margin-top:3px; |
|
428 | margin-top:3px; | |
429 | overflow:hidden; |
|
429 | overflow:hidden; | |
430 | width:12px; |
|
430 | width:12px; | |
431 | height:12px; |
|
431 | height:12px; | |
432 | background-repeat: no-repeat; |
|
432 | background-repeat: no-repeat; | |
433 | cursor:pointer; |
|
433 | cursor:pointer; | |
434 | background-image:url('../images/close.png'); |
|
434 | background-image:url('../images/close.png'); | |
435 | } |
|
435 | } | |
436 |
|
436 | |||
437 | a.close-icon:hover { |
|
437 | a.close-icon:hover { | |
438 | background-image:url('../images/close_hl.png'); |
|
438 | background-image:url('../images/close_hl.png'); | |
439 | } |
|
439 | } | |
440 |
|
440 | |||
441 | .rightbox{ |
|
441 | .rightbox{ | |
442 | background: #fafbfc; |
|
442 | background: #fafbfc; | |
443 | border: 1px solid #c0c0c0; |
|
443 | border: 1px solid #c0c0c0; | |
444 | float: right; |
|
444 | float: right; | |
445 | padding: 8px; |
|
445 | padding: 8px; | |
446 | position: relative; |
|
446 | position: relative; | |
447 | margin: 0 5px 5px; |
|
447 | margin: 0 5px 5px; | |
448 | } |
|
448 | } | |
449 |
|
449 | |||
450 | div.attachments {padding-left: 6px; border-left: 2px solid #ccc; margin-bottom: 8px;} |
|
450 | div.attachments {padding-left: 6px; border-left: 2px solid #ccc; margin-bottom: 8px;} | |
451 | div.attachments p {margin-bottom:2px;} |
|
451 | div.attachments p {margin-bottom:2px;} | |
452 |
|
452 | |||
453 | .overlay{ |
|
453 | .overlay{ | |
454 | position: absolute; |
|
454 | position: absolute; | |
455 | margin-left:0; |
|
455 | margin-left:0; | |
456 | z-index: 50; |
|
456 | z-index: 50; | |
457 | } |
|
457 | } | |
458 |
|
458 | |||
459 | .layout-active { |
|
459 | .layout-active { | |
460 | background: #ECF3E1; |
|
460 | background: #ECF3E1; | |
461 | } |
|
461 | } | |
462 |
|
462 | |||
463 | .block-receiver { |
|
463 | .block-receiver { | |
464 | border:1px dashed #c0c0c0; |
|
464 | border:1px dashed #c0c0c0; | |
465 | margin-bottom: 20px; |
|
465 | margin-bottom: 20px; | |
466 | padding: 15px 0 15px 0; |
|
466 | padding: 15px 0 15px 0; | |
467 | } |
|
467 | } | |
468 |
|
468 | |||
469 | .mypage-box { |
|
469 | .mypage-box { | |
470 | margin:0 0 20px 0; |
|
470 | margin:0 0 20px 0; | |
471 | color:#505050; |
|
471 | color:#505050; | |
472 | line-height:1.5em; |
|
472 | line-height:1.5em; | |
473 | } |
|
473 | } | |
474 |
|
474 | |||
475 | .handle { |
|
475 | .handle { | |
476 | cursor: move; |
|
476 | cursor: move; | |
477 | } |
|
477 | } | |
478 |
|
478 | |||
479 | .login { |
|
479 | .login { | |
480 | width: 50%; |
|
480 | width: 50%; | |
481 | text-align: left; |
|
481 | text-align: left; | |
482 | } |
|
482 | } | |
483 |
|
483 | |||
484 | img.calendar-trigger { |
|
484 | img.calendar-trigger { | |
485 | cursor: pointer; |
|
485 | cursor: pointer; | |
486 | vertical-align: middle; |
|
486 | vertical-align: middle; | |
487 | margin-left: 4px; |
|
487 | margin-left: 4px; | |
488 | } |
|
488 | } | |
489 |
|
489 | |||
490 | #history p { |
|
490 | #history p { | |
491 | margin-left: 34px; |
|
491 | margin-left: 34px; | |
492 | } |
|
492 | } | |
493 |
|
493 | |||
494 | .progress { |
|
494 | .progress { | |
495 | border: 1px solid #D7D7D7; |
|
495 | border: 1px solid #D7D7D7; | |
496 | border-collapse: collapse; |
|
496 | border-collapse: collapse; | |
497 | border-spacing: 0pt; |
|
497 | border-spacing: 0pt; | |
498 | empty-cells: show; |
|
498 | empty-cells: show; | |
499 | padding: 3px; |
|
499 | padding: 3px; | |
500 | width: 40em; |
|
500 | width: 40em; | |
501 | text-align: center; |
|
501 | text-align: center; | |
502 | } |
|
502 | } | |
503 |
|
503 | |||
504 | .progress td { height: 1em; } |
|
504 | .progress td { height: 1em; } | |
505 | .progress .closed { background: #BAE0BA none repeat scroll 0%; } |
|
505 | .progress .closed { background: #BAE0BA none repeat scroll 0%; } | |
506 | .progress .open { background: #FFF none repeat scroll 0%; } |
|
506 | .progress .open { background: #FFF none repeat scroll 0%; } | |
507 |
|
507 | |||
508 | /***** Contextual links div *****/ |
|
508 | /***** Contextual links div *****/ | |
509 | .contextual { |
|
509 | .contextual { | |
510 | float: right; |
|
510 | float: right; | |
511 | font-size: 0.8em; |
|
511 | font-size: 0.8em; | |
512 | line-height: 16px; |
|
512 | line-height: 16px; | |
513 | padding: 2px; |
|
513 | padding: 2px; | |
514 | } |
|
514 | } | |
515 |
|
515 | |||
516 | .contextual select, .contextual input { |
|
516 | .contextual select, .contextual input { | |
517 | font-size: 1em; |
|
517 | font-size: 1em; | |
518 | } |
|
518 | } | |
519 |
|
519 | |||
520 | /***** Gantt chart *****/ |
|
520 | /***** Gantt chart *****/ | |
521 | .gantt_hdr { |
|
521 | .gantt_hdr { | |
522 | position:absolute; |
|
522 | position:absolute; | |
523 | top:0; |
|
523 | top:0; | |
524 | height:16px; |
|
524 | height:16px; | |
525 | border-top: 1px solid #c0c0c0; |
|
525 | border-top: 1px solid #c0c0c0; | |
526 | border-bottom: 1px solid #c0c0c0; |
|
526 | border-bottom: 1px solid #c0c0c0; | |
527 | border-right: 1px solid #c0c0c0; |
|
527 | border-right: 1px solid #c0c0c0; | |
528 | text-align: center; |
|
528 | text-align: center; | |
529 | overflow: hidden; |
|
529 | overflow: hidden; | |
530 | } |
|
530 | } | |
531 |
|
531 | |||
532 | .task { |
|
532 | .task { | |
533 | position: absolute; |
|
533 | position: absolute; | |
534 | height:8px; |
|
534 | height:8px; | |
535 | font-size:0.8em; |
|
535 | font-size:0.8em; | |
536 | color:#888; |
|
536 | color:#888; | |
537 | padding:0; |
|
537 | padding:0; | |
538 | margin:0; |
|
538 | margin:0; | |
539 | line-height:0.8em; |
|
539 | line-height:0.8em; | |
540 | } |
|
540 | } | |
541 |
|
541 | |||
542 | .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; } |
|
542 | .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; } | |
543 | .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; } |
|
543 | .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; } | |
544 | .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; } |
|
544 | .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; } | |
545 | .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; } |
|
545 | .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; } | |
546 |
|
546 | |||
547 | /***** Tooltips ******/ |
|
547 | /***** Tooltips ******/ | |
548 | .tooltip{position:relative;z-index:24;} |
|
548 | .tooltip{position:relative;z-index:24;} | |
549 | .tooltip:hover{z-index:25;color:#000;} |
|
549 | .tooltip:hover{z-index:25;color:#000;} | |
550 | .tooltip span.tip{display: none; text-align:left;} |
|
550 | .tooltip span.tip{display: none; text-align:left;} | |
551 |
|
551 | |||
552 | div.tooltip:hover span.tip{ |
|
552 | div.tooltip:hover span.tip{ | |
553 | display:block; |
|
553 | display:block; | |
554 | position:absolute; |
|
554 | position:absolute; | |
555 | top:12px; left:24px; width:270px; |
|
555 | top:12px; left:24px; width:270px; | |
556 | border:1px solid #555; |
|
556 | border:1px solid #555; | |
557 | background-color:#fff; |
|
557 | background-color:#fff; | |
558 | padding: 4px; |
|
558 | padding: 4px; | |
559 | font-size: 0.8em; |
|
559 | font-size: 0.8em; | |
560 | color:#505050; |
|
560 | color:#505050; | |
561 | } |
|
561 | } | |
562 |
|
562 | |||
563 | /***** CSS FORM ******/ |
|
563 | /***** CSS FORM ******/ | |
564 | .tabular p{ |
|
564 | .tabular p{ | |
565 | margin: 0; |
|
565 | margin: 0; | |
566 | padding: 5px 0 8px 0; |
|
566 | padding: 5px 0 8px 0; | |
567 | padding-left: 180px; /*width of left column containing the label elements*/ |
|
567 | padding-left: 180px; /*width of left column containing the label elements*/ | |
568 | height: 1%; |
|
568 | height: 1%; | |
|
569 | clear:both; | |||
569 | } |
|
570 | } | |
570 |
|
571 | |||
571 | .tabular label{ |
|
572 | .tabular label{ | |
572 | font-weight: bold; |
|
573 | font-weight: bold; | |
573 | float: left; |
|
574 | float: left; | |
574 | margin-left: -180px; /*width of left column*/ |
|
575 | margin-left: -180px; /*width of left column*/ | |
|
576 | margin-bottom: 10px; | |||
575 | width: 175px; /*width of labels. Should be smaller than left column to create some right |
|
577 | width: 175px; /*width of labels. Should be smaller than left column to create some right | |
576 | margin*/ |
|
578 | margin*/ | |
577 | } |
|
579 | } | |
578 |
|
580 | |||
579 | .error { |
|
581 | .error { | |
580 | color: #cc0000; |
|
582 | color: #cc0000; | |
581 | } |
|
583 | } | |
582 |
|
584 | |||
583 | #settings .tabular p{ padding-left: 300px; } |
|
585 | #settings .tabular p{ padding-left: 300px; } | |
584 | #settings .tabular label{ margin-left: -300px; width: 295px; } |
|
586 | #settings .tabular label{ margin-left: -300px; width: 295px; } | |
585 |
|
587 | |||
586 | /*.threepxfix class below: |
|
588 | /*.threepxfix class below: | |
587 | Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents. |
|
589 | Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents. | |
588 | to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html |
|
590 | to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html | |
589 | */ |
|
591 | */ | |
590 |
|
592 | |||
591 | * html .threepxfix{ |
|
593 | * html .threepxfix{ | |
592 | margin-left: 3px; |
|
594 | margin-left: 3px; | |
593 | } |
|
595 | } | |
594 |
|
596 | |||
595 | /***** Wiki sections ****/ |
|
597 | /***** Wiki sections ****/ | |
596 | #content div.wiki { font-size: 110%} |
|
598 | #content div.wiki { font-size: 110%} | |
597 |
|
599 | |||
598 | #content div.wiki h2, div.wiki h3 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; color:#606060; } |
|
600 | #content div.wiki h2, div.wiki h3 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; color:#606060; } | |
599 | #content div.wiki h2 { font-size: 1.4em;} |
|
601 | #content div.wiki h2 { font-size: 1.4em;} | |
600 | #content div.wiki h3 { font-size: 1.2em;} |
|
602 | #content div.wiki h3 { font-size: 1.2em;} | |
601 |
|
603 | |||
602 | div.wiki table { |
|
604 | div.wiki table { | |
603 | border: 1px solid #505050; |
|
605 | border: 1px solid #505050; | |
604 | border-collapse: collapse; |
|
606 | border-collapse: collapse; | |
605 | } |
|
607 | } | |
606 |
|
608 | |||
607 | div.wiki table, div.wiki td { |
|
609 | div.wiki table, div.wiki td { | |
608 | border: 1px solid #bbb; |
|
610 | border: 1px solid #bbb; | |
609 | padding: 4px; |
|
611 | padding: 4px; | |
610 | } |
|
612 | } | |
611 |
|
613 | |||
612 | div.wiki a { |
|
614 | div.wiki a { | |
613 | background-position: 0% 60%; |
|
615 | background-position: 0% 60%; | |
614 | background-repeat: no-repeat; |
|
616 | background-repeat: no-repeat; | |
615 | padding-left: 12px; |
|
617 | padding-left: 12px; | |
616 | background-image: url(../images/external.png); |
|
618 | background-image: url(../images/external.png); | |
617 | } |
|
619 | } | |
618 |
|
620 | |||
619 | div.wiki a.wiki-page, div.wiki a.issue, div.wiki a.changeset { |
|
621 | div.wiki a.wiki-page, div.wiki a.issue, div.wiki a.changeset { | |
620 | padding-left: 0; |
|
622 | padding-left: 0; | |
621 | background-image: none; |
|
623 | background-image: none; | |
622 | } |
|
624 | } | |
623 |
|
625 | |||
624 | div.wiki code { |
|
626 | div.wiki code { | |
625 | font-size: 1.2em; |
|
627 | font-size: 1.2em; | |
626 | } |
|
628 | } | |
627 |
|
629 | |||
628 | div.wiki img { |
|
630 | div.wiki img { | |
629 | margin: 6px; |
|
631 | margin: 6px; | |
630 | } |
|
632 | } | |
631 |
|
633 | |||
632 | .diff_out{ |
|
634 | .diff_out{ | |
633 | background: #fcc; |
|
635 | background: #fcc; | |
634 | } |
|
636 | } | |
635 |
|
637 | |||
636 | .diff_in{ |
|
638 | .diff_in{ | |
637 | background: #cfc; |
|
639 | background: #cfc; | |
638 | } |
|
640 | } | |
639 |
|
641 | |||
640 | #preview .preview { background: #fafbfc url(../images/draft.png); } |
|
642 | #preview .preview { background: #fafbfc url(../images/draft.png); } | |
641 |
|
643 | |||
642 | #ajax-indicator { |
|
644 | #ajax-indicator { | |
643 | position: absolute; /* fixed not supported by IE */ |
|
645 | position: absolute; /* fixed not supported by IE */ | |
644 | background-color:#eee; |
|
646 | background-color:#eee; | |
645 | border: 1px solid #bbb; |
|
647 | border: 1px solid #bbb; | |
646 | top:35%; |
|
648 | top:35%; | |
647 | left:40%; |
|
649 | left:40%; | |
648 | width:20%; |
|
650 | width:20%; | |
649 | font-weight:bold; |
|
651 | font-weight:bold; | |
650 | text-align:center; |
|
652 | text-align:center; | |
651 | padding:0.6em; |
|
653 | padding:0.6em; | |
652 | z-index:100; |
|
654 | z-index:100; | |
653 | filter:alpha(opacity=50); |
|
655 | filter:alpha(opacity=50); | |
654 | -moz-opacity:0.5; |
|
656 | -moz-opacity:0.5; | |
655 | opacity: 0.5; |
|
657 | opacity: 0.5; | |
656 | -khtml-opacity: 0.5; |
|
658 | -khtml-opacity: 0.5; | |
657 | } |
|
659 | } | |
658 |
|
660 | |||
659 | html>body #ajax-indicator { position: fixed; } |
|
661 | html>body #ajax-indicator { position: fixed; } | |
660 |
|
662 | |||
661 | #ajax-indicator span { |
|
663 | #ajax-indicator span { | |
662 | background-position: 0% 40%; |
|
664 | background-position: 0% 40%; | |
663 | background-repeat: no-repeat; |
|
665 | background-repeat: no-repeat; | |
664 | background-image: url(../images/loading.gif); |
|
666 | background-image: url(../images/loading.gif); | |
665 | padding-left: 26px; |
|
667 | padding-left: 26px; | |
666 | vertical-align: bottom; |
|
668 | vertical-align: bottom; | |
667 | } |
|
669 | } | |
668 |
|
670 | |||
669 | /***** Flash & error messages ****/ |
|
671 | /***** Flash & error messages ****/ | |
670 | #flash div, #errorExplanation { |
|
672 | #flash div, #errorExplanation { | |
671 | padding: 4px 4px 4px 30px; |
|
673 | padding: 4px 4px 4px 30px; | |
672 | margin-bottom: 16px; |
|
674 | margin-bottom: 16px; | |
673 | font-size: 1.1em; |
|
675 | font-size: 1.1em; | |
674 | border: 2px solid; |
|
676 | border: 2px solid; | |
675 | } |
|
677 | } | |
676 |
|
678 | |||
677 | #flash div.error, #errorExplanation { |
|
679 | #flash div.error, #errorExplanation { | |
678 | background: url(../images/false.png) 8px 5px no-repeat; |
|
680 | background: url(../images/false.png) 8px 5px no-repeat; | |
679 | background-color: #ffe3e3; |
|
681 | background-color: #ffe3e3; | |
680 | border-color: #dd0000; |
|
682 | border-color: #dd0000; | |
681 | color: #550000; |
|
683 | color: #550000; | |
682 | } |
|
684 | } | |
683 |
|
685 | |||
684 | #flash div.notice { |
|
686 | #flash div.notice { | |
685 | background: url(../images/true.png) 8px 5px no-repeat; |
|
687 | background: url(../images/true.png) 8px 5px no-repeat; | |
686 | background-color: #dfffdf; |
|
688 | background-color: #dfffdf; | |
687 | border-color: #9fcf9f; |
|
689 | border-color: #9fcf9f; | |
688 | color: #005f00; |
|
690 | color: #005f00; | |
689 | } |
|
691 | } | |
690 |
|
692 | |||
691 | #errorExplanation ul { margin-bottom: 0px; } |
|
693 | #errorExplanation ul { margin-bottom: 0px; } | |
692 | #errorExplanation ul li { list-style: none; margin-left: -16px;} |
|
694 | #errorExplanation ul li { list-style: none; margin-left: -16px;} |
General Comments 0
You need to be logged in to leave comments.
Login now