##// END OF EJS Templates
0.4.0 release...
Jean-Philippe Lang -
r140:f3babef54ab4
parent child
Show More
@@ -0,0 +1,22
1 == redMine upgrade procedure
2
3 redMine - project management software
4 Copyright (C) 2006-2007 Jean-Philippe Lang
5 http://redmine.rubyforge.org/
6
7 == From 0.3.0
8
9 1. Uncompress program archive in a new directory:
10 tar zxvf <filename>
11
12 3. Copy your database (database.yml) and configuration settings (config_custom.rb)
13 into the new config directory
14
15 4. Migrate your database:
16 rake migrate RAILS_ENV="production"
17
18
19 == From 0.2.x and previous
20
21 Due to major database changes since 0.2.x, there is no migration support
22 from 0.2.x and previous versions.
@@ -1,140 +1,140
1 1 # Be sure to restart your web server when you modify this file.
2 2
3 3 # Uncomment below to force Rails into production mode when
4 4 # you don't control web/app server and can't set it the proper way
5 5 # ENV['RAILS_ENV'] ||= 'production'
6 6
7 7 # Bootstrap the Rails environment, frameworks, and default configuration
8 8 require File.join(File.dirname(__FILE__), 'boot')
9 9
10 10 Rails::Initializer.run do |config|
11 11 # Settings in config/environments/* take precedence those specified here
12 12
13 13 # Skip frameworks you're not going to use
14 14 # config.frameworks -= [ :action_web_service, :action_mailer ]
15 15
16 16 # Add additional load paths for your own custom dirs
17 17 # config.load_paths += %W( #{RAILS_ROOT}/extras )
18 18
19 19 # Force all environments to use the same logger level
20 20 # (by default production uses :info, the others :debug)
21 21 # config.log_level = :debug
22 22
23 23 # Use the database for sessions instead of the file system
24 24 # (create the session table with 'rake create_sessions_table')
25 25 # config.action_controller.session_store = :active_record_store
26 26
27 27 # Enable page/fragment caching by setting a file-based store
28 28 # (remember to create the caching directory and make it readable to the application)
29 29 # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
30 30
31 31 # Activate observers that should always be running
32 32 # config.active_record.observers = :cacher, :garbage_collector
33 33
34 34 # Make Active Record use UTC-base instead of local time
35 35 # config.active_record.default_timezone = :utc
36 36
37 37 # Use Active Record's schema dumper instead of SQL when creating the test database
38 38 # (enables use of different database adapters for development and test environments)
39 39 # config.active_record.schema_format = :ruby
40 40
41 41 # See Rails::Configuration for more options
42 42
43 43 # SMTP server configuration
44 44 config.action_mailer.server_settings = {
45 45 :address => "127.0.0.1",
46 46 :port => 25,
47 47 :domain => "somenet.foo",
48 48 :authentication => :login,
49 49 :user_name => "redmine",
50 50 :password => "redmine",
51 51 }
52 52
53 53 config.action_mailer.perform_deliveries = true
54 54
55 55 # Tell ActionMailer not to deliver emails to the real world.
56 56 # The :test delivery method accumulates sent emails in the
57 57 # ActionMailer::Base.deliveries array.
58 58 #config.action_mailer.delivery_method = :test
59 59 config.action_mailer.delivery_method = :smtp
60 60 end
61 61
62 62 # Add new inflection rules using the following format
63 63 # (all these examples are active by default):
64 64 # Inflector.inflections do |inflect|
65 65 # inflect.plural /^(ox)$/i, '\1en'
66 66 # inflect.singular /^(ox)en/i, '\1'
67 67 # inflect.irregular 'person', 'people'
68 68 # inflect.uncountable %w( fish sheep )
69 69 # end
70 70
71 71 if File.exist? File.join(File.dirname(__FILE__), 'config_custom.rb')
72 72 begin
73 73 print "=> Loading config_custom.rb... "
74 74 require File.join(File.dirname(__FILE__), 'config_custom')
75 75 puts "done."
76 76 rescue Exception => detail
77 77 puts
78 78 puts detail
79 79 puts detail.backtrace.join("\n")
80 80 puts "=> Error in config_custom.rb. Check your configuration."
81 81 exit
82 82 end
83 83 end
84 84
85 85 # IMPORTANT !!! DO NOT MODIFY PARAMETERS HERE
86 86 # Instead, rename config_custom.example.rb to config_custom.rb
87 87 # and set your own configuration in that file
88 88 # Parameters defined in config_custom.rb override those defined below
89 89
90 90 # application host name
91 91 $RDM_HOST_NAME ||= "localhost:3000"
92 92 # file storage path
93 93 $RDM_STORAGE_PATH ||= "#{RAILS_ROOT}/files"
94 94 # if RDM_LOGIN_REQUIRED is set to true, login is required to access the application
95 95 $RDM_LOGIN_REQUIRED ||= false
96 96 # default langage
97 97 $RDM_DEFAULT_LANG ||= 'en'
98 98 # email sender adress
99 99 $RDM_MAIL_FROM ||= "redmine@somenet.foo"
100 100
101 101 # page title
102 102 $RDM_HEADER_TITLE ||= "redMine"
103 103 # page sub-title
104 104 $RDM_HEADER_SUBTITLE ||= "Project management"
105 105 # footer signature
106 106 $RDM_FOOTER_SIG = "admin@somenet.foo"
107 107
108 108 # textile formatting
109 109 # automaticaly disabled if 'textile' method is not defined (RedCloth unavailable)
110 110 $RDM_TEXTILE_DISABLED = true unless ActionView::Helpers::TextHelper.method_defined? "textilize"
111 111
112 112 # application name
113 113 RDM_APP_NAME = "redMine"
114 114 # application version
115 RDM_APP_VERSION = "0.3.0"
115 RDM_APP_VERSION = "0.4.0"
116 116
117 117 ActiveRecord::Errors.default_error_messages = {
118 118 :inclusion => "activerecord_error_inclusion",
119 119 :exclusion => "activerecord_error_exclusion",
120 120 :invalid => "activerecord_error_invalid",
121 121 :confirmation => "activerecord_error_confirmation",
122 122 :accepted => "activerecord_error_accepted",
123 123 :empty => "activerecord_error_empty",
124 124 :blank => "activerecord_error_blank",
125 125 :too_long => "activerecord_error_too_long",
126 126 :too_short => "activerecord_error_too_short",
127 127 :wrong_length => "activerecord_error_wrong_length",
128 128 :taken => "activerecord_error_taken",
129 129 :not_a_number => "activerecord_error_not_a_number"
130 130 }
131 131
132 132 ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "#{html_tag}" }
133 133
134 134 GLoc.set_config :default_language => $RDM_DEFAULT_LANG
135 135 GLoc.clear_strings
136 136 GLoc.set_kcode
137 137 GLoc.load_localized_strings
138 138 GLoc.set_config(:raise_string_not_found_errors => false)
139 139
140 140
@@ -1,107 +1,107
1 1 == redMine changelog
2 2
3 3 redMine - project management software
4 4 Copyright (C) 2006-2007 Jean-Philippe Lang
5 5 http://redmine.rubyforge.org/
6 6
7 7
8 == xx/xx/2006 v0.4.0
8 == 01/02/2006 v0.4.0
9 9
10 10 * simple SVN browser added (just needs svn binaries in PATH)
11 11 * comments can now be added on news
12 12 * "my page" is now customizable
13 13 * more powerfull and savable filters for issues lists
14 14 * improved issues change history
15 15 * new functionality: move an issue to another project or tracker
16 16 * new functionality: add a note to an issue
17 17 * new report: project activity
18 18 * "start date" and "% done" fields added on issues
19 19 * project calendar added
20 20 * gantt chart added (exportable to pdf)
21 21 * single/multiple issues pdf export added
22 22 * issues reports improvements
23 23 * multiple file upload for issues, documents and files
24 24 * option to set maximum size of uploaded files
25 25 * textile formating of issue and news descritions (RedCloth required)
26 26 * integration of DotClear jstoolbar for textile formatting
27 27 * calendar date picker for date fields (LGPL DHTML Calendar http://sourceforge.net/projects/jscalendar)
28 28 * new filter in issues list: Author
29 29 * ajaxified paginators
30 30 * news rss feed added
31 31 * option to set number of results per page on issues list
32 32 * localized csv separator (comma/semicolon)
33 33 * csv output encoded to ISO-8859-1
34 34 * user custom field displayed on account/show
35 35 * default configuration improved (default roles, trackers, status, permissions and workflows)
36 36 * language for default configuration data can now be chosen when running 'load_default_data' task
37 37 * javascript added on custom field form to show/hide fields according to the format of custom field
38 38 * fixed: custom fields not in csv exports
39 39 * fixed: project settings now displayed according to user's permissions
40 40 * fixed: application error when no version is selected on projects/add_file
41 41 * fixed: public actions not authorized for members of non public projects
42 42 * fixed: non public projects were shown on welcome screen even if current user is not a member
43 43
44 44
45 45 == 10/08/2006 v0.3.0
46 46
47 47 * user authentication against multiple LDAP (optional)
48 48 * token based "lost password" functionality
49 49 * user self-registration functionality (optional)
50 50 * custom fields now available for issues, users and projects
51 51 * new custom field format "text" (displayed as a textarea field)
52 52 * project & administration drop down menus in navigation bar for quicker access
53 53 * text formatting is preserved for long text fields (issues, projects and news descriptions)
54 54 * urls and emails are turned into clickable links in long text fields
55 55 * "due date" field added on issues
56 56 * tracker selection filter added on change log
57 57 * Localization plugin replaced with GLoc 1.1.0 (iconv required)
58 58 * error messages internationalization
59 59 * german translation added (thanks to Karim Trott)
60 60 * data locking for issues to prevent update conflicts (using ActiveRecord builtin optimistic locking)
61 61 * new filter in issues list: "Fixed version"
62 62 * active filters are displayed with colored background on issues list
63 63 * custom configuration is now defined in config/config_custom.rb
64 64 * user object no more stored in session (only user_id)
65 65 * news summary field is no longer required
66 66 * tables and forms redesign
67 67 * Fixed: boolean custom field not working
68 68 * Fixed: error messages for custom fields are not displayed
69 69 * Fixed: invalid custom fields should have a red border
70 70 * Fixed: custom fields values are not validated on issue update
71 71 * Fixed: unable to choose an empty value for 'List' custom fields
72 72 * Fixed: no issue categories sorting
73 73 * Fixed: incorrect versions sorting
74 74
75 75
76 76 == 07/12/2006 - v0.2.2
77 77
78 78 * Fixed: bug in "issues list"
79 79
80 80
81 81 == 07/09/2006 - v0.2.1
82 82
83 83 * new databases supported: Oracle, PostgreSQL, SQL Server
84 84 * projects/subprojects hierarchy (1 level of subprojects only)
85 85 * environment information display in admin/info
86 86 * more filter options in issues list (rev6)
87 87 * default language based on browser settings (Accept-Language HTTP header)
88 88 * issues list exportable to CSV (rev6)
89 89 * simple_format and auto_link on long text fields
90 90 * more data validations
91 91 * Fixed: error when all mail notifications are unchecked in admin/mail_options
92 92 * Fixed: all project news are displayed on project summary
93 93 * Fixed: Can't change user password in users/edit
94 94 * Fixed: Error on tables creation with PostgreSQL (rev5)
95 95 * Fixed: SQL error in "issue reports" view with PostgreSQL (rev5)
96 96
97 97
98 98 == 06/25/2006 - v0.1.0
99 99
100 100 * multiple users/multiple projects
101 101 * role based access control
102 102 * issue tracking system
103 103 * fully customizable workflow
104 104 * documents/files repository
105 105 * email notifications on issue creation and update
106 106 * multilanguage support (except for error messages):english, french, spanish
107 107 * online manual in french (unfinished) No newline at end of file
@@ -1,73 +1,71
1 1 == redMine installation
2 2
3 3 redMine - project management software
4 4 Copyright (C) 2006-2007 Jean-Philippe Lang
5 5 http://redmine.rubyforge.org/
6 6
7 7
8 8 == Requirements
9 9
10 10 * Ruby on Rails 1.1
11 11 * Iconv
12 12 * A database (see compatibility below)
13 13
14 14 Optional:
15 * RedCloth (for textile formatting)
15 * RedCloth (to enable textile formatting)
16 16
17 17 Supported databases:
18 18 * MySQL (tested with MySQL 5)
19 19 * PostgreSQL (tested with PostgreSQL 8.1)
20 20 * Oracle (tested with Oracle 10g)
21 21 * SQL Server (tested with SQL Server 2005)
22 22 * SQLite (tested with SQLite 3)
23 23
24 24
25 == Upgrade
26
27 Due to major database changes, there is no migration support from beta 0.2.0.
28 Next releases (0.3.0+) will be provided with upgrade support.
29
30
31 25 == Installation
32 26
33 27 1. Uncompress program archive:
34 28 tar zxvf <filename>
35 29
36 30 2. Create an empty database: "redmine" for example
37 31
38 32 3. Configure database parameters in config/database.yml
39 33 for "production" environment (default database is MySQL)
40 34
41 35 4. Create the database structure. Under the application main directory:
42 36 rake migrate RAILS_ENV="production"
43 37 It will create tables and an administrator account.
44 38
45 39 5. Insert default configuration data in database:
46 40 rake load_default_data RAILS_ENV="production"
47 41 It will load default roles, trackers, statuses, workflows and enumerations.
48 42 This step is optional (but recommended), as you can define your
49 43 own configuration from sratch.
50 44
51 45 6. Test the installation by running WEBrick web server:
52 46 ruby script/server -e production
53 47
54 48 Once WEBrick has started, point your browser to http://localhost:3000/
55 49 You should now see the application welcome page
56 50
57 51 7. Use default administrator account to log in:
58 52 login: admin
59 53 password: admin
60 54
61 55 8. Setup Apache or Lighttpd with fastcgi for best performance.
62 56
63 57
64 58 == Configuration
65 59
66 60 A sample configuration file is provided: "config/config_custom.example.rb"
67 Rename it to config_custom.rb and edit parameters.
61 Rename it to config_custom.rb and set your parameters.
68 62 Don't forget to restart the application after any change.
69 63
70
64 In config/environment.rb, you can set parameters for your SMTP server:
71 65 config.action_mailer.server_settings: SMTP server configuration
72 66 config.action_mailer.perform_deliveries: set to false to disable mail delivering
73 67
68
69 == Upgrading
70
71 See UPGRADING
@@ -1,357 +1,357
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_hide_mail: Mein email address verstecken
139 139 field_comment: Anmerkung
140 140 field_url: URL
141 141
142 142 label_user: Benutzer
143 143 label_user_plural: Benutzer
144 144 label_user_new: Neuer Benutzer
145 145 label_project: Projekt
146 146 label_project_new: Neues Projekt
147 147 label_project_plural: Projekte
148 148 label_project_latest: Neueste Projekte
149 149 label_issue: Antrag
150 150 label_issue_new: Neue Antrag
151 151 label_issue_plural: Anträge
152 152 label_issue_view_all: Alle Anträge ansehen
153 153 label_document: Dokument
154 154 label_document_new: Neues Dokument
155 155 label_document_plural: Dokumente
156 156 label_role: Rolle
157 157 label_role_plural: Rollen
158 158 label_role_new: Neue Rolle
159 159 label_role_and_permissions: Rollen und Rechte
160 160 label_member: Mitglied
161 161 label_member_new: Neues Mitglied
162 162 label_member_plural: Mitglieder
163 163 label_tracker: Tracker
164 164 label_tracker_plural: Tracker
165 165 label_tracker_new: Neuer Tracker
166 166 label_workflow: Workflow
167 167 label_issue_status: Antrag Status
168 168 label_issue_status_plural: Antrag Stati
169 169 label_issue_status_new: Neuer Status
170 170 label_issue_category: Antrag Kategorie
171 171 label_issue_category_plural: Antrag Kategorien
172 172 label_issue_category_new: Neue Kategorie
173 173 label_custom_field: Benutzerdefiniertes Feld
174 174 label_custom_field_plural: Benutzerdefinierte Felder
175 175 label_custom_field_new: Neues Feld
176 176 label_enumerations: Enumerationen
177 177 label_enumeration_new: Neuer Wert
178 178 label_information: Information
179 179 label_information_plural: Informationen
180 180 label_please_login: Anmelden
181 181 label_register: Anmelden
182 182 label_password_lost: Passwort vergessen
183 183 label_home: Hauptseite
184 184 label_my_page: Meine Seite
185 185 label_my_account: Mein Konto
186 186 label_my_projects: Meine Projekte
187 187 label_administration: Administration
188 188 label_login: Einloggen
189 189 label_logout: Abmelden
190 190 label_help: Hilfe
191 191 label_reported_issues: Gemeldete Issues
192 192 label_assigned_to_me_issues: Mir zugewiesen
193 193 label_last_login: Letzte Anmeldung
194 194 label_last_updates: Letztes aktualisiertes
195 195 label_last_updates_plural: %d Letztes aktualisiertes
196 196 label_registered_on: Angemeldet am
197 197 label_activity: Aktivität
198 198 label_new: Neue
199 199 label_logged_as: Angemeldet als
200 200 label_environment: Environment
201 201 label_authentication: Authentisierung
202 202 label_auth_source: Authentisierung Modus
203 203 label_auth_source_new: Neuer Authentisierung Modus
204 204 label_auth_source_plural: Authentisierung Modi
205 205 label_subproject: Vorprojekt von
206 206 label_subproject_plural: Vorprojekte
207 207 label_min_max_length: Min - Max Länge
208 208 label_list: Liste
209 209 label_date: Date
210 210 label_integer: Zahl
211 211 label_boolean: Boolesch
212 212 label_string: Text
213 213 label_text: Langer Text
214 214 label_attribute: Attribut
215 215 label_attribute_plural: Attribute
216 216 label_download: %d Herunterlade
217 217 label_download_plural: %d Herunterlade
218 218 label_no_data: Nichts anzuzeigen
219 219 label_change_status: Statuswechsel
220 220 label_history: Historie
221 221 label_attachment: Datei
222 222 label_attachment_new: Neue Datei
223 223 label_attachment_delete: Löschungakten
224 224 label_attachment_plural: Dateien
225 225 label_report: Bericht
226 226 label_report_plural: Berichte
227 227 label_news: Neuigkeit
228 228 label_news_new: Neuigkeite addieren
229 229 label_news_plural: Neuigkeiten
230 230 label_news_latest: Letzte Neuigkeiten
231 231 label_news_view_all: Alle Neuigkeiten anzeigen
232 232 label_change_log: Change log
233 233 label_settings: Konfiguration
234 234 label_overview: Übersicht
235 235 label_version: Version
236 236 label_version_new: Neue Version
237 237 label_version_plural: Versionen
238 238 label_confirmation: Bestätigung
239 239 label_export_to: Export zu
240 240 label_read: Lesen...
241 241 label_public_projects: Öffentliche Projekte
242 label_open_issues: Geöffnet
243 label_open_issues_plural: Geöffnet
244 label_closed_issues: Geschlossen
245 label_closed_issues_plural: Geschlossen
242 label_open_issues: geöffnet
243 label_open_issues_plural: geöffnet
244 label_closed_issues: geschlossen
245 label_closed_issues_plural: geschlossen
246 246 label_total: Gesamtzahl
247 247 label_permissions: Berechtigungen
248 248 label_current_status: Gegenwärtiger Status
249 249 label_new_statuses_allowed: Neue Status gewährten
250 label_all: Alle
251 label_none: Kein
250 label_all: alle
251 label_none: kein
252 252 label_next: Weiter
253 253 label_previous: Zurück
254 254 label_used_by: Benutzt von
255 255 label_details: Details...
256 256 label_add_note: Eine Anmerkung addieren
257 257 label_per_page: Pro Seite
258 258 label_calendar: Kalender
259 259 label_months_from: Monate von
260 260 label_gantt: Gantt
261 261 label_internal: Intern
262 262 label_last_changes: %d änderungen des Letzten
263 263 label_change_view_all: Alle änderungen ansehen
264 264 label_personalize_page: Diese Seite personifizieren
265 265 label_comment: Anmerkung
266 266 label_comment_plural: Anmerkungen
267 267 label_comment_add: Anmerkung addieren
268 268 label_comment_added: Anmerkung fügte hinzu
269 269 label_comment_delete: Anmerkungen löschen
270 270 label_query: Benutzerdefiniertes Frage
271 271 label_query_plural: Benutzerdefinierte Fragen
272 272 label_query_new: Neue Frage
273 273 label_filter_add: Filter addieren
274 274 label_filter_plural: Filter
275 275 label_equals: ist
276 276 label_not_equals: ist nicht
277 277 label_in_less_than: an weniger als
278 278 label_in_more_than: an mehr als
279 279 label_in: an
280 280 label_today: heute
281 281 label_less_than_ago: vor weniger als
282 282 label_more_than_ago: vor mehr als
283 283 label_ago: vor
284 284 label_contains: enthält
285 285 label_not_contains: enthält nicht
286 286 label_day_plural: Tage
287 287 label_repository: SVN Behälter
288 288 label_browse: Grasen
289 289 label_modification: %d änderung
290 290 label_modification_plural: %d änderungen
291 291 label_revision: Neuausgabe
292 292 label_revision_plural: Neuausgaben
293 293 label_added: hinzugefügt
294 294 label_modified: geändert
295 295 label_deleted: gelöscht
296 296 label_latest_revision: Neueste Neuausgabe
297 297 label_view_revisions: Die Neuausgaben ansehen
298 298 label_max_size: Maximale Größe
299 299
300 300 button_login: Einloggen
301 301 button_submit: Einreichen
302 302 button_save: Speichern
303 303 button_check_all: Alles auswählen
304 304 button_uncheck_all: Alles abwählen
305 305 button_delete: Löschen
306 306 button_create: Anlegen
307 307 button_test: Testen
308 308 button_edit: Bearbeiten
309 309 button_add: Hinzufügen
310 310 button_change: Wechseln
311 311 button_apply: Anwenden
312 312 button_clear: Zurücksetzen
313 313 button_lock: Verriegeln
314 314 button_unlock: Entriegeln
315 315 button_download: Fernzuladen
316 316 button_list: Aufzulisten
317 317 button_view: Siehe
318 318 button_move: Bewegen
319 319 button_back: Rückkehr
320 320 button_cancel: Annullieren
321 321
322 322 text_select_mail_notifications: Aktionen für die Mailbenachrichtigung aktiviert werden soll.
323 323 text_regexp_info: eg. ^[A-Z0-9]+$
324 324 text_min_max_length_info: 0 heisst keine Beschränkung
325 325 text_possible_values_info: Werte trennten sich mit |
326 326 text_project_destroy_confirmation: Sind sie sicher, daß sie das Projekt löschen wollen ?
327 327 text_workflow_edit: Auswahl Workflow zum Bearbeiten
328 328 text_are_you_sure: Sind sie sicher ?
329 329 text_journal_changed: geändert von %s zu %s
330 330 text_journal_set_to: gestellt zu %s
331 331 text_journal_deleted: gelöscht
332 332 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
333 333 text_tip_task_end_day: Aufgabe, die an diesem Tag beendet
334 334 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und beendet
335 335
336 336 default_role_manager: Manager
337 337 default_role_developper: Developer
338 338 default_role_reporter: Reporter
339 339 default_tracker_bug: Fehler
340 340 default_tracker_feature: Feature
341 341 default_tracker_support: Support
342 342 default_issue_status_new: Neu
343 343 default_issue_status_assigned: Zugewiesen
344 344 default_issue_status_resolved: Gelöst
345 345 default_issue_status_feedback: Feedback
346 346 default_issue_status_closed: Erledigt
347 347 default_issue_status_rejected: Abgewiesen
348 348 default_doc_category_user: Benutzerdokumentation
349 349 default_doc_category_tech: Technische Dokumentation
350 350 default_priority_low: Niedrig
351 351 default_priority_normal: Normal
352 352 default_priority_high: Hoch
353 353 default_priority_urgent: Dringend
354 354 default_priority_immediate: Sofort
355 355
356 356 enumeration_issue_priorities: Issue-Prioritäten
357 357 enumeration_doc_categories: Dokumentenkategorien
@@ -1,357 +1,357
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_hide_mail: Hide my email address
139 139 field_comment: Comment
140 140 field_url: URL
141 141
142 142 label_user: User
143 143 label_user_plural: Users
144 144 label_user_new: New user
145 145 label_project: Project
146 146 label_project_new: New project
147 147 label_project_plural: Projects
148 148 label_project_latest: Latest projects
149 149 label_issue: Issue
150 150 label_issue_new: New issue
151 151 label_issue_plural: Issues
152 152 label_issue_view_all: View all issues
153 153 label_document: Document
154 154 label_document_new: New document
155 155 label_document_plural: Documents
156 156 label_role: Role
157 157 label_role_plural: Roles
158 158 label_role_new: New role
159 159 label_role_and_permissions: Roles and permissions
160 160 label_member: Member
161 161 label_member_new: New member
162 162 label_member_plural: Members
163 163 label_tracker: Tracker
164 164 label_tracker_plural: Trackers
165 165 label_tracker_new: New tracker
166 166 label_workflow: Workflow
167 167 label_issue_status: Issue status
168 168 label_issue_status_plural: Issue statuses
169 169 label_issue_status_new: New status
170 170 label_issue_category: Issue category
171 171 label_issue_category_plural: Issue categories
172 172 label_issue_category_new: New category
173 173 label_custom_field: Custom field
174 174 label_custom_field_plural: Custom fields
175 175 label_custom_field_new: New custom field
176 176 label_enumerations: Enumerations
177 177 label_enumeration_new: New value
178 178 label_information: Information
179 179 label_information_plural: Information
180 180 label_please_login: Please login
181 181 label_register: Register
182 182 label_password_lost: Lost password
183 183 label_home: Home
184 184 label_my_page: My page
185 185 label_my_account: My account
186 186 label_my_projects: My projects
187 187 label_administration: Administration
188 188 label_login: Login
189 189 label_logout: Logout
190 190 label_help: Help
191 191 label_reported_issues: Reported issues
192 192 label_assigned_to_me_issues: Issues assigned to me
193 193 label_last_login: Last connection
194 194 label_last_updates: Last updated
195 195 label_last_updates_plural: %d last updated
196 196 label_registered_on: Registered on
197 197 label_activity: Activity
198 198 label_new: New
199 199 label_logged_as: Logged as
200 200 label_environment: Environment
201 201 label_authentication: Authentication
202 202 label_auth_source: Authentication mode
203 203 label_auth_source_new: New authentication mode
204 204 label_auth_source_plural: Authentication modes
205 205 label_subproject: Subproject
206 206 label_subproject_plural: Subprojects
207 207 label_min_max_length: Min - Max length
208 208 label_list: List
209 209 label_date: Date
210 210 label_integer: Integer
211 211 label_boolean: Boolean
212 212 label_string: Text
213 213 label_text: Long text
214 214 label_attribute: Attribute
215 215 label_attribute_plural: Attributes
216 216 label_download: %d Download
217 217 label_download_plural: %d Downloads
218 218 label_no_data: No data to display
219 219 label_change_status: Change status
220 220 label_history: History
221 221 label_attachment: File
222 222 label_attachment_new: New file
223 223 label_attachment_delete: Delete file
224 224 label_attachment_plural: Files
225 225 label_report: Report
226 226 label_report_plural: Reports
227 227 label_news: News
228 228 label_news_new: Add news
229 229 label_news_plural: News
230 230 label_news_latest: Latest news
231 231 label_news_view_all: View all news
232 232 label_change_log: Change log
233 233 label_settings: Settings
234 234 label_overview: Overview
235 235 label_version: Version
236 236 label_version_new: New version
237 237 label_version_plural: Versions
238 238 label_confirmation: Confirmation
239 239 label_export_to: Export to
240 240 label_read: Read...
241 241 label_public_projects: Public projects
242 label_open_issues: Open
243 label_open_issues_plural: Open
244 label_closed_issues: Closed
245 label_closed_issues_plural: Closed
242 label_open_issues: open
243 label_open_issues_plural: open
244 label_closed_issues: closed
245 label_closed_issues_plural: closed
246 246 label_total: Total
247 247 label_permissions: Permissions
248 248 label_current_status: Current status
249 249 label_new_statuses_allowed: New statuses allowed
250 label_all: All
251 label_none: None
250 label_all: all
251 label_none: none
252 252 label_next: Next
253 253 label_previous: Previous
254 254 label_used_by: Used by
255 255 label_details: Details...
256 256 label_add_note: Add a note
257 257 label_per_page: Per page
258 258 label_calendar: Calendar
259 259 label_months_from: months from
260 260 label_gantt: Gantt
261 261 label_internal: Internal
262 262 label_last_changes: last %d changes
263 263 label_change_view_all: View all changes
264 264 label_personalize_page: Personalize this page
265 265 label_comment: Comment
266 266 label_comment_plural: Comments
267 267 label_comment_add: Add a comment
268 268 label_comment_added: Comment added
269 269 label_comment_delete: Delete comments
270 270 label_query: Custom query
271 271 label_query_plural: Custom queries
272 272 label_query_new: New query
273 273 label_filter_add: Add filter
274 274 label_filter_plural: Filters
275 275 label_equals: is
276 276 label_not_equals: is not
277 277 label_in_less_than: in less than
278 278 label_in_more_than: in more than
279 279 label_in: in
280 280 label_today: today
281 281 label_less_than_ago: less than days ago
282 282 label_more_than_ago: more than days ago
283 283 label_ago: days ago
284 284 label_contains: contains
285 285 label_not_contains: doesn't contain
286 286 label_day_plural: days
287 287 label_repository: SVN Repository
288 288 label_browse: Browse
289 289 label_modification: %d change
290 290 label_modification_plural: %d changes
291 291 label_revision: Revision
292 292 label_revision_plural: Revisions
293 293 label_added: added
294 294 label_modified: modified
295 295 label_deleted: deleted
296 296 label_latest_revision: Latest revision
297 297 label_view_revisions: View revisions
298 298 label_max_size: Maximum size
299 299
300 300 button_login: Login
301 301 button_submit: Submit
302 302 button_save: Save
303 303 button_check_all: Check all
304 304 button_uncheck_all: Uncheck all
305 305 button_delete: Delete
306 306 button_create: Create
307 307 button_test: Test
308 308 button_edit: Edit
309 309 button_add: Add
310 310 button_change: Change
311 311 button_apply: Apply
312 312 button_clear: Clear
313 313 button_lock: Lock
314 314 button_unlock: Unlock
315 315 button_download: Download
316 316 button_list: List
317 317 button_view: View
318 318 button_move: Move
319 319 button_back: Back
320 320 button_cancel: Cancel
321 321
322 322 text_select_mail_notifications: Select actions for which mail notifications should be sent.
323 323 text_regexp_info: eg. ^[A-Z0-9]+$
324 324 text_min_max_length_info: 0 means no restriction
325 325 text_possible_values_info: values separated with |
326 326 text_project_destroy_confirmation: Are you sure you want to delete this project and all related data ?
327 327 text_workflow_edit: Select a role and a tracker to edit the workflow
328 328 text_are_you_sure: Are you sure ?
329 329 text_journal_changed: changed from %s to %s
330 330 text_journal_set_to: set to %s
331 331 text_journal_deleted: deleted
332 332 text_tip_task_begin_day: task beginning this day
333 333 text_tip_task_end_day: task ending this day
334 334 text_tip_task_begin_end_day: task beginning and ending this day
335 335
336 336 default_role_manager: Manager
337 337 default_role_developper: Developer
338 338 default_role_reporter: Reporter
339 339 default_tracker_bug: Bug
340 340 default_tracker_feature: Feature
341 341 default_tracker_support: Support
342 342 default_issue_status_new: New
343 343 default_issue_status_assigned: Assigned
344 344 default_issue_status_resolved: Resolved
345 345 default_issue_status_feedback: Feedback
346 346 default_issue_status_closed: Closed
347 347 default_issue_status_rejected: Rejected
348 348 default_doc_category_user: User documentation
349 349 default_doc_category_tech: Technical documentation
350 350 default_priority_low: Low
351 351 default_priority_normal: Normal
352 352 default_priority_high: High
353 353 default_priority_urgent: Urgent
354 354 default_priority_immediate: Immediate
355 355
356 356 enumeration_issue_priorities: Issue priorities
357 357 enumeration_doc_categories: Document categories
@@ -1,357 +1,357
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_hide_mail: Ocultar mi email address
139 139 field_comment: Comentario
140 140 field_url: URL
141 141
142 142 label_user: Usuario
143 143 label_user_plural: Usuarios
144 144 label_user_new: Nuevo usuario
145 145 label_project: Proyecto
146 146 label_project_new: Nuevo proyecto
147 147 label_project_plural: Proyectos
148 148 label_project_latest: Los proyectos más últimos
149 149 label_issue: Petición
150 150 label_issue_new: Nueva petición
151 151 label_issue_plural: Peticiones
152 152 label_issue_view_all: Ver todas las peticiones
153 153 label_document: Documento
154 154 label_document_new: Nuevo documento
155 155 label_document_plural: Documentos
156 156 label_role: Papel
157 157 label_role_plural: Papeles
158 158 label_role_new: Nuevo papel
159 159 label_role_and_permissions: Papeles y permisos
160 160 label_member: Miembro
161 161 label_member_new: Nuevo miembro
162 162 label_member_plural: Miembros
163 163 label_tracker: Tracker
164 164 label_tracker_plural: Trackers
165 165 label_tracker_new: Nuevo tracker
166 166 label_workflow: Workflow
167 167 label_issue_status: Estatuto de petición
168 168 label_issue_status_plural: Estatutos de las peticiones
169 169 label_issue_status_new: Nuevo estatuto
170 170 label_issue_category: Categoría de las peticiones
171 171 label_issue_category_plural: Categorías de las peticiones
172 172 label_issue_category_new: Nueva categoría
173 173 label_custom_field: Campo personalizado
174 174 label_custom_field_plural: Campos personalizados
175 175 label_custom_field_new: Nuevo campo personalizado
176 176 label_enumerations: Listas de valores
177 177 label_enumeration_new: Nuevo valor
178 178 label_information: Informacion
179 179 label_information_plural: Informaciones
180 180 label_please_login: Conexión
181 181 label_register: Registrar
182 182 label_password_lost: ¿Olvidaste la contraseña?
183 183 label_home: Acogida
184 184 label_my_page: Mi página
185 185 label_my_account: Mi cuenta
186 186 label_my_projects: Mis proyectos
187 187 label_administration: Administración
188 188 label_login: Conexión
189 189 label_logout: Desconexión
190 190 label_help: Ayuda
191 191 label_reported_issues: Peticiones registradas
192 192 label_assigned_to_me_issues: Peticiones que me están asignadas
193 193 label_last_login: Última conexión
194 194 label_last_updates: Actualizado
195 195 label_last_updates_plural: %d Actualizados
196 196 label_registered_on: Inscrito el
197 197 label_activity: Actividad
198 198 label_new: Nuevo
199 199 label_logged_as: Conectado como
200 200 label_environment: Environment
201 201 label_authentication: Autentificación
202 202 label_auth_source: Modo de la autentificación
203 203 label_auth_source_new: Nuevo modo de la autentificación
204 204 label_auth_source_plural: Modos de la autentificación
205 205 label_subproject: Proyecto secundario
206 206 label_subproject_plural: Proyectos secundarios
207 207 label_min_max_length: Longitud mín - máx
208 208 label_list: Lista
209 209 label_date: Fecha
210 210 label_integer: Número
211 211 label_boolean: Boleano
212 212 label_string: Texto
213 213 label_text: Texto largo
214 214 label_attribute: Cualidad
215 215 label_attribute_plural: Cualidades
216 216 label_download: %d Telecarga
217 217 label_download_plural: %d Telecargas
218 218 label_no_data: Ningunos datos a exhibir
219 219 label_change_status: Cambiar el estatuto
220 220 label_history: Histórico
221 221 label_attachment: Fichero
222 222 label_attachment_new: Nuevo fichero
223 223 label_attachment_delete: Suprimir el fichero
224 224 label_attachment_plural: Ficheros
225 225 label_report: Informe
226 226 label_report_plural: Informes
227 227 label_news: Noticia
228 228 label_news_new: Nueva noticia
229 229 label_news_plural: Noticias
230 230 label_news_latest: Últimas noticias
231 231 label_news_view_all: Ver todas las noticias
232 232 label_change_log: Cambios
233 233 label_settings: Configuración
234 234 label_overview: Vistazo
235 235 label_version: Versión
236 236 label_version_new: Nueva versión
237 237 label_version_plural: Versiónes
238 238 label_confirmation: Confirmación
239 239 label_export_to: Exportar a
240 240 label_read: Leer...
241 241 label_public_projects: Proyectos publicos
242 label_open_issues: Abierta
243 label_open_issues_plural: Abiertas
244 label_closed_issues: Cerrada
245 label_closed_issues_plural: Cerradas
242 label_open_issues: abierta
243 label_open_issues_plural: abiertas
244 label_closed_issues: cerrada
245 label_closed_issues_plural: cerradas
246 246 label_total: Total
247 247 label_permissions: Permisos
248 248 label_current_status: Estado actual
249 249 label_new_statuses_allowed: Nuevos estatutos autorizados
250 label_all: Todos
251 label_none: Ninguno
250 label_all: todos
251 label_none: ninguno
252 252 label_next: Próximo
253 253 label_previous: Precedente
254 254 label_used_by: Utilizado por
255 255 label_details: Detalles...
256 256 label_add_note: Agregar una nota
257 257 label_per_page: Por la página
258 258 label_calendar: Calendario
259 259 label_months_from: meses de
260 260 label_gantt: Gantt
261 261 label_internal: Interno
262 262 label_last_changes: %d cambios del último
263 263 label_change_view_all: Ver todos los cambios
264 264 label_personalize_page: Personalizar esta página
265 265 label_comment: Comentario
266 266 label_comment_plural: Comentarios
267 267 label_comment_add: Agregar un comentario
268 268 label_comment_added: Comentario agregó
269 269 label_comment_delete: Suprimir comentarios
270 270 label_query: Pregunta personalizada
271 271 label_query_plural: Preguntas personalizadas
272 272 label_query_new: Nueva preguntas
273 273 label_filter_add: Agregar el filtro
274 274 label_filter_plural: Filtros
275 275 label_equals: igual
276 276 label_not_equals: no igual
277 277 label_in_less_than: en menos que
278 278 label_in_more_than: en más que
279 279 label_in: en
280 280 label_today: hoy
281 281 label_less_than_ago: hace menos de
282 282 label_more_than_ago: hace más de
283 283 label_ago: hace
284 284 label_contains: contiene
285 285 label_not_contains: no contiene
286 286 label_day_plural: días
287 287 label_repository: Depósito SVN
288 288 label_browse: Hojear
289 289 label_modification: %d modificación
290 290 label_modification_plural: %d modificaciones
291 291 label_revision: Revisión
292 292 label_revision_plural: Revisiones
293 293 label_added: agregado
294 294 label_modified: modificado
295 295 label_deleted: suprimido
296 296 label_latest_revision: La revisión más última
297 297 label_view_revisions: Ver las revisiones
298 298 label_max_size: Tamaño máximo
299 299
300 300 button_login: Conexión
301 301 button_submit: Someter
302 302 button_save: Validar
303 303 button_check_all: Seleccionar todo
304 304 button_uncheck_all: No seleccionar nada
305 305 button_delete: Suprimir
306 306 button_create: Crear
307 307 button_test: Testar
308 308 button_edit: Modificar
309 309 button_add: Añadir
310 310 button_change: Cambiar
311 311 button_apply: Aplicar
312 312 button_clear: Anular
313 313 button_lock: Bloquear
314 314 button_unlock: Desbloquear
315 315 button_download: Telecargar
316 316 button_list: Listar
317 317 button_view: Ver
318 318 button_move: Mover
319 319 button_back: Atrás
320 320 button_cancel: Cancelar
321 321
322 322 text_select_mail_notifications: Seleccionar las actividades que necesitan la activación de la notificación por mail.
323 323 text_regexp_info: eg. ^[A-Z0-9]+$
324 324 text_min_max_length_info: 0 para ninguna restricción
325 325 text_possible_values_info: Los valores se separaron con |
326 326 text_project_destroy_confirmation: ¿ Estás seguro de querer eliminar el proyecto ?
327 327 text_workflow_edit: Seleccionar un workflow para actualizar
328 328 text_are_you_sure: ¿ Estás seguro ?
329 329 text_journal_changed: cambiado de %s a %s
330 330 text_journal_set_to: fijado a %s
331 331 text_journal_deleted: suprimido
332 332 text_tip_task_begin_day: tarea que comienza este día
333 333 text_tip_task_end_day: tarea que termina este día
334 334 text_tip_task_begin_end_day: tarea que comienza y termina este día
335 335
336 336 default_role_manager: Manager
337 337 default_role_developper: Desarrollador
338 338 default_role_reporter: Informador
339 339 default_tracker_bug: Anomalía
340 340 default_tracker_feature: Evolución
341 341 default_tracker_support: Asistencia
342 342 default_issue_status_new: Nuevo
343 343 default_issue_status_assigned: Asignada
344 344 default_issue_status_resolved: Resuelta
345 345 default_issue_status_feedback: Comentario
346 346 default_issue_status_closed: Cerrada
347 347 default_issue_status_rejected: Rechazada
348 348 default_doc_category_user: Documentación del usuario
349 349 default_doc_category_tech: Documentación tecnica
350 350 default_priority_low: Bajo
351 351 default_priority_normal: Normal
352 352 default_priority_high: Alto
353 353 default_priority_urgent: Urgente
354 354 default_priority_immediate: Ahora
355 355
356 356 enumeration_issue_priorities: Prioridad de las peticiones
357 357 enumeration_doc_categories: Categorías del documento
General Comments 0
You need to be logged in to leave comments. Login now