summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorerdgeist <erdgeist@bauklotz.local>2009-03-10 19:59:02 +0100
committererdgeist <erdgeist@bauklotz.local>2009-03-10 19:59:02 +0100
commitd6049aeffc7de43393a9a7a1d2f95f26422a046f (patch)
tree7036f509aa4f4a518a00ddb0e12fe8a6eb4d563a /config
parent3b3158199f147646348fae0008d3f63062967a87 (diff)
parent14ada6b405dac2bea27a2959f6f73a7398776b0b (diff)
Merge branch 'master' of ssh://git@svn.medienhaus.udk-berlin.de/usr/local/git/cccms
Diffstat (limited to 'config')
-rw-r--r--config/environment.rb12
-rw-r--r--config/locales/de.yml119
2 files changed, 124 insertions, 7 deletions
diff --git a/config/environment.rb b/config/environment.rb
index a3fcfa3..20b38b6 100644
--- a/config/environment.rb
+++ b/config/environment.rb
@@ -20,12 +20,12 @@ Rails::Initializer.run do |config|
20 # config.gem "sqlite3-ruby", :lib => "sqlite3" 20 # config.gem "sqlite3-ruby", :lib => "sqlite3"
21 # config.gem "aws-s3", :lib => "aws/s3" 21 # config.gem "aws-s3", :lib => "aws/s3"
22 22
23 config.gem "rake", :version => ">= 0.8.3" 23 # config.gem "rake", :version => ">= 0.8.3"
24 config.gem "rack", :version => ">= 0.9.1" 24 # config.gem "rack", :version => ">= 0.9.1"
25 config.gem "mongrel", :version => ">= 1.1.5" 25 # config.gem "mongrel", :version => ">= 1.1.5"
26 config.gem "libxml-ruby", :lib => 'xml' 26 # config.gem "libxml-ruby", :lib => 'xml'
27 config.gem "vpim" 27 # config.gem "vpim"
28 config.gem "spicycode-rcov", :lib => 'rcov', :souce => "http://gems.github.com" 28 # config.gem "spicycode-rcov", :lib => 'rcov', :souce => "http://gems.github.com"
29 29
30 # Only load the plugins named here, in the order given (default is alphabetical). 30 # Only load the plugins named here, in the order given (default is alphabetical).
31 # :all can be used as a placeholder for all plugins not explicitly named 31 # :all can be used as a placeholder for all plugins not explicitly named
diff --git a/config/locales/de.yml b/config/locales/de.yml
index 3ddfada..f6bb1b7 100644
--- a/config/locales/de.yml
+++ b/config/locales/de.yml
@@ -1,2 +1,119 @@
1# German translations for Ruby on Rails
2# by Clemens Kofler (clemens@railway.at)
3
1de: 4de:
2 hello: "Hello World" \ No newline at end of file 5 date:
6 formats:
7 default: "%d.%m.%Y"
8 short: "%e. %b"
9 long: "%e. %B %Y"
10 only_day: "%e"
11
12 day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
13 abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
14 month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
15 abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
16 order: [ :day, :month, :year ]
17
18 time:
19 formats:
20 default: "%A, %e. %B %Y, %H:%M Uhr"
21 short: "%e. %B, %H:%M Uhr"
22 long: "%A, %e. %B %Y, %H:%M Uhr"
23 time: "%H:%M"
24
25 am: "vormittags"
26 pm: "nachmittags"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: 'eine halbe Minute'
31 less_than_x_seconds:
32 zero: 'weniger als 1 Sekunde'
33 one: 'weniger als 1 Sekunde'
34 other: 'weniger als {{count}} Sekunden'
35 x_seconds:
36 one: '1 Sekunde'
37 other: '{{count}} Sekunden'
38 less_than_x_minutes:
39 zero: 'weniger als 1 Minute'
40 one: 'weniger als eine Minute'
41 other: 'weniger als {{count}} Minuten'
42 x_minutes:
43 one: '1 Minute'
44 other: '{{count}} Minuten'
45 about_x_hours:
46 one: 'etwa 1 Stunde'
47 other: 'etwa {{count}} Stunden'
48 x_days:
49 one: '1 Tag'
50 other: '{{count}} Tage'
51 about_x_months:
52 one: 'etwa 1 Monat'
53 other: 'etwa {{count}} Monate'
54 x_months:
55 one: '1 Monat'
56 other: '{{count}} Monate'
57 about_x_years:
58 one: 'etwa 1 Jahr'
59 other: 'etwa {{count}} Jahre'
60 over_x_years:
61 one: 'mehr als 1 Jahr'
62 other: 'mehr als {{count}} Jahre'
63
64 number:
65 format:
66 precision: 2
67 separator: ','
68 delimiter: '.'
69 currency:
70 format:
71 unit: '€'
72 format: '%n%u'
73 separator:
74 delimiter:
75 precision:
76 percentage:
77 format:
78 delimiter: ""
79 precision:
80 format:
81 delimiter: ""
82 human:
83 format:
84 delimiter: ""
85 precision: 1
86
87 support:
88 array:
89 sentence_connector: "und"
90 skip_last_comma: true
91
92 activerecord:
93 errors:
94 template:
95 header:
96 one: "Konnte dieses {{model}} Objekt nicht speichern: 1 Fehler."
97 other: "Konnte dieses {{model}} Objekt nicht speichern: {{count}} Fehler."
98 body: "Bitte überprüfen Sie die folgenden Felder:"
99
100 messages:
101 inclusion: "ist kein gültiger Wert"
102 exclusion: "ist nicht verfügbar"
103 invalid: "ist nicht gültig"
104 confirmation: "stimmt nicht mit der Bestätigung überein"
105 accepted: "muss akzeptiert werden"
106 empty: "muss ausgefüllt werden"
107 blank: "muss ausgefüllt werden"
108 too_long: "ist zu lang (nicht mehr als {{count}} Zeichen)"
109 too_short: "ist zu kurz (nicht weniger als {{count}} Zeichen)"
110 wrong_length: "hat die falsche Länge (muss genau {{count}} Zeichen haben)"
111 taken: "ist bereits vergeben"
112 not_a_number: "ist keine Zahl"
113 greater_than: "muss größer als {{count}} sein"
114 greater_than_or_equal_to: "muss größer oder gleich {{count}} sein"
115 equal_to: "muss genau {{count}} sein"
116 less_than: "muss kleiner als {{count}} sein"
117 less_than_or_equal_to: "muss kleiner oder gleich {{count}} sein"
118 odd: "muss ungerade sein"
119 even: "muss gerade sein" \ No newline at end of file