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