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