blob: cdd2bb06cd5f3ff2da40e6489d2928d8b2a7805d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/** Austrian German (Österreichisches Deutsch)
*
* See MessagesQqq.php for message documentation incl. usage of parameters
* To improve a translation please visit http://translatewiki.net
*
* @ingroup Language
* @file
*
* @author Geitost
* @author Laximilian scoken
* @author Mucalexx
* @author Revolus
* @author Wdwd
* @author ✓
*/
$fallback = 'de';
$messages = array(
# Dates
'january' => 'Jänner',
'february' => 'Februar',
'december' => 'Dezember',
'january-gen' => 'Jänners',
'february-gen' => 'Februars',
'jan' => 'Jän',
);
|