| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Translation file for German language. |
| 5 |
* |
| 6 |
* Most strings can be an array, with a value as the key. The system will |
| 7 |
* pick the translation corresponding to the key. The key "else" will be picked |
| 8 |
* if no matching value is found. This is useful for plurals. |
| 9 |
* |
| 10 |
* Licensed under the MIT license. |
| 11 |
* |
| 12 |
* For the full copyright and license information, please view the LICENSE file. |
| 13 |
* |
| 14 |
* @author Rémi Lanvin <[email protected]> |
| 15 |
* @link https://github.com/rlanvin/php-rrule |
| 16 |
*/ |
| 17 |
return array( |
| 18 |
'yearly' => array( |
| 19 |
'1' => 'Jährlich', |
| 20 |
'else' => 'Alle %{interval} Jahre' |
| 21 |
), |
| 22 |
'monthly' => array( |
| 23 |
'1' => 'Monatlich', |
| 24 |
'else' => 'Alle %{interval} Monate' |
| 25 |
), |
| 26 |
'weekly' => array( |
| 27 |
'1' => 'Wöchentlich', |
| 28 |
'else' => 'Alle %{interval} Wochen' |
| 29 |
), |
| 30 |
'daily' => array( |
| 31 |
'1' => 'Täglich', |
| 32 |
'else' => 'Alle %{interval} Tage' |
| 33 |
), |
| 34 |
'hourly' => array( |
| 35 |
'1' => 'Stündlich', |
| 36 |
'else' => 'Alle %{interval} Stunden' |
| 37 |
), |
| 38 |
'minutely' => array( |
| 39 |
'1' => 'Minütlich', |
| 40 |
'else' => 'Alle %{interval} Minuten' |
| 41 |
), |
| 42 |
'secondly' => array( |
| 43 |
'1' => 'Sekündlich', |
| 44 |
'else' => 'Alle %{interval} Sekunden' |
| 45 |
), |
| 46 |
'dtstart' => ', ab dem %{date}', |
| 47 |
'infinite' => ', für immer', |
| 48 |
'until' => ', bis zum %{date}', |
| 49 |
'count' => array( |
| 50 |
'1' => ', einmalig', |
| 51 |
'else' => ', %{count} Mal insgesamt' |
| 52 |
), |
| 53 |
'and' => 'und ', |
| 54 |
'x_of_the_y' => array( |
| 55 |
'yearly' => '%{x} des Jahres', // e.g. the first Monday of the year, or the first day of the year |
| 56 |
'monthly' => '%{x} des Monats', |
| 57 |
), |
| 58 |
'bymonth' => ' im %{months}', |
| 59 |
'months' => array( |
| 60 |
1 => 'Januar', |
| 61 |
2 => 'Februar', |
| 62 |
3 => 'März', |
| 63 |
4 => 'April', |
| 64 |
5 => 'Mai', |
| 65 |
6 => 'Juni', |
| 66 |
7 => 'Juli', |
| 67 |
8 => 'August', |
| 68 |
9 => 'September', |
| 69 |
10 => 'Oktober', |
| 70 |
11 => 'November', |
| 71 |
12 => 'Dezember', |
| 72 |
), |
| 73 |
'byweekday' => ' am %{weekdays}', |
| 74 |
'weekdays' => array( |
| 75 |
1 => 'Montag', |
| 76 |
2 => 'Dienstag', |
| 77 |
3 => 'Mittwoch', |
| 78 |
4 => 'Donnerstag', |
| 79 |
5 => 'Freitag', |
| 80 |
6 => 'Samstag', |
| 81 |
7 => 'Sonntag', |
| 82 |
), |
| 83 |
'nth_weekday' => array( |
| 84 |
'1' => 'ersten %{weekday}', // e.g. the first Monday |
| 85 |
'2' => 'zweiten %{weekday}', |
| 86 |
'3' => 'dritten %{weekday}', |
| 87 |
'else' => '%{n}. %{weekday}' |
| 88 |
), |
| 89 |
'-nth_weekday' => array( |
| 90 |
'-1' => 'letzten %{weekday}', // e.g. the last Monday |
| 91 |
'-2' => 'vorletzten %{weekday}', |
| 92 |
'else' => ' %{n}. letzten %{weekday}' |
| 93 |
), |
| 94 |
'byweekno' => array( |
| 95 |
'1' => ' in Kalenderwoche %{weeks}', |
| 96 |
'else' => ' in Kalenderwoche %{weeks}' |
| 97 |
), |
| 98 |
'nth_weekno' => '%{n}', |
| 99 |
'bymonthday' => ' am %{monthdays}', |
| 100 |
'nth_monthday' => array( |
| 101 |
'1' => 'ersten Tag', |
| 102 |
'else' => '%{n}. Tag' |
| 103 |
), |
| 104 |
'-nth_monthday' => array( |
| 105 |
'-1' => 'letzten Tag', |
| 106 |
'else' => '%{n}. letzten Tag' |
| 107 |
), |
| 108 |
'byyearday' => array( |
| 109 |
'1' => ' am %{yeardays} Tag', |
| 110 |
'else' => ' am %{yeardays} Tag' |
| 111 |
), |
| 112 |
'nth_yearday' => array( |
| 113 |
'1' => 'ersten', |
| 114 |
'2' => 'zweiten', |
| 115 |
'3' => 'dritten', |
| 116 |
'else' => '%{n}.' |
| 117 |
), |
| 118 |
'-nth_yearday' => array( |
| 119 |
'-1' => 'letzten', |
| 120 |
'-2' => 'vorletzten', |
| 121 |
'else' => '%{n}. letzten' |
| 122 |
), |
| 123 |
'byhour' => array( |
| 124 |
'1' => ' zur %{hours} Stunde', |
| 125 |
'else' => ' zur %{hours} Stunde' |
| 126 |
), |
| 127 |
'nth_hour' => '%{n}', |
| 128 |
'byminute' => array( |
| 129 |
'1' => ' und %{minutes} Minute', |
| 130 |
'else' => ' und %{minutes} Minute' |
| 131 |
), |
| 132 |
'nth_minute' => '%{n}', |
| 133 |
'bysecond' => array( |
| 134 |
'1' => ' und %{seconds} Sekunde', |
| 135 |
'else' => ' und %{seconds} Sekunde' |
| 136 |
), |
| 137 |
'nth_second' => '%{n}', |
| 138 |
'bysetpos' => ', nur %{setpos} Auftreten', |
| 139 |
'nth_setpos' => array( |
| 140 |
'1' => 'das erste', |
| 141 |
'2' => 'das zweite', |
| 142 |
'3' => 'das dritte', |
| 143 |
'else' => 'das %{n}.' |
| 144 |
), |
| 145 |
'-nth_setpos' => array( |
| 146 |
'-1' => 'die letzte', |
| 147 |
'-2' => 'die vorletzte', |
| 148 |
'else' => 'die %{n}. letzte' |
| 149 |
) |
| 150 |
); |
| 151 |
|