mirror of
https://github.com/tomgi/git_stats.git
synced 2024-12-22 13:32:17 +01:00
Merge pull request #19 from dbck/german_localization
Added german localization.
This commit is contained in:
commit
c3b3b2b05a
2 changed files with 284 additions and 0 deletions
60
config/locales/de.yml
Normal file
60
config/locales/de.yml
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
de:
|
||||||
|
project_name: Projektname
|
||||||
|
project_version: Generiert aus commit
|
||||||
|
generated_at: Generiert am
|
||||||
|
generator: Generiert durch
|
||||||
|
report_period: Berichtsperiode
|
||||||
|
total_files: Gesamtanzahl der Dateien
|
||||||
|
total_lines: Gesamtanzahl der Zeilen
|
||||||
|
total_commits: Gesamtanzahl der Commits
|
||||||
|
authors: Autoren
|
||||||
|
commits: Commits
|
||||||
|
commits_by_hour: Commits in der Stunde
|
||||||
|
files: Dateien
|
||||||
|
lines: Zeilen
|
||||||
|
files_by_date: Dateien nach Datum
|
||||||
|
lines_by_date: Zeilen nach Datum
|
||||||
|
files_by_extension: Dateien nach Erweiterungen
|
||||||
|
lines_by_extension: Zeilen nach Erweiterungen
|
||||||
|
hour_of_day: Tagesstunden
|
||||||
|
hour: Stunde
|
||||||
|
percentage: Prozent
|
||||||
|
day: Tag
|
||||||
|
day_of_week: Wochentagen
|
||||||
|
hour_of_week: Tagesstunden und Woche
|
||||||
|
month: Monat
|
||||||
|
month_of_year: Monaten im Jahr
|
||||||
|
year_month: Monaten und Jahr
|
||||||
|
commits_by_wday: Commits am Wochentag
|
||||||
|
commits_by_month: Commits im Monat
|
||||||
|
commits_by_year_month: Commits nach Jahr und Monat
|
||||||
|
commits_by_month_of_year: Commits pro Monat des Jahres
|
||||||
|
year: Jahr
|
||||||
|
commits_by_year: Commits im Jahr
|
||||||
|
activity: Aktivitäten
|
||||||
|
activity_by_date: Datum
|
||||||
|
commits_by_date: Commits am Datum
|
||||||
|
insertions_by_author: Zeilen hinzufügt von Autor
|
||||||
|
deletions_by_author: Zeilen gelöscht von Autor
|
||||||
|
changed_lines_by_author: Geänderte Zeilen von Autor
|
||||||
|
best_authors_shown: aktivsten Autoren werden angezeigt
|
||||||
|
commits_count_by_author: Commits eines Autors
|
||||||
|
commits_sum_by_author_by_date: Commits nach Autor und Datum
|
||||||
|
insertions_by_author_by_date: Hinzugefügte Zeilen pro Autor und Datum
|
||||||
|
deletions_by_author_by_date: Gelöschte Zeilen pro Autor und Datum
|
||||||
|
changed_lines_by_author_by_date: Geänderte Zeilen pro Autor und Datum
|
||||||
|
best_authors: Aktivste Autoren
|
||||||
|
insertions: Zeilen hinzugefügt
|
||||||
|
deletions: Zeilen gelöscht
|
||||||
|
first_commit: Erster commit
|
||||||
|
last_commit: Letzter commit
|
||||||
|
author: Autor
|
||||||
|
show_more: Mehr
|
||||||
|
close: Schliessen
|
||||||
|
binary: Binär
|
||||||
|
text: Text
|
||||||
|
general: Allgemein
|
||||||
|
details: Details
|
||||||
|
insertions_by_date: Zeilen hinzugefügt pro Datum
|
||||||
|
deletions_by_date: Zeilen gelöscht pro Datum
|
||||||
|
changed_lines_by_date: Geänderte Zeilen pro Datum
|
224
config/locales/de_default.yml
Normal file
224
config/locales/de_default.yml
Normal file
|
@ -0,0 +1,224 @@
|
||||||
|
de:
|
||||||
|
date:
|
||||||
|
abbr_day_names:
|
||||||
|
- So
|
||||||
|
- Mo
|
||||||
|
- Di
|
||||||
|
- Mi
|
||||||
|
- Do
|
||||||
|
- Fr
|
||||||
|
- Sa
|
||||||
|
abbr_month_names:
|
||||||
|
-
|
||||||
|
- Jan
|
||||||
|
- Feb
|
||||||
|
- Mär
|
||||||
|
- Apr
|
||||||
|
- Mai
|
||||||
|
- Jun
|
||||||
|
- Jul
|
||||||
|
- Aug
|
||||||
|
- Sep
|
||||||
|
- Okt
|
||||||
|
- Nov
|
||||||
|
- Dez
|
||||||
|
day_names:
|
||||||
|
- Sonntag
|
||||||
|
- Montag
|
||||||
|
- Dienstag
|
||||||
|
- Mittwoch
|
||||||
|
- Donnerstag
|
||||||
|
- Freitag
|
||||||
|
- Samstag
|
||||||
|
formats:
|
||||||
|
default: ! '%d. %m. %Y'
|
||||||
|
long: ! '%d. %B %Y'
|
||||||
|
short: ! '%d %b'
|
||||||
|
month_names:
|
||||||
|
-
|
||||||
|
- Januar
|
||||||
|
- Februar
|
||||||
|
- März
|
||||||
|
- April
|
||||||
|
- Mai
|
||||||
|
- Juni
|
||||||
|
- Juli
|
||||||
|
- August
|
||||||
|
- September
|
||||||
|
- Oktober
|
||||||
|
- November
|
||||||
|
- Dezember
|
||||||
|
order:
|
||||||
|
- :day
|
||||||
|
- :month
|
||||||
|
- :year
|
||||||
|
datetime:
|
||||||
|
distance_in_words:
|
||||||
|
about_x_hours:
|
||||||
|
few: wenige %{count} Stunden
|
||||||
|
one: eine Stunde
|
||||||
|
other: '%{count} Stunden'
|
||||||
|
many: '%{count} Stunden'
|
||||||
|
about_x_months:
|
||||||
|
few: wenige %{count} Monate
|
||||||
|
one: ein Monat
|
||||||
|
other: '%{count} Monate'
|
||||||
|
many: '%{count} Monate'
|
||||||
|
about_x_years:
|
||||||
|
few: wenige %{count} Jahre
|
||||||
|
one: ein Jahr
|
||||||
|
other: '%{count} Jahre'
|
||||||
|
many: '%{count} Jahre'
|
||||||
|
almost_x_years:
|
||||||
|
few: fast %{count} Jahre
|
||||||
|
one: fast ein Jahr
|
||||||
|
other: fast %{count} Jahre'
|
||||||
|
many: fast %{count} Jahre
|
||||||
|
half_a_minute: eine halbe Minute
|
||||||
|
less_than_x_minutes:
|
||||||
|
few: weniger als %{count} Minuten
|
||||||
|
one: weniger als eine Minute
|
||||||
|
other: weniger als %{count} Minuten
|
||||||
|
many: weniger als %{count} Minuten
|
||||||
|
less_than_x_seconds:
|
||||||
|
few: weniger als %{count} Sekunden
|
||||||
|
one: weniger als eine Sekunde
|
||||||
|
other: weniger als %{count} Sekunden
|
||||||
|
many: weniger als %{count} Sekunden
|
||||||
|
over_x_years:
|
||||||
|
few: mehr als %{count} Jahre
|
||||||
|
one: mehr als ein Jahr
|
||||||
|
other: mehr als %{count} Jahre
|
||||||
|
many: mehr als %{count} Jahre
|
||||||
|
x_days:
|
||||||
|
few: ! '%{count} Tage'
|
||||||
|
one: 1 Tag
|
||||||
|
other: ! '%{count} Tage'
|
||||||
|
many: ! '%{count} Tage'
|
||||||
|
x_minutes:
|
||||||
|
few: ! '%{count} Minuten'
|
||||||
|
one: 1 Minute
|
||||||
|
other: ! '%{count} Minuten'
|
||||||
|
many: ! '%{count} Minuten'
|
||||||
|
x_months:
|
||||||
|
few: ! '%{count} Monate'
|
||||||
|
one: 1 Monat
|
||||||
|
other: ! '%{count} Monate'
|
||||||
|
many: ! '%{count} Monate'
|
||||||
|
x_seconds:
|
||||||
|
few: ! '%{count} Sekunden'
|
||||||
|
one: 1 Sekunde
|
||||||
|
other: ! '%{count} Sekunden'
|
||||||
|
many: ! '%{count} Sekunden'
|
||||||
|
prompts:
|
||||||
|
day: Tag
|
||||||
|
hour: Stunde
|
||||||
|
minute: Minute
|
||||||
|
month: Monat
|
||||||
|
second: Sekunde
|
||||||
|
year: Jahr
|
||||||
|
errors: &errors
|
||||||
|
format: ! '%{attribute} %{message}'
|
||||||
|
messages:
|
||||||
|
accepted: Muss akzeptiert werden
|
||||||
|
blank: Darf nicht leer sein
|
||||||
|
confirmation: Stimmt nicht mit der Bestätigung überein
|
||||||
|
empty: Darf nicht leer sein
|
||||||
|
equal_to: Muss gleich %{count} sein
|
||||||
|
even: Muss gerade sein
|
||||||
|
exclusion: Ist reserviert
|
||||||
|
greater_than: Muss größer als %{count} sein
|
||||||
|
greater_than_or_equal_to: Muss größer oder gleich %{count} sein
|
||||||
|
inclusion: Ist nicht auf der Liste der zulässigen Werte
|
||||||
|
invalid: Ist ungültig
|
||||||
|
less_than: Muss kleiner sein als %{count}
|
||||||
|
less_than_or_equal_to: Muss kleiner oder gleich %{count} sein
|
||||||
|
not_a_number: Ist keine Zahl
|
||||||
|
not_an_integer: Ist keine ganze Zahl
|
||||||
|
odd: Muss ungerade sein
|
||||||
|
record_invalid: ! 'Eintrag ungültig: %{errors}'
|
||||||
|
taken: bereits in Verwendung
|
||||||
|
too_long: Ist zu lang (Darf nicht länger als %{count} Zeichen sein)
|
||||||
|
too_short: Ist zu kurz (Darf nicht kürzer als %{count} Zeichen sein)
|
||||||
|
wrong_length: Falsche länge (Sollte %{count} Zeichen lang sein)
|
||||||
|
template:
|
||||||
|
body: ! 'Błędy dotyczą następujących pól:'
|
||||||
|
header:
|
||||||
|
one: ! '%{model} nie został zachowany z powodu jednego błędu'
|
||||||
|
few: ! '%{model} nie został zachowany z powodu %{count} błędów'
|
||||||
|
other: ! '%{model} nie został zachowany z powodu %{count} błędów'
|
||||||
|
helpers:
|
||||||
|
select:
|
||||||
|
prompt: Bitte wählen sie
|
||||||
|
submit:
|
||||||
|
create: Erstellen %{model}
|
||||||
|
submit: Speichern %{model}
|
||||||
|
update: Aktualisieren %{model}
|
||||||
|
number:
|
||||||
|
currency:
|
||||||
|
format:
|
||||||
|
delimiter: ! ' '
|
||||||
|
format: ! '%u %n'
|
||||||
|
precision: 2
|
||||||
|
separator: ! ','
|
||||||
|
significant: false
|
||||||
|
strip_insignificant_zeros: true
|
||||||
|
unit: EUR
|
||||||
|
format:
|
||||||
|
delimiter: ! ' '
|
||||||
|
precision: 3
|
||||||
|
separator: ! ','
|
||||||
|
significant: false
|
||||||
|
strip_insignificant_zeros: false
|
||||||
|
human:
|
||||||
|
decimal_units:
|
||||||
|
format: ! '%n %u'
|
||||||
|
units:
|
||||||
|
billion: Billion
|
||||||
|
million: Million
|
||||||
|
quadrillion: Billard
|
||||||
|
thousand: Tausend
|
||||||
|
trillion: Billionen
|
||||||
|
unit: ''
|
||||||
|
format:
|
||||||
|
delimiter: ''
|
||||||
|
precision: 3
|
||||||
|
significant: true
|
||||||
|
strip_insignificant_zeros: true
|
||||||
|
storage_units:
|
||||||
|
format: ! '%n %u'
|
||||||
|
units:
|
||||||
|
byte:
|
||||||
|
one: Byte
|
||||||
|
few: Bytes
|
||||||
|
many: Bytes
|
||||||
|
other: Bytes
|
||||||
|
gb: GB
|
||||||
|
kb: KB
|
||||||
|
mb: MB
|
||||||
|
tb: TB
|
||||||
|
percentage:
|
||||||
|
format:
|
||||||
|
delimiter: ''
|
||||||
|
precision:
|
||||||
|
format:
|
||||||
|
delimiter: ''
|
||||||
|
support:
|
||||||
|
array:
|
||||||
|
last_word_connector: ! ' und '
|
||||||
|
two_words_connector: ! ' - '
|
||||||
|
words_connector: ! ', '
|
||||||
|
time:
|
||||||
|
am: vormittags
|
||||||
|
formats:
|
||||||
|
default: ! '%a, %d. %b %Y %H:%M:%S %z'
|
||||||
|
long: ! '%d. %B %Y %H:%M'
|
||||||
|
short: ! '%d. %b %H:%M'
|
||||||
|
pm: nachmittags
|
||||||
|
# remove these aliases after 'activemodel' and 'activerecord' namespaces are removed from Rails repository
|
||||||
|
activemodel:
|
||||||
|
errors:
|
||||||
|
<<: *errors
|
||||||
|
activerecord:
|
||||||
|
errors:
|
||||||
|
<<: *errors
|
Loading…
Reference in a new issue