1<?php
2/**
3 * german language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Bob Baddeley <bob@bobbaddeley.com>
7 *
8 * translation by Wolfgang Studer
9 */
10
11// settings must be present and set appropriately for the language
12$lang['encoding']   = 'utf-8';
13$lang['direction']  = 'ltr';
14
15// for admin plugins, the menu prompt to be displayed in the admin menu
16// if set here, the plugin doesn't need to override the getMenuText() method
17$lang['menu'] = 'Kontakt Formular';
18
19// custom language strings for the plugin
20$lang["field"] = 'Feld';
21$lang["value"] = 'Wert';
22$lang["name"] = 'Dein name';
23$lang["email"] = 'Deine Email';
24$lang["subject"] = 'Betreff';
25$lang["content"] = 'Nachricht';
26$lang["contact"] = 'Senden';
27$lang["verify"] = 'Enter \'HUMAN\'';
28
29// error messages
30$lang["error"] = 'Ein unbekannter Fehler trat auf.';
31
32//Setup VIM: ex: et ts=2 enc=utf-8 :
33?>
34