##// END OF EJS Templates
added translated strings for settings view...
Jean-Philippe Lang -
r166:4ccbc65628ef
parent child
Show More
@@ -1,20 +1,20
1 1 xml.instruct!
2 2 xml.rss "version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/" do
3 3 xml.channel do
4 xml.title "#{Setting.header_title}: #{l(:label_news_latest)}"
4 xml.title "#{Setting.app_title}: #{l(:label_news_latest)}"
5 5 xml.link url_for(:controller => '', :only_path => false)
6 6 xml.pubDate CGI.rfc1123_date(@news.first.created_on)
7 7 xml.description l(:label_news_latest)
8 8 @news.each do |news|
9 9 xml.item do
10 10 xml.title "#{news.project.name}: #{news.title}"
11 11 news_url = url_for(:controller => 'news' , :action => 'show', :id => news, :only_path => false)
12 12 xml.link news_url
13 13 xml.description h(news.summary)
14 14 xml.pubDate CGI.rfc1123_date(news.created_on)
15 15 xml.guid news_url
16 16 xml.author h(news.author.name)
17 17 end
18 18 end
19 19 end
20 20 end No newline at end of file
@@ -1,143 +1,143
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3 3 <head>
4 <title><%= Setting.header_title + (@html_title ? ": #{@html_title}" : "") %></title>
4 <title><%= Setting.app_title + (@html_title ? ": #{@html_title}" : "") %></title>
5 5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 6 <meta name="description" content="redMine" />
7 7 <meta name="keywords" content="issue,bug,tracker" />
8 8 <!--[if IE]>
9 9 <style type="text/css">
10 10 body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
11 11 </style>
12 12 <![endif]-->
13 13 <%= stylesheet_link_tag "application" %>
14 14 <%= stylesheet_link_tag "print", :media => "print" %>
15 15 <%= javascript_include_tag :defaults %>
16 16 <%= javascript_include_tag 'menu' %>
17 17 <%= stylesheet_link_tag 'jstoolbar' %>
18 18 <!-- page specific tags --><%= yield :header_tags %>
19 19 </head>
20 20
21 21 <body>
22 22 <div id="container" >
23 23
24 24 <div id="header">
25 25 <div style="float: left;">
26 <h1><%= Setting.header_title %></h1>
27 <h2><%= Setting.header_subtitle %></h2>
26 <h1><%= Setting.app_title %></h1>
27 <h2><%= Setting.app_subtitle %></h2>
28 28 </div>
29 29 <div style="float: right; padding-right: 1em; padding-top: 0.2em;">
30 30 <% if loggedin? %><small><%=l(:label_logged_as)%> <b><%= @logged_in_user.login %></b></small><% end %>
31 31 </div>
32 32 </div>
33 33
34 34 <div id="navigation">
35 35 <ul>
36 36 <li class="selected"><%= link_to l(:label_home), { :controller => '' }, :class => "icon icon-home" %></li>
37 37 <li><%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => "icon icon-mypage" %></li>
38 38 <li><%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "icon icon-projects" %></li>
39 39
40 40 <% unless @project.nil? || @project.id.nil? %>
41 41 <li class="submenu"><%= link_to @project.name, { :controller => 'projects', :action => 'show', :id => @project }, :class => "icon icon-projects", :onmouseover => "buttonMouseover(event, 'menuProject');" %></li>
42 42 <% end %>
43 43
44 44 <% if loggedin? %>
45 45 <li><%= link_to l(:label_my_account), { :controller => 'my', :action => 'account' }, :class => "icon icon-user" %></li>
46 46 <% end %>
47 47
48 48 <% if admin_loggedin? %>
49 49 <li class="submenu"><%= link_to l(:label_administration), { :controller => 'admin' }, :class => "icon icon-admin", :onmouseover => "buttonMouseover(event, 'menuAdmin');" %></li>
50 50 <% end %>
51 51
52 52 <li class="right"><%= link_to l(:label_help), { :controller => 'help', :ctrl => params[:controller], :page => params[:action] }, :onclick => "window.open(this.href); return false;", :class => "icon icon-help" %></li>
53 53
54 54 <% if loggedin? %>
55 55 <li class="right"><%= link_to l(:label_logout), { :controller => 'account', :action => 'logout' }, :class => "icon icon-user" %></li>
56 56 <% else %>
57 57 <li class="right"><%= link_to l(:label_login), { :controller => 'account', :action => 'login' }, :class => "icon icon-user" %></li>
58 58 <% end %>
59 59 </ul>
60 60 </div>
61 61
62 62 <% if admin_loggedin? %>
63 63 <div id="menuAdmin" class="menu" onmouseover="menuMouseover(event)">
64 64 <a class="menuItem" href="/admin/projects" onmouseover="menuItemMouseover(event,'menuProjects');"><span class="menuItemText"><%=l(:label_project_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
65 65 <a class="menuItem" href="/users" onmouseover="menuItemMouseover(event,'menuUsers');"><span class="menuItemText"><%=l(:label_user_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
66 66 <a class="menuItem" href="/roles"><%=l(:label_role_and_permissions)%></a>
67 67 <a class="menuItem" href="/trackers" onmouseover="menuItemMouseover(event,'menuTrackers');"><span class="menuItemText"><%=l(:label_tracker_plural)%></span><span class="menuItemArrow">&#9654;</span></a>
68 68 <a class="menuItem" href="/custom_fields"><%=l(:label_custom_field_plural)%></a>
69 69 <a class="menuItem" href="/enumerations"><%=l(:label_enumerations)%></a>
70 70 <a class="menuItem" href="/admin/mail_options"><%=l(:field_mail_notification)%></a>
71 71 <a class="menuItem" href="/auth_sources"><%=l(:label_authentication)%></a>
72 72 <a class="menuItem" href="/settings"><%=l(:label_settings)%></a>
73 73 <a class="menuItem" href="/admin/info"><%=l(:label_information_plural)%></a>
74 74 </div>
75 75 <div id="menuTrackers" class="menu">
76 76 <a class="menuItem" href="/issue_statuses"><%=l(:label_issue_status_plural)%></a>
77 77 <a class="menuItem" href="/roles/workflow"><%=l(:label_workflow)%></a>
78 78 </div>
79 79 <div id="menuProjects" class="menu"><a class="menuItem" href="/projects/add"><%=l(:label_new)%></a></div>
80 80 <div id="menuUsers" class="menu"><a class="menuItem" href="/users/add"><%=l(:label_new)%></a></div>
81 81 <% end %>
82 82
83 83 <% unless @project.nil? || @project.id.nil? %>
84 84 <div id="menuProject" class="menu" onmouseover="menuMouseover(event)">
85 85 <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %>
86 86 <%= link_to l(:label_gantt), {:controller => 'projects', :action => 'gantt', :id => @project }, :class => "menuItem" %>
87 87 <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project }, :class => "menuItem" %>
88 88 <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %>
89 89 <%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %>
90 90 <%= link_to l(:label_news_plural), {:controller => 'projects', :action => 'list_news', :id => @project }, :class => "menuItem" %>
91 91 <%= link_to l(:label_change_log), {:controller => 'projects', :action => 'changelog', :id => @project }, :class => "menuItem" %>
92 92 <%= link_to l(:label_document_plural), {:controller => 'projects', :action => 'list_documents', :id => @project }, :class => "menuItem" %>
93 93 <%= link_to l(:label_member_plural), {:controller => 'projects', :action => 'list_members', :id => @project }, :class => "menuItem" %>
94 94 <%= link_to l(:label_attachment_plural), {:controller => 'projects', :action => 'list_files', :id => @project }, :class => "menuItem" %>
95 95 <%= link_to l(:label_repository), {:controller => 'repositories', :action => 'show', :id => @project}, :class => "menuItem" if @project.repository and !@project.repository.new_record? %>
96 96 <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project }, :class => "menuItem" %>
97 97 </div>
98 98 <% end %>
99 99
100 100
101 101 <div id="subcontent">
102 102
103 103 <% unless @project.nil? || @project.id.nil? %>
104 104 <h2><%= @project.name %></h2>
105 105 <ul class="menublock">
106 106 <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li>
107 107 <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li>
108 108 <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li>
109 109 <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project %></li>
110 110 <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li>
111 111 <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li>
112 112 <li><%= link_to l(:label_news_plural), :controller => 'projects', :action => 'list_news', :id => @project %></li>
113 113 <li><%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %></li>
114 114 <li><%= link_to l(:label_document_plural), :controller => 'projects', :action => 'list_documents', :id => @project %></li>
115 115 <li><%= link_to l(:label_member_plural), :controller => 'projects', :action => 'list_members', :id => @project %></li>
116 116 <li><%= link_to l(:label_attachment_plural), :controller => 'projects', :action => 'list_files', :id => @project %></li>
117 117 <li><%= link_to l(:label_repository), :controller => 'repositories', :action => 'show', :id => @project if @project.repository and !@project.repository.new_record? %></li>
118 118 <li><%= link_to_if_authorized l(:label_settings), :controller => 'projects', :action => 'settings', :id => @project %></li>
119 119 </ul>
120 120 <% end %>
121 121
122 122 <% if loggedin? and @logged_in_user.memberships.length > 0 %>
123 123 <h2><%=l(:label_my_projects) %></h2>
124 124 <ul class="menublock">
125 125 <% for membership in @logged_in_user.memberships %>
126 126 <li><%= link_to membership.project.name, :controller => 'projects', :action => 'show', :id => membership.project %></li>
127 127 <% end %>
128 128 </ul>
129 129 <% end %>
130 130 </div>
131 131
132 132 <div id="content">
133 133 <% if flash[:notice] %><p style="color: green"><%= flash[:notice] %></p><% end %>
134 134 <%= @content_for_layout %>
135 135 </div>
136 136
137 137 <div id="footer">
138 138 <p><a href="http://redmine.rubyforge.org/"><%= RDM_APP_NAME %></a> <%= RDM_APP_VERSION %></p>
139 139 </div>
140 140
141 141 </div>
142 142 </body>
143 143 </html> No newline at end of file
@@ -1,37 +1,37
1 1 <h2><%= l(:label_settings) %></h2>
2 2
3 3 <%= start_form_tag({:action => 'edit'}, :class => "tabular") %>
4 4 <div class="box">
5 <p><label>header_title</label>
6 <%= text_field_tag 'settings[header_title]', Setting.header_title, :size => 30 %></p>
5 <p><label><%= l(:setting_app_title) %></label>
6 <%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
7 7
8 <p><label>header_subtitle</label>
9 <%= text_field_tag 'settings[header_subtitle]', Setting.header_subtitle, :size => 60 %></p>
8 <p><label><%= l(:setting_app_subtitle) %></label>
9 <%= text_field_tag 'settings[app_subtitle]', Setting.app_subtitle, :size => 60 %></p>
10 10
11 <p><label>welcome_text</label>
11 <p><label><%= l(:setting_welcome_text) %></label>
12 12 <%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5 %></p>
13 13
14 <p><label>default_language</label>
14 <p><label><%= l(:setting_default_language) %></label>
15 15 <%= select_tag 'settings[default_language]', options_for_select( lang_options_for_select(false), Setting.default_language) %></p>
16 16
17 <p><label>login_required</label>
17 <p><label><%= l(:setting_login_required) %></label>
18 18 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
19 19
20 <p><label>self_registration</label>
20 <p><label><%= l(:setting_self_registration) %></label>
21 21 <%= check_box_tag 'settings[self_registration]', 1, Setting.self_registration? %><%= hidden_field_tag 'settings[self_registration]', 0 %></p>
22 22
23 <p><label>attachment_max_size</label>
24 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %></p>
23 <p><label><%= l(:setting_attachment_max_size) %></label>
24 <%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p>
25 25
26 <p><label>mail_from</label>
26 <p><label><%= l(:setting_mail_from) %></label>
27 27 <%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p>
28 28
29 <p><label>host_name</label>
29 <p><label><%= l(:setting_host_name) %></label>
30 30 <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %></p>
31 31
32 <p><label>text_formatting</label>
32 <p><label><%= l(:setting_text_formatting) %></label>
33 33 <%= select_tag 'settings[text_formatting]', options_for_select( [[l(:label_none), 0], ["textile", "textile"]], Setting.text_formatting) %></p>
34 34
35 35 </div>
36 36 <%= submit_tag l(:button_save) %>
37 37 <%= end_form_tag %> No newline at end of file
@@ -1,42 +1,42
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18
19 19 # DO NOT MODIFY THIS FILE !!!
20 20 # Settings can be defined through the application in Admin -> Settings
21 21
22 header_title:
22 app_title:
23 23 default: redMine
24 header_subtitle:
24 app_subtitle:
25 25 default: Project management
26 26 welcome_text:
27 27 default:
28 28 login_required:
29 29 default: 0
30 30 self_registration:
31 31 default: 1
32 32 attachment_max_size:
33 33 format: int
34 34 default: 5120
35 35 mail_from:
36 36 default: redmine@somenet.foo
37 37 text_formatting:
38 38 default: textile
39 39 default_language:
40 40 default: en
41 41 host_name:
42 42 default: localhost:3000 No newline at end of file
@@ -1,360 +1,371
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 day
9 9 actionview_datehelper_time_in_words_day_plural: %d days
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: half a minute
15 15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 20 actionview_instancetag_blank_option: Bitte auserwählt
21 21
22 22 activerecord_error_inclusion: ist nicht in der Liste eingeschlossen
23 23 activerecord_error_exclusion: ist reserviert
24 24 activerecord_error_invalid: ist unzulässig
25 25 activerecord_error_confirmation: bringt nicht Bestätigung zusammen
26 26 activerecord_error_accepted: muß angenommen werden
27 27 activerecord_error_empty: kann nicht leer sein
28 28 activerecord_error_blank: kann nicht leer sein
29 29 activerecord_error_too_long: ist zu lang
30 30 activerecord_error_too_short: ist zu kurz
31 31 activerecord_error_wrong_length: ist die falsche Länge
32 32 activerecord_error_taken: ist bereits genommen worden
33 33 activerecord_error_not_a_number: ist nicht eine Zahl
34 34 activerecord_error_not_a_date: ist nicht ein gültiges Datum
35 35 activerecord_error_greater_than_start_date: muß als grösser sein beginnen Datum
36 36
37 37 general_fmt_age: %d yr
38 38 general_fmt_age_plural: %d yrs
39 39 general_fmt_date: %%b %%d, %%Y (%%a)
40 40 general_fmt_datetime: %%b %%d, %%Y (%%a), %%I:%%M %%p
41 41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 42 general_fmt_time: %%I:%%M %%p
43 43 general_text_No: 'Nein'
44 44 general_text_Yes: 'Ja'
45 45 general_text_no: 'nein'
46 46 general_text_yes: 'ja'
47 47 general_lang_de: 'Deutsch'
48 48 general_csv_separator: ';'
49 49 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
50 50
51 51 notice_account_updated: Konto wurde erfolgreich aktualisiert.
52 52 notice_account_invalid_creditentials: Unzulässiger Benutzer oder Passwort
53 53 notice_account_password_updated: Passwort wurde erfolgreich aktualisiert.
54 54 notice_account_wrong_password: Falsches Passwort
55 55 notice_account_register_done: Konto wurde erfolgreich verursacht.
56 56 notice_account_unknown_email: Unbekannter Benutzer.
57 57 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentisierung Quelle. Unmöglich, das Kennwort zu ändern.
58 58 notice_account_lost_email_sent: Ein email mit Anweisungen, ein neues Kennwort zu wählen ist dir geschickt worden.
59 59 notice_account_activated: Dein Konto ist aktiviert worden. Du kannst jetzt einloggen.
60 60 notice_successful_create: Erfolgreiche Kreation.
61 61 notice_successful_update: Erfolgreiches Update.
62 62 notice_successful_delete: Erfolgreiche Auslassung.
63 63 notice_successful_connection: Erfolgreicher Anschluß.
64 64 notice_file_not_found: Erbetene Akte besteht nicht oder ist gelöscht worden.
65 65 notice_locking_conflict: Data have been updated by another user.
66 66 notice_scm_error: Eintragung und/oder Neuausgabe besteht nicht im Behälter.
67 67
68 68 mail_subject_lost_password: Dein redMine Kennwort
69 69 mail_subject_register: redMine Kontoaktivierung
70 70
71 71 gui_validation_error: 1 Störung
72 72 gui_validation_error_plural: %d Störungen
73 73
74 74 field_name: Name
75 75 field_description: Beschreibung
76 76 field_summary: Zusammenfassung
77 77 field_is_required: Erforderlich
78 78 field_firstname: Vorname
79 79 field_lastname: Nachname
80 80 field_mail: Email
81 81 field_filename: Datei
82 82 field_filesize: Grootte
83 83 field_downloads: Downloads
84 84 field_author: Autor
85 85 field_created_on: Angelegt
86 86 field_updated_on: aktualisiert
87 87 field_field_format: Format
88 88 field_is_for_all: Für alle Projekte
89 89 field_possible_values: Mögliche Werte
90 90 field_regexp: Regulärer Ausdruck
91 91 field_min_length: Minimale Länge
92 92 field_max_length: Maximale Länge
93 93 field_value: Wert
94 94 field_category: Kategorie
95 95 field_title: Títel
96 96 field_project: Projekt
97 97 field_issue: Antrag
98 98 field_status: Status
99 99 field_notes: Anmerkungen
100 100 field_is_closed: Problem erledigt
101 101 field_is_default: Rückstellung status
102 102 field_html_color: Farbe
103 103 field_tracker: Tracker
104 104 field_subject: Thema
105 105 field_due_date: Abgabedatum
106 106 field_assigned_to: Zugewiesen an
107 107 field_priority: Priorität
108 108 field_fixed_version: Erledigt in Version
109 109 field_user: Benutzer
110 110 field_role: Rolle
111 111 field_homepage: Startseite
112 112 field_is_public: Öffentlich
113 113 field_parent: Subprojekt von
114 114 field_is_in_chlog: Ansicht der Issues in der Historie
115 115 field_login: Mitgliedsname
116 116 field_mail_notification: Mailbenachrichtigung
117 117 field_admin: Administrator
118 118 field_locked: Gesperrt
119 119 field_last_login_on: Letzte Anmeldung
120 120 field_language: Sprache
121 121 field_effective_date: Datum
122 122 field_password: Passwort
123 123 field_new_password: Neues Passwort
124 124 field_password_confirmation: Bestätigung
125 125 field_version: Version
126 126 field_type: Typ
127 127 field_host: Host
128 128 field_port: Port
129 129 field_account: Konto
130 130 field_base_dn: Base DN
131 131 field_attr_login: Mitgliedsnameattribut
132 132 field_attr_firstname: Vornamensattribut
133 133 field_attr_lastname: Namenattribut
134 134 field_attr_mail: Emailattribut
135 135 field_onthefly: On-the-fly Benutzerkreation
136 136 field_start_date: Beginn
137 137 field_done_ratio: %% Getan
138 138 field_auth_source: Authentisierung Modus
139 139 field_hide_mail: Mein email address verstecken
140 140 field_comment: Anmerkung
141 141 field_url: URL
142 142
143 setting_app_title: Applikation Titel
144 setting_app_subtitle: Applikation Untertitel
145 setting_welcome_text: Willkommener Text
146 setting_default_language: Rückstellung Sprache
147 setting_login_required: Authent. erfordert
148 setting_self_registration: Selbstausrichtung ermöglicht
149 setting_attachment_max_size: Dateimaximumgröße
150 setting_mail_from: Emission address
151 setting_host_name: Host Name
152 setting_text_formatting: Textformatierung
153
143 154 label_user: Benutzer
144 155 label_user_plural: Benutzer
145 156 label_user_new: Neuer Benutzer
146 157 label_project: Projekt
147 158 label_project_new: Neues Projekt
148 159 label_project_plural: Projekte
149 160 label_project_latest: Neueste Projekte
150 161 label_issue: Antrag
151 162 label_issue_new: Neue Antrag
152 163 label_issue_plural: Anträge
153 164 label_issue_view_all: Alle Anträge ansehen
154 165 label_document: Dokument
155 166 label_document_new: Neues Dokument
156 167 label_document_plural: Dokumente
157 168 label_role: Rolle
158 169 label_role_plural: Rollen
159 170 label_role_new: Neue Rolle
160 171 label_role_and_permissions: Rollen und Rechte
161 172 label_member: Mitglied
162 173 label_member_new: Neues Mitglied
163 174 label_member_plural: Mitglieder
164 175 label_tracker: Tracker
165 176 label_tracker_plural: Tracker
166 177 label_tracker_new: Neuer Tracker
167 178 label_workflow: Workflow
168 179 label_issue_status: Antrag Status
169 180 label_issue_status_plural: Antrag Stati
170 181 label_issue_status_new: Neuer Status
171 182 label_issue_category: Antrag Kategorie
172 183 label_issue_category_plural: Antrag Kategorien
173 184 label_issue_category_new: Neue Kategorie
174 185 label_custom_field: Benutzerdefiniertes Feld
175 186 label_custom_field_plural: Benutzerdefinierte Felder
176 187 label_custom_field_new: Neues Feld
177 188 label_enumerations: Enumerationen
178 189 label_enumeration_new: Neuer Wert
179 190 label_information: Information
180 191 label_information_plural: Informationen
181 192 label_please_login: Anmelden
182 193 label_register: Anmelden
183 194 label_password_lost: Passwort vergessen
184 195 label_home: Hauptseite
185 196 label_my_page: Meine Seite
186 197 label_my_account: Mein Konto
187 198 label_my_projects: Meine Projekte
188 199 label_administration: Administration
189 200 label_login: Einloggen
190 201 label_logout: Abmelden
191 202 label_help: Hilfe
192 203 label_reported_issues: Gemeldete Issues
193 204 label_assigned_to_me_issues: Mir zugewiesen
194 205 label_last_login: Letzte Anmeldung
195 206 label_last_updates: Letztes aktualisiertes
196 207 label_last_updates_plural: %d Letztes aktualisiertes
197 208 label_registered_on: Angemeldet am
198 209 label_activity: Aktivität
199 210 label_new: Neue
200 211 label_logged_as: Angemeldet als
201 212 label_environment: Environment
202 213 label_authentication: Authentisierung
203 214 label_auth_source: Authentisierung Modus
204 215 label_auth_source_new: Neuer Authentisierung Modus
205 216 label_auth_source_plural: Authentisierung Modi
206 217 label_subproject: Vorprojekt von
207 218 label_subproject_plural: Vorprojekte
208 219 label_min_max_length: Min - Max Länge
209 220 label_list: Liste
210 221 label_date: Date
211 222 label_integer: Zahl
212 223 label_boolean: Boolesch
213 224 label_string: Text
214 225 label_text: Langer Text
215 226 label_attribute: Attribut
216 227 label_attribute_plural: Attribute
217 228 label_download: %d Herunterlade
218 229 label_download_plural: %d Herunterlade
219 230 label_no_data: Nichts anzuzeigen
220 231 label_change_status: Statuswechsel
221 232 label_history: Historie
222 233 label_attachment: Datei
223 234 label_attachment_new: Neue Datei
224 235 label_attachment_delete: Löschungakten
225 236 label_attachment_plural: Dateien
226 237 label_report: Bericht
227 238 label_report_plural: Berichte
228 239 label_news: Neuigkeit
229 240 label_news_new: Neuigkeite addieren
230 241 label_news_plural: Neuigkeiten
231 242 label_news_latest: Letzte Neuigkeiten
232 243 label_news_view_all: Alle Neuigkeiten anzeigen
233 244 label_change_log: Change log
234 245 label_settings: Konfiguration
235 246 label_overview: Übersicht
236 247 label_version: Version
237 248 label_version_new: Neue Version
238 249 label_version_plural: Versionen
239 250 label_confirmation: Bestätigung
240 251 label_export_to: Export zu
241 252 label_read: Lesen...
242 253 label_public_projects: Öffentliche Projekte
243 254 label_open_issues: geöffnet
244 255 label_open_issues_plural: geöffnet
245 256 label_closed_issues: geschlossen
246 257 label_closed_issues_plural: geschlossen
247 258 label_total: Gesamtzahl
248 259 label_permissions: Berechtigungen
249 260 label_current_status: Gegenwärtiger Status
250 261 label_new_statuses_allowed: Neue Status gewährten
251 262 label_all: alle
252 263 label_none: kein
253 264 label_next: Weiter
254 265 label_previous: Zurück
255 266 label_used_by: Benutzt von
256 267 label_details: Details...
257 268 label_add_note: Eine Anmerkung addieren
258 269 label_per_page: Pro Seite
259 270 label_calendar: Kalender
260 271 label_months_from: Monate von
261 272 label_gantt: Gantt
262 273 label_internal: Intern
263 274 label_last_changes: %d änderungen des Letzten
264 275 label_change_view_all: Alle änderungen ansehen
265 276 label_personalize_page: Diese Seite personifizieren
266 277 label_comment: Anmerkung
267 278 label_comment_plural: Anmerkungen
268 279 label_comment_add: Anmerkung addieren
269 280 label_comment_added: Anmerkung fügte hinzu
270 281 label_comment_delete: Anmerkungen löschen
271 282 label_query: Benutzerdefiniertes Frage
272 283 label_query_plural: Benutzerdefinierte Fragen
273 284 label_query_new: Neue Frage
274 285 label_filter_add: Filter addieren
275 286 label_filter_plural: Filter
276 287 label_equals: ist
277 288 label_not_equals: ist nicht
278 289 label_in_less_than: an weniger als
279 290 label_in_more_than: an mehr als
280 291 label_in: an
281 292 label_today: heute
282 293 label_less_than_ago: vor weniger als
283 294 label_more_than_ago: vor mehr als
284 295 label_ago: vor
285 296 label_contains: enthält
286 297 label_not_contains: enthält nicht
287 298 label_day_plural: Tage
288 299 label_repository: SVN Behälter
289 300 label_browse: Grasen
290 301 label_modification: %d änderung
291 302 label_modification_plural: %d änderungen
292 303 label_revision: Neuausgabe
293 304 label_revision_plural: Neuausgaben
294 305 label_added: hinzugefügt
295 306 label_modified: geändert
296 307 label_deleted: gelöscht
297 308 label_latest_revision: Neueste Neuausgabe
298 309 label_view_revisions: Die Neuausgaben ansehen
299 310 label_max_size: Maximale Größe
300 311 label_on: auf
301 312
302 313 button_login: Einloggen
303 314 button_submit: Einreichen
304 315 button_save: Speichern
305 316 button_check_all: Alles auswählen
306 317 button_uncheck_all: Alles abwählen
307 318 button_delete: Löschen
308 319 button_create: Anlegen
309 320 button_test: Testen
310 321 button_edit: Bearbeiten
311 322 button_add: Hinzufügen
312 323 button_change: Wechseln
313 324 button_apply: Anwenden
314 325 button_clear: Zurücksetzen
315 326 button_lock: Verriegeln
316 327 button_unlock: Entriegeln
317 328 button_download: Fernzuladen
318 329 button_list: Aufzulisten
319 330 button_view: Siehe
320 331 button_move: Bewegen
321 332 button_back: Rückkehr
322 333 button_cancel: Annullieren
323 334 button_activate: Aktivieren
324 335
325 336 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
326 337 text_regexp_info: eg. ^[A-Z0-9]+$
327 338 text_min_max_length_info: 0 heisst keine Beschränkung
328 339 text_possible_values_info: Werte trennten sich mit |
329 340 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
330 341 text_workflow_edit: Auswahl Workflow zum Bearbeiten
331 342 text_are_you_sure: Sind sie sicher ?
332 343 text_journal_changed: geändert von %s zu %s
333 344 text_journal_set_to: gestellt zu %s
334 345 text_journal_deleted: gelöscht
335 346 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
336 347 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
337 348 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
338 349
339 350 default_role_manager: Manager
340 351 default_role_developper: Developer
341 352 default_role_reporter: Reporter
342 353 default_tracker_bug: Fehler
343 354 default_tracker_feature: Feature
344 355 default_tracker_support: Support
345 356 default_issue_status_new: Neu
346 357 default_issue_status_assigned: Zugewiesen
347 358 default_issue_status_resolved: Gelöst
348 359 default_issue_status_feedback: Feedback
349 360 default_issue_status_closed: Erledigt
350 361 default_issue_status_rejected: Abgewiesen
351 362 default_doc_category_user: Benutzerdokumentation
352 363 default_doc_category_tech: Technische Dokumentation
353 364 default_priority_low: Niedrig
354 365 default_priority_normal: Normal
355 366 default_priority_high: Hoch
356 367 default_priority_urgent: Dringend
357 368 default_priority_immediate: Sofort
358 369
359 370 enumeration_issue_priorities: Issue-Prioritäten
360 371 enumeration_doc_categories: Dokumentenkategorien
@@ -1,360 +1,371
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 day
9 9 actionview_datehelper_time_in_words_day_plural: %d days
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: half a minute
15 15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 20 actionview_instancetag_blank_option: Please select
21 21
22 22 activerecord_error_inclusion: is not included in the list
23 23 activerecord_error_exclusion: is reserved
24 24 activerecord_error_invalid: is invalid
25 25 activerecord_error_confirmation: doesn't match confirmation
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: can't be empty
28 28 activerecord_error_blank: can't be blank
29 29 activerecord_error_too_long: is too long
30 30 activerecord_error_too_short: is too short
31 31 activerecord_error_wrong_length: is the wrong length
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: is not a number
34 34 activerecord_error_not_a_date: is not a valid date
35 35 activerecord_error_greater_than_start_date: must be greater than start date
36 36
37 37 general_fmt_age: %d yr
38 38 general_fmt_age_plural: %d yrs
39 39 general_fmt_date: %%m/%%d/%%Y
40 40 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
41 41 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
42 42 general_fmt_time: %%I:%%M %%p
43 43 general_text_No: 'No'
44 44 general_text_Yes: 'Yes'
45 45 general_text_no: 'no'
46 46 general_text_yes: 'yes'
47 47 general_lang_en: 'English'
48 48 general_csv_separator: ','
49 49 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
50 50
51 51 notice_account_updated: Account was successfully updated.
52 52 notice_account_invalid_creditentials: Invalid user or password
53 53 notice_account_password_updated: Password was successfully updated.
54 54 notice_account_wrong_password: Wrong password
55 55 notice_account_register_done: Account was successfully created.
56 56 notice_account_unknown_email: Unknown user.
57 57 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
58 58 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
59 59 notice_account_activated: Your account has been activated. You can now log in.
60 60 notice_successful_create: Successful creation.
61 61 notice_successful_update: Successful update.
62 62 notice_successful_delete: Successful deletion.
63 63 notice_successful_connection: Successful connection.
64 64 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
65 65 notice_locking_conflict: Data have been updated by another user.
66 66 notice_scm_error: Entry and/or revision doesn't exist in the repository.
67 67
68 68 mail_subject_lost_password: Your redMine password
69 69 mail_subject_register: redMine account activation
70 70
71 71 gui_validation_error: 1 error
72 72 gui_validation_error_plural: %d errors
73 73
74 74 field_name: Name
75 75 field_description: Description
76 76 field_summary: Summary
77 77 field_is_required: Required
78 78 field_firstname: Firstname
79 79 field_lastname: Lastname
80 80 field_mail: Email
81 81 field_filename: File
82 82 field_filesize: Size
83 83 field_downloads: Downloads
84 84 field_author: Author
85 85 field_created_on: Created
86 86 field_updated_on: Updated
87 87 field_field_format: Format
88 88 field_is_for_all: For all projects
89 89 field_possible_values: Possible values
90 90 field_regexp: Regular expression
91 91 field_min_length: Minimum length
92 92 field_max_length: Maximum length
93 93 field_value: Value
94 94 field_category: Category
95 95 field_title: Title
96 96 field_project: Project
97 97 field_issue: Issue
98 98 field_status: Status
99 99 field_notes: Notes
100 100 field_is_closed: Issue closed
101 101 field_is_default: Default status
102 102 field_html_color: Color
103 103 field_tracker: Tracker
104 104 field_subject: Subject
105 105 field_due_date: Due date
106 106 field_assigned_to: Assigned to
107 107 field_priority: Priority
108 108 field_fixed_version: Fixed version
109 109 field_user: User
110 110 field_role: Role
111 111 field_homepage: Homepage
112 112 field_is_public: Public
113 113 field_parent: Subproject of
114 114 field_is_in_chlog: Issues displayed in changelog
115 115 field_login: Login
116 116 field_mail_notification: Mail notifications
117 117 field_admin: Administrator
118 118 field_locked: Locked
119 119 field_last_login_on: Last connection
120 120 field_language: Language
121 121 field_effective_date: Date
122 122 field_password: Password
123 123 field_new_password: New password
124 124 field_password_confirmation: Confirmation
125 125 field_version: Version
126 126 field_type: Type
127 127 field_host: Host
128 128 field_port: Port
129 129 field_account: Account
130 130 field_base_dn: Base DN
131 131 field_attr_login: Login attribute
132 132 field_attr_firstname: Firstname attribute
133 133 field_attr_lastname: Lastname attribute
134 134 field_attr_mail: Email attribute
135 135 field_onthefly: On-the-fly user creation
136 136 field_start_date: Start
137 137 field_done_ratio: %% Done
138 138 field_auth_source: Authentication mode
139 139 field_hide_mail: Hide my email address
140 140 field_comment: Comment
141 141 field_url: URL
142 142
143 setting_app_title: Application title
144 setting_app_subtitle: Application subtitle
145 setting_welcome_text: Welcome text
146 setting_default_language: Default language
147 setting_login_required: Authent. required
148 setting_self_registration: Self-registration enabled
149 setting_attachment_max_size: Attachment max. size
150 setting_mail_from: Emission mail address
151 setting_host_name: Host name
152 setting_text_formatting: Text formatting
153
143 154 label_user: User
144 155 label_user_plural: Users
145 156 label_user_new: New user
146 157 label_project: Project
147 158 label_project_new: New project
148 159 label_project_plural: Projects
149 160 label_project_latest: Latest projects
150 161 label_issue: Issue
151 162 label_issue_new: New issue
152 163 label_issue_plural: Issues
153 164 label_issue_view_all: View all issues
154 165 label_document: Document
155 166 label_document_new: New document
156 167 label_document_plural: Documents
157 168 label_role: Role
158 169 label_role_plural: Roles
159 170 label_role_new: New role
160 171 label_role_and_permissions: Roles and permissions
161 172 label_member: Member
162 173 label_member_new: New member
163 174 label_member_plural: Members
164 175 label_tracker: Tracker
165 176 label_tracker_plural: Trackers
166 177 label_tracker_new: New tracker
167 178 label_workflow: Workflow
168 179 label_issue_status: Issue status
169 180 label_issue_status_plural: Issue statuses
170 181 label_issue_status_new: New status
171 182 label_issue_category: Issue category
172 183 label_issue_category_plural: Issue categories
173 184 label_issue_category_new: New category
174 185 label_custom_field: Custom field
175 186 label_custom_field_plural: Custom fields
176 187 label_custom_field_new: New custom field
177 188 label_enumerations: Enumerations
178 189 label_enumeration_new: New value
179 190 label_information: Information
180 191 label_information_plural: Information
181 192 label_please_login: Please login
182 193 label_register: Register
183 194 label_password_lost: Lost password
184 195 label_home: Home
185 196 label_my_page: My page
186 197 label_my_account: My account
187 198 label_my_projects: My projects
188 199 label_administration: Administration
189 200 label_login: Login
190 201 label_logout: Logout
191 202 label_help: Help
192 203 label_reported_issues: Reported issues
193 204 label_assigned_to_me_issues: Issues assigned to me
194 205 label_last_login: Last connection
195 206 label_last_updates: Last updated
196 207 label_last_updates_plural: %d last updated
197 208 label_registered_on: Registered on
198 209 label_activity: Activity
199 210 label_new: New
200 211 label_logged_as: Logged as
201 212 label_environment: Environment
202 213 label_authentication: Authentication
203 214 label_auth_source: Authentication mode
204 215 label_auth_source_new: New authentication mode
205 216 label_auth_source_plural: Authentication modes
206 217 label_subproject: Subproject
207 218 label_subproject_plural: Subprojects
208 219 label_min_max_length: Min - Max length
209 220 label_list: List
210 221 label_date: Date
211 222 label_integer: Integer
212 223 label_boolean: Boolean
213 224 label_string: Text
214 225 label_text: Long text
215 226 label_attribute: Attribute
216 227 label_attribute_plural: Attributes
217 228 label_download: %d Download
218 229 label_download_plural: %d Downloads
219 230 label_no_data: No data to display
220 231 label_change_status: Change status
221 232 label_history: History
222 233 label_attachment: File
223 234 label_attachment_new: New file
224 235 label_attachment_delete: Delete file
225 236 label_attachment_plural: Files
226 237 label_report: Report
227 238 label_report_plural: Reports
228 239 label_news: News
229 240 label_news_new: Add news
230 241 label_news_plural: News
231 242 label_news_latest: Latest news
232 243 label_news_view_all: View all news
233 244 label_change_log: Change log
234 245 label_settings: Settings
235 246 label_overview: Overview
236 247 label_version: Version
237 248 label_version_new: New version
238 249 label_version_plural: Versions
239 250 label_confirmation: Confirmation
240 251 label_export_to: Export to
241 252 label_read: Read...
242 253 label_public_projects: Public projects
243 254 label_open_issues: open
244 255 label_open_issues_plural: open
245 256 label_closed_issues: closed
246 257 label_closed_issues_plural: closed
247 258 label_total: Total
248 259 label_permissions: Permissions
249 260 label_current_status: Current status
250 261 label_new_statuses_allowed: New statuses allowed
251 262 label_all: all
252 263 label_none: none
253 264 label_next: Next
254 265 label_previous: Previous
255 266 label_used_by: Used by
256 267 label_details: Details...
257 268 label_add_note: Add a note
258 269 label_per_page: Per page
259 270 label_calendar: Calendar
260 271 label_months_from: months from
261 272 label_gantt: Gantt
262 273 label_internal: Internal
263 274 label_last_changes: last %d changes
264 275 label_change_view_all: View all changes
265 276 label_personalize_page: Personalize this page
266 277 label_comment: Comment
267 278 label_comment_plural: Comments
268 279 label_comment_add: Add a comment
269 280 label_comment_added: Comment added
270 281 label_comment_delete: Delete comments
271 282 label_query: Custom query
272 283 label_query_plural: Custom queries
273 284 label_query_new: New query
274 285 label_filter_add: Add filter
275 286 label_filter_plural: Filters
276 287 label_equals: is
277 288 label_not_equals: is not
278 289 label_in_less_than: in less than
279 290 label_in_more_than: in more than
280 291 label_in: in
281 292 label_today: today
282 293 label_less_than_ago: less than days ago
283 294 label_more_than_ago: more than days ago
284 295 label_ago: days ago
285 296 label_contains: contains
286 297 label_not_contains: doesn't contain
287 298 label_day_plural: days
288 299 label_repository: SVN Repository
289 300 label_browse: Browse
290 301 label_modification: %d change
291 302 label_modification_plural: %d changes
292 303 label_revision: Revision
293 304 label_revision_plural: Revisions
294 305 label_added: added
295 306 label_modified: modified
296 307 label_deleted: deleted
297 308 label_latest_revision: Latest revision
298 309 label_view_revisions: View revisions
299 310 label_max_size: Maximum size
300 311 label_on: 'on'
301 312
302 313 button_login: Login
303 314 button_submit: Submit
304 315 button_save: Save
305 316 button_check_all: Check all
306 317 button_uncheck_all: Uncheck all
307 318 button_delete: Delete
308 319 button_create: Create
309 320 button_test: Test
310 321 button_edit: Edit
311 322 button_add: Add
312 323 button_change: Change
313 324 button_apply: Apply
314 325 button_clear: Clear
315 326 button_lock: Lock
316 327 button_unlock: Unlock
317 328 button_download: Download
318 329 button_list: List
319 330 button_view: View
320 331 button_move: Move
321 332 button_back: Back
322 333 button_cancel: Cancel
323 334 button_activate: Activate
324 335
325 336 text_select_mail_notifications: Select actions for which mail notifications should be sent.
326 337 text_regexp_info: eg. ^[A-Z0-9]+$
327 338 text_min_max_length_info: 0 means no restriction
328 339 text_possible_values_info: values separated with |
329 340 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
330 341 text_workflow_edit: Select a role and a tracker to edit the workflow
331 342 text_are_you_sure: Are you sure ?
332 343 text_journal_changed: changed from %s to %s
333 344 text_journal_set_to: set to %s
334 345 text_journal_deleted: deleted
335 346 text_tip_task_begin_day: task beginning this day
336 347 text_tip_task_end_day: task ending this day
337 348 text_tip_task_begin_end_day: task beginning and ending this day
338 349
339 350 default_role_manager: Manager
340 351 default_role_developper: Developer
341 352 default_role_reporter: Reporter
342 353 default_tracker_bug: Bug
343 354 default_tracker_feature: Feature
344 355 default_tracker_support: Support
345 356 default_issue_status_new: New
346 357 default_issue_status_assigned: Assigned
347 358 default_issue_status_resolved: Resolved
348 359 default_issue_status_feedback: Feedback
349 360 default_issue_status_closed: Closed
350 361 default_issue_status_rejected: Rejected
351 362 default_doc_category_user: User documentation
352 363 default_doc_category_tech: Technical documentation
353 364 default_priority_low: Low
354 365 default_priority_normal: Normal
355 366 default_priority_high: High
356 367 default_priority_urgent: Urgent
357 368 default_priority_immediate: Immediate
358 369
359 370 enumeration_issue_priorities: Issue priorities
360 371 enumeration_doc_categories: Document categories
@@ -1,360 +1,371
1 1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre
5 5 actionview_datehelper_select_month_names_abbr: Ene,Feb,Mar,Abr,Mayo,Jun,Jul,Ago,Sep,Oct,Nov,Dic
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 day
9 9 actionview_datehelper_time_in_words_day_plural: %d days
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: half a minute
15 15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 20 actionview_instancetag_blank_option: Please select
21 21
22 22 activerecord_error_inclusion: is not included in the list
23 23 activerecord_error_exclusion: is reserved
24 24 activerecord_error_invalid: is invalid
25 25 activerecord_error_confirmation: doesn't match confirmation
26 26 activerecord_error_accepted: must be accepted
27 27 activerecord_error_empty: can't be empty
28 28 activerecord_error_blank: can't be blank
29 29 activerecord_error_too_long: is too long
30 30 activerecord_error_too_short: is too short
31 31 activerecord_error_wrong_length: is the wrong length
32 32 activerecord_error_taken: has already been taken
33 33 activerecord_error_not_a_number: is not a number
34 34 activerecord_error_not_a_date: no es una fecha válida
35 35 activerecord_error_greater_than_start_date: debe ser la fecha mayor que del comienzo
36 36
37 37 general_fmt_age: %d año
38 38 general_fmt_age_plural: %d años
39 39 general_fmt_date: %%d/%%m/%%Y
40 40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 42 general_fmt_time: %%H:%%M
43 43 general_text_No: 'No'
44 44 general_text_Yes: 'Sí'
45 45 general_text_no: 'no'
46 46 general_text_yes: 'sí'
47 47 general_lang_es: 'Español'
48 48 general_csv_separator: ';'
49 49 general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo
50 50
51 51 notice_account_updated: Account was successfully updated.
52 52 notice_account_invalid_creditentials: Invalid user or password
53 53 notice_account_password_updated: Password was successfully updated.
54 54 notice_account_wrong_password: Wrong password
55 55 notice_account_register_done: Account was successfully created.
56 56 notice_account_unknown_email: Unknown user.
57 57 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
58 58 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
59 59 notice_account_activated: Your account has been activated. You can now log in.
60 60 notice_successful_create: Successful creation.
61 61 notice_successful_update: Successful update.
62 62 notice_successful_delete: Successful deletion.
63 63 notice_successful_connection: Successful connection.
64 64 notice_file_not_found: La página que intentabas tener acceso no existe ni se ha quitado.
65 65 notice_locking_conflict: Data have been updated by another user.
66 66 notice_scm_error: La entrada y/o la revisión no existe en el depósito.
67 67
68 68 mail_subject_lost_password: Tu contraseña del redMine
69 69 mail_subject_register: Activación de la cuenta del redMine
70 70
71 71 gui_validation_error: 1 error
72 72 gui_validation_error_plural: %d errores
73 73
74 74 field_name: Nombre
75 75 field_description: Descripción
76 76 field_summary: Resumen
77 77 field_is_required: Obligatorio
78 78 field_firstname: Nombre
79 79 field_lastname: Apellido
80 80 field_mail: Email
81 81 field_filename: Fichero
82 82 field_filesize: Tamaño
83 83 field_downloads: Telecargas
84 84 field_author: Autor
85 85 field_created_on: Creado
86 86 field_updated_on: Actualizado
87 87 field_field_format: Formato
88 88 field_is_for_all: Para todos los proyectos
89 89 field_possible_values: Valores posibles
90 90 field_regexp: Expresión regular
91 91 field_min_length: Longitud mínima
92 92 field_max_length: Longitud máxima
93 93 field_value: Valor
94 94 field_category: Categoría
95 95 field_title: Título
96 96 field_project: Proyecto
97 97 field_issue: Petición
98 98 field_status: Estatuto
99 99 field_notes: Notas
100 100 field_is_closed: Petición resuelta
101 101 field_is_default: Estatuto por defecto
102 102 field_html_color: Color
103 103 field_tracker: Tracker
104 104 field_subject: Tema
105 105 field_due_date: Fecha debida
106 106 field_assigned_to: Asignado a
107 107 field_priority: Prioridad
108 108 field_fixed_version: Versión corregida
109 109 field_user: Usuario
110 110 field_role: Papel
111 111 field_homepage: Sitio web
112 112 field_is_public: Público
113 113 field_parent: Proyecto secundario de
114 114 field_is_in_chlog: Consultar las peticiones en el histórico
115 115 field_login: Identificador
116 116 field_mail_notification: Notificación por mail
117 117 field_admin: Administrador
118 118 field_locked: Cerrado
119 119 field_last_login_on: Última conexión
120 120 field_language: Lengua
121 121 field_effective_date: Fecha
122 122 field_password: Contraseña
123 123 field_new_password: Nueva contraseña
124 124 field_password_confirmation: Confirmación
125 125 field_version: Versión
126 126 field_type: Tipo
127 127 field_host: Anfitrión
128 128 field_port: Puerto
129 129 field_account: Cuenta
130 130 field_base_dn: Base DN
131 131 field_attr_login: Cualidad del identificador
132 132 field_attr_firstname: Cualidad del nombre
133 133 field_attr_lastname: Cualidad del apellido
134 134 field_attr_mail: Cualidad del Email
135 135 field_onthefly: Creación del usuario On-the-fly
136 136 field_start_date: Comienzo
137 137 field_done_ratio: %% Realizado
138 138 field_auth_source: Modo de la autentificación
139 139 field_hide_mail: Ocultar mi email address
140 140 field_comment: Comentario
141 141 field_url: URL
142 142
143 setting_app_title: Título del aplicación
144 setting_app_subtitle: Subtítulo del aplicación
145 setting_welcome_text: Texto acogida
146 setting_default_language: Lengua del defecto
147 setting_login_required: Autentif. requerida
148 setting_self_registration: Registro permitido
149 setting_attachment_max_size: Tamaño máximo del fichero
150 setting_mail_from: Email de la emisión
151 setting_host_name: Nombre de anfitrión
152 setting_text_formatting: Formato de texto
153
143 154 label_user: Usuario
144 155 label_user_plural: Usuarios
145 156 label_user_new: Nuevo usuario
146 157 label_project: Proyecto
147 158 label_project_new: Nuevo proyecto
148 159 label_project_plural: Proyectos
149 160 label_project_latest: Los proyectos más últimos
150 161 label_issue: Petición
151 162 label_issue_new: Nueva petición
152 163 label_issue_plural: Peticiones
153 164 label_issue_view_all: Ver todas las peticiones
154 165 label_document: Documento
155 166 label_document_new: Nuevo documento
156 167 label_document_plural: Documentos
157 168 label_role: Papel
158 169 label_role_plural: Papeles
159 170 label_role_new: Nuevo papel
160 171 label_role_and_permissions: Papeles y permisos
161 172 label_member: Miembro
162 173 label_member_new: Nuevo miembro
163 174 label_member_plural: Miembros
164 175 label_tracker: Tracker
165 176 label_tracker_plural: Trackers
166 177 label_tracker_new: Nuevo tracker
167 178 label_workflow: Workflow
168 179 label_issue_status: Estatuto de petición
169 180 label_issue_status_plural: Estatutos de las peticiones
170 181 label_issue_status_new: Nuevo estatuto
171 182 label_issue_category: Categoría de las peticiones
172 183 label_issue_category_plural: Categorías de las peticiones
173 184 label_issue_category_new: Nueva categoría
174 185 label_custom_field: Campo personalizado
175 186 label_custom_field_plural: Campos personalizados
176 187 label_custom_field_new: Nuevo campo personalizado
177 188 label_enumerations: Listas de valores
178 189 label_enumeration_new: Nuevo valor
179 190 label_information: Informacion
180 191 label_information_plural: Informaciones
181 192 label_please_login: Conexión
182 193 label_register: Registrar
183 194 label_password_lost: ¿Olvidaste la contraseña?
184 195 label_home: Acogida
185 196 label_my_page: Mi página
186 197 label_my_account: Mi cuenta
187 198 label_my_projects: Mis proyectos
188 199 label_administration: Administración
189 200 label_login: Conexión
190 201 label_logout: Desconexión
191 202 label_help: Ayuda
192 203 label_reported_issues: Peticiones registradas
193 204 label_assigned_to_me_issues: Peticiones que me están asignadas
194 205 label_last_login: Última conexión
195 206 label_last_updates: Actualizado
196 207 label_last_updates_plural: %d Actualizados
197 208 label_registered_on: Inscrito el
198 209 label_activity: Actividad
199 210 label_new: Nuevo
200 211 label_logged_as: Conectado como
201 212 label_environment: Environment
202 213 label_authentication: Autentificación
203 214 label_auth_source: Modo de la autentificación
204 215 label_auth_source_new: Nuevo modo de la autentificación
205 216 label_auth_source_plural: Modos de la autentificación
206 217 label_subproject: Proyecto secundario
207 218 label_subproject_plural: Proyectos secundarios
208 219 label_min_max_length: Longitud mín - máx
209 220 label_list: Lista
210 221 label_date: Fecha
211 222 label_integer: Número
212 223 label_boolean: Boleano
213 224 label_string: Texto
214 225 label_text: Texto largo
215 226 label_attribute: Cualidad
216 227 label_attribute_plural: Cualidades
217 228 label_download: %d Telecarga
218 229 label_download_plural: %d Telecargas
219 230 label_no_data: Ningunos datos a exhibir
220 231 label_change_status: Cambiar el estatuto
221 232 label_history: Histórico
222 233 label_attachment: Fichero
223 234 label_attachment_new: Nuevo fichero
224 235 label_attachment_delete: Suprimir el fichero
225 236 label_attachment_plural: Ficheros
226 237 label_report: Informe
227 238 label_report_plural: Informes
228 239 label_news: Noticia
229 240 label_news_new: Nueva noticia
230 241 label_news_plural: Noticias
231 242 label_news_latest: Últimas noticias
232 243 label_news_view_all: Ver todas las noticias
233 244 label_change_log: Cambios
234 245 label_settings: Configuración
235 246 label_overview: Vistazo
236 247 label_version: Versión
237 248 label_version_new: Nueva versión
238 249 label_version_plural: Versiónes
239 250 label_confirmation: Confirmación
240 251 label_export_to: Exportar a
241 252 label_read: Leer...
242 253 label_public_projects: Proyectos publicos
243 254 label_open_issues: abierta
244 255 label_open_issues_plural: abiertas
245 256 label_closed_issues: cerrada
246 257 label_closed_issues_plural: cerradas
247 258 label_total: Total
248 259 label_permissions: Permisos
249 260 label_current_status: Estado actual
250 261 label_new_statuses_allowed: Nuevos estatutos autorizados
251 262 label_all: todos
252 263 label_none: ninguno
253 264 label_next: Próximo
254 265 label_previous: Precedente
255 266 label_used_by: Utilizado por
256 267 label_details: Detalles...
257 268 label_add_note: Agregar una nota
258 269 label_per_page: Por la página
259 270 label_calendar: Calendario
260 271 label_months_from: meses de
261 272 label_gantt: Gantt
262 273 label_internal: Interno
263 274 label_last_changes: %d cambios del último
264 275 label_change_view_all: Ver todos los cambios
265 276 label_personalize_page: Personalizar esta página
266 277 label_comment: Comentario
267 278 label_comment_plural: Comentarios
268 279 label_comment_add: Agregar un comentario
269 280 label_comment_added: Comentario agregó
270 281 label_comment_delete: Suprimir comentarios
271 282 label_query: Pregunta personalizada
272 283 label_query_plural: Preguntas personalizadas
273 284 label_query_new: Nueva preguntas
274 285 label_filter_add: Agregar el filtro
275 286 label_filter_plural: Filtros
276 287 label_equals: igual
277 288 label_not_equals: no igual
278 289 label_in_less_than: en menos que
279 290 label_in_more_than: en más que
280 291 label_in: en
281 292 label_today: hoy
282 293 label_less_than_ago: hace menos de
283 294 label_more_than_ago: hace más de
284 295 label_ago: hace
285 296 label_contains: contiene
286 297 label_not_contains: no contiene
287 298 label_day_plural: días
288 299 label_repository: Depósito SVN
289 300 label_browse: Hojear
290 301 label_modification: %d modificación
291 302 label_modification_plural: %d modificaciones
292 303 label_revision: Revisión
293 304 label_revision_plural: Revisiones
294 305 label_added: agregado
295 306 label_modified: modificado
296 307 label_deleted: suprimido
297 308 label_latest_revision: La revisión más última
298 309 label_view_revisions: Ver las revisiones
299 310 label_max_size: Tamaño máximo
300 311 label_on: en
301 312
302 313 button_login: Conexión
303 314 button_submit: Someter
304 315 button_save: Validar
305 316 button_check_all: Seleccionar todo
306 317 button_uncheck_all: No seleccionar nada
307 318 button_delete: Suprimir
308 319 button_create: Crear
309 320 button_test: Testar
310 321 button_edit: Modificar
311 322 button_add: Añadir
312 323 button_change: Cambiar
313 324 button_apply: Aplicar
314 325 button_clear: Anular
315 326 button_lock: Bloquear
316 327 button_unlock: Desbloquear
317 328 button_download: Telecargar
318 329 button_list: Listar
319 330 button_view: Ver
320 331 button_move: Mover
321 332 button_back: Atrás
322 333 button_cancel: Cancelar
323 334 button_activate: Activar
324 335
325 336 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
326 337 text_regexp_info: eg. ^[A-Z0-9]+$
327 338 text_min_max_length_info: 0 para ninguna restricción
328 339 text_possible_values_info: Los valores se separaron con |
329 340 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
330 341 text_workflow_edit: Seleccionar un workflow para actualizar
331 342 text_are_you_sure: ¿ Estás seguro ?
332 343 text_journal_changed: cambiado de %s a %s
333 344 text_journal_set_to: fijado a %s
334 345 text_journal_deleted: suprimido
335 346 text_tip_task_begin_day: tarea que comienza este día
336 347 text_tip_task_end_day: tarea que termina este día
337 348 text_tip_task_begin_end_day: tarea que comienza y termina este día
338 349
339 350 default_role_manager: Manager
340 351 default_role_developper: Desarrollador
341 352 default_role_reporter: Informador
342 353 default_tracker_bug: Anomalía
343 354 default_tracker_feature: Evolución
344 355 default_tracker_support: Asistencia
345 356 default_issue_status_new: Nuevo
346 357 default_issue_status_assigned: Asignada
347 358 default_issue_status_resolved: Resuelta
348 359 default_issue_status_feedback: Comentario
349 360 default_issue_status_closed: Cerrada
350 361 default_issue_status_rejected: Rechazada
351 362 default_doc_category_user: Documentación del usuario
352 363 default_doc_category_tech: Documentación tecnica
353 364 default_priority_low: Bajo
354 365 default_priority_normal: Normal
355 366 default_priority_high: Alto
356 367 default_priority_urgent: Urgente
357 368 default_priority_immediate: Ahora
358 369
359 370 enumeration_issue_priorities: Prioridad de las peticiones
360 371 enumeration_doc_categories: Categorías del documento
@@ -1,360 +1,371
1 1 _gloc_rule_default: '|n| n<=1 ? "" : "_plural" '
2 2
3 3 actionview_datehelper_select_day_prefix:
4 4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 6 actionview_datehelper_select_month_prefix:
7 7 actionview_datehelper_select_year_prefix:
8 8 actionview_datehelper_time_in_words_day: 1 jour
9 9 actionview_datehelper_time_in_words_day_plural: %d jours
10 10 actionview_datehelper_time_in_words_hour_about: about an hour
11 11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 13 actionview_datehelper_time_in_words_minute: 1 minute
14 14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 20 actionview_instancetag_blank_option: Choisir
21 21
22 22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 23 activerecord_error_exclusion: est reservé
24 24 activerecord_error_invalid: est invalide
25 25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 26 activerecord_error_accepted: doit être accepté
27 27 activerecord_error_empty: doit être renseigné
28 28 activerecord_error_blank: doit être renseigné
29 29 activerecord_error_too_long: est trop long
30 30 activerecord_error_too_short: est trop court
31 31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 32 activerecord_error_taken: est déjà utilisé
33 33 activerecord_error_not_a_number: n'est pas un nombre
34 34 activerecord_error_not_a_date: n'est pas une date valide
35 35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 36
37 37 general_fmt_age: %d an
38 38 general_fmt_age_plural: %d ans
39 39 general_fmt_date: %%d/%%m/%%Y
40 40 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
41 41 general_fmt_datetime_short: %%d/%%m %%H:%%M
42 42 general_fmt_time: %%H:%%M
43 43 general_text_No: 'Non'
44 44 general_text_Yes: 'Oui'
45 45 general_text_no: 'non'
46 46 general_text_yes: 'oui'
47 47 general_lang_fr: 'Français'
48 48 general_csv_separator: ';'
49 49 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
50 50
51 51 notice_account_updated: Le compte a été mis à jour avec succès.
52 52 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
53 53 notice_account_password_updated: Mot de passe mis à jour avec succès.
54 54 notice_account_wrong_password: Mot de passe incorrect
55 55 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
56 56 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
57 57 notice_can_t_change_password: Ce compte utilise une authentification externe. Impossible de changer le mot de passe.
58 58 notice_account_lost_email_sent: Un message contenant les instructions pour choisir un nouveau mot de passe vous a été envoyé.
59 59 notice_account_activated: Votre compte a été activé. Vous pouvez à présent vous connecter.
60 60 notice_successful_create: Création effectuée avec succès.
61 61 notice_successful_update: Mise à jour effectuée avec succès.
62 62 notice_successful_delete: Suppression effectuée avec succès.
63 63 notice_successful_connection: Connection réussie.
64 64 notice_file_not_found: La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée.
65 65 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
66 66 notice_scm_error: L'entrée et/ou la révision demandée n'existe pas dans le dépôt.
67 67
68 68 mail_subject_lost_password: Votre mot de passe redMine
69 69 mail_subject_register: Activation de votre compte redMine
70 70
71 71 gui_validation_error: 1 erreur
72 72 gui_validation_error_plural: %d erreurs
73 73
74 74 field_name: Nom
75 75 field_description: Description
76 76 field_summary: Résumé
77 77 field_is_required: Obligatoire
78 78 field_firstname: Prénom
79 79 field_lastname: Nom
80 80 field_mail: Email
81 81 field_filename: Fichier
82 82 field_filesize: Taille
83 83 field_downloads: Téléchargements
84 84 field_author: Auteur
85 85 field_created_on: Créé
86 86 field_updated_on: Mis à jour
87 87 field_field_format: Format
88 88 field_is_for_all: Pour tous les projets
89 89 field_possible_values: Valeurs possibles
90 90 field_regexp: Expression régulière
91 91 field_min_length: Longueur minimum
92 92 field_max_length: Longueur maximum
93 93 field_value: Valeur
94 94 field_category: Catégorie
95 95 field_title: Titre
96 96 field_project: Projet
97 97 field_issue: Demande
98 98 field_status: Statut
99 99 field_notes: Notes
100 100 field_is_closed: Demande fermée
101 101 field_is_default: Statut par défaut
102 102 field_html_color: Couleur
103 103 field_tracker: Tracker
104 104 field_subject: Sujet
105 105 field_due_date: Date d'échéance
106 106 field_assigned_to: Assigné à
107 107 field_priority: Priorité
108 108 field_fixed_version: Version corrigée
109 109 field_user: Utilisateur
110 110 field_role: Rôle
111 111 field_homepage: Site web
112 112 field_is_public: Public
113 113 field_parent: Sous-projet de
114 114 field_is_in_chlog: Demandes affichées dans l'historique
115 115 field_login: Identifiant
116 116 field_mail_notification: Notifications par mail
117 117 field_admin: Administrateur
118 118 field_locked: Verrouillé
119 119 field_last_login_on: Dernière connexion
120 120 field_language: Langue
121 121 field_effective_date: Date
122 122 field_password: Mot de passe
123 123 field_new_password: Nouveau mot de passe
124 124 field_password_confirmation: Confirmation
125 125 field_version: Version
126 126 field_type: Type
127 127 field_host: Hôte
128 128 field_port: Port
129 129 field_account: Compte
130 130 field_base_dn: Base DN
131 131 field_attr_login: Attribut Identifiant
132 132 field_attr_firstname: Attribut Prénom
133 133 field_attr_lastname: Attribut Nom
134 134 field_attr_mail: Attribut Email
135 135 field_onthefly: Création des utilisateurs à la volée
136 136 field_start_date: Début
137 137 field_done_ratio: %% Réalisé
138 138 field_auth_source: Mode d'authentification
139 139 field_hide_mail: Cacher mon adresse mail
140 140 field_comment: Commentaire
141 141 field_url: URL
142 142
143 setting_app_title: Titre de l'application
144 setting_app_subtitle: Sous-titre de l'application
145 setting_welcome_text: Texte d'accueil
146 setting_default_language: Langue par défaut
147 setting_login_required: Authentif. obligatoire
148 setting_self_registration: Enregistrement autorisé
149 setting_attachment_max_size: Taille max des fichiers
150 setting_mail_from: Adresse d'émission
151 setting_host_name: Nom d'hôte
152 setting_text_formatting: Formatage du texte
153
143 154 label_user: Utilisateur
144 155 label_user_plural: Utilisateurs
145 156 label_user_new: Nouvel utilisateur
146 157 label_project: Projet
147 158 label_project_new: Nouveau projet
148 159 label_project_plural: Projets
149 160 label_project_latest: Derniers projets
150 161 label_issue: Demande
151 162 label_issue_new: Nouvelle demande
152 163 label_issue_plural: Demandes
153 164 label_issue_view_all: Voir toutes les demandes
154 165 label_document: Document
155 166 label_document_new: Nouveau document
156 167 label_document_plural: Documents
157 168 label_role: Rôle
158 169 label_role_plural: Rôles
159 170 label_role_new: Nouveau rôle
160 171 label_role_and_permissions: Rôles et permissions
161 172 label_member: Membre
162 173 label_member_new: Nouveau membre
163 174 label_member_plural: Membres
164 175 label_tracker: Tracker
165 176 label_tracker_plural: Trackers
166 177 label_tracker_new: Nouveau tracker
167 178 label_workflow: Workflow
168 179 label_issue_status: Statut de demandes
169 180 label_issue_status_plural: Statuts de demandes
170 181 label_issue_status_new: Nouveau statut
171 182 label_issue_category: Catégorie de demandes
172 183 label_issue_category_plural: Catégories de demandes
173 184 label_issue_category_new: Nouvelle catégorie
174 185 label_custom_field: Champ personnalisé
175 186 label_custom_field_plural: Champs personnalisés
176 187 label_custom_field_new: Nouveau champ personnalisé
177 188 label_enumerations: Listes de valeurs
178 189 label_enumeration_new: Nouvelle valeur
179 190 label_information: Information
180 191 label_information_plural: Informations
181 192 label_please_login: Identification
182 193 label_register: S'enregistrer
183 194 label_password_lost: Mot de passe perdu
184 195 label_home: Accueil
185 196 label_my_page: Ma page
186 197 label_my_account: Mon compte
187 198 label_my_projects: Mes projets
188 199 label_administration: Administration
189 200 label_login: Connexion
190 201 label_logout: Déconnexion
191 202 label_help: Aide
192 203 label_reported_issues: Demandes soumises
193 204 label_assigned_to_me_issues: Demandes qui me sont assignées
194 205 label_last_login: Dernière connexion
195 206 label_last_updates: Dernière mise à jour
196 207 label_last_updates_plural: %d dernières mises à jour
197 208 label_registered_on: Inscrit le
198 209 label_activity: Activité
199 210 label_new: Nouveau
200 211 label_logged_as: Connecté en tant que
201 212 label_environment: Environnement
202 213 label_authentication: Authentification
203 214 label_auth_source: Mode d'authentification
204 215 label_auth_source_new: Nouveau mode d'authentification
205 216 label_auth_source_plural: Modes d'authentification
206 217 label_subproject: Sous-projet
207 218 label_subproject_plural: Sous-projets
208 219 label_min_max_length: Longueurs mini - maxi
209 220 label_list: Liste
210 221 label_date: Date
211 222 label_integer: Entier
212 223 label_boolean: Booléen
213 224 label_string: Texte
214 225 label_text: Texte long
215 226 label_attribute: Attribut
216 227 label_attribute_plural: Attributs
217 228 label_download: %d Téléchargement
218 229 label_download_plural: %d Téléchargements
219 230 label_no_data: Aucune donnée à afficher
220 231 label_change_status: Changer le statut
221 232 label_history: Historique
222 233 label_attachment: Fichier
223 234 label_attachment_new: Nouveau fichier
224 235 label_attachment_delete: Supprimer le fichier
225 236 label_attachment_plural: Fichiers
226 237 label_report: Rapport
227 238 label_report_plural: Rapports
228 239 label_news: Annonce
229 240 label_news_new: Nouvelle annonce
230 241 label_news_plural: Annonces
231 242 label_news_latest: Dernières annonces
232 243 label_news_view_all: Voir toutes les annonces
233 244 label_change_log: Historique
234 245 label_settings: Configuration
235 246 label_overview: Aperçu
236 247 label_version: Version
237 248 label_version_new: Nouvelle version
238 249 label_version_plural: Versions
239 250 label_confirmation: Confirmation
240 251 label_export_to: Exporter en
241 252 label_read: Lire...
242 253 label_public_projects: Projets publics
243 254 label_open_issues: ouvert
244 255 label_open_issues_plural: ouverts
245 256 label_closed_issues: fermé
246 257 label_closed_issues_plural: fermés
247 258 label_total: Total
248 259 label_permissions: Permissions
249 260 label_current_status: Statut actuel
250 261 label_new_statuses_allowed: Nouveaux statuts autorisés
251 262 label_all: tous
252 263 label_none: aucun
253 264 label_next: Suivant
254 265 label_previous: Précédent
255 266 label_used_by: Utilisé par
256 267 label_details: Détails...
257 268 label_add_note: Ajouter une note
258 269 label_per_page: Par page
259 270 label_calendar: Calendrier
260 271 label_months_from: mois depuis
261 272 label_gantt: Gantt
262 273 label_internal: Interne
263 274 label_last_changes: %d derniers changements
264 275 label_change_view_all: Voir tous les changements
265 276 label_personalize_page: Personnaliser cette page
266 277 label_comment: Commentaire
267 278 label_comment_plural: Commentaires
268 279 label_comment_add: Ajouter un commentaire
269 280 label_comment_added: Commentaire ajouté
270 281 label_comment_delete: Supprimer les commentaires
271 282 label_query: Rapport personnalisé
272 283 label_query_plural: Rapports personnalisés
273 284 label_query_new: Nouveau rapport
274 285 label_filter_add: Ajouter le filtre
275 286 label_filter_plural: Filtres
276 287 label_equals: égal
277 288 label_not_equals: différent
278 289 label_in_less_than: dans moins de
279 290 label_in_more_than: dans plus de
280 291 label_in: dans
281 292 label_today: aujourd'hui
282 293 label_less_than_ago: il y a moins de
283 294 label_more_than_ago: il y a plus de
284 295 label_ago: il y a
285 296 label_contains: contient
286 297 label_not_contains: ne contient pas
287 298 label_day_plural: jours
288 299 label_repository: Dépôt SVN
289 300 label_browse: Parcourir
290 301 label_modification: %d modification
291 302 label_modification_plural: %d modifications
292 303 label_revision: Révision
293 304 label_revision_plural: Révisions
294 305 label_added: ajouté
295 306 label_modified: modifié
296 307 label_deleted: supprimé
297 308 label_latest_revision: Dernière révision
298 309 label_view_revisions: Voir les révisions
299 310 label_max_size: Taille maximale
300 311 label_on: sur
301 312
302 313 button_login: Connexion
303 314 button_submit: Soumettre
304 315 button_save: Sauvegarder
305 316 button_check_all: Tout cocher
306 317 button_uncheck_all: Tout décocher
307 318 button_delete: Supprimer
308 319 button_create: Créer
309 320 button_test: Tester
310 321 button_edit: Modifier
311 322 button_add: Ajouter
312 323 button_change: Changer
313 324 button_apply: Appliquer
314 325 button_clear: Effacer
315 326 button_lock: Verrouiller
316 327 button_unlock: Déverrouiller
317 328 button_download: Télécharger
318 329 button_list: Lister
319 330 button_view: Voir
320 331 button_move: Déplacer
321 332 button_back: Retour
322 333 button_cancel: Annuler
323 334 button_activate: Activer
324 335
325 336 text_select_mail_notifications: Sélectionner les actions pour lesquelles la notification par mail doit être activée.
326 337 text_regexp_info: ex. ^[A-Z0-9]+$
327 338 text_min_max_length_info: 0 pour aucune restriction
328 339 text_possible_values_info: valeurs séparées par |
329 340 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et tout ce qui lui est rattaché ?
330 341 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
331 342 text_are_you_sure: Etes-vous sûr ?
332 343 text_journal_changed: changé de %s à %s
333 344 text_journal_set_to: mis à %s
334 345 text_journal_deleted: supprimé
335 346 text_tip_task_begin_day: tâche commençant ce jour
336 347 text_tip_task_end_day: tâche finissant ce jour
337 348 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
338 349
339 350 default_role_manager: Manager
340 351 default_role_developper: Développeur
341 352 default_role_reporter: Rapporteur
342 353 default_tracker_bug: Anomalie
343 354 default_tracker_feature: Evolution
344 355 default_tracker_support: Assistance
345 356 default_issue_status_new: Nouveau
346 357 default_issue_status_assigned: Assigné
347 358 default_issue_status_resolved: Résolu
348 359 default_issue_status_feedback: Commentaire
349 360 default_issue_status_closed: Fermé
350 361 default_issue_status_rejected: Rejeté
351 362 default_doc_category_user: Documentation utilisateur
352 363 default_doc_category_tech: Documentation technique
353 364 default_priority_low: Bas
354 365 default_priority_normal: Normal
355 366 default_priority_high: Haut
356 367 default_priority_urgent: Urgent
357 368 default_priority_immediate: Immédiat
358 369
359 370 enumeration_issue_priorities: Priorités des demandes
360 371 enumeration_doc_categories: Catégories des documents
General Comments 0
You need to be logged in to leave comments. Login now