##// END OF EJS Templates
added a setting option to set the feeds content limit...
Jean-Philippe Lang -
r343:143be7ee0292
parent child
Show More
@@ -1,100 +1,100
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 FeedsController < ApplicationController
18 class FeedsController < ApplicationController
19 before_filter :find_scope
19 before_filter :find_scope
20 session :off
20 session :off
21
21
22 helper :issues
22 helper :issues
23 include IssuesHelper
23 include IssuesHelper
24 helper :custom_fields
24 helper :custom_fields
25 include CustomFieldsHelper
25 include CustomFieldsHelper
26
26
27 # news feeds
27 # news feeds
28 def news
28 def news
29 News.with_scope(:find => @find_options) do
29 News.with_scope(:find => @find_options) do
30 @news = News.find :all, :order => "#{News.table_name}.created_on DESC", :limit => 10, :include => [ :author, :project ]
30 @news = News.find :all, :order => "#{News.table_name}.created_on DESC", :include => [ :author, :project ]
31 end
31 end
32 headers["Content-Type"] = "application/rss+xml"
32 headers["Content-Type"] = "application/rss+xml"
33 render :action => 'news_atom' if 'atom' == params[:format]
33 render :action => 'news_atom' if 'atom' == params[:format]
34 end
34 end
35
35
36 # issue feeds
36 # issue feeds
37 def issues
37 def issues
38 conditions = nil
38 conditions = nil
39
39
40 if params[:query_id]
40 if params[:query_id]
41 query = Query.find(params[:query_id])
41 query = Query.find(params[:query_id])
42 # ignore query if it's not valid
42 # ignore query if it's not valid
43 query = nil unless query.valid?
43 query = nil unless query.valid?
44 conditions = query.statement if query
44 conditions = query.statement if query
45 end
45 end
46
46
47 Issue.with_scope(:find => @find_options) do
47 Issue.with_scope(:find => @find_options) do
48 @issues = Issue.find :all, :include => [:project, :author, :tracker, :status],
48 @issues = Issue.find :all, :include => [:project, :author, :tracker, :status],
49 :order => "#{Issue.table_name}.created_on DESC",
49 :order => "#{Issue.table_name}.created_on DESC",
50 :conditions => conditions
50 :conditions => conditions
51 end
51 end
52 @title = (@project ? @project.name : Setting.app_title) + ": " + (query ? query.name : l(:label_reported_issues))
52 @title = (@project ? @project.name : Setting.app_title) + ": " + (query ? query.name : l(:label_reported_issues))
53 headers["Content-Type"] = "application/rss+xml"
53 headers["Content-Type"] = "application/rss+xml"
54 render :action => 'issues_atom' if 'atom' == params[:format]
54 render :action => 'issues_atom' if 'atom' == params[:format]
55 end
55 end
56
56
57 # issue changes feeds
57 # issue changes feeds
58 def history
58 def history
59 conditions = nil
59 conditions = nil
60
60
61 if params[:query_id]
61 if params[:query_id]
62 query = Query.find(params[:query_id])
62 query = Query.find(params[:query_id])
63 # ignore query if it's not valid
63 # ignore query if it's not valid
64 query = nil unless query.valid?
64 query = nil unless query.valid?
65 conditions = query.statement if query
65 conditions = query.statement if query
66 end
66 end
67
67
68 Journal.with_scope(:find => @find_options) do
68 Journal.with_scope(:find => @find_options) do
69 @journals = Journal.find :all, :include => [ :details, :user, {:issue => [:project, :author, :tracker, :status]} ],
69 @journals = Journal.find :all, :include => [ :details, :user, {:issue => [:project, :author, :tracker, :status]} ],
70 :order => "#{Journal.table_name}.created_on DESC",
70 :order => "#{Journal.table_name}.created_on DESC",
71 :conditions => conditions
71 :conditions => conditions
72 end
72 end
73
73
74 @title = (@project ? @project.name : Setting.app_title) + ": " + (query ? query.name : l(:label_reported_issues))
74 @title = (@project ? @project.name : Setting.app_title) + ": " + (query ? query.name : l(:label_reported_issues))
75 headers["Content-Type"] = "application/rss+xml"
75 headers["Content-Type"] = "application/rss+xml"
76 render :action => 'history_atom' if 'atom' == params[:format]
76 render :action => 'history_atom' if 'atom' == params[:format]
77 end
77 end
78
78
79 private
79 private
80 # override for feeds specific authentication
80 # override for feeds specific authentication
81 def check_if_login_required
81 def check_if_login_required
82 @user = User.find_by_rss_key(params[:key])
82 @user = User.find_by_rss_key(params[:key])
83 render(:nothing => true, :status => 403) and return false if !@user && Setting.login_required?
83 render(:nothing => true, :status => 403) and return false if !@user && Setting.login_required?
84 end
84 end
85
85
86 def find_scope
86 def find_scope
87 if params[:project_id]
87 if params[:project_id]
88 # project feed
88 # project feed
89 # check if project is public or if the user is a member
89 # check if project is public or if the user is a member
90 @project = Project.find(params[:project_id])
90 @project = Project.find(params[:project_id])
91 render(:nothing => true, :status => 403) and return false unless @project.is_public? || (@user && @user.role_for_project(@project.id))
91 render(:nothing => true, :status => 403) and return false unless @project.is_public? || (@user && @user.role_for_project(@project.id))
92 scope = ["#{Project.table_name}.id=?", params[:project_id].to_i]
92 scope = ["#{Project.table_name}.id=?", params[:project_id].to_i]
93 else
93 else
94 # global feed
94 # global feed
95 scope = ["#{Project.table_name}.is_public=?", true]
95 scope = ["#{Project.table_name}.is_public=?", true]
96 end
96 end
97 @find_options = {:conditions => scope, :limit => 10}
97 @find_options = {:conditions => scope, :limit => Setting.feeds_limit}
98 return true
98 return true
99 end
99 end
100 end
100 end
@@ -1,46 +1,51
1 <h2><%= l(:label_settings) %></h2>
1 <h2><%= l(:label_settings) %></h2>
2
2
3 <div id="settings">
3 <% form_tag({:action => 'edit'}, :class => "tabular") do %>
4 <% form_tag({:action => 'edit'}, :class => "tabular") do %>
4 <div class="box">
5 <div class="box">
5 <p><label><%= l(:setting_app_title) %></label>
6 <p><label><%= l(:setting_app_title) %></label>
6 <%= 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>
7
8
8 <p><label><%= l(:setting_app_subtitle) %></label>
9 <p><label><%= l(:setting_app_subtitle) %></label>
9 <%= 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>
10
11
11 <p><label><%= l(:setting_welcome_text) %></label>
12 <p><label><%= l(:setting_welcome_text) %></label>
12 <%= 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>
13
14
14 <p><label><%= l(:setting_default_language) %></label>
15 <p><label><%= l(:setting_default_language) %></label>
15 <%= 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>
16
17
17 <p><label><%= l(:setting_login_required) %></label>
18 <p><label><%= l(:setting_login_required) %></label>
18 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
19 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
19
20
20 <p><label><%= l(:setting_self_registration) %></label>
21 <p><label><%= l(:setting_self_registration) %></label>
21 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
22 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
22
23
23 <p><label><%= l(:label_password_lost) %></label>
24 <p><label><%= l(:label_password_lost) %></label>
24 <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p>
25 <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p>
25
26
26 <p><label><%= l(:setting_attachment_max_size) %></label>
27 <p><label><%= l(:setting_attachment_max_size) %></label>
27 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
28 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
28
29
29 <p><label><%= l(:setting_issues_export_limit) %></label>
30 <p><label><%= l(:setting_issues_export_limit) %></label>
30 <%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p>
31 <%= text_field_tag 'settings[issues_export_limit]', Setting.issues_export_limit, :size => 6 %></p>
31
32
32 <p><label><%= l(:setting_mail_from) %></label>
33 <p><label><%= l(:setting_mail_from) %></label>
33 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
34 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
34
35
35 <p><label><%= l(:setting_host_name) %></label>
36 <p><label><%= l(:setting_host_name) %></label>
36 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
37 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
37
38
38 <p><label><%= l(:setting_text_formatting) %></label>
39 <p><label><%= l(:setting_text_formatting) %></label>
39 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
40 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
40
41
41 <p><label><%= l(:setting_wiki_compression) %></label>
42 <p><label><%= l(:setting_wiki_compression) %></label>
42 <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p>
43 <%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p>
43
44
45 <p><label><%= l(:setting_feeds_limit) %></label>
46 <%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p>
47
44 </div>
48 </div>
45 <%= submit_tag l(:button_save) %>
49 <%= submit_tag l(:button_save) %>
50 </div>
46 <% end %> No newline at end of file
51 <% end %>
@@ -1,49 +1,52
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 No newline at end of file
49 default: localhost:3000
50 feeds_limit:
51 format: int
52 default: 15
@@ -1,393 +1,394
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: Bitte auserwählt
20 actionview_instancetag_blank_option: Bitte auserwählt
21
21
22 activerecord_error_inclusion: ist nicht in der Liste eingeschlossen
22 activerecord_error_inclusion: ist nicht in der Liste eingeschlossen
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: bringt nicht Bestätigung zusammen
25 activerecord_error_confirmation: bringt nicht Bestätigung zusammen
26 activerecord_error_accepted: muß angenommen werden
26 activerecord_error_accepted: muß angenommen werden
27 activerecord_error_empty: kann nicht leer sein
27 activerecord_error_empty: kann nicht leer sein
28 activerecord_error_blank: kann nicht leer sein
28 activerecord_error_blank: kann 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: ist die falsche Länge
31 activerecord_error_wrong_length: ist die falsche Länge
32 activerecord_error_taken: ist bereits genommen worden
32 activerecord_error_taken: ist bereits genommen worden
33 activerecord_error_not_a_number: ist nicht eine Zahl
33 activerecord_error_not_a_number: ist nicht eine Zahl
34 activerecord_error_not_a_date: ist nicht ein gültiges Datum
34 activerecord_error_not_a_date: ist nicht ein gültiges Datum
35 activerecord_error_greater_than_start_date: muß als grösser sein beginnen Datum
35 activerecord_error_greater_than_start_date: muß als grösser sein beginnen Datum
36
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%b %%d, %%Y (%%a)
39 general_fmt_date: %%b %%d, %%Y (%%a)
40 general_fmt_datetime: %%b %%d, %%Y (%%a), %%I:%%M %%p
40 general_fmt_datetime: %%b %%d, %%Y (%%a), %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'Nein'
43 general_text_No: 'Nein'
44 general_text_Yes: 'Ja'
44 general_text_Yes: 'Ja'
45 general_text_no: 'nein'
45 general_text_no: 'nein'
46 general_text_yes: 'ja'
46 general_text_yes: 'ja'
47 general_lang_de: 'Deutsch'
47 general_lang_de: 'Deutsch'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
51 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
52
52
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
53 notice_account_updated: Konto wurde erfolgreich aktualisiert.
54 notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort
54 notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort
55 notice_account_password_updated: Passwort wurde erfolgreich aktualisiert.
55 notice_account_password_updated: Passwort wurde erfolgreich aktualisiert.
56 notice_account_wrong_password: Falsches Passwort
56 notice_account_wrong_password: Falsches Passwort
57 notice_account_register_done: Konto wurde erfolgreich verursacht.
57 notice_account_register_done: Konto wurde erfolgreich verursacht.
58 notice_account_unknown_email: Unbekannter Benutzer.
58 notice_account_unknown_email: Unbekannter Benutzer.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern.
59 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern.
60 notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden.
60 notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden.
61 notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen.
61 notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen.
62 notice_successful_create: Erfolgreiche Kreation.
62 notice_successful_create: Erfolgreiche Kreation.
63 notice_successful_update: Erfolgreiches Update.
63 notice_successful_update: Erfolgreiches Update.
64 notice_successful_delete: Erfolgreiche Auslassung.
64 notice_successful_delete: Erfolgreiche Auslassung.
65 notice_successful_connection: Erfolgreicher Anschluß.
65 notice_successful_connection: Erfolgreicher Anschluß.
66 notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden.
66 notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
68 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
69
69
70 mail_subject_lost_password: Dein redMine Kennwort
70 mail_subject_lost_password: Dein redMine Kennwort
71 mail_subject_register: redMine Kontoaktivierung
71 mail_subject_register: redMine Kontoaktivierung
72
72
73 gui_validation_error: 1 Störung
73 gui_validation_error: 1 Störung
74 gui_validation_error_plural: %d Störungen
74 gui_validation_error_plural: %d Störungen
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Beschreibung
77 field_description: Beschreibung
78 field_summary: Zusammenfassung
78 field_summary: Zusammenfassung
79 field_is_required: Erforderlich
79 field_is_required: Erforderlich
80 field_firstname: Vorname
80 field_firstname: Vorname
81 field_lastname: Nachname
81 field_lastname: Nachname
82 field_mail: Email
82 field_mail: Email
83 field_filename: Datei
83 field_filename: Datei
84 field_filesize: Grootte
84 field_filesize: Grootte
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Angelegt
87 field_created_on: Angelegt
88 field_updated_on: aktualisiert
88 field_updated_on: aktualisiert
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Für alle Projekte
90 field_is_for_all: Für alle Projekte
91 field_possible_values: Mögliche Werte
91 field_possible_values: Mögliche Werte
92 field_regexp: Regulärer Ausdruck
92 field_regexp: Regulärer Ausdruck
93 field_min_length: Minimale Länge
93 field_min_length: Minimale Länge
94 field_max_length: Maximale Länge
94 field_max_length: Maximale Länge
95 field_value: Wert
95 field_value: Wert
96 field_category: Kategorie
96 field_category: Kategorie
97 field_title: Títel
97 field_title: Títel
98 field_project: Projekt
98 field_project: Projekt
99 field_issue: Antrag
99 field_issue: Antrag
100 field_status: Status
100 field_status: Status
101 field_notes: Anmerkungen
101 field_notes: Anmerkungen
102 field_is_closed: Problem erledigt
102 field_is_closed: Problem erledigt
103 field_is_default: Rückstellung status
103 field_is_default: Rückstellung status
104 field_html_color: Farbe
104 field_html_color: Farbe
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Thema
106 field_subject: Thema
107 field_due_date: Abgabedatum
107 field_due_date: Abgabedatum
108 field_assigned_to: Zugewiesen an
108 field_assigned_to: Zugewiesen an
109 field_priority: Priorität
109 field_priority: Priorität
110 field_fixed_version: Erledigt in Version
110 field_fixed_version: Erledigt in Version
111 field_user: Benutzer
111 field_user: Benutzer
112 field_role: Rolle
112 field_role: Rolle
113 field_homepage: Startseite
113 field_homepage: Startseite
114 field_is_public: Öffentlich
114 field_is_public: Öffentlich
115 field_parent: Subprojekt von
115 field_parent: Subprojekt von
116 field_is_in_chlog: Ansicht der Issues in der Historie
116 field_is_in_chlog: Ansicht der Issues in der Historie
117 field_is_in_roadmap: Ansicht der Issues in der Roadmap
117 field_is_in_roadmap: Ansicht der Issues in der Roadmap
118 field_login: Mitgliedsname
118 field_login: Mitgliedsname
119 field_mail_notification: Mailbenachrichtigung
119 field_mail_notification: Mailbenachrichtigung
120 field_admin: Administrator
120 field_admin: Administrator
121 field_locked: Gesperrt
121 field_locked: Gesperrt
122 field_last_login_on: Letzte Anmeldung
122 field_last_login_on: Letzte Anmeldung
123 field_language: Sprache
123 field_language: Sprache
124 field_effective_date: Datum
124 field_effective_date: Datum
125 field_password: Passwort
125 field_password: Passwort
126 field_new_password: Neues Passwort
126 field_new_password: Neues Passwort
127 field_password_confirmation: Bestätigung
127 field_password_confirmation: Bestätigung
128 field_version: Version
128 field_version: Version
129 field_type: Typ
129 field_type: Typ
130 field_host: Host
130 field_host: Host
131 field_port: Port
131 field_port: Port
132 field_account: Konto
132 field_account: Konto
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Mitgliedsnameattribut
134 field_attr_login: Mitgliedsnameattribut
135 field_attr_firstname: Vornamensattribut
135 field_attr_firstname: Vornamensattribut
136 field_attr_lastname: Namenattribut
136 field_attr_lastname: Namenattribut
137 field_attr_mail: Emailattribut
137 field_attr_mail: Emailattribut
138 field_onthefly: On-the-fly Benutzerkreation
138 field_onthefly: On-the-fly Benutzerkreation
139 field_start_date: Beginn
139 field_start_date: Beginn
140 field_done_ratio: %% Getan
140 field_done_ratio: %% Getan
141 field_auth_source: Authentisierung Modus
141 field_auth_source: Authentisierung Modus
142 field_hide_mail: Mein email address verstecken
142 field_hide_mail: Mein email address verstecken
143 field_comment: Anmerkung
143 field_comment: Anmerkung
144 field_url: URL
144 field_url: URL
145 field_start_page: Hauptseite
145 field_start_page: Hauptseite
146
146
147 setting_app_title: Applikation Titel
147 setting_app_title: Applikation Titel
148 setting_app_subtitle: Applikation Untertitel
148 setting_app_subtitle: Applikation Untertitel
149 setting_welcome_text: Willkommener Text
149 setting_welcome_text: Willkommener Text
150 setting_default_language: Rückstellung Sprache
150 setting_default_language: Rückstellung Sprache
151 setting_login_required: Authent. erfordert
151 setting_login_required: Authent. erfordert
152 setting_self_registration: Selbstausrichtung ermöglicht
152 setting_self_registration: Selbstausrichtung ermöglicht
153 setting_attachment_max_size: Dateimaximumgröße
153 setting_attachment_max_size: Dateimaximumgröße
154 setting_issues_export_limit: Issues export limit
154 setting_issues_export_limit: Issues export limit
155 setting_mail_from: Emission address
155 setting_mail_from: Emission address
156 setting_host_name: Host Name
156 setting_host_name: Host Name
157 setting_text_formatting: Textformatierung
157 setting_text_formatting: Textformatierung
158 setting_wiki_compression: Wiki Geschichte Kompression
158 setting_wiki_compression: Wiki Geschichte Kompression
159 setting_feeds_limit: Feed content limit
159
160
160 label_user: Benutzer
161 label_user: Benutzer
161 label_user_plural: Benutzer
162 label_user_plural: Benutzer
162 label_user_new: Neuer Benutzer
163 label_user_new: Neuer Benutzer
163 label_project: Projekt
164 label_project: Projekt
164 label_project_new: Neues Projekt
165 label_project_new: Neues Projekt
165 label_project_plural: Projekte
166 label_project_plural: Projekte
166 label_project_latest: Neueste Projekte
167 label_project_latest: Neueste Projekte
167 label_issue: Antrag
168 label_issue: Antrag
168 label_issue_new: Neue Antrag
169 label_issue_new: Neue Antrag
169 label_issue_plural: Anträge
170 label_issue_plural: Anträge
170 label_issue_view_all: Alle Anträge ansehen
171 label_issue_view_all: Alle Anträge ansehen
171 label_document: Dokument
172 label_document: Dokument
172 label_document_new: Neues Dokument
173 label_document_new: Neues Dokument
173 label_document_plural: Dokumente
174 label_document_plural: Dokumente
174 label_role: Rolle
175 label_role: Rolle
175 label_role_plural: Rollen
176 label_role_plural: Rollen
176 label_role_new: Neue Rolle
177 label_role_new: Neue Rolle
177 label_role_and_permissions: Rollen und Rechte
178 label_role_and_permissions: Rollen und Rechte
178 label_member: Mitglied
179 label_member: Mitglied
179 label_member_new: Neues Mitglied
180 label_member_new: Neues Mitglied
180 label_member_plural: Mitglieder
181 label_member_plural: Mitglieder
181 label_tracker: Tracker
182 label_tracker: Tracker
182 label_tracker_plural: Tracker
183 label_tracker_plural: Tracker
183 label_tracker_new: Neuer Tracker
184 label_tracker_new: Neuer Tracker
184 label_workflow: Workflow
185 label_workflow: Workflow
185 label_issue_status: Antrag Status
186 label_issue_status: Antrag Status
186 label_issue_status_plural: Antrag Stati
187 label_issue_status_plural: Antrag Stati
187 label_issue_status_new: Neuer Status
188 label_issue_status_new: Neuer Status
188 label_issue_category: Antrag Kategorie
189 label_issue_category: Antrag Kategorie
189 label_issue_category_plural: Antrag Kategorien
190 label_issue_category_plural: Antrag Kategorien
190 label_issue_category_new: Neue Kategorie
191 label_issue_category_new: Neue Kategorie
191 label_custom_field: Benutzerdefiniertes Feld
192 label_custom_field: Benutzerdefiniertes Feld
192 label_custom_field_plural: Benutzerdefinierte Felder
193 label_custom_field_plural: Benutzerdefinierte Felder
193 label_custom_field_new: Neues Feld
194 label_custom_field_new: Neues Feld
194 label_enumerations: Enumerationen
195 label_enumerations: Enumerationen
195 label_enumeration_new: Neuer Wert
196 label_enumeration_new: Neuer Wert
196 label_information: Information
197 label_information: Information
197 label_information_plural: Informationen
198 label_information_plural: Informationen
198 label_please_login: Anmelden
199 label_please_login: Anmelden
199 label_register: Anmelden
200 label_register: Anmelden
200 label_password_lost: Passwort vergessen
201 label_password_lost: Passwort vergessen
201 label_home: Hauptseite
202 label_home: Hauptseite
202 label_my_page: Meine Seite
203 label_my_page: Meine Seite
203 label_my_account: Mein Konto
204 label_my_account: Mein Konto
204 label_my_projects: Meine Projekte
205 label_my_projects: Meine Projekte
205 label_administration: Administration
206 label_administration: Administration
206 label_login: Einloggen
207 label_login: Einloggen
207 label_logout: Abmelden
208 label_logout: Abmelden
208 label_help: Hilfe
209 label_help: Hilfe
209 label_reported_issues: Gemeldete Issues
210 label_reported_issues: Gemeldete Issues
210 label_assigned_to_me_issues: Mir zugewiesen
211 label_assigned_to_me_issues: Mir zugewiesen
211 label_last_login: Letzte Anmeldung
212 label_last_login: Letzte Anmeldung
212 label_last_updates: Letztes aktualisiertes
213 label_last_updates: Letztes aktualisiertes
213 label_last_updates_plural: %d Letztes aktualisiertes
214 label_last_updates_plural: %d Letztes aktualisiertes
214 label_registered_on: Angemeldet am
215 label_registered_on: Angemeldet am
215 label_activity: Aktivität
216 label_activity: Aktivität
216 label_new: Neue
217 label_new: Neue
217 label_logged_as: Angemeldet als
218 label_logged_as: Angemeldet als
218 label_environment: Environment
219 label_environment: Environment
219 label_authentication: Authentisierung
220 label_authentication: Authentisierung
220 label_auth_source: Authentisierung Modus
221 label_auth_source: Authentisierung Modus
221 label_auth_source_new: Neuer Authentisierung Modus
222 label_auth_source_new: Neuer Authentisierung Modus
222 label_auth_source_plural: Authentisierung Modi
223 label_auth_source_plural: Authentisierung Modi
223 label_subproject: Vorprojekt von
224 label_subproject: Vorprojekt von
224 label_subproject_plural: Vorprojekte
225 label_subproject_plural: Vorprojekte
225 label_min_max_length: Min - Max Länge
226 label_min_max_length: Min - Max Länge
226 label_list: Liste
227 label_list: Liste
227 label_date: Date
228 label_date: Date
228 label_integer: Zahl
229 label_integer: Zahl
229 label_boolean: Boolesch
230 label_boolean: Boolesch
230 label_string: Text
231 label_string: Text
231 label_text: Langer Text
232 label_text: Langer Text
232 label_attribute: Attribut
233 label_attribute: Attribut
233 label_attribute_plural: Attribute
234 label_attribute_plural: Attribute
234 label_download: %d Herunterlade
235 label_download: %d Herunterlade
235 label_download_plural: %d Herunterlade
236 label_download_plural: %d Herunterlade
236 label_no_data: Nichts anzuzeigen
237 label_no_data: Nichts anzuzeigen
237 label_change_status: Statuswechsel
238 label_change_status: Statuswechsel
238 label_history: Historie
239 label_history: Historie
239 label_attachment: Datei
240 label_attachment: Datei
240 label_attachment_new: Neue Datei
241 label_attachment_new: Neue Datei
241 label_attachment_delete: Löschungakten
242 label_attachment_delete: Löschungakten
242 label_attachment_plural: Dateien
243 label_attachment_plural: Dateien
243 label_report: Bericht
244 label_report: Bericht
244 label_report_plural: Berichte
245 label_report_plural: Berichte
245 label_news: Neuigkeit
246 label_news: Neuigkeit
246 label_news_new: Neuigkeite addieren
247 label_news_new: Neuigkeite addieren
247 label_news_plural: Neuigkeiten
248 label_news_plural: Neuigkeiten
248 label_news_latest: Letzte Neuigkeiten
249 label_news_latest: Letzte Neuigkeiten
249 label_news_view_all: Alle Neuigkeiten anzeigen
250 label_news_view_all: Alle Neuigkeiten anzeigen
250 label_change_log: Change log
251 label_change_log: Change log
251 label_settings: Konfiguration
252 label_settings: Konfiguration
252 label_overview: Übersicht
253 label_overview: Übersicht
253 label_version: Version
254 label_version: Version
254 label_version_new: Neue Version
255 label_version_new: Neue Version
255 label_version_plural: Versionen
256 label_version_plural: Versionen
256 label_confirmation: Bestätigung
257 label_confirmation: Bestätigung
257 label_export_to: Export zu
258 label_export_to: Export zu
258 label_read: Lesen...
259 label_read: Lesen...
259 label_public_projects: Öffentliche Projekte
260 label_public_projects: Öffentliche Projekte
260 label_open_issues: geöffnet
261 label_open_issues: geöffnet
261 label_open_issues_plural: geöffnet
262 label_open_issues_plural: geöffnet
262 label_closed_issues: geschlossen
263 label_closed_issues: geschlossen
263 label_closed_issues_plural: geschlossen
264 label_closed_issues_plural: geschlossen
264 label_total: Gesamtzahl
265 label_total: Gesamtzahl
265 label_permissions: Berechtigungen
266 label_permissions: Berechtigungen
266 label_current_status: Gegenwärtiger Status
267 label_current_status: Gegenwärtiger Status
267 label_new_statuses_allowed: Neue Status gewährten
268 label_new_statuses_allowed: Neue Status gewährten
268 label_all: alle
269 label_all: alle
269 label_none: kein
270 label_none: kein
270 label_next: Weiter
271 label_next: Weiter
271 label_previous: Zurück
272 label_previous: Zurück
272 label_used_by: Benutzt von
273 label_used_by: Benutzt von
273 label_details: Details...
274 label_details: Details...
274 label_add_note: Eine Anmerkung addieren
275 label_add_note: Eine Anmerkung addieren
275 label_per_page: Pro Seite
276 label_per_page: Pro Seite
276 label_calendar: Kalender
277 label_calendar: Kalender
277 label_months_from: Monate von
278 label_months_from: Monate von
278 label_gantt: Gantt
279 label_gantt: Gantt
279 label_internal: Intern
280 label_internal: Intern
280 label_last_changes: %d änderungen des Letzten
281 label_last_changes: %d änderungen des Letzten
281 label_change_view_all: Alle änderungen ansehen
282 label_change_view_all: Alle änderungen ansehen
282 label_personalize_page: Diese Seite personifizieren
283 label_personalize_page: Diese Seite personifizieren
283 label_comment: Anmerkung
284 label_comment: Anmerkung
284 label_comment_plural: Anmerkungen
285 label_comment_plural: Anmerkungen
285 label_comment_add: Anmerkung addieren
286 label_comment_add: Anmerkung addieren
286 label_comment_added: Anmerkung fügte hinzu
287 label_comment_added: Anmerkung fügte hinzu
287 label_comment_delete: Anmerkungen löschen
288 label_comment_delete: Anmerkungen löschen
288 label_query: Benutzerdefiniertes Frage
289 label_query: Benutzerdefiniertes Frage
289 label_query_plural: Benutzerdefinierte Fragen
290 label_query_plural: Benutzerdefinierte Fragen
290 label_query_new: Neue Frage
291 label_query_new: Neue Frage
291 label_filter_add: Filter addieren
292 label_filter_add: Filter addieren
292 label_filter_plural: Filter
293 label_filter_plural: Filter
293 label_equals: ist
294 label_equals: ist
294 label_not_equals: ist nicht
295 label_not_equals: ist nicht
295 label_in_less_than: an weniger als
296 label_in_less_than: an weniger als
296 label_in_more_than: an mehr als
297 label_in_more_than: an mehr als
297 label_in: an
298 label_in: an
298 label_today: heute
299 label_today: heute
299 label_less_than_ago: vor weniger als
300 label_less_than_ago: vor weniger als
300 label_more_than_ago: vor mehr als
301 label_more_than_ago: vor mehr als
301 label_ago: vor
302 label_ago: vor
302 label_contains: enthält
303 label_contains: enthält
303 label_not_contains: enthält nicht
304 label_not_contains: enthält nicht
304 label_day_plural: Tage
305 label_day_plural: Tage
305 label_repository: SVN Behälter
306 label_repository: SVN Behälter
306 label_browse: Grasen
307 label_browse: Grasen
307 label_modification: %d änderung
308 label_modification: %d änderung
308 label_modification_plural: %d änderungen
309 label_modification_plural: %d änderungen
309 label_revision: Neuausgabe
310 label_revision: Neuausgabe
310 label_revision_plural: Neuausgaben
311 label_revision_plural: Neuausgaben
311 label_added: hinzugefügt
312 label_added: hinzugefügt
312 label_modified: geändert
313 label_modified: geändert
313 label_deleted: gelöscht
314 label_deleted: gelöscht
314 label_latest_revision: Neueste Neuausgabe
315 label_latest_revision: Neueste Neuausgabe
315 label_view_revisions: Die Neuausgaben ansehen
316 label_view_revisions: Die Neuausgaben ansehen
316 label_max_size: Maximale Größe
317 label_max_size: Maximale Größe
317 label_on: auf
318 label_on: auf
318 label_sort_highest: Erste
319 label_sort_highest: Erste
319 label_sort_higher: Aufzurichten
320 label_sort_higher: Aufzurichten
320 label_sort_lower: Herabzusteigen
321 label_sort_lower: Herabzusteigen
321 label_sort_lowest: Letzter
322 label_sort_lowest: Letzter
322 label_roadmap: Roadmap
323 label_roadmap: Roadmap
323 label_search: Suche
324 label_search: Suche
324 label_result: %d Resultat
325 label_result: %d Resultat
325 label_result_plural: %d Resultate
326 label_result_plural: %d Resultate
326 label_all_words: Alle Wörter
327 label_all_words: Alle Wörter
327 label_wiki: Wiki
328 label_wiki: Wiki
328 label_page_index: Index
329 label_page_index: Index
329 label_current_version: Gegenwärtige Version
330 label_current_version: Gegenwärtige Version
330 label_preview: Vorbetrachtung
331 label_preview: Vorbetrachtung
331 label_feed_plural: Feeds
332 label_feed_plural: Feeds
332 label_changes_details: Details of all changes
333 label_changes_details: Details of all changes
333 label_issue_tracking: Issue tracking
334 label_issue_tracking: Issue tracking
334
335
335 button_login: Einloggen
336 button_login: Einloggen
336 button_submit: Einreichen
337 button_submit: Einreichen
337 button_save: Speichern
338 button_save: Speichern
338 button_check_all: Alles auswählen
339 button_check_all: Alles auswählen
339 button_uncheck_all: Alles abwählen
340 button_uncheck_all: Alles abwählen
340 button_delete: Löschen
341 button_delete: Löschen
341 button_create: Anlegen
342 button_create: Anlegen
342 button_test: Testen
343 button_test: Testen
343 button_edit: Bearbeiten
344 button_edit: Bearbeiten
344 button_add: Hinzufügen
345 button_add: Hinzufügen
345 button_change: Wechseln
346 button_change: Wechseln
346 button_apply: Anwenden
347 button_apply: Anwenden
347 button_clear: Zurücksetzen
348 button_clear: Zurücksetzen
348 button_lock: Verriegeln
349 button_lock: Verriegeln
349 button_unlock: Entriegeln
350 button_unlock: Entriegeln
350 button_download: Fernzuladen
351 button_download: Fernzuladen
351 button_list: Aufzulisten
352 button_list: Aufzulisten
352 button_view: Siehe
353 button_view: Siehe
353 button_move: Bewegen
354 button_move: Bewegen
354 button_back: Rückkehr
355 button_back: Rückkehr
355 button_cancel: Annullieren
356 button_cancel: Annullieren
356 button_activate: Aktivieren
357 button_activate: Aktivieren
357 button_sort: Sortieren
358 button_sort: Sortieren
358
359
359 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
360 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
360 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_min_max_length_info: 0 heisst keine Beschränkung
362 text_min_max_length_info: 0 heisst keine Beschränkung
362 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
363 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
363 text_workflow_edit: Auswahl Workflow zum Bearbeiten
364 text_workflow_edit: Auswahl Workflow zum Bearbeiten
364 text_are_you_sure: Sind sie sicher ?
365 text_are_you_sure: Sind sie sicher ?
365 text_journal_changed: geändert von %s zu %s
366 text_journal_changed: geändert von %s zu %s
366 text_journal_set_to: gestellt zu %s
367 text_journal_set_to: gestellt zu %s
367 text_journal_deleted: gelöscht
368 text_journal_deleted: gelöscht
368 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
369 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
369 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
370 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
370 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
371 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
371
372
372 default_role_manager: Manager
373 default_role_manager: Manager
373 default_role_developper: Developer
374 default_role_developper: Developer
374 default_role_reporter: Reporter
375 default_role_reporter: Reporter
375 default_tracker_bug: Fehler
376 default_tracker_bug: Fehler
376 default_tracker_feature: Feature
377 default_tracker_feature: Feature
377 default_tracker_support: Support
378 default_tracker_support: Support
378 default_issue_status_new: Neu
379 default_issue_status_new: Neu
379 default_issue_status_assigned: Zugewiesen
380 default_issue_status_assigned: Zugewiesen
380 default_issue_status_resolved: Gelöst
381 default_issue_status_resolved: Gelöst
381 default_issue_status_feedback: Feedback
382 default_issue_status_feedback: Feedback
382 default_issue_status_closed: Erledigt
383 default_issue_status_closed: Erledigt
383 default_issue_status_rejected: Abgewiesen
384 default_issue_status_rejected: Abgewiesen
384 default_doc_category_user: Benutzerdokumentation
385 default_doc_category_user: Benutzerdokumentation
385 default_doc_category_tech: Technische Dokumentation
386 default_doc_category_tech: Technische Dokumentation
386 default_priority_low: Niedrig
387 default_priority_low: Niedrig
387 default_priority_normal: Normal
388 default_priority_normal: Normal
388 default_priority_high: Hoch
389 default_priority_high: Hoch
389 default_priority_urgent: Dringend
390 default_priority_urgent: Dringend
390 default_priority_immediate: Sofort
391 default_priority_immediate: Sofort
391
392
392 enumeration_issue_priorities: Issue-Prioritäten
393 enumeration_issue_priorities: Issue-Prioritäten
393 enumeration_doc_categories: Dokumentenkategorien
394 enumeration_doc_categories: Dokumentenkategorien
@@ -1,393 +1,394
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
35 activerecord_error_greater_than_start_date: must be greater than start date
36
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%m/%%d/%%Y
39 general_fmt_date: %%m/%%d/%%Y
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Yes'
44 general_text_Yes: 'Yes'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'yes'
46 general_text_yes: 'yes'
47 general_lang_en: 'English'
47 general_lang_en: 'English'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
51 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Your redMine password
70 mail_subject_lost_password: Your redMine password
71 mail_subject_register: redMine account activation
71 mail_subject_register: redMine account activation
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errors
74 gui_validation_error_plural: %d errors
75
75
76 field_name: Name
76 field_name: Name
77 field_description: Description
77 field_description: Description
78 field_summary: Summary
78 field_summary: Summary
79 field_is_required: Required
79 field_is_required: Required
80 field_firstname: Firstname
80 field_firstname: Firstname
81 field_lastname: Lastname
81 field_lastname: Lastname
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Size
84 field_filesize: Size
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Author
86 field_author: Author
87 field_created_on: Created
87 field_created_on: Created
88 field_updated_on: Updated
88 field_updated_on: Updated
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: For all projects
90 field_is_for_all: For all projects
91 field_possible_values: Possible values
91 field_possible_values: Possible values
92 field_regexp: Regular expression
92 field_regexp: Regular expression
93 field_min_length: Minimum length
93 field_min_length: Minimum length
94 field_max_length: Maximum length
94 field_max_length: Maximum length
95 field_value: Value
95 field_value: Value
96 field_category: Category
96 field_category: Category
97 field_title: Title
97 field_title: Title
98 field_project: Project
98 field_project: Project
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Status
100 field_status: Status
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Issue closed
102 field_is_closed: Issue closed
103 field_is_default: Default status
103 field_is_default: Default status
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Subject
106 field_subject: Subject
107 field_due_date: Due date
107 field_due_date: Due date
108 field_assigned_to: Assigned to
108 field_assigned_to: Assigned to
109 field_priority: Priority
109 field_priority: Priority
110 field_fixed_version: Fixed version
110 field_fixed_version: Fixed version
111 field_user: User
111 field_user: User
112 field_role: Role
112 field_role: Role
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Subproject of
115 field_parent: Subproject of
116 field_is_in_chlog: Issues displayed in changelog
116 field_is_in_chlog: Issues displayed in changelog
117 field_is_in_roadmap: Issues displayed in roadmap
117 field_is_in_roadmap: Issues displayed in roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Mail notifications
119 field_mail_notification: Mail notifications
120 field_admin: Administrator
120 field_admin: Administrator
121 field_locked: Locked
121 field_locked: Locked
122 field_last_login_on: Last connection
122 field_last_login_on: Last connection
123 field_language: Language
123 field_language: Language
124 field_effective_date: Date
124 field_effective_date: Date
125 field_password: Password
125 field_password: Password
126 field_new_password: New password
126 field_new_password: New password
127 field_password_confirmation: Confirmation
127 field_password_confirmation: Confirmation
128 field_version: Version
128 field_version: Version
129 field_type: Type
129 field_type: Type
130 field_host: Host
130 field_host: Host
131 field_port: Port
131 field_port: Port
132 field_account: Account
132 field_account: Account
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Login attribute
134 field_attr_login: Login attribute
135 field_attr_firstname: Firstname attribute
135 field_attr_firstname: Firstname attribute
136 field_attr_lastname: Lastname attribute
136 field_attr_lastname: Lastname attribute
137 field_attr_mail: Email attribute
137 field_attr_mail: Email attribute
138 field_onthefly: On-the-fly user creation
138 field_onthefly: On-the-fly user creation
139 field_start_date: Start
139 field_start_date: Start
140 field_done_ratio: %% Done
140 field_done_ratio: %% Done
141 field_auth_source: Authentication mode
141 field_auth_source: Authentication mode
142 field_hide_mail: Hide my email address
142 field_hide_mail: Hide my email address
143 field_comment: Comment
143 field_comment: Comment
144 field_url: URL
144 field_url: URL
145 field_start_page: Start page
145 field_start_page: Start page
146
146
147 setting_app_title: Application title
147 setting_app_title: Application title
148 setting_app_subtitle: Application subtitle
148 setting_app_subtitle: Application subtitle
149 setting_welcome_text: Welcome text
149 setting_welcome_text: Welcome text
150 setting_default_language: Default language
150 setting_default_language: Default language
151 setting_login_required: Authent. required
151 setting_login_required: Authent. required
152 setting_self_registration: Self-registration enabled
152 setting_self_registration: Self-registration enabled
153 setting_attachment_max_size: Attachment max. size
153 setting_attachment_max_size: Attachment max. size
154 setting_issues_export_limit: Issues export limit
154 setting_issues_export_limit: Issues export limit
155 setting_mail_from: Emission mail address
155 setting_mail_from: Emission mail address
156 setting_host_name: Host name
156 setting_host_name: Host name
157 setting_text_formatting: Text formatting
157 setting_text_formatting: Text formatting
158 setting_wiki_compression: Wiki history compression
158 setting_wiki_compression: Wiki history compression
159 setting_feeds_limit: Feed content limit
159
160
160 label_user: User
161 label_user: User
161 label_user_plural: Users
162 label_user_plural: Users
162 label_user_new: New user
163 label_user_new: New user
163 label_project: Project
164 label_project: Project
164 label_project_new: New project
165 label_project_new: New project
165 label_project_plural: Projects
166 label_project_plural: Projects
166 label_project_latest: Latest projects
167 label_project_latest: Latest projects
167 label_issue: Issue
168 label_issue: Issue
168 label_issue_new: New issue
169 label_issue_new: New issue
169 label_issue_plural: Issues
170 label_issue_plural: Issues
170 label_issue_view_all: View all issues
171 label_issue_view_all: View all issues
171 label_document: Document
172 label_document: Document
172 label_document_new: New document
173 label_document_new: New document
173 label_document_plural: Documents
174 label_document_plural: Documents
174 label_role: Role
175 label_role: Role
175 label_role_plural: Roles
176 label_role_plural: Roles
176 label_role_new: New role
177 label_role_new: New role
177 label_role_and_permissions: Roles and permissions
178 label_role_and_permissions: Roles and permissions
178 label_member: Member
179 label_member: Member
179 label_member_new: New member
180 label_member_new: New member
180 label_member_plural: Members
181 label_member_plural: Members
181 label_tracker: Tracker
182 label_tracker: Tracker
182 label_tracker_plural: Trackers
183 label_tracker_plural: Trackers
183 label_tracker_new: New tracker
184 label_tracker_new: New tracker
184 label_workflow: Workflow
185 label_workflow: Workflow
185 label_issue_status: Issue status
186 label_issue_status: Issue status
186 label_issue_status_plural: Issue statuses
187 label_issue_status_plural: Issue statuses
187 label_issue_status_new: New status
188 label_issue_status_new: New status
188 label_issue_category: Issue category
189 label_issue_category: Issue category
189 label_issue_category_plural: Issue categories
190 label_issue_category_plural: Issue categories
190 label_issue_category_new: New category
191 label_issue_category_new: New category
191 label_custom_field: Custom field
192 label_custom_field: Custom field
192 label_custom_field_plural: Custom fields
193 label_custom_field_plural: Custom fields
193 label_custom_field_new: New custom field
194 label_custom_field_new: New custom field
194 label_enumerations: Enumerations
195 label_enumerations: Enumerations
195 label_enumeration_new: New value
196 label_enumeration_new: New value
196 label_information: Information
197 label_information: Information
197 label_information_plural: Information
198 label_information_plural: Information
198 label_please_login: Please login
199 label_please_login: Please login
199 label_register: Register
200 label_register: Register
200 label_password_lost: Lost password
201 label_password_lost: Lost password
201 label_home: Home
202 label_home: Home
202 label_my_page: My page
203 label_my_page: My page
203 label_my_account: My account
204 label_my_account: My account
204 label_my_projects: My projects
205 label_my_projects: My projects
205 label_administration: Administration
206 label_administration: Administration
206 label_login: Login
207 label_login: Login
207 label_logout: Logout
208 label_logout: Logout
208 label_help: Help
209 label_help: Help
209 label_reported_issues: Reported issues
210 label_reported_issues: Reported issues
210 label_assigned_to_me_issues: Issues assigned to me
211 label_assigned_to_me_issues: Issues assigned to me
211 label_last_login: Last connection
212 label_last_login: Last connection
212 label_last_updates: Last updated
213 label_last_updates: Last updated
213 label_last_updates_plural: %d last updated
214 label_last_updates_plural: %d last updated
214 label_registered_on: Registered on
215 label_registered_on: Registered on
215 label_activity: Activity
216 label_activity: Activity
216 label_new: New
217 label_new: New
217 label_logged_as: Logged as
218 label_logged_as: Logged as
218 label_environment: Environment
219 label_environment: Environment
219 label_authentication: Authentication
220 label_authentication: Authentication
220 label_auth_source: Authentication mode
221 label_auth_source: Authentication mode
221 label_auth_source_new: New authentication mode
222 label_auth_source_new: New authentication mode
222 label_auth_source_plural: Authentication modes
223 label_auth_source_plural: Authentication modes
223 label_subproject: Subproject
224 label_subproject: Subproject
224 label_subproject_plural: Subprojects
225 label_subproject_plural: Subprojects
225 label_min_max_length: Min - Max length
226 label_min_max_length: Min - Max length
226 label_list: List
227 label_list: List
227 label_date: Date
228 label_date: Date
228 label_integer: Integer
229 label_integer: Integer
229 label_boolean: Boolean
230 label_boolean: Boolean
230 label_string: Text
231 label_string: Text
231 label_text: Long text
232 label_text: Long text
232 label_attribute: Attribute
233 label_attribute: Attribute
233 label_attribute_plural: Attributes
234 label_attribute_plural: Attributes
234 label_download: %d Download
235 label_download: %d Download
235 label_download_plural: %d Downloads
236 label_download_plural: %d Downloads
236 label_no_data: No data to display
237 label_no_data: No data to display
237 label_change_status: Change status
238 label_change_status: Change status
238 label_history: History
239 label_history: History
239 label_attachment: File
240 label_attachment: File
240 label_attachment_new: New file
241 label_attachment_new: New file
241 label_attachment_delete: Delete file
242 label_attachment_delete: Delete file
242 label_attachment_plural: Files
243 label_attachment_plural: Files
243 label_report: Report
244 label_report: Report
244 label_report_plural: Reports
245 label_report_plural: Reports
245 label_news: News
246 label_news: News
246 label_news_new: Add news
247 label_news_new: Add news
247 label_news_plural: News
248 label_news_plural: News
248 label_news_latest: Latest news
249 label_news_latest: Latest news
249 label_news_view_all: View all news
250 label_news_view_all: View all news
250 label_change_log: Change log
251 label_change_log: Change log
251 label_settings: Settings
252 label_settings: Settings
252 label_overview: Overview
253 label_overview: Overview
253 label_version: Version
254 label_version: Version
254 label_version_new: New version
255 label_version_new: New version
255 label_version_plural: Versions
256 label_version_plural: Versions
256 label_confirmation: Confirmation
257 label_confirmation: Confirmation
257 label_export_to: Export to
258 label_export_to: Export to
258 label_read: Read...
259 label_read: Read...
259 label_public_projects: Public projects
260 label_public_projects: Public projects
260 label_open_issues: open
261 label_open_issues: open
261 label_open_issues_plural: open
262 label_open_issues_plural: open
262 label_closed_issues: closed
263 label_closed_issues: closed
263 label_closed_issues_plural: closed
264 label_closed_issues_plural: closed
264 label_total: Total
265 label_total: Total
265 label_permissions: Permissions
266 label_permissions: Permissions
266 label_current_status: Current status
267 label_current_status: Current status
267 label_new_statuses_allowed: New statuses allowed
268 label_new_statuses_allowed: New statuses allowed
268 label_all: all
269 label_all: all
269 label_none: none
270 label_none: none
270 label_next: Next
271 label_next: Next
271 label_previous: Previous
272 label_previous: Previous
272 label_used_by: Used by
273 label_used_by: Used by
273 label_details: Details...
274 label_details: Details...
274 label_add_note: Add a note
275 label_add_note: Add a note
275 label_per_page: Per page
276 label_per_page: Per page
276 label_calendar: Calendar
277 label_calendar: Calendar
277 label_months_from: months from
278 label_months_from: months from
278 label_gantt: Gantt
279 label_gantt: Gantt
279 label_internal: Internal
280 label_internal: Internal
280 label_last_changes: last %d changes
281 label_last_changes: last %d changes
281 label_change_view_all: View all changes
282 label_change_view_all: View all changes
282 label_personalize_page: Personalize this page
283 label_personalize_page: Personalize this page
283 label_comment: Comment
284 label_comment: Comment
284 label_comment_plural: Comments
285 label_comment_plural: Comments
285 label_comment_add: Add a comment
286 label_comment_add: Add a comment
286 label_comment_added: Comment added
287 label_comment_added: Comment added
287 label_comment_delete: Delete comments
288 label_comment_delete: Delete comments
288 label_query: Custom query
289 label_query: Custom query
289 label_query_plural: Custom queries
290 label_query_plural: Custom queries
290 label_query_new: New query
291 label_query_new: New query
291 label_filter_add: Add filter
292 label_filter_add: Add filter
292 label_filter_plural: Filters
293 label_filter_plural: Filters
293 label_equals: is
294 label_equals: is
294 label_not_equals: is not
295 label_not_equals: is not
295 label_in_less_than: in less than
296 label_in_less_than: in less than
296 label_in_more_than: in more than
297 label_in_more_than: in more than
297 label_in: in
298 label_in: in
298 label_today: today
299 label_today: today
299 label_less_than_ago: less than days ago
300 label_less_than_ago: less than days ago
300 label_more_than_ago: more than days ago
301 label_more_than_ago: more than days ago
301 label_ago: days ago
302 label_ago: days ago
302 label_contains: contains
303 label_contains: contains
303 label_not_contains: doesn't contain
304 label_not_contains: doesn't contain
304 label_day_plural: days
305 label_day_plural: days
305 label_repository: SVN Repository
306 label_repository: SVN Repository
306 label_browse: Browse
307 label_browse: Browse
307 label_modification: %d change
308 label_modification: %d change
308 label_modification_plural: %d changes
309 label_modification_plural: %d changes
309 label_revision: Revision
310 label_revision: Revision
310 label_revision_plural: Revisions
311 label_revision_plural: Revisions
311 label_added: added
312 label_added: added
312 label_modified: modified
313 label_modified: modified
313 label_deleted: deleted
314 label_deleted: deleted
314 label_latest_revision: Latest revision
315 label_latest_revision: Latest revision
315 label_view_revisions: View revisions
316 label_view_revisions: View revisions
316 label_max_size: Maximum size
317 label_max_size: Maximum size
317 label_on: 'on'
318 label_on: 'on'
318 label_sort_highest: Move to top
319 label_sort_highest: Move to top
319 label_sort_higher: Move up
320 label_sort_higher: Move up
320 label_sort_lower: Move down
321 label_sort_lower: Move down
321 label_sort_lowest: Move to bottom
322 label_sort_lowest: Move to bottom
322 label_roadmap: Roadmap
323 label_roadmap: Roadmap
323 label_search: Search
324 label_search: Search
324 label_result: %d result
325 label_result: %d result
325 label_result_plural: %d results
326 label_result_plural: %d results
326 label_all_words: All words
327 label_all_words: All words
327 label_wiki: Wiki
328 label_wiki: Wiki
328 label_page_index: Index
329 label_page_index: Index
329 label_current_version: Current version
330 label_current_version: Current version
330 label_preview: Preview
331 label_preview: Preview
331 label_feed_plural: Feeds
332 label_feed_plural: Feeds
332 label_changes_details: Details of all changes
333 label_changes_details: Details of all changes
333 label_issue_tracking: Issue tracking
334 label_issue_tracking: Issue tracking
334
335
335 button_login: Login
336 button_login: Login
336 button_submit: Submit
337 button_submit: Submit
337 button_save: Save
338 button_save: Save
338 button_check_all: Check all
339 button_check_all: Check all
339 button_uncheck_all: Uncheck all
340 button_uncheck_all: Uncheck all
340 button_delete: Delete
341 button_delete: Delete
341 button_create: Create
342 button_create: Create
342 button_test: Test
343 button_test: Test
343 button_edit: Edit
344 button_edit: Edit
344 button_add: Add
345 button_add: Add
345 button_change: Change
346 button_change: Change
346 button_apply: Apply
347 button_apply: Apply
347 button_clear: Clear
348 button_clear: Clear
348 button_lock: Lock
349 button_lock: Lock
349 button_unlock: Unlock
350 button_unlock: Unlock
350 button_download: Download
351 button_download: Download
351 button_list: List
352 button_list: List
352 button_view: View
353 button_view: View
353 button_move: Move
354 button_move: Move
354 button_back: Back
355 button_back: Back
355 button_cancel: Cancel
356 button_cancel: Cancel
356 button_activate: Activate
357 button_activate: Activate
357 button_sort: Sort
358 button_sort: Sort
358
359
359 text_select_mail_notifications: Select actions for which mail notifications should be sent.
360 text_select_mail_notifications: Select actions for which mail notifications should be sent.
360 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_min_max_length_info: 0 means no restriction
362 text_min_max_length_info: 0 means no restriction
362 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
363 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
363 text_workflow_edit: Select a role and a tracker to edit the workflow
364 text_workflow_edit: Select a role and a tracker to edit the workflow
364 text_are_you_sure: Are you sure ?
365 text_are_you_sure: Are you sure ?
365 text_journal_changed: changed from %s to %s
366 text_journal_changed: changed from %s to %s
366 text_journal_set_to: set to %s
367 text_journal_set_to: set to %s
367 text_journal_deleted: deleted
368 text_journal_deleted: deleted
368 text_tip_task_begin_day: task beginning this day
369 text_tip_task_begin_day: task beginning this day
369 text_tip_task_end_day: task ending this day
370 text_tip_task_end_day: task ending this day
370 text_tip_task_begin_end_day: task beginning and ending this day
371 text_tip_task_begin_end_day: task beginning and ending this day
371
372
372 default_role_manager: Manager
373 default_role_manager: Manager
373 default_role_developper: Developer
374 default_role_developper: Developer
374 default_role_reporter: Reporter
375 default_role_reporter: Reporter
375 default_tracker_bug: Bug
376 default_tracker_bug: Bug
376 default_tracker_feature: Feature
377 default_tracker_feature: Feature
377 default_tracker_support: Support
378 default_tracker_support: Support
378 default_issue_status_new: New
379 default_issue_status_new: New
379 default_issue_status_assigned: Assigned
380 default_issue_status_assigned: Assigned
380 default_issue_status_resolved: Resolved
381 default_issue_status_resolved: Resolved
381 default_issue_status_feedback: Feedback
382 default_issue_status_feedback: Feedback
382 default_issue_status_closed: Closed
383 default_issue_status_closed: Closed
383 default_issue_status_rejected: Rejected
384 default_issue_status_rejected: Rejected
384 default_doc_category_user: User documentation
385 default_doc_category_user: User documentation
385 default_doc_category_tech: Technical documentation
386 default_doc_category_tech: Technical documentation
386 default_priority_low: Low
387 default_priority_low: Low
387 default_priority_normal: Normal
388 default_priority_normal: Normal
388 default_priority_high: High
389 default_priority_high: High
389 default_priority_urgent: Urgent
390 default_priority_urgent: Urgent
390 default_priority_immediate: Immediate
391 default_priority_immediate: Immediate
391
392
392 enumeration_issue_priorities: Issue priorities
393 enumeration_issue_priorities: Issue priorities
393 enumeration_doc_categories: Document categories
394 enumeration_doc_categories: Document categories
@@ -1,393 +1,394
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 actionview_instancetag_blank_option: Please select
21
21
22 activerecord_error_inclusion: is not included in the list
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: no es una fecha válida
34 activerecord_error_not_a_date: no es una fecha válida
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36
36
37 general_fmt_age: %d año
37 general_fmt_age: %d año
38 general_fmt_age_plural: %d años
38 general_fmt_age_plural: %d años
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Sí'
44 general_text_Yes: 'Sí'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'sí'
46 general_text_yes: 'sí'
47 general_lang_es: 'Español'
47 general_lang_es: 'Español'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
51 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
52
52
53 notice_account_updated: Account was successfully updated.
53 notice_account_updated: Account was successfully updated.
54 notice_account_invalid_creditentials: Invalid user or password
54 notice_account_invalid_creditentials: Invalid user or password
55 notice_account_password_updated: Password was successfully updated.
55 notice_account_password_updated: Password was successfully updated.
56 notice_account_wrong_password: Wrong password
56 notice_account_wrong_password: Wrong password
57 notice_account_register_done: Account was successfully created.
57 notice_account_register_done: Account was successfully created.
58 notice_account_unknown_email: Unknown user.
58 notice_account_unknown_email: Unknown user.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
66 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
68 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
69
69
70 mail_subject_lost_password: Tu contraseña del redMine
70 mail_subject_lost_password: Tu contraseña del redMine
71 mail_subject_register: Activación de la cuenta del redMine
71 mail_subject_register: Activación de la cuenta del redMine
72
72
73 gui_validation_error: 1 error
73 gui_validation_error: 1 error
74 gui_validation_error_plural: %d errores
74 gui_validation_error_plural: %d errores
75
75
76 field_name: Nombre
76 field_name: Nombre
77 field_description: Descripción
77 field_description: Descripción
78 field_summary: Resumen
78 field_summary: Resumen
79 field_is_required: Obligatorio
79 field_is_required: Obligatorio
80 field_firstname: Nombre
80 field_firstname: Nombre
81 field_lastname: Apellido
81 field_lastname: Apellido
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichero
83 field_filename: Fichero
84 field_filesize: Tamaño
84 field_filesize: Tamaño
85 field_downloads: Telecargas
85 field_downloads: Telecargas
86 field_author: Autor
86 field_author: Autor
87 field_created_on: Creado
87 field_created_on: Creado
88 field_updated_on: Actualizado
88 field_updated_on: Actualizado
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Para todos los proyectos
90 field_is_for_all: Para todos los proyectos
91 field_possible_values: Valores posibles
91 field_possible_values: Valores posibles
92 field_regexp: Expresión regular
92 field_regexp: Expresión regular
93 field_min_length: Longitud mínima
93 field_min_length: Longitud mínima
94 field_max_length: Longitud máxima
94 field_max_length: Longitud máxima
95 field_value: Valor
95 field_value: Valor
96 field_category: Categoría
96 field_category: Categoría
97 field_title: Título
97 field_title: Título
98 field_project: Proyecto
98 field_project: Proyecto
99 field_issue: Petición
99 field_issue: Petición
100 field_status: Estatuto
100 field_status: Estatuto
101 field_notes: Notas
101 field_notes: Notas
102 field_is_closed: Petición resuelta
102 field_is_closed: Petición resuelta
103 field_is_default: Estatuto por defecto
103 field_is_default: Estatuto por defecto
104 field_html_color: Color
104 field_html_color: Color
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Tema
106 field_subject: Tema
107 field_due_date: Fecha debida
107 field_due_date: Fecha debida
108 field_assigned_to: Asignado a
108 field_assigned_to: Asignado a
109 field_priority: Prioridad
109 field_priority: Prioridad
110 field_fixed_version: Versión corregida
110 field_fixed_version: Versión corregida
111 field_user: Usuario
111 field_user: Usuario
112 field_role: Papel
112 field_role: Papel
113 field_homepage: Sitio web
113 field_homepage: Sitio web
114 field_is_public: Público
114 field_is_public: Público
115 field_parent: Proyecto secundario de
115 field_parent: Proyecto secundario de
116 field_is_in_chlog: Consultar las peticiones en el histórico
116 field_is_in_chlog: Consultar las peticiones en el histórico
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
117 field_is_in_roadmap: Consultar las peticiones en el roadmap
118 field_login: Identificador
118 field_login: Identificador
119 field_mail_notification: Notificación por mail
119 field_mail_notification: Notificación por mail
120 field_admin: Administrador
120 field_admin: Administrador
121 field_locked: Cerrado
121 field_locked: Cerrado
122 field_last_login_on: Última conexión
122 field_last_login_on: Última conexión
123 field_language: Lengua
123 field_language: Lengua
124 field_effective_date: Fecha
124 field_effective_date: Fecha
125 field_password: Contraseña
125 field_password: Contraseña
126 field_new_password: Nueva contraseña
126 field_new_password: Nueva contraseña
127 field_password_confirmation: Confirmación
127 field_password_confirmation: Confirmación
128 field_version: Versión
128 field_version: Versión
129 field_type: Tipo
129 field_type: Tipo
130 field_host: Anfitrión
130 field_host: Anfitrión
131 field_port: Puerto
131 field_port: Puerto
132 field_account: Cuenta
132 field_account: Cuenta
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Cualidad del identificador
134 field_attr_login: Cualidad del identificador
135 field_attr_firstname: Cualidad del nombre
135 field_attr_firstname: Cualidad del nombre
136 field_attr_lastname: Cualidad del apellido
136 field_attr_lastname: Cualidad del apellido
137 field_attr_mail: Cualidad del Email
137 field_attr_mail: Cualidad del Email
138 field_onthefly: Creación del usuario On-the-fly
138 field_onthefly: Creación del usuario On-the-fly
139 field_start_date: Comienzo
139 field_start_date: Comienzo
140 field_done_ratio: %% Realizado
140 field_done_ratio: %% Realizado
141 field_auth_source: Modo de la autentificación
141 field_auth_source: Modo de la autentificación
142 field_hide_mail: Ocultar mi email address
142 field_hide_mail: Ocultar mi email address
143 field_comment: Comentario
143 field_comment: Comentario
144 field_url: URL
144 field_url: URL
145 field_start_page: Página principal
145 field_start_page: Página principal
146
146
147 setting_app_title: Título del aplicación
147 setting_app_title: Título del aplicación
148 setting_app_subtitle: Subtítulo del aplicación
148 setting_app_subtitle: Subtítulo del aplicación
149 setting_welcome_text: Texto acogida
149 setting_welcome_text: Texto acogida
150 setting_default_language: Lengua del defecto
150 setting_default_language: Lengua del defecto
151 setting_login_required: Autentif. requerida
151 setting_login_required: Autentif. requerida
152 setting_self_registration: Registro permitido
152 setting_self_registration: Registro permitido
153 setting_attachment_max_size: Tamaño máximo del fichero
153 setting_attachment_max_size: Tamaño máximo del fichero
154 setting_issues_export_limit: Issues export limit
154 setting_issues_export_limit: Issues export limit
155 setting_mail_from: Email de la emisión
155 setting_mail_from: Email de la emisión
156 setting_host_name: Nombre de anfitrión
156 setting_host_name: Nombre de anfitrión
157 setting_text_formatting: Formato de texto
157 setting_text_formatting: Formato de texto
158 setting_wiki_compression: Compresión de la historia de Wiki
158 setting_wiki_compression: Compresión de la historia de Wiki
159 setting_feeds_limit: Feed content limit
159
160
160 label_user: Usuario
161 label_user: Usuario
161 label_user_plural: Usuarios
162 label_user_plural: Usuarios
162 label_user_new: Nuevo usuario
163 label_user_new: Nuevo usuario
163 label_project: Proyecto
164 label_project: Proyecto
164 label_project_new: Nuevo proyecto
165 label_project_new: Nuevo proyecto
165 label_project_plural: Proyectos
166 label_project_plural: Proyectos
166 label_project_latest: Los proyectos más últimos
167 label_project_latest: Los proyectos más últimos
167 label_issue: Petición
168 label_issue: Petición
168 label_issue_new: Nueva petición
169 label_issue_new: Nueva petición
169 label_issue_plural: Peticiones
170 label_issue_plural: Peticiones
170 label_issue_view_all: Ver todas las peticiones
171 label_issue_view_all: Ver todas las peticiones
171 label_document: Documento
172 label_document: Documento
172 label_document_new: Nuevo documento
173 label_document_new: Nuevo documento
173 label_document_plural: Documentos
174 label_document_plural: Documentos
174 label_role: Papel
175 label_role: Papel
175 label_role_plural: Papeles
176 label_role_plural: Papeles
176 label_role_new: Nuevo papel
177 label_role_new: Nuevo papel
177 label_role_and_permissions: Papeles y permisos
178 label_role_and_permissions: Papeles y permisos
178 label_member: Miembro
179 label_member: Miembro
179 label_member_new: Nuevo miembro
180 label_member_new: Nuevo miembro
180 label_member_plural: Miembros
181 label_member_plural: Miembros
181 label_tracker: Tracker
182 label_tracker: Tracker
182 label_tracker_plural: Trackers
183 label_tracker_plural: Trackers
183 label_tracker_new: Nuevo tracker
184 label_tracker_new: Nuevo tracker
184 label_workflow: Workflow
185 label_workflow: Workflow
185 label_issue_status: Estatuto de petición
186 label_issue_status: Estatuto de petición
186 label_issue_status_plural: Estatutos de las peticiones
187 label_issue_status_plural: Estatutos de las peticiones
187 label_issue_status_new: Nuevo estatuto
188 label_issue_status_new: Nuevo estatuto
188 label_issue_category: Categoría de las peticiones
189 label_issue_category: Categoría de las peticiones
189 label_issue_category_plural: Categorías de las peticiones
190 label_issue_category_plural: Categorías de las peticiones
190 label_issue_category_new: Nueva categoría
191 label_issue_category_new: Nueva categoría
191 label_custom_field: Campo personalizado
192 label_custom_field: Campo personalizado
192 label_custom_field_plural: Campos personalizados
193 label_custom_field_plural: Campos personalizados
193 label_custom_field_new: Nuevo campo personalizado
194 label_custom_field_new: Nuevo campo personalizado
194 label_enumerations: Listas de valores
195 label_enumerations: Listas de valores
195 label_enumeration_new: Nuevo valor
196 label_enumeration_new: Nuevo valor
196 label_information: Informacion
197 label_information: Informacion
197 label_information_plural: Informaciones
198 label_information_plural: Informaciones
198 label_please_login: Conexión
199 label_please_login: Conexión
199 label_register: Registrar
200 label_register: Registrar
200 label_password_lost: ¿Olvidaste la contraseña?
201 label_password_lost: ¿Olvidaste la contraseña?
201 label_home: Acogida
202 label_home: Acogida
202 label_my_page: Mi página
203 label_my_page: Mi página
203 label_my_account: Mi cuenta
204 label_my_account: Mi cuenta
204 label_my_projects: Mis proyectos
205 label_my_projects: Mis proyectos
205 label_administration: Administración
206 label_administration: Administración
206 label_login: Conexión
207 label_login: Conexión
207 label_logout: Desconexión
208 label_logout: Desconexión
208 label_help: Ayuda
209 label_help: Ayuda
209 label_reported_issues: Peticiones registradas
210 label_reported_issues: Peticiones registradas
210 label_assigned_to_me_issues: Peticiones que me están asignadas
211 label_assigned_to_me_issues: Peticiones que me están asignadas
211 label_last_login: Última conexión
212 label_last_login: Última conexión
212 label_last_updates: Actualizado
213 label_last_updates: Actualizado
213 label_last_updates_plural: %d Actualizados
214 label_last_updates_plural: %d Actualizados
214 label_registered_on: Inscrito el
215 label_registered_on: Inscrito el
215 label_activity: Actividad
216 label_activity: Actividad
216 label_new: Nuevo
217 label_new: Nuevo
217 label_logged_as: Conectado como
218 label_logged_as: Conectado como
218 label_environment: Environment
219 label_environment: Environment
219 label_authentication: Autentificación
220 label_authentication: Autentificación
220 label_auth_source: Modo de la autentificación
221 label_auth_source: Modo de la autentificación
221 label_auth_source_new: Nuevo modo de la autentificación
222 label_auth_source_new: Nuevo modo de la autentificación
222 label_auth_source_plural: Modos de la autentificación
223 label_auth_source_plural: Modos de la autentificación
223 label_subproject: Proyecto secundario
224 label_subproject: Proyecto secundario
224 label_subproject_plural: Proyectos secundarios
225 label_subproject_plural: Proyectos secundarios
225 label_min_max_length: Longitud mín - máx
226 label_min_max_length: Longitud mín - máx
226 label_list: Lista
227 label_list: Lista
227 label_date: Fecha
228 label_date: Fecha
228 label_integer: Número
229 label_integer: Número
229 label_boolean: Boleano
230 label_boolean: Boleano
230 label_string: Texto
231 label_string: Texto
231 label_text: Texto largo
232 label_text: Texto largo
232 label_attribute: Cualidad
233 label_attribute: Cualidad
233 label_attribute_plural: Cualidades
234 label_attribute_plural: Cualidades
234 label_download: %d Telecarga
235 label_download: %d Telecarga
235 label_download_plural: %d Telecargas
236 label_download_plural: %d Telecargas
236 label_no_data: Ningunos datos a exhibir
237 label_no_data: Ningunos datos a exhibir
237 label_change_status: Cambiar el estatuto
238 label_change_status: Cambiar el estatuto
238 label_history: Histórico
239 label_history: Histórico
239 label_attachment: Fichero
240 label_attachment: Fichero
240 label_attachment_new: Nuevo fichero
241 label_attachment_new: Nuevo fichero
241 label_attachment_delete: Suprimir el fichero
242 label_attachment_delete: Suprimir el fichero
242 label_attachment_plural: Ficheros
243 label_attachment_plural: Ficheros
243 label_report: Informe
244 label_report: Informe
244 label_report_plural: Informes
245 label_report_plural: Informes
245 label_news: Noticia
246 label_news: Noticia
246 label_news_new: Nueva noticia
247 label_news_new: Nueva noticia
247 label_news_plural: Noticias
248 label_news_plural: Noticias
248 label_news_latest: Últimas noticias
249 label_news_latest: Últimas noticias
249 label_news_view_all: Ver todas las noticias
250 label_news_view_all: Ver todas las noticias
250 label_change_log: Cambios
251 label_change_log: Cambios
251 label_settings: Configuración
252 label_settings: Configuración
252 label_overview: Vistazo
253 label_overview: Vistazo
253 label_version: Versión
254 label_version: Versión
254 label_version_new: Nueva versión
255 label_version_new: Nueva versión
255 label_version_plural: Versiónes
256 label_version_plural: Versiónes
256 label_confirmation: Confirmación
257 label_confirmation: Confirmación
257 label_export_to: Exportar a
258 label_export_to: Exportar a
258 label_read: Leer...
259 label_read: Leer...
259 label_public_projects: Proyectos publicos
260 label_public_projects: Proyectos publicos
260 label_open_issues: abierta
261 label_open_issues: abierta
261 label_open_issues_plural: abiertas
262 label_open_issues_plural: abiertas
262 label_closed_issues: cerrada
263 label_closed_issues: cerrada
263 label_closed_issues_plural: cerradas
264 label_closed_issues_plural: cerradas
264 label_total: Total
265 label_total: Total
265 label_permissions: Permisos
266 label_permissions: Permisos
266 label_current_status: Estado actual
267 label_current_status: Estado actual
267 label_new_statuses_allowed: Nuevos estatutos autorizados
268 label_new_statuses_allowed: Nuevos estatutos autorizados
268 label_all: todos
269 label_all: todos
269 label_none: ninguno
270 label_none: ninguno
270 label_next: Próximo
271 label_next: Próximo
271 label_previous: Precedente
272 label_previous: Precedente
272 label_used_by: Utilizado por
273 label_used_by: Utilizado por
273 label_details: Detalles...
274 label_details: Detalles...
274 label_add_note: Agregar una nota
275 label_add_note: Agregar una nota
275 label_per_page: Por la página
276 label_per_page: Por la página
276 label_calendar: Calendario
277 label_calendar: Calendario
277 label_months_from: meses de
278 label_months_from: meses de
278 label_gantt: Gantt
279 label_gantt: Gantt
279 label_internal: Interno
280 label_internal: Interno
280 label_last_changes: %d cambios del último
281 label_last_changes: %d cambios del último
281 label_change_view_all: Ver todos los cambios
282 label_change_view_all: Ver todos los cambios
282 label_personalize_page: Personalizar esta página
283 label_personalize_page: Personalizar esta página
283 label_comment: Comentario
284 label_comment: Comentario
284 label_comment_plural: Comentarios
285 label_comment_plural: Comentarios
285 label_comment_add: Agregar un comentario
286 label_comment_add: Agregar un comentario
286 label_comment_added: Comentario agregó
287 label_comment_added: Comentario agregó
287 label_comment_delete: Suprimir comentarios
288 label_comment_delete: Suprimir comentarios
288 label_query: Pregunta personalizada
289 label_query: Pregunta personalizada
289 label_query_plural: Preguntas personalizadas
290 label_query_plural: Preguntas personalizadas
290 label_query_new: Nueva preguntas
291 label_query_new: Nueva preguntas
291 label_filter_add: Agregar el filtro
292 label_filter_add: Agregar el filtro
292 label_filter_plural: Filtros
293 label_filter_plural: Filtros
293 label_equals: igual
294 label_equals: igual
294 label_not_equals: no igual
295 label_not_equals: no igual
295 label_in_less_than: en menos que
296 label_in_less_than: en menos que
296 label_in_more_than: en más que
297 label_in_more_than: en más que
297 label_in: en
298 label_in: en
298 label_today: hoy
299 label_today: hoy
299 label_less_than_ago: hace menos de
300 label_less_than_ago: hace menos de
300 label_more_than_ago: hace más de
301 label_more_than_ago: hace más de
301 label_ago: hace
302 label_ago: hace
302 label_contains: contiene
303 label_contains: contiene
303 label_not_contains: no contiene
304 label_not_contains: no contiene
304 label_day_plural: días
305 label_day_plural: días
305 label_repository: Depósito SVN
306 label_repository: Depósito SVN
306 label_browse: Hojear
307 label_browse: Hojear
307 label_modification: %d modificación
308 label_modification: %d modificación
308 label_modification_plural: %d modificaciones
309 label_modification_plural: %d modificaciones
309 label_revision: Revisión
310 label_revision: Revisión
310 label_revision_plural: Revisiones
311 label_revision_plural: Revisiones
311 label_added: agregado
312 label_added: agregado
312 label_modified: modificado
313 label_modified: modificado
313 label_deleted: suprimido
314 label_deleted: suprimido
314 label_latest_revision: La revisión más última
315 label_latest_revision: La revisión más última
315 label_view_revisions: Ver las revisiones
316 label_view_revisions: Ver las revisiones
316 label_max_size: Tamaño máximo
317 label_max_size: Tamaño máximo
317 label_on: en
318 label_on: en
318 label_sort_highest: Primero
319 label_sort_highest: Primero
319 label_sort_higher: Subir
320 label_sort_higher: Subir
320 label_sort_lower: Bajar
321 label_sort_lower: Bajar
321 label_sort_lowest: Último
322 label_sort_lowest: Último
322 label_roadmap: Roadmap
323 label_roadmap: Roadmap
323 label_search: Búsqueda
324 label_search: Búsqueda
324 label_result: %d resultado
325 label_result: %d resultado
325 label_result_plural: %d resultados
326 label_result_plural: %d resultados
326 label_all_words: Todas las palabras
327 label_all_words: Todas las palabras
327 label_wiki: Wiki
328 label_wiki: Wiki
328 label_page_index: Índice
329 label_page_index: Índice
329 label_current_version: Versión actual
330 label_current_version: Versión actual
330 label_preview: Previo
331 label_preview: Previo
331 label_feed_plural: Feeds
332 label_feed_plural: Feeds
332 label_changes_details: Detalles de todos los cambios
333 label_changes_details: Detalles de todos los cambios
333 label_issue_tracking: Issue tracking
334 label_issue_tracking: Issue tracking
334
335
335 button_login: Conexión
336 button_login: Conexión
336 button_submit: Someter
337 button_submit: Someter
337 button_save: Validar
338 button_save: Validar
338 button_check_all: Seleccionar todo
339 button_check_all: Seleccionar todo
339 button_uncheck_all: No seleccionar nada
340 button_uncheck_all: No seleccionar nada
340 button_delete: Suprimir
341 button_delete: Suprimir
341 button_create: Crear
342 button_create: Crear
342 button_test: Testar
343 button_test: Testar
343 button_edit: Modificar
344 button_edit: Modificar
344 button_add: Añadir
345 button_add: Añadir
345 button_change: Cambiar
346 button_change: Cambiar
346 button_apply: Aplicar
347 button_apply: Aplicar
347 button_clear: Anular
348 button_clear: Anular
348 button_lock: Bloquear
349 button_lock: Bloquear
349 button_unlock: Desbloquear
350 button_unlock: Desbloquear
350 button_download: Telecargar
351 button_download: Telecargar
351 button_list: Listar
352 button_list: Listar
352 button_view: Ver
353 button_view: Ver
353 button_move: Mover
354 button_move: Mover
354 button_back: Atrás
355 button_back: Atrás
355 button_cancel: Cancelar
356 button_cancel: Cancelar
356 button_activate: Activar
357 button_activate: Activar
357 button_sort: Clasificar
358 button_sort: Clasificar
358
359
359 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
360 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
360 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_min_max_length_info: 0 para ninguna restricción
362 text_min_max_length_info: 0 para ninguna restricción
362 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
363 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
363 text_workflow_edit: Seleccionar un workflow para actualizar
364 text_workflow_edit: Seleccionar un workflow para actualizar
364 text_are_you_sure: ¿ Estás seguro ?
365 text_are_you_sure: ¿ Estás seguro ?
365 text_journal_changed: cambiado de %s a %s
366 text_journal_changed: cambiado de %s a %s
366 text_journal_set_to: fijado a %s
367 text_journal_set_to: fijado a %s
367 text_journal_deleted: suprimido
368 text_journal_deleted: suprimido
368 text_tip_task_begin_day: tarea que comienza este día
369 text_tip_task_begin_day: tarea que comienza este día
369 text_tip_task_end_day: tarea que termina este día
370 text_tip_task_end_day: tarea que termina este día
370 text_tip_task_begin_end_day: tarea que comienza y termina este día
371 text_tip_task_begin_end_day: tarea que comienza y termina este día
371
372
372 default_role_manager: Manager
373 default_role_manager: Manager
373 default_role_developper: Desarrollador
374 default_role_developper: Desarrollador
374 default_role_reporter: Informador
375 default_role_reporter: Informador
375 default_tracker_bug: Anomalía
376 default_tracker_bug: Anomalía
376 default_tracker_feature: Evolución
377 default_tracker_feature: Evolución
377 default_tracker_support: Asistencia
378 default_tracker_support: Asistencia
378 default_issue_status_new: Nuevo
379 default_issue_status_new: Nuevo
379 default_issue_status_assigned: Asignada
380 default_issue_status_assigned: Asignada
380 default_issue_status_resolved: Resuelta
381 default_issue_status_resolved: Resuelta
381 default_issue_status_feedback: Comentario
382 default_issue_status_feedback: Comentario
382 default_issue_status_closed: Cerrada
383 default_issue_status_closed: Cerrada
383 default_issue_status_rejected: Rechazada
384 default_issue_status_rejected: Rechazada
384 default_doc_category_user: Documentación del usuario
385 default_doc_category_user: Documentación del usuario
385 default_doc_category_tech: Documentación tecnica
386 default_doc_category_tech: Documentación tecnica
386 default_priority_low: Bajo
387 default_priority_low: Bajo
387 default_priority_normal: Normal
388 default_priority_normal: Normal
388 default_priority_high: Alto
389 default_priority_high: Alto
389 default_priority_urgent: Urgente
390 default_priority_urgent: Urgente
390 default_priority_immediate: Ahora
391 default_priority_immediate: Ahora
391
392
392 enumeration_issue_priorities: Prioridad de las peticiones
393 enumeration_issue_priorities: Prioridad de las peticiones
393 enumeration_doc_categories: Categorías del documento
394 enumeration_doc_categories: Categorías del documento
@@ -1,393 +1,394
1 _gloc_rule_default: '|n| n<=1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n<=1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: about an hour
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
20 actionview_instancetag_blank_option: Choisir
21
21
22 activerecord_error_inclusion: n'est pas inclus dans la liste
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36
36
37 general_fmt_age: %d an
37 general_fmt_age: %d an
38 general_fmt_age_plural: %d ans
38 general_fmt_age_plural: %d ans
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 general_fmt_time: %%H:%%M
42 general_fmt_time: %%H:%%M
43 general_text_No: 'Non'
43 general_text_No: 'Non'
44 general_text_Yes: 'Oui'
44 general_text_Yes: 'Oui'
45 general_text_no: 'non'
45 general_text_no: 'non'
46 general_text_yes: 'oui'
46 general_text_yes: 'oui'
47 general_lang_fr: 'Français'
47 general_lang_fr: 'Français'
48 general_csv_separator: ';'
48 general_csv_separator: ';'
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
51 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
52
52
53 notice_account_updated: Le compte a été mis à jour avec succès.
53 notice_account_updated: Le compte a été mis à jour avec succès.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
54 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
55 notice_account_password_updated: Mot de passe mis à jour avec succès.
56 notice_account_wrong_password: Mot de passe incorrect
56 notice_account_wrong_password: Mot de passe incorrect
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
57 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
58 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
59 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
60 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
61 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
62 notice_successful_create: Création effectuée avec succès.
62 notice_successful_create: Création effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
63 notice_successful_update: Mise à jour effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
64 notice_successful_delete: Suppression effectuée avec succès.
65 notice_successful_connection: Connection réussie.
65 notice_successful_connection: Connection réussie.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
66 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
67 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
68 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
69
69
70 mail_subject_lost_password: Votre mot de passe redMine
70 mail_subject_lost_password: Votre mot de passe redMine
71 mail_subject_register: Activation de votre compte redMine
71 mail_subject_register: Activation de votre compte redMine
72
72
73 gui_validation_error: 1 erreur
73 gui_validation_error: 1 erreur
74 gui_validation_error_plural: %d erreurs
74 gui_validation_error_plural: %d erreurs
75
75
76 field_name: Nom
76 field_name: Nom
77 field_description: Description
77 field_description: Description
78 field_summary: Résumé
78 field_summary: Résumé
79 field_is_required: Obligatoire
79 field_is_required: Obligatoire
80 field_firstname: Prénom
80 field_firstname: Prénom
81 field_lastname: Nom
81 field_lastname: Nom
82 field_mail: Email
82 field_mail: Email
83 field_filename: Fichier
83 field_filename: Fichier
84 field_filesize: Taille
84 field_filesize: Taille
85 field_downloads: Téléchargements
85 field_downloads: Téléchargements
86 field_author: Auteur
86 field_author: Auteur
87 field_created_on: Créé
87 field_created_on: Créé
88 field_updated_on: Mis à jour
88 field_updated_on: Mis à jour
89 field_field_format: Format
89 field_field_format: Format
90 field_is_for_all: Pour tous les projets
90 field_is_for_all: Pour tous les projets
91 field_possible_values: Valeurs possibles
91 field_possible_values: Valeurs possibles
92 field_regexp: Expression régulière
92 field_regexp: Expression régulière
93 field_min_length: Longueur minimum
93 field_min_length: Longueur minimum
94 field_max_length: Longueur maximum
94 field_max_length: Longueur maximum
95 field_value: Valeur
95 field_value: Valeur
96 field_category: Catégorie
96 field_category: Catégorie
97 field_title: Titre
97 field_title: Titre
98 field_project: Projet
98 field_project: Projet
99 field_issue: Demande
99 field_issue: Demande
100 field_status: Statut
100 field_status: Statut
101 field_notes: Notes
101 field_notes: Notes
102 field_is_closed: Demande fermée
102 field_is_closed: Demande fermée
103 field_is_default: Statut par défaut
103 field_is_default: Statut par défaut
104 field_html_color: Couleur
104 field_html_color: Couleur
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Sujet
106 field_subject: Sujet
107 field_due_date: Date d'échéance
107 field_due_date: Date d'échéance
108 field_assigned_to: Assigné à
108 field_assigned_to: Assigné à
109 field_priority: Priorité
109 field_priority: Priorité
110 field_fixed_version: Version corrigée
110 field_fixed_version: Version corrigée
111 field_user: Utilisateur
111 field_user: Utilisateur
112 field_role: Rôle
112 field_role: Rôle
113 field_homepage: Site web
113 field_homepage: Site web
114 field_is_public: Public
114 field_is_public: Public
115 field_parent: Sous-projet de
115 field_parent: Sous-projet de
116 field_is_in_chlog: Demandes affichées dans l'historique
116 field_is_in_chlog: Demandes affichées dans l'historique
117 field_is_in_roadmap: Demandes affichées dans la roadmap
117 field_is_in_roadmap: Demandes affichées dans la roadmap
118 field_login: Identifiant
118 field_login: Identifiant
119 field_mail_notification: Notifications par mail
119 field_mail_notification: Notifications par mail
120 field_admin: Administrateur
120 field_admin: Administrateur
121 field_locked: Verrouillé
121 field_locked: Verrouillé
122 field_last_login_on: Dernière connexion
122 field_last_login_on: Dernière connexion
123 field_language: Langue
123 field_language: Langue
124 field_effective_date: Date
124 field_effective_date: Date
125 field_password: Mot de passe
125 field_password: Mot de passe
126 field_new_password: Nouveau mot de passe
126 field_new_password: Nouveau mot de passe
127 field_password_confirmation: Confirmation
127 field_password_confirmation: Confirmation
128 field_version: Version
128 field_version: Version
129 field_type: Type
129 field_type: Type
130 field_host: Hôte
130 field_host: Hôte
131 field_port: Port
131 field_port: Port
132 field_account: Compte
132 field_account: Compte
133 field_base_dn: Base DN
133 field_base_dn: Base DN
134 field_attr_login: Attribut Identifiant
134 field_attr_login: Attribut Identifiant
135 field_attr_firstname: Attribut Prénom
135 field_attr_firstname: Attribut Prénom
136 field_attr_lastname: Attribut Nom
136 field_attr_lastname: Attribut Nom
137 field_attr_mail: Attribut Email
137 field_attr_mail: Attribut Email
138 field_onthefly: Création des utilisateurs à la volée
138 field_onthefly: Création des utilisateurs à la volée
139 field_start_date: Début
139 field_start_date: Début
140 field_done_ratio: %% Réalisé
140 field_done_ratio: %% Réalisé
141 field_auth_source: Mode d'authentification
141 field_auth_source: Mode d'authentification
142 field_hide_mail: Cacher mon adresse mail
142 field_hide_mail: Cacher mon adresse mail
143 field_comment: Commentaire
143 field_comment: Commentaire
144 field_url: URL
144 field_url: URL
145 field_start_page: Page de démarrage
145 field_start_page: Page de démarrage
146
146
147 setting_app_title: Titre de l'application
147 setting_app_title: Titre de l'application
148 setting_app_subtitle: Sous-titre de l'application
148 setting_app_subtitle: Sous-titre de l'application
149 setting_welcome_text: Texte d'accueil
149 setting_welcome_text: Texte d'accueil
150 setting_default_language: Langue par défaut
150 setting_default_language: Langue par défaut
151 setting_login_required: Authentif. obligatoire
151 setting_login_required: Authentif. obligatoire
152 setting_self_registration: Enregistrement autorisé
152 setting_self_registration: Enregistrement autorisé
153 setting_attachment_max_size: Taille max des fichiers
153 setting_attachment_max_size: Taille max des fichiers
154 setting_issues_export_limit: Limite export demandes
154 setting_issues_export_limit: Limite export demandes
155 setting_mail_from: Adresse d'émission
155 setting_mail_from: Adresse d'émission
156 setting_host_name: Nom d'hôte
156 setting_host_name: Nom d'hôte
157 setting_text_formatting: Formatage du texte
157 setting_text_formatting: Formatage du texte
158 setting_wiki_compression: Compression historique wiki
158 setting_wiki_compression: Compression historique wiki
159 setting_feeds_limit: Limite du contenu des flux RSS
159
160
160 label_user: Utilisateur
161 label_user: Utilisateur
161 label_user_plural: Utilisateurs
162 label_user_plural: Utilisateurs
162 label_user_new: Nouvel utilisateur
163 label_user_new: Nouvel utilisateur
163 label_project: Projet
164 label_project: Projet
164 label_project_new: Nouveau projet
165 label_project_new: Nouveau projet
165 label_project_plural: Projets
166 label_project_plural: Projets
166 label_project_latest: Derniers projets
167 label_project_latest: Derniers projets
167 label_issue: Demande
168 label_issue: Demande
168 label_issue_new: Nouvelle demande
169 label_issue_new: Nouvelle demande
169 label_issue_plural: Demandes
170 label_issue_plural: Demandes
170 label_issue_view_all: Voir toutes les demandes
171 label_issue_view_all: Voir toutes les demandes
171 label_document: Document
172 label_document: Document
172 label_document_new: Nouveau document
173 label_document_new: Nouveau document
173 label_document_plural: Documents
174 label_document_plural: Documents
174 label_role: Rôle
175 label_role: Rôle
175 label_role_plural: Rôles
176 label_role_plural: Rôles
176 label_role_new: Nouveau rôle
177 label_role_new: Nouveau rôle
177 label_role_and_permissions: Rôles et permissions
178 label_role_and_permissions: Rôles et permissions
178 label_member: Membre
179 label_member: Membre
179 label_member_new: Nouveau membre
180 label_member_new: Nouveau membre
180 label_member_plural: Membres
181 label_member_plural: Membres
181 label_tracker: Tracker
182 label_tracker: Tracker
182 label_tracker_plural: Trackers
183 label_tracker_plural: Trackers
183 label_tracker_new: Nouveau tracker
184 label_tracker_new: Nouveau tracker
184 label_workflow: Workflow
185 label_workflow: Workflow
185 label_issue_status: Statut de demandes
186 label_issue_status: Statut de demandes
186 label_issue_status_plural: Statuts de demandes
187 label_issue_status_plural: Statuts de demandes
187 label_issue_status_new: Nouveau statut
188 label_issue_status_new: Nouveau statut
188 label_issue_category: Catégorie de demandes
189 label_issue_category: Catégorie de demandes
189 label_issue_category_plural: Catégories de demandes
190 label_issue_category_plural: Catégories de demandes
190 label_issue_category_new: Nouvelle catégorie
191 label_issue_category_new: Nouvelle catégorie
191 label_custom_field: Champ personnalisé
192 label_custom_field: Champ personnalisé
192 label_custom_field_plural: Champs personnalisés
193 label_custom_field_plural: Champs personnalisés
193 label_custom_field_new: Nouveau champ personnalisé
194 label_custom_field_new: Nouveau champ personnalisé
194 label_enumerations: Listes de valeurs
195 label_enumerations: Listes de valeurs
195 label_enumeration_new: Nouvelle valeur
196 label_enumeration_new: Nouvelle valeur
196 label_information: Information
197 label_information: Information
197 label_information_plural: Informations
198 label_information_plural: Informations
198 label_please_login: Identification
199 label_please_login: Identification
199 label_register: S'enregistrer
200 label_register: S'enregistrer
200 label_password_lost: Mot de passe perdu
201 label_password_lost: Mot de passe perdu
201 label_home: Accueil
202 label_home: Accueil
202 label_my_page: Ma page
203 label_my_page: Ma page
203 label_my_account: Mon compte
204 label_my_account: Mon compte
204 label_my_projects: Mes projets
205 label_my_projects: Mes projets
205 label_administration: Administration
206 label_administration: Administration
206 label_login: Connexion
207 label_login: Connexion
207 label_logout: Déconnexion
208 label_logout: Déconnexion
208 label_help: Aide
209 label_help: Aide
209 label_reported_issues: Demandes soumises
210 label_reported_issues: Demandes soumises
210 label_assigned_to_me_issues: Demandes qui me sont assignées
211 label_assigned_to_me_issues: Demandes qui me sont assignées
211 label_last_login: Dernière connexion
212 label_last_login: Dernière connexion
212 label_last_updates: Dernière mise à jour
213 label_last_updates: Dernière mise à jour
213 label_last_updates_plural: %d dernières mises à jour
214 label_last_updates_plural: %d dernières mises à jour
214 label_registered_on: Inscrit le
215 label_registered_on: Inscrit le
215 label_activity: Activité
216 label_activity: Activité
216 label_new: Nouveau
217 label_new: Nouveau
217 label_logged_as: Connecté en tant que
218 label_logged_as: Connecté en tant que
218 label_environment: Environnement
219 label_environment: Environnement
219 label_authentication: Authentification
220 label_authentication: Authentification
220 label_auth_source: Mode d'authentification
221 label_auth_source: Mode d'authentification
221 label_auth_source_new: Nouveau mode d'authentification
222 label_auth_source_new: Nouveau mode d'authentification
222 label_auth_source_plural: Modes d'authentification
223 label_auth_source_plural: Modes d'authentification
223 label_subproject: Sous-projet
224 label_subproject: Sous-projet
224 label_subproject_plural: Sous-projets
225 label_subproject_plural: Sous-projets
225 label_min_max_length: Longueurs mini - maxi
226 label_min_max_length: Longueurs mini - maxi
226 label_list: Liste
227 label_list: Liste
227 label_date: Date
228 label_date: Date
228 label_integer: Entier
229 label_integer: Entier
229 label_boolean: Booléen
230 label_boolean: Booléen
230 label_string: Texte
231 label_string: Texte
231 label_text: Texte long
232 label_text: Texte long
232 label_attribute: Attribut
233 label_attribute: Attribut
233 label_attribute_plural: Attributs
234 label_attribute_plural: Attributs
234 label_download: %d Téléchargement
235 label_download: %d Téléchargement
235 label_download_plural: %d Téléchargements
236 label_download_plural: %d Téléchargements
236 label_no_data: Aucune donnée à afficher
237 label_no_data: Aucune donnée à afficher
237 label_change_status: Changer le statut
238 label_change_status: Changer le statut
238 label_history: Historique
239 label_history: Historique
239 label_attachment: Fichier
240 label_attachment: Fichier
240 label_attachment_new: Nouveau fichier
241 label_attachment_new: Nouveau fichier
241 label_attachment_delete: Supprimer le fichier
242 label_attachment_delete: Supprimer le fichier
242 label_attachment_plural: Fichiers
243 label_attachment_plural: Fichiers
243 label_report: Rapport
244 label_report: Rapport
244 label_report_plural: Rapports
245 label_report_plural: Rapports
245 label_news: Annonce
246 label_news: Annonce
246 label_news_new: Nouvelle annonce
247 label_news_new: Nouvelle annonce
247 label_news_plural: Annonces
248 label_news_plural: Annonces
248 label_news_latest: Dernières annonces
249 label_news_latest: Dernières annonces
249 label_news_view_all: Voir toutes les annonces
250 label_news_view_all: Voir toutes les annonces
250 label_change_log: Historique
251 label_change_log: Historique
251 label_settings: Configuration
252 label_settings: Configuration
252 label_overview: Aperçu
253 label_overview: Aperçu
253 label_version: Version
254 label_version: Version
254 label_version_new: Nouvelle version
255 label_version_new: Nouvelle version
255 label_version_plural: Versions
256 label_version_plural: Versions
256 label_confirmation: Confirmation
257 label_confirmation: Confirmation
257 label_export_to: Exporter en
258 label_export_to: Exporter en
258 label_read: Lire...
259 label_read: Lire...
259 label_public_projects: Projets publics
260 label_public_projects: Projets publics
260 label_open_issues: ouvert
261 label_open_issues: ouvert
261 label_open_issues_plural: ouverts
262 label_open_issues_plural: ouverts
262 label_closed_issues: fermé
263 label_closed_issues: fermé
263 label_closed_issues_plural: fermés
264 label_closed_issues_plural: fermés
264 label_total: Total
265 label_total: Total
265 label_permissions: Permissions
266 label_permissions: Permissions
266 label_current_status: Statut actuel
267 label_current_status: Statut actuel
267 label_new_statuses_allowed: Nouveaux statuts autorisés
268 label_new_statuses_allowed: Nouveaux statuts autorisés
268 label_all: tous
269 label_all: tous
269 label_none: aucun
270 label_none: aucun
270 label_next: Suivant
271 label_next: Suivant
271 label_previous: Précédent
272 label_previous: Précédent
272 label_used_by: Utilisé par
273 label_used_by: Utilisé par
273 label_details: Détails...
274 label_details: Détails...
274 label_add_note: Ajouter une note
275 label_add_note: Ajouter une note
275 label_per_page: Par page
276 label_per_page: Par page
276 label_calendar: Calendrier
277 label_calendar: Calendrier
277 label_months_from: mois depuis
278 label_months_from: mois depuis
278 label_gantt: Gantt
279 label_gantt: Gantt
279 label_internal: Interne
280 label_internal: Interne
280 label_last_changes: %d derniers changements
281 label_last_changes: %d derniers changements
281 label_change_view_all: Voir tous les changements
282 label_change_view_all: Voir tous les changements
282 label_personalize_page: Personnaliser cette page
283 label_personalize_page: Personnaliser cette page
283 label_comment: Commentaire
284 label_comment: Commentaire
284 label_comment_plural: Commentaires
285 label_comment_plural: Commentaires
285 label_comment_add: Ajouter un commentaire
286 label_comment_add: Ajouter un commentaire
286 label_comment_added: Commentaire ajouté
287 label_comment_added: Commentaire ajouté
287 label_comment_delete: Supprimer les commentaires
288 label_comment_delete: Supprimer les commentaires
288 label_query: Rapport personnalisé
289 label_query: Rapport personnalisé
289 label_query_plural: Rapports personnalisés
290 label_query_plural: Rapports personnalisés
290 label_query_new: Nouveau rapport
291 label_query_new: Nouveau rapport
291 label_filter_add: Ajouter le filtre
292 label_filter_add: Ajouter le filtre
292 label_filter_plural: Filtres
293 label_filter_plural: Filtres
293 label_equals: égal
294 label_equals: égal
294 label_not_equals: différent
295 label_not_equals: différent
295 label_in_less_than: dans moins de
296 label_in_less_than: dans moins de
296 label_in_more_than: dans plus de
297 label_in_more_than: dans plus de
297 label_in: dans
298 label_in: dans
298 label_today: aujourd'hui
299 label_today: aujourd'hui
299 label_less_than_ago: il y a moins de
300 label_less_than_ago: il y a moins de
300 label_more_than_ago: il y a plus de
301 label_more_than_ago: il y a plus de
301 label_ago: il y a
302 label_ago: il y a
302 label_contains: contient
303 label_contains: contient
303 label_not_contains: ne contient pas
304 label_not_contains: ne contient pas
304 label_day_plural: jours
305 label_day_plural: jours
305 label_repository: Dépôt SVN
306 label_repository: Dépôt SVN
306 label_browse: Parcourir
307 label_browse: Parcourir
307 label_modification: %d modification
308 label_modification: %d modification
308 label_modification_plural: %d modifications
309 label_modification_plural: %d modifications
309 label_revision: Révision
310 label_revision: Révision
310 label_revision_plural: Révisions
311 label_revision_plural: Révisions
311 label_added: ajouté
312 label_added: ajouté
312 label_modified: modifié
313 label_modified: modifié
313 label_deleted: supprimé
314 label_deleted: supprimé
314 label_latest_revision: Dernière révision
315 label_latest_revision: Dernière révision
315 label_view_revisions: Voir les révisions
316 label_view_revisions: Voir les révisions
316 label_max_size: Taille maximale
317 label_max_size: Taille maximale
317 label_on: sur
318 label_on: sur
318 label_sort_highest: Remonter en premier
319 label_sort_highest: Remonter en premier
319 label_sort_higher: Remonter
320 label_sort_higher: Remonter
320 label_sort_lower: Descendre
321 label_sort_lower: Descendre
321 label_sort_lowest: Descendre en dernier
322 label_sort_lowest: Descendre en dernier
322 label_roadmap: Roadmap
323 label_roadmap: Roadmap
323 label_search: Recherche
324 label_search: Recherche
324 label_result: %d résultat
325 label_result: %d résultat
325 label_result_plural: %d résultats
326 label_result_plural: %d résultats
326 label_all_words: Tous les mots
327 label_all_words: Tous les mots
327 label_wiki: Wiki
328 label_wiki: Wiki
328 label_page_index: Index
329 label_page_index: Index
329 label_current_version: Version actuelle
330 label_current_version: Version actuelle
330 label_preview: Prévisualisation
331 label_preview: Prévisualisation
331 label_feed_plural: Flux RSS
332 label_feed_plural: Flux RSS
332 label_changes_details: Détails de tous les changements
333 label_changes_details: Détails de tous les changements
333 label_issue_tracking: Suivi des demandes
334 label_issue_tracking: Suivi des demandes
334
335
335 button_login: Connexion
336 button_login: Connexion
336 button_submit: Soumettre
337 button_submit: Soumettre
337 button_save: Sauvegarder
338 button_save: Sauvegarder
338 button_check_all: Tout cocher
339 button_check_all: Tout cocher
339 button_uncheck_all: Tout décocher
340 button_uncheck_all: Tout décocher
340 button_delete: Supprimer
341 button_delete: Supprimer
341 button_create: Créer
342 button_create: Créer
342 button_test: Tester
343 button_test: Tester
343 button_edit: Modifier
344 button_edit: Modifier
344 button_add: Ajouter
345 button_add: Ajouter
345 button_change: Changer
346 button_change: Changer
346 button_apply: Appliquer
347 button_apply: Appliquer
347 button_clear: Effacer
348 button_clear: Effacer
348 button_lock: Verrouiller
349 button_lock: Verrouiller
349 button_unlock: Déverrouiller
350 button_unlock: Déverrouiller
350 button_download: Télécharger
351 button_download: Télécharger
351 button_list: Lister
352 button_list: Lister
352 button_view: Voir
353 button_view: Voir
353 button_move: Déplacer
354 button_move: Déplacer
354 button_back: Retour
355 button_back: Retour
355 button_cancel: Annuler
356 button_cancel: Annuler
356 button_activate: Activer
357 button_activate: Activer
357 button_sort: Trier
358 button_sort: Trier
358
359
359 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
360 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
360 text_regexp_info: ex. ^[A-Z0-9]+$
361 text_regexp_info: ex. ^[A-Z0-9]+$
361 text_min_max_length_info: 0 pour aucune restriction
362 text_min_max_length_info: 0 pour aucune restriction
362 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
363 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
363 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
364 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
364 text_are_you_sure: Etes-vous sûr ?
365 text_are_you_sure: Etes-vous sûr ?
365 text_journal_changed: changé de %s à %s
366 text_journal_changed: changé de %s à %s
366 text_journal_set_to: mis à %s
367 text_journal_set_to: mis à %s
367 text_journal_deleted: supprimé
368 text_journal_deleted: supprimé
368 text_tip_task_begin_day: tâche commençant ce jour
369 text_tip_task_begin_day: tâche commençant ce jour
369 text_tip_task_end_day: tâche finissant ce jour
370 text_tip_task_end_day: tâche finissant ce jour
370 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
371 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
371
372
372 default_role_manager: Manager
373 default_role_manager: Manager
373 default_role_developper: Développeur
374 default_role_developper: Développeur
374 default_role_reporter: Rapporteur
375 default_role_reporter: Rapporteur
375 default_tracker_bug: Anomalie
376 default_tracker_bug: Anomalie
376 default_tracker_feature: Evolution
377 default_tracker_feature: Evolution
377 default_tracker_support: Assistance
378 default_tracker_support: Assistance
378 default_issue_status_new: Nouveau
379 default_issue_status_new: Nouveau
379 default_issue_status_assigned: Assigné
380 default_issue_status_assigned: Assigné
380 default_issue_status_resolved: Résolu
381 default_issue_status_resolved: Résolu
381 default_issue_status_feedback: Commentaire
382 default_issue_status_feedback: Commentaire
382 default_issue_status_closed: Fermé
383 default_issue_status_closed: Fermé
383 default_issue_status_rejected: Rejeté
384 default_issue_status_rejected: Rejeté
384 default_doc_category_user: Documentation utilisateur
385 default_doc_category_user: Documentation utilisateur
385 default_doc_category_tech: Documentation technique
386 default_doc_category_tech: Documentation technique
386 default_priority_low: Bas
387 default_priority_low: Bas
387 default_priority_normal: Normal
388 default_priority_normal: Normal
388 default_priority_high: Haut
389 default_priority_high: Haut
389 default_priority_urgent: Urgent
390 default_priority_urgent: Urgent
390 default_priority_immediate: Immédiat
391 default_priority_immediate: Immédiat
391
392
392 enumeration_issue_priorities: Priorités des demandes
393 enumeration_issue_priorities: Priorités des demandes
393 enumeration_doc_categories: Catégories des documents
394 enumeration_doc_categories: Catégories des documents
@@ -1,393 +1,394
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2
2
3 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
20 actionview_instancetag_blank_option: Scegli
21
21
22 activerecord_error_inclusion: non è incluso nella lista
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: e' riservato
23 activerecord_error_exclusion: e' riservato
24 activerecord_error_invalid: non e' valido
24 activerecord_error_invalid: non e' valido
25 activerecord_error_confirmation: doesn't match confirmation
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: deve essere accettato
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non puo' essere vuoto
27 activerecord_error_empty: non puo' essere vuoto
28 activerecord_error_blank: non puo' essere blank
28 activerecord_error_blank: non puo' essere blank
29 activerecord_error_too_long: e' troppo lungo/a
29 activerecord_error_too_long: e' troppo lungo/a
30 activerecord_error_too_short: e' troppo corto/a
30 activerecord_error_too_short: e' troppo corto/a
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
31 activerecord_error_wrong_length: e' della lunghezza sbagliata
32 activerecord_error_taken: e' gia' stato/a preso/a
32 activerecord_error_taken: e' gia' stato/a preso/a
33 activerecord_error_not_a_number: non e' un numero
33 activerecord_error_not_a_number: non e' un numero
34 activerecord_error_not_a_date: non e' una data valida
34 activerecord_error_not_a_date: non e' una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36
36
37 general_fmt_age: %d yr
37 general_fmt_age: %d yr
38 general_fmt_age_plural: %d yrs
38 general_fmt_age_plural: %d yrs
39 general_fmt_date: %%d/%%m/%%Y
39 general_fmt_date: %%d/%%m/%%Y
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
40 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
42 general_fmt_time: %%I:%%M %%p
43 general_text_No: 'No'
43 general_text_No: 'No'
44 general_text_Yes: 'Si'
44 general_text_Yes: 'Si'
45 general_text_no: 'no'
45 general_text_no: 'no'
46 general_text_yes: 'si'
46 general_text_yes: 'si'
47 general_lang_it: 'Italiano'
47 general_lang_it: 'Italiano'
48 general_csv_separator: ','
48 general_csv_separator: ','
49 general_csv_encoding: ISO-8859-1
49 general_csv_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
50 general_pdf_encoding: ISO-8859-1
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
51 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
52
52
53 notice_account_updated: L'utenza è stata aggiornata.
53 notice_account_updated: L'utenza è stata aggiornata.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
54 notice_account_invalid_creditentials: Nome utente o password non validi.
55 notice_account_password_updated: La password è stata aggiornata.
55 notice_account_password_updated: La password è stata aggiornata.
56 notice_account_wrong_password: Password errata
56 notice_account_wrong_password: Password errata
57 notice_account_register_done: L'utenza è stata creata.
57 notice_account_register_done: L'utenza è stata creata.
58 notice_account_unknown_email: Utente sconosciuto.
58 notice_account_unknown_email: Utente sconosciuto.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
59 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
60 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
61 notice_account_activated: Your account has been activated. You can now log in.
61 notice_account_activated: Your account has been activated. You can now log in.
62 notice_successful_create: Successful creation.
62 notice_successful_create: Successful creation.
63 notice_successful_update: Successful update.
63 notice_successful_update: Successful update.
64 notice_successful_delete: Successful deletion.
64 notice_successful_delete: Successful deletion.
65 notice_successful_connection: Successful connection.
65 notice_successful_connection: Successful connection.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
66 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
67 notice_locking_conflict: Data have been updated by another user.
67 notice_locking_conflict: Data have been updated by another user.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
68 notice_scm_error: Entry and/or revision doesn't exist in the repository.
69
69
70 mail_subject_lost_password: Password redMine
70 mail_subject_lost_password: Password redMine
71 mail_subject_register: Attivazione utenza redMine
71 mail_subject_register: Attivazione utenza redMine
72
72
73 gui_validation_error: 1 errore
73 gui_validation_error: 1 errore
74 gui_validation_error_plural: %d errori
74 gui_validation_error_plural: %d errori
75
75
76 field_name: Nome
76 field_name: Nome
77 field_description: Descrizione
77 field_description: Descrizione
78 field_summary: Sommario
78 field_summary: Sommario
79 field_is_required: Richiesto
79 field_is_required: Richiesto
80 field_firstname: Nome
80 field_firstname: Nome
81 field_lastname: Cognome
81 field_lastname: Cognome
82 field_mail: Email
82 field_mail: Email
83 field_filename: File
83 field_filename: File
84 field_filesize: Dimensione
84 field_filesize: Dimensione
85 field_downloads: Downloads
85 field_downloads: Downloads
86 field_author: Autore
86 field_author: Autore
87 field_created_on: Creato
87 field_created_on: Creato
88 field_updated_on: Aggiornato
88 field_updated_on: Aggiornato
89 field_field_format: Formato
89 field_field_format: Formato
90 field_is_for_all: Per tutti i progetti
90 field_is_for_all: Per tutti i progetti
91 field_possible_values: Valori possibili
91 field_possible_values: Valori possibili
92 field_regexp: Espressione regolare
92 field_regexp: Espressione regolare
93 field_min_length: Lunghezza minima
93 field_min_length: Lunghezza minima
94 field_max_length: Lunghezza massima
94 field_max_length: Lunghezza massima
95 field_value: Valore
95 field_value: Valore
96 field_category: Categoria
96 field_category: Categoria
97 field_title: Titolo
97 field_title: Titolo
98 field_project: Progetto
98 field_project: Progetto
99 field_issue: Issue
99 field_issue: Issue
100 field_status: Stato
100 field_status: Stato
101 field_notes: Note
101 field_notes: Note
102 field_is_closed: Chiude il contesto
102 field_is_closed: Chiude il contesto
103 field_is_default: Stato predefinito
103 field_is_default: Stato predefinito
104 field_html_color: Colore
104 field_html_color: Colore
105 field_tracker: Tracker
105 field_tracker: Tracker
106 field_subject: Oggetto
106 field_subject: Oggetto
107 field_due_date: Data ultima
107 field_due_date: Data ultima
108 field_assigned_to: Assegnato a
108 field_assigned_to: Assegnato a
109 field_priority: Priorita'
109 field_priority: Priorita'
110 field_fixed_version: Versione di fix
110 field_fixed_version: Versione di fix
111 field_user: Utente
111 field_user: Utente
112 field_role: Ruolo
112 field_role: Ruolo
113 field_homepage: Homepage
113 field_homepage: Homepage
114 field_is_public: Pubblico
114 field_is_public: Pubblico
115 field_parent: Sottoprogetto di
115 field_parent: Sottoprogetto di
116 field_is_in_chlog: Contesti mostrati nel changelog
116 field_is_in_chlog: Contesti mostrati nel changelog
117 field_is_in_roadmap: Contesti mostrati nel roadmap
117 field_is_in_roadmap: Contesti mostrati nel roadmap
118 field_login: Login
118 field_login: Login
119 field_mail_notification: Notifiche via e-mail
119 field_mail_notification: Notifiche via e-mail
120 field_admin: Amministratore
120 field_admin: Amministratore
121 field_locked: Bloccato
121 field_locked: Bloccato
122 field_last_login_on: Ultima connessione
122 field_last_login_on: Ultima connessione
123 field_language: Lingua
123 field_language: Lingua
124 field_effective_date: Data
124 field_effective_date: Data
125 field_password: Password
125 field_password: Password
126 field_new_password: Nuova password
126 field_new_password: Nuova password
127 field_password_confirmation: Conferma
127 field_password_confirmation: Conferma
128 field_version: Versione
128 field_version: Versione
129 field_type: Tipo
129 field_type: Tipo
130 field_host: Host
130 field_host: Host
131 field_port: Porta
131 field_port: Porta
132 field_account: Utenza
132 field_account: Utenza
133 field_base_dn: DN base
133 field_base_dn: DN base
134 field_attr_login: Attributo login
134 field_attr_login: Attributo login
135 field_attr_firstname: Attributo nome
135 field_attr_firstname: Attributo nome
136 field_attr_lastname: Attributo cognome
136 field_attr_lastname: Attributo cognome
137 field_attr_mail: Attributo e-mail
137 field_attr_mail: Attributo e-mail
138 field_onthefly: Creazione utenza "al volo"
138 field_onthefly: Creazione utenza "al volo"
139 field_start_date: Inizio
139 field_start_date: Inizio
140 field_done_ratio: %% completo
140 field_done_ratio: %% completo
141 field_auth_source: Modalità di autenticazione
141 field_auth_source: Modalità di autenticazione
142 field_hide_mail: Nascondi il mio indirizzo di e-mail
142 field_hide_mail: Nascondi il mio indirizzo di e-mail
143 field_comment: Commento
143 field_comment: Commento
144 field_url: URL
144 field_url: URL
145 field_start_page: Pagina principale
145 field_start_page: Pagina principale
146
146
147 setting_app_title: Titolo applicazione
147 setting_app_title: Titolo applicazione
148 setting_app_subtitle: Sottotitolo applicazione
148 setting_app_subtitle: Sottotitolo applicazione
149 setting_welcome_text: Testo di benvenuto
149 setting_welcome_text: Testo di benvenuto
150 setting_default_language: Lingua di default
150 setting_default_language: Lingua di default
151 setting_login_required: Autenticazione richiesta
151 setting_login_required: Autenticazione richiesta
152 setting_self_registration: Auto-registrazione abilitata
152 setting_self_registration: Auto-registrazione abilitata
153 setting_attachment_max_size: Massima dimensione allegati
153 setting_attachment_max_size: Massima dimensione allegati
154 setting_issues_export_limit: Limite esportazione contesti
154 setting_issues_export_limit: Limite esportazione contesti
155 setting_mail_from: Indirizzo sorgente e-mail
155 setting_mail_from: Indirizzo sorgente e-mail
156 setting_host_name: Nome host
156 setting_host_name: Nome host
157 setting_text_formatting: Formattazione testo
157 setting_text_formatting: Formattazione testo
158 setting_wiki_compression: Compressione di storia di Wiki
158 setting_wiki_compression: Compressione di storia di Wiki
159 setting_feeds_limit: Feed content limit
159
160
160 label_user: Utente
161 label_user: Utente
161 label_user_plural: Utenti
162 label_user_plural: Utenti
162 label_user_new: Nuovo utente
163 label_user_new: Nuovo utente
163 label_project: Progetto
164 label_project: Progetto
164 label_project_new: New project
165 label_project_new: New project
165 label_project_plural: Progetti
166 label_project_plural: Progetti
166 label_project_latest: Ultimi progetti registrati
167 label_project_latest: Ultimi progetti registrati
167 label_issue: Contesto
168 label_issue: Contesto
168 label_issue_new: Nuovo contesto
169 label_issue_new: Nuovo contesto
169 label_issue_plural: Contesti
170 label_issue_plural: Contesti
170 label_issue_view_all: Mostra tutti i contesti
171 label_issue_view_all: Mostra tutti i contesti
171 label_document: Documento
172 label_document: Documento
172 label_document_new: Nuovo documento
173 label_document_new: Nuovo documento
173 label_document_plural: Documenti
174 label_document_plural: Documenti
174 label_role: Ruolo
175 label_role: Ruolo
175 label_role_plural: Ruoli
176 label_role_plural: Ruoli
176 label_role_new: Nuovo ruolo
177 label_role_new: Nuovo ruolo
177 label_role_and_permissions: Ruoli e permessi
178 label_role_and_permissions: Ruoli e permessi
178 label_member: Membro
179 label_member: Membro
179 label_member_new: Nuovo membro
180 label_member_new: Nuovo membro
180 label_member_plural: Membri
181 label_member_plural: Membri
181 label_tracker: Tracker
182 label_tracker: Tracker
182 label_tracker_plural: Trackers
183 label_tracker_plural: Trackers
183 label_tracker_new: Nuovo tracker
184 label_tracker_new: Nuovo tracker
184 label_workflow: Workflow
185 label_workflow: Workflow
185 label_issue_status: Stato contesti
186 label_issue_status: Stato contesti
186 label_issue_status_plural: Stati contesto
187 label_issue_status_plural: Stati contesto
187 label_issue_status_new: Nuovo stato
188 label_issue_status_new: Nuovo stato
188 label_issue_category: Categorie contesti
189 label_issue_category: Categorie contesti
189 label_issue_category_plural: Categorie contesto
190 label_issue_category_plural: Categorie contesto
190 label_issue_category_new: Nuova categoria
191 label_issue_category_new: Nuova categoria
191 label_custom_field: Campo personalizzato
192 label_custom_field: Campo personalizzato
192 label_custom_field_plural: Campi personalizzati
193 label_custom_field_plural: Campi personalizzati
193 label_custom_field_new: Nuovo campo personalizzato
194 label_custom_field_new: Nuovo campo personalizzato
194 label_enumerations: Enumerazioni
195 label_enumerations: Enumerazioni
195 label_enumeration_new: Nuovo valore
196 label_enumeration_new: Nuovo valore
196 label_information: Informazione
197 label_information: Informazione
197 label_information_plural: Informazioni
198 label_information_plural: Informazioni
198 label_please_login: Autenticarsi
199 label_please_login: Autenticarsi
199 label_register: Registrati
200 label_register: Registrati
200 label_password_lost: Password dimenticata
201 label_password_lost: Password dimenticata
201 label_home: Home
202 label_home: Home
202 label_my_page: Pagina personale
203 label_my_page: Pagina personale
203 label_my_account: La mia utenza
204 label_my_account: La mia utenza
204 label_my_projects: I miei progetti
205 label_my_projects: I miei progetti
205 label_administration: Amministrazione
206 label_administration: Amministrazione
206 label_login: Login
207 label_login: Login
207 label_logout: Logout
208 label_logout: Logout
208 label_help: Aiuto
209 label_help: Aiuto
209 label_reported_issues: Contesti segnalati
210 label_reported_issues: Contesti segnalati
210 label_assigned_to_me_issues: I miei contesti
211 label_assigned_to_me_issues: I miei contesti
211 label_last_login: Ultimo collegamento
212 label_last_login: Ultimo collegamento
212 label_last_updates: Ultimo aggiornamento
213 label_last_updates: Ultimo aggiornamento
213 label_last_updates_plural: %d ultimo aggiornamento
214 label_last_updates_plural: %d ultimo aggiornamento
214 label_registered_on: Registrato il
215 label_registered_on: Registrato il
215 label_activity: Attività
216 label_activity: Attività
216 label_new: Nuovo
217 label_new: Nuovo
217 label_logged_as: Autenticato come
218 label_logged_as: Autenticato come
218 label_environment: Ambiente
219 label_environment: Ambiente
219 label_authentication: Autenticazione
220 label_authentication: Autenticazione
220 label_auth_source: Modalità di autenticazione
221 label_auth_source: Modalità di autenticazione
221 label_auth_source_new: Nuova modalità di autenticazione
222 label_auth_source_new: Nuova modalità di autenticazione
222 label_auth_source_plural: Modalità di autenticazione
223 label_auth_source_plural: Modalità di autenticazione
223 label_subproject: Sottoprogetto
224 label_subproject: Sottoprogetto
224 label_subproject_plural: Sottoprogetti
225 label_subproject_plural: Sottoprogetti
225 label_min_max_length: Lunghezza minima - massima
226 label_min_max_length: Lunghezza minima - massima
226 label_list: Elenco
227 label_list: Elenco
227 label_date: Data
228 label_date: Data
228 label_integer: Intero
229 label_integer: Intero
229 label_boolean: Booleano
230 label_boolean: Booleano
230 label_string: Testo
231 label_string: Testo
231 label_text: Testo esteso
232 label_text: Testo esteso
232 label_attribute: Attributo
233 label_attribute: Attributo
233 label_attribute_plural: Attributi
234 label_attribute_plural: Attributi
234 label_download: %d Download
235 label_download: %d Download
235 label_download_plural: %d Download
236 label_download_plural: %d Download
236 label_no_data: Nessun dato disponibile
237 label_no_data: Nessun dato disponibile
237 label_change_status: Cambia stato
238 label_change_status: Cambia stato
238 label_history: Cronologia
239 label_history: Cronologia
239 label_attachment: File
240 label_attachment: File
240 label_attachment_new: Nuovo file
241 label_attachment_new: Nuovo file
241 label_attachment_delete: Elimina file
242 label_attachment_delete: Elimina file
242 label_attachment_plural: File
243 label_attachment_plural: File
243 label_report: Report
244 label_report: Report
244 label_report_plural: Report
245 label_report_plural: Report
245 label_news: Notizia
246 label_news: Notizia
246 label_news_new: Aggiungi notizia
247 label_news_new: Aggiungi notizia
247 label_news_plural: Notizie
248 label_news_plural: Notizie
248 label_news_latest: Utime notizie
249 label_news_latest: Utime notizie
249 label_news_view_all: Tutte le notizie
250 label_news_view_all: Tutte le notizie
250 label_change_log: Change log
251 label_change_log: Change log
251 label_settings: Impostazioni
252 label_settings: Impostazioni
252 label_overview: Panoramica
253 label_overview: Panoramica
253 label_version: Versione
254 label_version: Versione
254 label_version_new: Nuova versione
255 label_version_new: Nuova versione
255 label_version_plural: Versioni
256 label_version_plural: Versioni
256 label_confirmation: Conferma
257 label_confirmation: Conferma
257 label_export_to: Esporta su
258 label_export_to: Esporta su
258 label_read: Leggi...
259 label_read: Leggi...
259 label_public_projects: Progetti pubblici
260 label_public_projects: Progetti pubblici
260 label_open_issues: aperta
261 label_open_issues: aperta
261 label_open_issues_plural: aperte
262 label_open_issues_plural: aperte
262 label_closed_issues: chiusa
263 label_closed_issues: chiusa
263 label_closed_issues_plural: chiuse
264 label_closed_issues_plural: chiuse
264 label_total: Totale
265 label_total: Totale
265 label_permissions: Permessi
266 label_permissions: Permessi
266 label_current_status: Stato attuale
267 label_current_status: Stato attuale
267 label_new_statuses_allowed: Nuovi stati possibili
268 label_new_statuses_allowed: Nuovi stati possibili
268 label_all: tutti
269 label_all: tutti
269 label_none: nessuno
270 label_none: nessuno
270 label_next: Successivo
271 label_next: Successivo
271 label_previous: Precedente
272 label_previous: Precedente
272 label_used_by: Usato da
273 label_used_by: Usato da
273 label_details: Dettagli...
274 label_details: Dettagli...
274 label_add_note: Aggiungi una nota
275 label_add_note: Aggiungi una nota
275 label_per_page: Per pagina
276 label_per_page: Per pagina
276 label_calendar: Calendario
277 label_calendar: Calendario
277 label_months_from: mesi da
278 label_months_from: mesi da
278 label_gantt: Gantt
279 label_gantt: Gantt
279 label_internal: Interno
280 label_internal: Interno
280 label_last_changes: ultime %d modifiche
281 label_last_changes: ultime %d modifiche
281 label_change_view_all: Tutte le modifiche
282 label_change_view_all: Tutte le modifiche
282 label_personalize_page: Personalizza la pagina
283 label_personalize_page: Personalizza la pagina
283 label_comment: Commento
284 label_comment: Commento
284 label_comment_plural: Commenti
285 label_comment_plural: Commenti
285 label_comment_add: Aggiungi un commento
286 label_comment_add: Aggiungi un commento
286 label_comment_added: Commento aggiunto
287 label_comment_added: Commento aggiunto
287 label_comment_delete: Elimina commenti
288 label_comment_delete: Elimina commenti
288 label_query: Custom query
289 label_query: Custom query
289 label_query_plural: Query personalizzate
290 label_query_plural: Query personalizzate
290 label_query_new: Nuova query
291 label_query_new: Nuova query
291 label_filter_add: Aggiungi filtro
292 label_filter_add: Aggiungi filtro
292 label_filter_plural: Filtri
293 label_filter_plural: Filtri
293 label_equals: è
294 label_equals: è
294 label_not_equals: non è
295 label_not_equals: non è
295 label_in_less_than: è minore di
296 label_in_less_than: è minore di
296 label_in_more_than: è maggiore di
297 label_in_more_than: è maggiore di
297 label_in: in
298 label_in: in
298 label_today: oggi
299 label_today: oggi
299 label_less_than_ago: meno di giorni fa
300 label_less_than_ago: meno di giorni fa
300 label_more_than_ago: più di giorni fa
301 label_more_than_ago: più di giorni fa
301 label_ago: giorni fa
302 label_ago: giorni fa
302 label_contains: contiene
303 label_contains: contiene
303 label_not_contains: non contiene
304 label_not_contains: non contiene
304 label_day_plural: giorni
305 label_day_plural: giorni
305 label_repository: SVN Repository
306 label_repository: SVN Repository
306 label_browse: Browse
307 label_browse: Browse
307 label_modification: %d modifica
308 label_modification: %d modifica
308 label_modification_plural: %d modifiche
309 label_modification_plural: %d modifiche
309 label_revision: Versione
310 label_revision: Versione
310 label_revision_plural: Versioni
311 label_revision_plural: Versioni
311 label_added: aggiunto
312 label_added: aggiunto
312 label_modified: modificato
313 label_modified: modificato
313 label_deleted: eliminato
314 label_deleted: eliminato
314 label_latest_revision: Ultima versione
315 label_latest_revision: Ultima versione
315 label_view_revisions: Mostra versioni
316 label_view_revisions: Mostra versioni
316 label_max_size: Dimensione massima
317 label_max_size: Dimensione massima
317 label_on: 'on'
318 label_on: 'on'
318 label_sort_highest: Sposta in cima
319 label_sort_highest: Sposta in cima
319 label_sort_higher: Su
320 label_sort_higher: Su
320 label_sort_lower: Giù
321 label_sort_lower: Giù
321 label_sort_lowest: Sposta in fondo
322 label_sort_lowest: Sposta in fondo
322 label_roadmap: Roadmap
323 label_roadmap: Roadmap
323 label_search: Ricerca
324 label_search: Ricerca
324 label_result: %d risultato
325 label_result: %d risultato
325 label_result_plural: %d risultati
326 label_result_plural: %d risultati
326 label_all_words: Tutte le parole
327 label_all_words: Tutte le parole
327 label_wiki: Wiki
328 label_wiki: Wiki
328 label_page_index: Indice
329 label_page_index: Indice
329 label_current_version: Versione corrente
330 label_current_version: Versione corrente
330 label_preview: Previsione
331 label_preview: Previsione
331 label_feed_plural: Feeds
332 label_feed_plural: Feeds
332 label_changes_details: Particolari di tutti i cambiamenti
333 label_changes_details: Particolari di tutti i cambiamenti
333 label_issue_tracking: Issue tracking
334 label_issue_tracking: Issue tracking
334
335
335 button_login: Login
336 button_login: Login
336 button_submit: Invia
337 button_submit: Invia
337 button_save: Salva
338 button_save: Salva
338 button_check_all: Seleziona tutti
339 button_check_all: Seleziona tutti
339 button_uncheck_all: Deseleziona tutti
340 button_uncheck_all: Deseleziona tutti
340 button_delete: Elimina
341 button_delete: Elimina
341 button_create: Crea
342 button_create: Crea
342 button_test: Test
343 button_test: Test
343 button_edit: Modifica
344 button_edit: Modifica
344 button_add: Aggiungi
345 button_add: Aggiungi
345 button_change: Modifica
346 button_change: Modifica
346 button_apply: Applica
347 button_apply: Applica
347 button_clear: Pulisci
348 button_clear: Pulisci
348 button_lock: Blocca
349 button_lock: Blocca
349 button_unlock: Sblocca
350 button_unlock: Sblocca
350 button_download: Scarica
351 button_download: Scarica
351 button_list: Elenca
352 button_list: Elenca
352 button_view: Mostra
353 button_view: Mostra
353 button_move: Sposta
354 button_move: Sposta
354 button_back: Indietro
355 button_back: Indietro
355 button_cancel: Annulla
356 button_cancel: Annulla
356 button_activate: Attiva
357 button_activate: Attiva
357 button_sort: Ordina
358 button_sort: Ordina
358
359
359 text_select_mail_notifications: Select actions for which mail notifications should be sent.
360 text_select_mail_notifications: Select actions for which mail notifications should be sent.
360 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_regexp_info: eg. ^[A-Z0-9]+$
361 text_min_max_length_info: 0 means no restriction
362 text_min_max_length_info: 0 means no restriction
362 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
363 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
363 text_workflow_edit: Select a role and a tracker to edit the workflow
364 text_workflow_edit: Select a role and a tracker to edit the workflow
364 text_are_you_sure: Are you sure ?
365 text_are_you_sure: Are you sure ?
365 text_journal_changed: changed from %s to %s
366 text_journal_changed: changed from %s to %s
366 text_journal_set_to: set to %s
367 text_journal_set_to: set to %s
367 text_journal_deleted: deleted
368 text_journal_deleted: deleted
368 text_tip_task_begin_day: task beginning this day
369 text_tip_task_begin_day: task beginning this day
369 text_tip_task_end_day: task ending this day
370 text_tip_task_end_day: task ending this day
370 text_tip_task_begin_end_day: task beginning and ending this day
371 text_tip_task_begin_end_day: task beginning and ending this day
371
372
372 default_role_manager: Manager
373 default_role_manager: Manager
373 default_role_developper: Sviluppatore
374 default_role_developper: Sviluppatore
374 default_role_reporter: Reporter
375 default_role_reporter: Reporter
375 default_tracker_bug: Contesto
376 default_tracker_bug: Contesto
376 default_tracker_feature: Funzione
377 default_tracker_feature: Funzione
377 default_tracker_support: Supporto
378 default_tracker_support: Supporto
378 default_issue_status_new: Nuovo/a
379 default_issue_status_new: Nuovo/a
379 default_issue_status_assigned: Assegnato/a
380 default_issue_status_assigned: Assegnato/a
380 default_issue_status_resolved: Risolto/a
381 default_issue_status_resolved: Risolto/a
381 default_issue_status_feedback: Feedback
382 default_issue_status_feedback: Feedback
382 default_issue_status_closed: Chiuso/a
383 default_issue_status_closed: Chiuso/a
383 default_issue_status_rejected: Rifiutato/a
384 default_issue_status_rejected: Rifiutato/a
384 default_doc_category_user: Documentazione utente
385 default_doc_category_user: Documentazione utente
385 default_doc_category_tech: Documentazione tecnica
386 default_doc_category_tech: Documentazione tecnica
386 default_priority_low: Bassa
387 default_priority_low: Bassa
387 default_priority_normal: Normale
388 default_priority_normal: Normale
388 default_priority_high: Alta
389 default_priority_high: Alta
389 default_priority_urgent: Urgente
390 default_priority_urgent: Urgente
390 default_priority_immediate: Immediata
391 default_priority_immediate: Immediata
391
392
392 enumeration_issue_priorities: Priorità contesti
393 enumeration_issue_priorities: Priorità contesti
393 enumeration_doc_categories: Categorie di documenti
394 enumeration_doc_categories: Categorie di documenti
@@ -1,394 +1,395
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: must be accepted
27 activerecord_error_accepted: must be 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: has already been taken
33 activerecord_error_taken: has already been taken
34 activerecord_error_not_a_number: が数字ではありません
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37
37
38 general_fmt_age: %d歳
38 general_fmt_age: %d歳
39 general_fmt_age_plural: %d歳
39 general_fmt_age_plural: %d歳
40 general_fmt_date: %%Y年%%m月%%d日
40 general_fmt_date: %%Y年%%m月%%d日
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
41 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
42 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
43 general_fmt_time: %%H:%%M %%p
44 general_text_No: 'いいえ'
44 general_text_No: 'いいえ'
45 general_text_Yes: 'はい'
45 general_text_Yes: 'はい'
46 general_text_no: 'いいえ'
46 general_text_no: 'いいえ'
47 general_text_yes: 'はい'
47 general_text_yes: 'はい'
48 general_lang_ja: 'Japanese (日本語)'
48 general_lang_ja: 'Japanese (日本語)'
49 general_csv_separator: ','
49 general_csv_separator: ','
50 general_csv_encoding: SJIS
50 general_csv_encoding: SJIS
51 general_pdf_encoding: SJIS
51 general_pdf_encoding: SJIS
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
52 general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日
53
53
54 notice_account_updated: アカウントが更新されました。
54 notice_account_updated: アカウントが更新されました。
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
55 notice_account_invalid_creditentials: ユーザ名もしくはパスワードが無効
56 notice_account_password_updated: パスワードが更新されました。
56 notice_account_password_updated: パスワードが更新されました。
57 notice_account_wrong_password: パスワードが違います
57 notice_account_wrong_password: パスワードが違います
58 notice_account_register_done: アカウントが作成されました。
58 notice_account_register_done: アカウントが作成されました。
59 notice_account_unknown_email: ユーザが存在しません。
59 notice_account_unknown_email: ユーザが存在しません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
60 notice_can_t_change_password: このアカウントでは外部認証を使っています。パスワードは変更できません。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
61 notice_account_lost_email_sent: 新しいパスワードのメールを送信しました。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
62 notice_account_activated: アカウントが有効になりました。ログインできます。
63 notice_successful_create: 作成しました。
63 notice_successful_create: 作成しました。
64 notice_successful_update: 更新しました。
64 notice_successful_update: 更新しました。
65 notice_successful_delete: 削除しました。
65 notice_successful_delete: 削除しました。
66 notice_successful_connection: 接続しました。
66 notice_successful_connection: 接続しました。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
67 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
68 notice_locking_conflict: 別のユーザがデータを更新しています。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
69 notice_scm_error: リポジトリに、エントリ/リビジョンが存在しません。
70
70
71 mail_subject_lost_password: redMine パスワード
71 mail_subject_lost_password: redMine パスワード
72 mail_subject_register: redMine アカウントが有効になりました
72 mail_subject_register: redMine アカウントが有効になりました
73
73
74 gui_validation_error: 1 件のエラー
74 gui_validation_error: 1 件のエラー
75 gui_validation_error_plural: %d 件のエラー
75 gui_validation_error_plural: %d 件のエラー
76
76
77 field_name: 名前
77 field_name: 名前
78 field_description: 説明
78 field_description: 説明
79 field_summary: サマリ
79 field_summary: サマリ
80 field_is_required: 必須
80 field_is_required: 必須
81 field_firstname: 名前
81 field_firstname: 名前
82 field_lastname: 苗字
82 field_lastname: 苗字
83 field_mail: メールアドレス
83 field_mail: メールアドレス
84 field_filename: ファイル
84 field_filename: ファイル
85 field_filesize: サイズ
85 field_filesize: サイズ
86 field_downloads: ダウンロード
86 field_downloads: ダウンロード
87 field_author: 起票者
87 field_author: 起票者
88 field_created_on: 作成日
88 field_created_on: 作成日
89 field_updated_on: 更新日
89 field_updated_on: 更新日
90 field_field_format: 書式
90 field_field_format: 書式
91 field_is_for_all: 全プロジェクト向け
91 field_is_for_all: 全プロジェクト向け
92 field_possible_values: 選択肢
92 field_possible_values: 選択肢
93 field_regexp: 正規表現
93 field_regexp: 正規表現
94 field_min_length: 最小値
94 field_min_length: 最小値
95 field_max_length: 最大値
95 field_max_length: 最大値
96 field_value:
96 field_value:
97 field_category: カテゴリ
97 field_category: カテゴリ
98 field_title: タイトル
98 field_title: タイトル
99 field_project: プロジェクト
99 field_project: プロジェクト
100 field_issue: 問題
100 field_issue: 問題
101 field_status: ステータス
101 field_status: ステータス
102 field_notes: 注記
102 field_notes: 注記
103 field_is_closed: 終了した問題
103 field_is_closed: 終了した問題
104 field_is_default: デフォルトのステータス
104 field_is_default: デフォルトのステータス
105 field_html_color:
105 field_html_color:
106 field_tracker: トラッカー
106 field_tracker: トラッカー
107 field_subject: 題名
107 field_subject: 題名
108 field_due_date: 期限日
108 field_due_date: 期限日
109 field_assigned_to: 担当者
109 field_assigned_to: 担当者
110 field_priority: 優先度
110 field_priority: 優先度
111 field_fixed_version: 修正されたバージョン
111 field_fixed_version: 修正されたバージョン
112 field_user: ユーザ
112 field_user: ユーザ
113 field_role: 役割
113 field_role: 役割
114 field_homepage: ホームページ
114 field_homepage: ホームページ
115 field_is_public: 公開
115 field_is_public: 公開
116 field_parent: 親プロジェクト名
116 field_parent: 親プロジェクト名
117 field_is_in_chlog: 変更記録に表示されている問題
117 field_is_in_chlog: 変更記録に表示されている問題
118 field_is_in_roadmap: Issues displayed in roadmap
118 field_is_in_roadmap: Issues displayed in roadmap
119 field_login: ログイン
119 field_login: ログイン
120 field_mail_notification: メール通知
120 field_mail_notification: メール通知
121 field_admin: 管理者
121 field_admin: 管理者
122 field_locked: ロック済
122 field_locked: ロック済
123 field_last_login_on: 最終接続日
123 field_last_login_on: 最終接続日
124 field_language: 言語
124 field_language: 言語
125 field_effective_date: 日付
125 field_effective_date: 日付
126 field_password: パスワード
126 field_password: パスワード
127 field_new_password: 新しいパスワード
127 field_new_password: 新しいパスワード
128 field_password_confirmation: パスワードの確認
128 field_password_confirmation: パスワードの確認
129 field_version: バージョン
129 field_version: バージョン
130 field_type: タイプ
130 field_type: タイプ
131 field_host: ホスト
131 field_host: ホスト
132 field_port: ポート
132 field_port: ポート
133 field_account: アカウント
133 field_account: アカウント
134 field_base_dn: Base DN
134 field_base_dn: Base DN
135 field_attr_login: ログイン名属性
135 field_attr_login: ログイン名属性
136 field_attr_firstname: 名前属性
136 field_attr_firstname: 名前属性
137 field_attr_lastname: 苗字属性
137 field_attr_lastname: 苗字属性
138 field_attr_mail: メール属性
138 field_attr_mail: メール属性
139 field_onthefly: あわせてユーザを作成
139 field_onthefly: あわせてユーザを作成
140 field_start_date: 開始日
140 field_start_date: 開始日
141 field_done_ratio: 進捗 %%
141 field_done_ratio: 進捗 %%
142 field_auth_source: 認証モード
142 field_auth_source: 認証モード
143 field_hide_mail: Emailアドレスを隠す
143 field_hide_mail: Emailアドレスを隠す
144 field_comment: コメント
144 field_comment: コメント
145 field_url: URL
145 field_url: URL
146 field_start_page: メインページ
146 field_start_page: メインページ
147
147
148 setting_app_title: アプリケーションのタイトル
148 setting_app_title: アプリケーションのタイトル
149 setting_app_subtitle: アプリケーションのサブタイトル
149 setting_app_subtitle: アプリケーションのサブタイトル
150 setting_welcome_text: ウェルカムメッセージ
150 setting_welcome_text: ウェルカムメッセージ
151 setting_default_language: 既定の言語
151 setting_default_language: 既定の言語
152 setting_login_required: 認証が必要
152 setting_login_required: 認証が必要
153 setting_self_registration: ユーザは自分で登録できる
153 setting_self_registration: ユーザは自分で登録できる
154 setting_attachment_max_size: 添付の最大サイズ
154 setting_attachment_max_size: 添付の最大サイズ
155 setting_issues_export_limit: 出力する問題数の上限
155 setting_issues_export_limit: 出力する問題数の上限
156 setting_mail_from: Emission メールアドレス
156 setting_mail_from: Emission メールアドレス
157 setting_host_name: ホスト名
157 setting_host_name: ホスト名
158 setting_text_formatting: テキストの書式
158 setting_text_formatting: テキストの書式
159 setting_wiki_compression: Wiki history compression
159 setting_wiki_compression: Wiki history compression
160 setting_feeds_limit: Feed content limit
160
161
161 label_user: ユーザ
162 label_user: ユーザ
162 label_user_plural: ユーザ
163 label_user_plural: ユーザ
163 label_user_new: 新しいユーザ
164 label_user_new: 新しいユーザ
164 label_project: プロジェクト
165 label_project: プロジェクト
165 label_project_new: 新しいプロジェクト
166 label_project_new: 新しいプロジェクト
166 label_project_plural: プロジェクト
167 label_project_plural: プロジェクト
167 label_project_latest: 最近のプロジェクト
168 label_project_latest: 最近のプロジェクト
168 label_issue: 問題
169 label_issue: 問題
169 label_issue_new: 新しい問題
170 label_issue_new: 新しい問題
170 label_issue_plural: 問題
171 label_issue_plural: 問題
171 label_issue_view_all: 問題を全て見る
172 label_issue_view_all: 問題を全て見る
172 label_document: 文書
173 label_document: 文書
173 label_document_new: 新しい文書
174 label_document_new: 新しい文書
174 label_document_plural: 文書
175 label_document_plural: 文書
175 label_role: ロール
176 label_role: ロール
176 label_role_plural: ロール
177 label_role_plural: ロール
177 label_role_new: 新しいロール
178 label_role_new: 新しいロール
178 label_role_and_permissions: ロールと権限
179 label_role_and_permissions: ロールと権限
179 label_member: メンバー
180 label_member: メンバー
180 label_member_new: 新しいメンバー
181 label_member_new: 新しいメンバー
181 label_member_plural: メンバー
182 label_member_plural: メンバー
182 label_tracker: トラッカー
183 label_tracker: トラッカー
183 label_tracker_plural: トラッカー
184 label_tracker_plural: トラッカー
184 label_tracker_new: 新しいトラッカーを作成
185 label_tracker_new: 新しいトラッカーを作成
185 label_workflow: ワークフロー
186 label_workflow: ワークフロー
186 label_issue_status: 問題の状態
187 label_issue_status: 問題の状態
187 label_issue_status_plural: 問題の状態
188 label_issue_status_plural: 問題の状態
188 label_issue_status_new: 新しい状態
189 label_issue_status_new: 新しい状態
189 label_issue_category: 問題のカテゴリ
190 label_issue_category: 問題のカテゴリ
190 label_issue_category_plural: 問題のカテゴリ
191 label_issue_category_plural: 問題のカテゴリ
191 label_issue_category_new: 新しいカテゴリ
192 label_issue_category_new: 新しいカテゴリ
192 label_custom_field: カスタムフィールド
193 label_custom_field: カスタムフィールド
193 label_custom_field_plural: カスタムフィールド
194 label_custom_field_plural: カスタムフィールド
194 label_custom_field_new: 新しいカスタムフィールドを作成
195 label_custom_field_new: 新しいカスタムフィールドを作成
195 label_enumerations: 列挙項目
196 label_enumerations: 列挙項目
196 label_enumeration_new: 新しい値
197 label_enumeration_new: 新しい値
197 label_information: 情報
198 label_information: 情報
198 label_information_plural: 情報
199 label_information_plural: 情報
199 label_please_login: ログインしてください
200 label_please_login: ログインしてください
200 label_register: 登録する
201 label_register: 登録する
201 label_password_lost: パスワードの再発行
202 label_password_lost: パスワードの再発行
202 label_home: ホーム
203 label_home: ホーム
203 label_my_page: マイページ
204 label_my_page: マイページ
204 label_my_account: マイアカウント
205 label_my_account: マイアカウント
205 label_my_projects: マイプロジェクト
206 label_my_projects: マイプロジェクト
206 label_administration: 管理
207 label_administration: 管理
207 label_login: ログイン
208 label_login: ログイン
208 label_logout: ログアウト
209 label_logout: ログアウト
209 label_help: ヘルプ
210 label_help: ヘルプ
210 label_reported_issues: 報告されている問題
211 label_reported_issues: 報告されている問題
211 label_assigned_to_me_issues: 担当している問題
212 label_assigned_to_me_issues: 担当している問題
212 label_last_login: 最近の接続
213 label_last_login: 最近の接続
213 label_last_updates: 最近の更新 1 件
214 label_last_updates: 最近の更新 1 件
214 label_last_updates_plural: 最近の更新 %d 件
215 label_last_updates_plural: 最近の更新 %d 件
215 label_registered_on: 登録日
216 label_registered_on: 登録日
216 label_activity: 活動
217 label_activity: 活動
217 label_new: 新しく作成
218 label_new: 新しく作成
218 label_logged_as: ログイン中:
219 label_logged_as: ログイン中:
219 label_environment: 環境
220 label_environment: 環境
220 label_authentication: 認証
221 label_authentication: 認証
221 label_auth_source: 認証モード
222 label_auth_source: 認証モード
222 label_auth_source_new: 新しい認証モード
223 label_auth_source_new: 新しい認証モード
223 label_auth_source_plural: 認証モード
224 label_auth_source_plural: 認証モード
224 label_subproject: サブプロジェクト
225 label_subproject: サブプロジェクト
225 label_subproject_plural: サブプロジェクト
226 label_subproject_plural: サブプロジェクト
226 label_min_max_length: 最小値 - 最大値の長さ
227 label_min_max_length: 最小値 - 最大値の長さ
227 label_list: リストから選択
228 label_list: リストから選択
228 label_date: 日付
229 label_date: 日付
229 label_integer: 整数
230 label_integer: 整数
230 label_boolean: 真偽値
231 label_boolean: 真偽値
231 label_string: テキスト
232 label_string: テキスト
232 label_text: 長いテキスト
233 label_text: 長いテキスト
233 label_attribute: 属性
234 label_attribute: 属性
234 label_attribute_plural: 属性
235 label_attribute_plural: 属性
235 label_download: %d ダウンロード
236 label_download: %d ダウンロード
236 label_download_plural: %d ダウンロード
237 label_download_plural: %d ダウンロード
237 label_no_data: 表示するデータがありません
238 label_no_data: 表示するデータがありません
238 label_change_status: 変更の状況
239 label_change_status: 変更の状況
239 label_history: 履歴
240 label_history: 履歴
240 label_attachment: ファイル
241 label_attachment: ファイル
241 label_attachment_new: 新しいファイル
242 label_attachment_new: 新しいファイル
242 label_attachment_delete: ファイルを削除
243 label_attachment_delete: ファイルを削除
243 label_attachment_plural: ファイル
244 label_attachment_plural: ファイル
244 label_report: レポート
245 label_report: レポート
245 label_report_plural: レポート
246 label_report_plural: レポート
246 label_news: ニュース
247 label_news: ニュース
247 label_news_new: ニュースを追加
248 label_news_new: ニュースを追加
248 label_news_plural: ニュース
249 label_news_plural: ニュース
249 label_news_latest: 最新ニュース
250 label_news_latest: 最新ニュース
250 label_news_view_all: 全てのニュースを見る
251 label_news_view_all: 全てのニュースを見る
251 label_change_log: 変更記録
252 label_change_log: 変更記録
252 label_settings: 設定
253 label_settings: 設定
253 label_overview: 概要
254 label_overview: 概要
254 label_version: バージョン
255 label_version: バージョン
255 label_version_new: 新しいバージョン
256 label_version_new: 新しいバージョン
256 label_version_plural: バージョン
257 label_version_plural: バージョン
257 label_confirmation: 確認
258 label_confirmation: 確認
258 label_export_to: 他の形式に出力
259 label_export_to: 他の形式に出力
259 label_read: 読む...
260 label_read: 読む...
260 label_public_projects: 公開プロジェクト
261 label_public_projects: 公開プロジェクト
261 label_open_issues: 未着手
262 label_open_issues: 未着手
262 label_open_issues_plural: 未着手
263 label_open_issues_plural: 未着手
263 label_closed_issues: 終了
264 label_closed_issues: 終了
264 label_closed_issues_plural: 終了
265 label_closed_issues_plural: 終了
265 label_total: 合計
266 label_total: 合計
266 label_permissions: 権限
267 label_permissions: 権限
267 label_current_status: 現在の状態
268 label_current_status: 現在の状態
268 label_new_statuses_allowed: 状態の移行先
269 label_new_statuses_allowed: 状態の移行先
269 label_all: 全て
270 label_all: 全て
270 label_none: なし
271 label_none: なし
271 label_next:
272 label_next:
272 label_previous:
273 label_previous:
273 label_used_by: 使用中
274 label_used_by: 使用中
274 label_details: 詳細...
275 label_details: 詳細...
275 label_add_note: 注記を追加
276 label_add_note: 注記を追加
276 label_per_page: ページ毎
277 label_per_page: ページ毎
277 label_calendar: カレンダー
278 label_calendar: カレンダー
278 label_months_from: ヶ月 from
279 label_months_from: ヶ月 from
279 label_gantt: ガントチャート
280 label_gantt: ガントチャート
280 label_internal: Internal
281 label_internal: Internal
281 label_last_changes: 最新の変更 %d 件
282 label_last_changes: 最新の変更 %d 件
282 label_change_view_all: 全ての変更を見る
283 label_change_view_all: 全ての変更を見る
283 label_personalize_page: このページをパーソナライズする
284 label_personalize_page: このページをパーソナライズする
284 label_comment: コメント
285 label_comment: コメント
285 label_comment_plural: コメント
286 label_comment_plural: コメント
286 label_comment_add: コメント追加
287 label_comment_add: コメント追加
287 label_comment_added: 追加されたコメント
288 label_comment_added: 追加されたコメント
288 label_comment_delete: コメント削除
289 label_comment_delete: コメント削除
289 label_query: カスタムクエリ
290 label_query: カスタムクエリ
290 label_query_plural: カスタムクエリ
291 label_query_plural: カスタムクエリ
291 label_query_new: 新しいクエリ
292 label_query_new: 新しいクエリ
292 label_filter_add: フィルタ追加
293 label_filter_add: フィルタ追加
293 label_filter_plural: フィルタ
294 label_filter_plural: フィルタ
294 label_equals: 等しい
295 label_equals: 等しい
295 label_not_equals: 等しくない
296 label_not_equals: 等しくない
296 label_in_less_than: 残日数がこれより多い
297 label_in_less_than: 残日数がこれより多い
297 label_in_more_than: 残日数がこれより少ない
298 label_in_more_than: 残日数がこれより少ない
298 label_in: 残日数
299 label_in: 残日数
299 label_today: 今日
300 label_today: 今日
300 label_less_than_ago: 経過日数がこれより少ない
301 label_less_than_ago: 経過日数がこれより少ない
301 label_more_than_ago: 経過日数がこれより多い
302 label_more_than_ago: 経過日数がこれより多い
302 label_ago: 日前
303 label_ago: 日前
303 label_contains: 含む
304 label_contains: 含む
304 label_not_contains: 含まない
305 label_not_contains: 含まない
305 label_day_plural:
306 label_day_plural:
306 label_repository: SVNリポジトリ
307 label_repository: SVNリポジトリ
307 label_browse: ブラウズ
308 label_browse: ブラウズ
308 label_modification: %d 点の変更
309 label_modification: %d 点の変更
309 label_modification_plural: %d 点の変更
310 label_modification_plural: %d 点の変更
310 label_revision: リビジョン
311 label_revision: リビジョン
311 label_revision_plural: リビジョン
312 label_revision_plural: リビジョン
312 label_added: 追加された
313 label_added: 追加された
313 label_modified: 変更された
314 label_modified: 変更された
314 label_deleted: 削除された
315 label_deleted: 削除された
315 label_latest_revision: 最新リビジョン
316 label_latest_revision: 最新リビジョン
316 label_view_revisions: リビジョンを見る
317 label_view_revisions: リビジョンを見る
317 label_max_size: 最大サイズ
318 label_max_size: 最大サイズ
318 label_on:
319 label_on:
319 label_sort_highest: 一番上へ
320 label_sort_highest: 一番上へ
320 label_sort_higher: 上へ
321 label_sort_higher: 上へ
321 label_sort_lower: 下へ
322 label_sort_lower: 下へ
322 label_sort_lowest: 一番下へ
323 label_sort_lowest: 一番下へ
323 label_roadmap: ロードマップ
324 label_roadmap: ロードマップ
324 label_search: 検索
325 label_search: 検索
325 label_result: %d 件の結果
326 label_result: %d 件の結果
326 label_result_plural: %d 件の結果
327 label_result_plural: %d 件の結果
327 label_all_words: すべての単語
328 label_all_words: すべての単語
328 label_wiki: Wiki
329 label_wiki: Wiki
329 label_page_index: 索引
330 label_page_index: 索引
330 label_current_version: 最近版
331 label_current_version: 最近版
331 label_preview: 下検分
332 label_preview: 下検分
332 label_feed_plural: Feeds
333 label_feed_plural: Feeds
333 label_changes_details: Details of all changes
334 label_changes_details: Details of all changes
334 label_issue_tracking: Issue tracking
335 label_issue_tracking: Issue tracking
335
336
336 button_login: ログイン
337 button_login: ログイン
337 button_submit: 変更
338 button_submit: 変更
338 button_save: 保存
339 button_save: 保存
339 button_check_all: チェックを全部つける
340 button_check_all: チェックを全部つける
340 button_uncheck_all: チェックを全部外す
341 button_uncheck_all: チェックを全部外す
341 button_delete: 削除
342 button_delete: 削除
342 button_create: 作成
343 button_create: 作成
343 button_test: テスト
344 button_test: テスト
344 button_edit: 編集
345 button_edit: 編集
345 button_add: 追加
346 button_add: 追加
346 button_change: 変更
347 button_change: 変更
347 button_apply: 適用
348 button_apply: 適用
348 button_clear: クリア
349 button_clear: クリア
349 button_lock: ロック
350 button_lock: ロック
350 button_unlock: アンロック
351 button_unlock: アンロック
351 button_download: ダウンロード
352 button_download: ダウンロード
352 button_list: 一覧
353 button_list: 一覧
353 button_view: 見る
354 button_view: 見る
354 button_move: 移動
355 button_move: 移動
355 button_back: 戻る
356 button_back: 戻る
356 button_cancel: キャンセル
357 button_cancel: キャンセル
357 button_activate: 有効にする
358 button_activate: 有効にする
358 button_sort: ソート
359 button_sort: ソート
359
360
360 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
361 text_select_mail_notifications: どのメール通知を送信するか、アクションを選択してください。
361 text_regexp_info: 例) ^[A-Z0-9]+$
362 text_regexp_info: 例) ^[A-Z0-9]+$
362 text_min_max_length_info: 0だと無制限になります
363 text_min_max_length_info: 0だと無制限になります
363 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
364 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
364 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
365 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
365 text_are_you_sure: 本当に?
366 text_are_you_sure: 本当に?
366 text_journal_changed: %s から %s への変更
367 text_journal_changed: %s から %s への変更
367 text_journal_set_to: %s にセット
368 text_journal_set_to: %s にセット
368 text_journal_deleted: 削除
369 text_journal_deleted: 削除
369 text_tip_task_begin_day: この日に開始するタスク
370 text_tip_task_begin_day: この日に開始するタスク
370 text_tip_task_end_day: この日に終了するタスク
371 text_tip_task_end_day: この日に終了するタスク
371 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
372 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
372
373
373 default_role_manager: 管理者
374 default_role_manager: 管理者
374 default_role_developper: 開発者
375 default_role_developper: 開発者
375 default_role_reporter: 報告者
376 default_role_reporter: 報告者
376 default_tracker_bug: バグ
377 default_tracker_bug: バグ
377 default_tracker_feature: 機能
378 default_tracker_feature: 機能
378 default_tracker_support: サポート
379 default_tracker_support: サポート
379 default_issue_status_new: 新規
380 default_issue_status_new: 新規
380 default_issue_status_assigned: 分担
381 default_issue_status_assigned: 分担
381 default_issue_status_resolved: 解決
382 default_issue_status_resolved: 解決
382 default_issue_status_feedback: フィードバック
383 default_issue_status_feedback: フィードバック
383 default_issue_status_closed: 終了
384 default_issue_status_closed: 終了
384 default_issue_status_rejected: 却下
385 default_issue_status_rejected: 却下
385 default_doc_category_user: ユーザ文書
386 default_doc_category_user: ユーザ文書
386 default_doc_category_tech: 技術文書
387 default_doc_category_tech: 技術文書
387 default_priority_low: 低め
388 default_priority_low: 低め
388 default_priority_normal: 通常
389 default_priority_normal: 通常
389 default_priority_high: 高め
390 default_priority_high: 高め
390 default_priority_urgent: 急いで
391 default_priority_urgent: 急いで
391 default_priority_immediate: 今すぐ
392 default_priority_immediate: 今すぐ
392
393
393 enumeration_issue_priorities: 問題の優先度
394 enumeration_issue_priorities: 問題の優先度
394 enumeration_doc_categories: 文書カテゴリ
395 enumeration_doc_categories: 文書カテゴリ
@@ -1,609 +1,611
1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
2 /* Edited by Jean-Philippe Lang *>
2 /* Edited by Jean-Philippe Lang *>
3 /**************** Body and tag styles ****************/
3 /**************** Body and tag styles ****************/
4
4
5 #header * {margin:0; padding:0;}
5 #header * {margin:0; padding:0;}
6 p, ul, ol, li {margin:0; padding:0;}
6 p, ul, ol, li {margin:0; padding:0;}
7
7
8 body{
8 body{
9 font:76% Verdana,Tahoma,Arial,sans-serif;
9 font:76% Verdana,Tahoma,Arial,sans-serif;
10 line-height:1.4em;
10 line-height:1.4em;
11 text-align:center;
11 text-align:center;
12 color:#303030;
12 color:#303030;
13 background:#e8eaec;
13 background:#e8eaec;
14 margin:0;
14 margin:0;
15 }
15 }
16
16
17 a{color:#467aa7;font-weight:bold;text-decoration:none;background-color:inherit;}
17 a{color:#467aa7;font-weight:bold;text-decoration:none;background-color:inherit;}
18 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
18 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
19 a img{border:none;}
19 a img{border:none;}
20
20
21 p{margin:0 0 1em 0;}
21 p{margin:0 0 1em 0;}
22 p form{margin-top:0; margin-bottom:20px;}
22 p form{margin-top:0; margin-bottom:20px;}
23
23
24 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
24 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
25 img.left{float:left; margin:0 12px 5px 0;}
25 img.left{float:left; margin:0 12px 5px 0;}
26 img.center{display:block; margin:0 auto 5px auto;}
26 img.center{display:block; margin:0 auto 5px auto;}
27 img.right{float:right; margin:0 0 5px 12px;}
27 img.right{float:right; margin:0 0 5px 12px;}
28
28
29 /**************** Header and navigation styles ****************/
29 /**************** Header and navigation styles ****************/
30
30
31 #container{
31 #container{
32 width:100%;
32 width:100%;
33 min-width: 800px;
33 min-width: 800px;
34 margin:0;
34 margin:0;
35 padding:0;
35 padding:0;
36 text-align:left;
36 text-align:left;
37 background:#ffffff;
37 background:#ffffff;
38 color:#303030;
38 color:#303030;
39 }
39 }
40
40
41 #header{
41 #header{
42 height:4.5em;
42 height:4.5em;
43 margin:0;
43 margin:0;
44 background:#467aa7;
44 background:#467aa7;
45 color:#ffffff;
45 color:#ffffff;
46 margin-bottom:1px;
46 margin-bottom:1px;
47 }
47 }
48
48
49 #header h1{
49 #header h1{
50 padding:10px 0 0 20px;
50 padding:10px 0 0 20px;
51 font-size:2em;
51 font-size:2em;
52 background-color:inherit;
52 background-color:inherit;
53 color:#fff;
53 color:#fff;
54 letter-spacing:-1px;
54 letter-spacing:-1px;
55 font-weight:bold;
55 font-weight:bold;
56 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
56 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
57 }
57 }
58
58
59 #header h2{
59 #header h2{
60 margin:3px 0 0 40px;
60 margin:3px 0 0 40px;
61 font-size:1.5em;
61 font-size:1.5em;
62 background-color:inherit;
62 background-color:inherit;
63 color:#f0f2f4;
63 color:#f0f2f4;
64 letter-spacing:-1px;
64 letter-spacing:-1px;
65 font-weight:normal;
65 font-weight:normal;
66 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
66 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
67 }
67 }
68
68
69 #navigation{
69 #navigation{
70 height:2.2em;
70 height:2.2em;
71 line-height:2.2em;
71 line-height:2.2em;
72 margin:0;
72 margin:0;
73 background:#578bb8;
73 background:#578bb8;
74 color:#ffffff;
74 color:#ffffff;
75 }
75 }
76
76
77 #navigation li{
77 #navigation li{
78 float:left;
78 float:left;
79 list-style-type:none;
79 list-style-type:none;
80 border-right:1px solid #ffffff;
80 border-right:1px solid #ffffff;
81 white-space:nowrap;
81 white-space:nowrap;
82 }
82 }
83
83
84 #navigation li.right {
84 #navigation li.right {
85 float:right;
85 float:right;
86 list-style-type:none;
86 list-style-type:none;
87 border-right:0;
87 border-right:0;
88 border-left:1px solid #ffffff;
88 border-left:1px solid #ffffff;
89 white-space:nowrap;
89 white-space:nowrap;
90 }
90 }
91
91
92 #navigation li a{
92 #navigation li a{
93 display:block;
93 display:block;
94 padding:0px 10px 0px 22px;
94 padding:0px 10px 0px 22px;
95 font-size:0.8em;
95 font-size:0.8em;
96 font-weight:normal;
96 font-weight:normal;
97 text-decoration:none;
97 text-decoration:none;
98 background-color:inherit;
98 background-color:inherit;
99 color: #ffffff;
99 color: #ffffff;
100 }
100 }
101
101
102 #navigation li.submenu {background:url(../images/arrow_down.png) 96% 80% no-repeat;}
102 #navigation li.submenu {background:url(../images/arrow_down.png) 96% 80% no-repeat;}
103 #navigation li.submenu a {padding:0px 16px 0px 22px;}
103 #navigation li.submenu a {padding:0px 16px 0px 22px;}
104 * html #navigation a {width:1%;}
104 * html #navigation a {width:1%;}
105
105
106 #navigation .selected,#navigation a:hover{
106 #navigation .selected,#navigation a:hover{
107 color:#ffffff;
107 color:#ffffff;
108 text-decoration:none;
108 text-decoration:none;
109 background-color: #80b0da;
109 background-color: #80b0da;
110 }
110 }
111
111
112 /**************** Icons *******************/
112 /**************** Icons *******************/
113 .icon {
113 .icon {
114 background-position: 0% 40%;
114 background-position: 0% 40%;
115 background-repeat: no-repeat;
115 background-repeat: no-repeat;
116 padding-left: 20px;
116 padding-left: 20px;
117 padding-top: 2px;
117 padding-top: 2px;
118 padding-bottom: 3px;
118 padding-bottom: 3px;
119 vertical-align: middle;
119 vertical-align: middle;
120 }
120 }
121
121
122 #navigation .icon {
122 #navigation .icon {
123 background-position: 4px 50%;
123 background-position: 4px 50%;
124 }
124 }
125
125
126 .icon22 {
126 .icon22 {
127 background-position: 0% 40%;
127 background-position: 0% 40%;
128 background-repeat: no-repeat;
128 background-repeat: no-repeat;
129 padding-left: 26px;
129 padding-left: 26px;
130 line-height: 22px;
130 line-height: 22px;
131 vertical-align: middle;
131 vertical-align: middle;
132 }
132 }
133
133
134 .icon-add { background-image: url(../images/add.png); }
134 .icon-add { background-image: url(../images/add.png); }
135 .icon-edit { background-image: url(../images/edit.png); }
135 .icon-edit { background-image: url(../images/edit.png); }
136 .icon-del { background-image: url(../images/delete.png); }
136 .icon-del { background-image: url(../images/delete.png); }
137 .icon-move { background-image: url(../images/move.png); }
137 .icon-move { background-image: url(../images/move.png); }
138 .icon-save { background-image: url(../images/save.png); }
138 .icon-save { background-image: url(../images/save.png); }
139 .icon-cancel { background-image: url(../images/cancel.png); }
139 .icon-cancel { background-image: url(../images/cancel.png); }
140 .icon-pdf { background-image: url(../images/pdf.png); }
140 .icon-pdf { background-image: url(../images/pdf.png); }
141 .icon-csv { background-image: url(../images/csv.png); }
141 .icon-csv { background-image: url(../images/csv.png); }
142 .icon-html { background-image: url(../images/html.png); }
142 .icon-html { background-image: url(../images/html.png); }
143 .icon-txt { background-image: url(../images/txt.png); }
143 .icon-txt { background-image: url(../images/txt.png); }
144 .icon-file { background-image: url(../images/file.png); }
144 .icon-file { background-image: url(../images/file.png); }
145 .icon-folder { background-image: url(../images/folder.png); }
145 .icon-folder { background-image: url(../images/folder.png); }
146 .icon-package { background-image: url(../images/package.png); }
146 .icon-package { background-image: url(../images/package.png); }
147 .icon-home { background-image: url(../images/home.png); }
147 .icon-home { background-image: url(../images/home.png); }
148 .icon-user { background-image: url(../images/user.png); }
148 .icon-user { background-image: url(../images/user.png); }
149 .icon-mypage { background-image: url(../images/user_page.png); }
149 .icon-mypage { background-image: url(../images/user_page.png); }
150 .icon-admin { background-image: url(../images/admin.png); }
150 .icon-admin { background-image: url(../images/admin.png); }
151 .icon-projects { background-image: url(../images/projects.png); }
151 .icon-projects { background-image: url(../images/projects.png); }
152 .icon-logout { background-image: url(../images/logout.png); }
152 .icon-logout { background-image: url(../images/logout.png); }
153 .icon-help { background-image: url(../images/help.png); }
153 .icon-help { background-image: url(../images/help.png); }
154 .icon-attachment { background-image: url(../images/attachment.png); }
154 .icon-attachment { background-image: url(../images/attachment.png); }
155 .icon-index { background-image: url(../images/index.png); }
155 .icon-index { background-image: url(../images/index.png); }
156 .icon-history { background-image: url(../images/history.png); }
156 .icon-history { background-image: url(../images/history.png); }
157 .icon-feed { background-image: url(../images/feed.png); }
157 .icon-feed { background-image: url(../images/feed.png); }
158
158
159 .icon22-projects { background-image: url(../images/22x22/projects.png); }
159 .icon22-projects { background-image: url(../images/22x22/projects.png); }
160 .icon22-users { background-image: url(../images/22x22/users.png); }
160 .icon22-users { background-image: url(../images/22x22/users.png); }
161 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
161 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
162 .icon22-role { background-image: url(../images/22x22/role.png); }
162 .icon22-role { background-image: url(../images/22x22/role.png); }
163 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
163 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
164 .icon22-options { background-image: url(../images/22x22/options.png); }
164 .icon22-options { background-image: url(../images/22x22/options.png); }
165 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
165 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
166 .icon22-authent { background-image: url(../images/22x22/authent.png); }
166 .icon22-authent { background-image: url(../images/22x22/authent.png); }
167 .icon22-info { background-image: url(../images/22x22/info.png); }
167 .icon22-info { background-image: url(../images/22x22/info.png); }
168 .icon22-comment { background-image: url(../images/22x22/comment.png); }
168 .icon22-comment { background-image: url(../images/22x22/comment.png); }
169 .icon22-package { background-image: url(../images/22x22/package.png); }
169 .icon22-package { background-image: url(../images/22x22/package.png); }
170 .icon22-settings { background-image: url(../images/22x22/settings.png); }
170 .icon22-settings { background-image: url(../images/22x22/settings.png); }
171
171
172 /**************** Content styles ****************/
172 /**************** Content styles ****************/
173
173
174 html>body #content {
174 html>body #content {
175 height: auto;
175 height: auto;
176 min-height: 500px;
176 min-height: 500px;
177 }
177 }
178
178
179 #content{
179 #content{
180 width: auto;
180 width: auto;
181 height:500px;
181 height:500px;
182 font-size:0.9em;
182 font-size:0.9em;
183 padding:20px 10px 10px 20px;
183 padding:20px 10px 10px 20px;
184 margin-left: 120px;
184 margin-left: 120px;
185 border-left: 1px dashed #c0c0c0;
185 border-left: 1px dashed #c0c0c0;
186
186
187 }
187 }
188
188
189 #content h2, #content div.wiki h1 {
189 #content h2, #content div.wiki h1 {
190 display:block;
190 display:block;
191 margin:0 0 16px 0;
191 margin:0 0 16px 0;
192 font-size:1.7em;
192 font-size:1.7em;
193 font-weight:normal;
193 font-weight:normal;
194 letter-spacing:-1px;
194 letter-spacing:-1px;
195 color:#606060;
195 color:#606060;
196 background-color:inherit;
196 background-color:inherit;
197 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
197 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
198 }
198 }
199
199
200 #content h2 a{font-weight:normal;}
200 #content h2 a{font-weight:normal;}
201 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
201 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
202 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
202 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
203 #content a:hover,#subcontent a:hover{text-decoration:underline;}
203 #content a:hover,#subcontent a:hover{text-decoration:underline;}
204 #content ul,#content ol{margin:0 5px 16px 35px;}
204 #content ul,#content ol{margin:0 5px 16px 35px;}
205 #content dl{margin:0 5px 10px 25px;}
205 #content dl{margin:0 5px 10px 25px;}
206 #content dt{font-weight:bold; margin-bottom:5px;}
206 #content dt{font-weight:bold; margin-bottom:5px;}
207 #content dd{margin:0 0 10px 15px;}
207 #content dd{margin:0 0 10px 15px;}
208
208
209 #content .tabs{height: 2.6em;}
209 #content .tabs{height: 2.6em;}
210 #content .tabs ul{margin:0;}
210 #content .tabs ul{margin:0;}
211 #content .tabs ul li{
211 #content .tabs ul li{
212 float:left;
212 float:left;
213 list-style-type:none;
213 list-style-type:none;
214 white-space:nowrap;
214 white-space:nowrap;
215 margin-right:8px;
215 margin-right:8px;
216 background:#fff;
216 background:#fff;
217 }
217 }
218 #content .tabs ul li a{
218 #content .tabs ul li a{
219 display:block;
219 display:block;
220 font-size: 0.9em;
220 font-size: 0.9em;
221 text-decoration:none;
221 text-decoration:none;
222 line-height:1em;
222 line-height:1em;
223 padding:4px;
223 padding:4px;
224 border: 1px solid #c0c0c0;
224 border: 1px solid #c0c0c0;
225 }
225 }
226
226
227 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
227 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
228 background-color: #80b0da;
228 background-color: #80b0da;
229 border: 1px solid #80b0da;
229 border: 1px solid #80b0da;
230 color: #fff;
230 color: #fff;
231 text-decoration:none;
231 text-decoration:none;
232 }
232 }
233
233
234 /***********************************************/
234 /***********************************************/
235
235
236 form {display: inline;}
236 form {display: inline;}
237 blockquote {padding-left: 6px; border-left: 2px solid #ccc;}
237 blockquote {padding-left: 6px; border-left: 2px solid #ccc;}
238 input, select {vertical-align: middle; margin-bottom: 4px;}
238 input, select {vertical-align: middle; margin-bottom: 4px;}
239
239
240 input.button-small {font-size: 0.8em;}
240 input.button-small {font-size: 0.8em;}
241 textarea.wiki-edit { width: 99.5%; }
241 textarea.wiki-edit { width: 99.5%; }
242 .select-small {font-size: 0.8em;}
242 .select-small {font-size: 0.8em;}
243 label {font-weight: bold; font-size: 1em; color: #505050;}
243 label {font-weight: bold; font-size: 1em; color: #505050;}
244 fieldset {border:1px solid #c0c0c0; padding: 6px;}
244 fieldset {border:1px solid #c0c0c0; padding: 6px;}
245 legend {color: #505050;}
245 legend {color: #505050;}
246 .required {color: #bb0000;}
246 .required {color: #bb0000;}
247 .odd {background-color:#f6f7f8;}
247 .odd {background-color:#f6f7f8;}
248 .even {background-color: #fff;}
248 .even {background-color: #fff;}
249 hr { border:0; border-top: dotted 1px #fff; border-bottom: dotted 1px #c0c0c0; }
249 hr { border:0; border-top: dotted 1px #fff; border-bottom: dotted 1px #c0c0c0; }
250 table p {margin:0; padding:0;}
250 table p {margin:0; padding:0;}
251 table td {padding-right: 1em;}
251 table td {padding-right: 1em;}
252
252
253 .highlight { background-color: #FCFD8D;}
253 .highlight { background-color: #FCFD8D;}
254
254
255 div.square {
255 div.square {
256 border: 1px solid #999;
256 border: 1px solid #999;
257 float: left;
257 float: left;
258 margin: .4em .5em 0 0;
258 margin: .4em .5em 0 0;
259 overflow: hidden;
259 overflow: hidden;
260 width: .6em; height: .6em;
260 width: .6em; height: .6em;
261 }
261 }
262
262
263 ul.documents {
263 ul.documents {
264 list-style-type: none;
264 list-style-type: none;
265 padding: 0;
265 padding: 0;
266 margin: 0;
266 margin: 0;
267 }
267 }
268
268
269 ul.documents li {
269 ul.documents li {
270 background-image: url(../images/32x32/file.png);
270 background-image: url(../images/32x32/file.png);
271 background-repeat: no-repeat;
271 background-repeat: no-repeat;
272 background-position: 0 1px;
272 background-position: 0 1px;
273 padding-left: 36px;
273 padding-left: 36px;
274 margin-bottom: 10px;
274 margin-bottom: 10px;
275 margin-left: -37px;
275 margin-left: -37px;
276 }
276 }
277
277
278 /********** Table used to display lists of things ***********/
278 /********** Table used to display lists of things ***********/
279
279
280 table.list {
280 table.list {
281 width:100%;
281 width:100%;
282 border-collapse: collapse;
282 border-collapse: collapse;
283 border: 1px dotted #d0d0d0;
283 border: 1px dotted #d0d0d0;
284 margin-bottom: 6px;
284 margin-bottom: 6px;
285 }
285 }
286
286
287 table.with-cells td {
287 table.with-cells td {
288 border: 1px solid #d7d7d7;
288 border: 1px solid #d7d7d7;
289 }
289 }
290
290
291 table.list td {
291 table.list td {
292 padding:2px;
292 padding:2px;
293 }
293 }
294
294
295 table.list thead th {
295 table.list thead th {
296 text-align: center;
296 text-align: center;
297 background: #eee;
297 background: #eee;
298 border: 1px solid #d7d7d7;
298 border: 1px solid #d7d7d7;
299 color: #777;
299 color: #777;
300 }
300 }
301
301
302 table.list tbody th {
302 table.list tbody th {
303 font-weight: normal;
303 font-weight: normal;
304 background: #eed;
304 background: #eed;
305 border: 1px solid #d7d7d7;
305 border: 1px solid #d7d7d7;
306 }
306 }
307
307
308 /********** Validation error messages *************/
308 /********** Validation error messages *************/
309 #errorExplanation {
309 #errorExplanation {
310 width: 400px;
310 width: 400px;
311 border: 0;
311 border: 0;
312 padding: 7px;
312 padding: 7px;
313 padding-bottom: 3px;
313 padding-bottom: 3px;
314 margin-bottom: 0px;
314 margin-bottom: 0px;
315 }
315 }
316
316
317 #errorExplanation h2 {
317 #errorExplanation h2 {
318 text-align: left;
318 text-align: left;
319 font-weight: bold;
319 font-weight: bold;
320 padding: 5px 5px 10px 26px;
320 padding: 5px 5px 10px 26px;
321 font-size: 1em;
321 font-size: 1em;
322 margin: -7px;
322 margin: -7px;
323 background: url(../images/alert.png) no-repeat 6px 6px;
323 background: url(../images/alert.png) no-repeat 6px 6px;
324 }
324 }
325
325
326 #errorExplanation p {
326 #errorExplanation p {
327 color: #333;
327 color: #333;
328 margin-bottom: 0;
328 margin-bottom: 0;
329 padding: 5px;
329 padding: 5px;
330 }
330 }
331
331
332 #errorExplanation ul li {
332 #errorExplanation ul li {
333 font-size: 1em;
333 font-size: 1em;
334 list-style: none;
334 list-style: none;
335 margin-left: -16px;
335 margin-left: -16px;
336 }
336 }
337
337
338 /*========== Drop down menu ==============*/
338 /*========== Drop down menu ==============*/
339 div.menu {
339 div.menu {
340 background-color: #FFFFFF;
340 background-color: #FFFFFF;
341 border-style: solid;
341 border-style: solid;
342 border-width: 1px;
342 border-width: 1px;
343 border-color: #7F9DB9;
343 border-color: #7F9DB9;
344 position: absolute;
344 position: absolute;
345 top: 0px;
345 top: 0px;
346 left: 0px;
346 left: 0px;
347 padding: 0;
347 padding: 0;
348 visibility: hidden;
348 visibility: hidden;
349 z-index: 101;
349 z-index: 101;
350 }
350 }
351
351
352 div.menu a.menuItem {
352 div.menu a.menuItem {
353 font-size: 10px;
353 font-size: 10px;
354 font-weight: normal;
354 font-weight: normal;
355 line-height: 2em;
355 line-height: 2em;
356 color: #000000;
356 color: #000000;
357 background-color: #FFFFFF;
357 background-color: #FFFFFF;
358 cursor: default;
358 cursor: default;
359 display: block;
359 display: block;
360 padding: 0 1em;
360 padding: 0 1em;
361 margin: 0;
361 margin: 0;
362 border: 0;
362 border: 0;
363 text-decoration: none;
363 text-decoration: none;
364 white-space: nowrap;
364 white-space: nowrap;
365 }
365 }
366
366
367 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
367 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
368 background-color: #80b0da;
368 background-color: #80b0da;
369 color: #ffffff;
369 color: #ffffff;
370 }
370 }
371
371
372 div.menu a.menuItem span.menuItemText {}
372 div.menu a.menuItem span.menuItemText {}
373
373
374 div.menu a.menuItem span.menuItemArrow {
374 div.menu a.menuItem span.menuItemArrow {
375 margin-right: -.75em;
375 margin-right: -.75em;
376 }
376 }
377
377
378 /**************** Sidebar styles ****************/
378 /**************** Sidebar styles ****************/
379
379
380 #subcontent{
380 #subcontent{
381 position: absolute;
381 position: absolute;
382 left: 0px;
382 left: 0px;
383 width:110px;
383 width:110px;
384 padding:20px 20px 10px 5px;
384 padding:20px 20px 10px 5px;
385 }
385 }
386
386
387 #subcontent h2{
387 #subcontent h2{
388 display:block;
388 display:block;
389 margin:0 0 5px 0;
389 margin:0 0 5px 0;
390 font-size:1.0em;
390 font-size:1.0em;
391 font-weight:bold;
391 font-weight:bold;
392 text-align:left;
392 text-align:left;
393 color:#606060;
393 color:#606060;
394 background-color:inherit;
394 background-color:inherit;
395 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
395 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
396 }
396 }
397
397
398 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
398 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
399
399
400 /**************** Menublock styles ****************/
400 /**************** Menublock styles ****************/
401
401
402 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
402 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
403 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
403 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
404 .menublock li a{font-weight:bold; text-decoration:none;}
404 .menublock li a{font-weight:bold; text-decoration:none;}
405 .menublock li a:hover{text-decoration:none;}
405 .menublock li a:hover{text-decoration:none;}
406 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
406 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
407 .menublock li ul li{margin-bottom:0;}
407 .menublock li ul li{margin-bottom:0;}
408 .menublock li ul a{font-weight:normal;}
408 .menublock li ul a{font-weight:normal;}
409
409
410 /**************** Footer styles ****************/
410 /**************** Footer styles ****************/
411
411
412 #footer{
412 #footer{
413 clear:both;
413 clear:both;
414 padding:5px 0;
414 padding:5px 0;
415 margin:0;
415 margin:0;
416 font-size:0.9em;
416 font-size:0.9em;
417 color:#f0f0f0;
417 color:#f0f0f0;
418 background:#467aa7;
418 background:#467aa7;
419 }
419 }
420
420
421 #footer p{padding:0; margin:0; text-align:center;}
421 #footer p{padding:0; margin:0; text-align:center;}
422 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
422 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
423 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
423 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
424
424
425 /**************** Misc classes and styles ****************/
425 /**************** Misc classes and styles ****************/
426
426
427 .splitcontentleft{float:left; width:49%;}
427 .splitcontentleft{float:left; width:49%;}
428 .splitcontentright{float:right; width:49%;}
428 .splitcontentright{float:right; width:49%;}
429 .clear{clear:both;}
429 .clear{clear:both;}
430 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
430 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
431 .hide{display:none;}
431 .hide{display:none;}
432 .textcenter{text-align:center;}
432 .textcenter{text-align:center;}
433 .textright{text-align:right;}
433 .textright{text-align:right;}
434 .important{color:#f02025; background-color:inherit; font-weight:bold;}
434 .important{color:#f02025; background-color:inherit; font-weight:bold;}
435
435
436 .box{
436 .box{
437 margin:0 0 20px 0;
437 margin:0 0 20px 0;
438 padding:10px;
438 padding:10px;
439 border:1px solid #c0c0c0;
439 border:1px solid #c0c0c0;
440 background-color:#fafbfc;
440 background-color:#fafbfc;
441 color:#505050;
441 color:#505050;
442 line-height:1.5em;
442 line-height:1.5em;
443 }
443 }
444
444
445 a.close-icon {
445 a.close-icon {
446 display:block;
446 display:block;
447 margin-top:3px;
447 margin-top:3px;
448 overflow:hidden;
448 overflow:hidden;
449 width:12px;
449 width:12px;
450 height:12px;
450 height:12px;
451 background-repeat: no-repeat;
451 background-repeat: no-repeat;
452 cursor:pointer;
452 cursor:pointer;
453 background-image:url('../images/close.png');
453 background-image:url('../images/close.png');
454 }
454 }
455
455
456 a.close-icon:hover {
456 a.close-icon:hover {
457 background-image:url('../images/close_hl.png');
457 background-image:url('../images/close_hl.png');
458 }
458 }
459
459
460 .rightbox{
460 .rightbox{
461 background: #fafbfc;
461 background: #fafbfc;
462 border: 1px solid #c0c0c0;
462 border: 1px solid #c0c0c0;
463 float: right;
463 float: right;
464 padding: 8px;
464 padding: 8px;
465 position: relative;
465 position: relative;
466 margin: 0 5px 5px;
466 margin: 0 5px 5px;
467 }
467 }
468
468
469 .layout-active {
469 .layout-active {
470 background: #ECF3E1;
470 background: #ECF3E1;
471 }
471 }
472
472
473 .block-receiver {
473 .block-receiver {
474 border:1px dashed #c0c0c0;
474 border:1px dashed #c0c0c0;
475 margin-bottom: 20px;
475 margin-bottom: 20px;
476 padding: 15px 0 15px 0;
476 padding: 15px 0 15px 0;
477 }
477 }
478
478
479 .mypage-box {
479 .mypage-box {
480 margin:0 0 20px 0;
480 margin:0 0 20px 0;
481 color:#505050;
481 color:#505050;
482 line-height:1.5em;
482 line-height:1.5em;
483 }
483 }
484
484
485 .handle {
485 .handle {
486 cursor: move;
486 cursor: move;
487 }
487 }
488
488
489 .login {
489 .login {
490 width: 50%;
490 width: 50%;
491 text-align: left;
491 text-align: left;
492 }
492 }
493
493
494 img.calendar-trigger {
494 img.calendar-trigger {
495 cursor: pointer;
495 cursor: pointer;
496 vertical-align: middle;
496 vertical-align: middle;
497 margin-left: 4px;
497 margin-left: 4px;
498 }
498 }
499
499
500 #history p {
500 #history p {
501 margin-left: 34px;
501 margin-left: 34px;
502 }
502 }
503
503
504 /***** Contextual links div *****/
504 /***** Contextual links div *****/
505 .contextual {
505 .contextual {
506 float: right;
506 float: right;
507 font-size: 0.8em;
507 font-size: 0.8em;
508 line-height: 16px;
508 line-height: 16px;
509 padding: 2px;
509 padding: 2px;
510 }
510 }
511
511
512 .contextual select, .contextual input {
512 .contextual select, .contextual input {
513 font-size: 1em;
513 font-size: 1em;
514 }
514 }
515
515
516 /***** Gantt chart *****/
516 /***** Gantt chart *****/
517 .gantt_hdr {
517 .gantt_hdr {
518 position:absolute;
518 position:absolute;
519 top:0;
519 top:0;
520 height:16px;
520 height:16px;
521 border-top: 1px solid #c0c0c0;
521 border-top: 1px solid #c0c0c0;
522 border-bottom: 1px solid #c0c0c0;
522 border-bottom: 1px solid #c0c0c0;
523 border-right: 1px solid #c0c0c0;
523 border-right: 1px solid #c0c0c0;
524 text-align: center;
524 text-align: center;
525 overflow: hidden;
525 overflow: hidden;
526 }
526 }
527
527
528 .task {
528 .task {
529 position: absolute;
529 position: absolute;
530 height:8px;
530 height:8px;
531 font-size:0.8em;
531 font-size:0.8em;
532 color:#888;
532 color:#888;
533 padding:0;
533 padding:0;
534 margin:0;
534 margin:0;
535 line-height:0.8em;
535 line-height:0.8em;
536 }
536 }
537
537
538 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
538 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
539 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
539 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
540 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
540 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
541
541
542 /***** Tooltips ******/
542 /***** Tooltips ******/
543 .tooltip{position:relative;z-index:24;}
543 .tooltip{position:relative;z-index:24;}
544 .tooltip:hover{z-index:25;color:#000;}
544 .tooltip:hover{z-index:25;color:#000;}
545 .tooltip span.tip{display: none}
545 .tooltip span.tip{display: none}
546
546
547 div.tooltip:hover span.tip{
547 div.tooltip:hover span.tip{
548 display:block;
548 display:block;
549 position:absolute;
549 position:absolute;
550 top:12px; left:24px; width:270px;
550 top:12px; left:24px; width:270px;
551 border:1px solid #555;
551 border:1px solid #555;
552 background-color:#fff;
552 background-color:#fff;
553 padding: 4px;
553 padding: 4px;
554 font-size: 0.8em;
554 font-size: 0.8em;
555 color:#505050;
555 color:#505050;
556 }
556 }
557
557
558 /***** CSS FORM ******/
558 /***** CSS FORM ******/
559 .tabular p{
559 .tabular p{
560 margin: 0;
560 margin: 0;
561 padding: 5px 0 8px 0;
561 padding: 5px 0 8px 0;
562 padding-left: 180px; /*width of left column containing the label elements*/
562 padding-left: 180px; /*width of left column containing the label elements*/
563 height: 1%;
563 height: 1%;
564 }
564 }
565
565
566 .tabular label{
566 .tabular label{
567 font-weight: bold;
567 font-weight: bold;
568 float: left;
568 float: left;
569 margin-left: -180px; /*width of left column*/
569 margin-left: -180px; /*width of left column*/
570 width: 175px; /*width of labels. Should be smaller than left column to create some right
570 width: 175px; /*width of labels. Should be smaller than left column to create some right
571 margin*/
571 margin*/
572 }
572 }
573
573
574 .error {
574 .error {
575 color: #cc0000;
575 color: #cc0000;
576 }
576 }
577
577
578 #settings .tabular p{ padding-left: 250px; }
579 #settings .tabular label{ margin-left: -250px; width: 245px; }
578
580
579 /*.threepxfix class below:
581 /*.threepxfix class below:
580 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
582 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
581 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
583 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
582 */
584 */
583
585
584 * html .threepxfix{
586 * html .threepxfix{
585 margin-left: 3px;
587 margin-left: 3px;
586 }
588 }
587
589
588 /***** Wiki sections ****/
590 /***** Wiki sections ****/
589 #content div.wiki { font-size: 110%}
591 #content div.wiki { font-size: 110%}
590
592
591 #content div.wiki h2, div.wiki h3 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; color:#606060; }
593 #content div.wiki h2, div.wiki h3 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; color:#606060; }
592 #content div.wiki h2 { font-size: 1.4em;}
594 #content div.wiki h2 { font-size: 1.4em;}
593 #content div.wiki h3 { font-size: 1.2em;}
595 #content div.wiki h3 { font-size: 1.2em;}
594
596
595 div.wiki table {
597 div.wiki table {
596 border: 1px solid #505050;
598 border: 1px solid #505050;
597 border-collapse: collapse;
599 border-collapse: collapse;
598 }
600 }
599
601
600 div.wiki table, div.wiki td {
602 div.wiki table, div.wiki td {
601 border: 1px solid #bbb;
603 border: 1px solid #bbb;
602 padding: 4px;
604 padding: 4px;
603 }
605 }
604
606
605 div.wiki code {
607 div.wiki code {
606 font-size: 1.2em;
608 font-size: 1.2em;
607 }
609 }
608
610
609 #preview .preview { background: #fafbfc url(../images/draft.png); }
611 #preview .preview { background: #fafbfc url(../images/draft.png); }
General Comments 0
You need to be logged in to leave comments. Login now