blob: 29a244216187135aed0c1afce225ed29d09ba306 (
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
|
<?php
/**
* External pages German language file
*/
$german = array(
/**
* Menu items and titles
*/
'expages' => "Externe Seiten",
'admin:appearance:expages' => "Externe Seiten",
'expages:about' => "Impressum",
'expages:terms' => "AGBs",
'expages:privacy' => "Datenschutz",
'expages:contact' => "Kontakt",
'expages:notset' => "Diese Seite wurde noch nicht eingerichtet.",
/**
* Status messages
*/
'expages:posted' => "Dein Seiten-Eintrag wurde gespeichert.",
'expages:error' => "Beim Speichern der Seite ist ein Fehler aufgetreten.",
);
add_translation("de", $german);
|