PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

437 lines
27 KiB

The work of two nights causes a long changelog. Here we go: fetchmail.php: - IMPORTANT: fixed typo in database column name. If you have created the fetchmail database already, you have to rename the "pool_time" column to "poll_time" - fixed adding of new entries - don't display status fields (last poll date and result) in edit mode - validate and quote the GET and POST variables - show POSTed data again if invalid values were entered (data to display in the edit form is passed to fetchmail.tpl in $formvars) - check results of database operations and display error/success messages - check owner of target mailbox on all operations - changed password handling: empty means no change (instead of sending "******" around) - reworked and moved around large code portions - added some TODO notes fetchmail.tpl: - use data from $formvars in edit mode instead of parsing the full array - moved "new entry" below the table - replaced delete button with delete links - Note: the boolean fields need testing with PgSQL. Especially test if they are displayed as active correctly in list and edit mode! *.lang: - added several fetchmail-related strings, more to follow - added $PALANG['please_keep_this_as_last_entry'] which always has to be the last entry in the language files. This solves the problem that language-check.sh mixes up the string order when adding strings at the end of the language files. - added vim:ft=php git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@163 a1433add-5e2c-0410-b055-b7f2511e0802
19 years ago
The work of two nights causes a long changelog. Here we go: fetchmail.php: - IMPORTANT: fixed typo in database column name. If you have created the fetchmail database already, you have to rename the "pool_time" column to "poll_time" - fixed adding of new entries - don't display status fields (last poll date and result) in edit mode - validate and quote the GET and POST variables - show POSTed data again if invalid values were entered (data to display in the edit form is passed to fetchmail.tpl in $formvars) - check results of database operations and display error/success messages - check owner of target mailbox on all operations - changed password handling: empty means no change (instead of sending "******" around) - reworked and moved around large code portions - added some TODO notes fetchmail.tpl: - use data from $formvars in edit mode instead of parsing the full array - moved "new entry" below the table - replaced delete button with delete links - Note: the boolean fields need testing with PgSQL. Especially test if they are displayed as active correctly in list and edit mode! *.lang: - added several fetchmail-related strings, more to follow - added $PALANG['please_keep_this_as_last_entry'] which always has to be the last entry in the language files. This solves the problem that language-check.sh mixes up the string order when adding strings at the end of the language files. - added vim:ft=php git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@163 a1433add-5e2c-0410-b055-b7f2511e0802
19 years ago
The work of two nights causes a long changelog. Here we go: fetchmail.php: - IMPORTANT: fixed typo in database column name. If you have created the fetchmail database already, you have to rename the "pool_time" column to "poll_time" - fixed adding of new entries - don't display status fields (last poll date and result) in edit mode - validate and quote the GET and POST variables - show POSTed data again if invalid values were entered (data to display in the edit form is passed to fetchmail.tpl in $formvars) - check results of database operations and display error/success messages - check owner of target mailbox on all operations - changed password handling: empty means no change (instead of sending "******" around) - reworked and moved around large code portions - added some TODO notes fetchmail.tpl: - use data from $formvars in edit mode instead of parsing the full array - moved "new entry" below the table - replaced delete button with delete links - Note: the boolean fields need testing with PgSQL. Especially test if they are displayed as active correctly in list and edit mode! *.lang: - added several fetchmail-related strings, more to follow - added $PALANG['please_keep_this_as_last_entry'] which always has to be the last entry in the language files. This solves the problem that language-check.sh mixes up the string order when adding strings at the end of the language files. - added vim:ft=php git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@163 a1433add-5e2c-0410-b055-b7f2511e0802
19 years ago
  1. <?php
  2. # $Id$
  3. //
  4. // Language file German
  5. // by Tobias
  6. // currently maintained by Christian Boltz (christian_boltz @sf)
  7. //
  8. $PALANG['YES'] = 'JA';
  9. $PALANG['NO'] = 'NEIN';
  10. $PALANG['edit'] = 'editieren';
  11. $PALANG['del'] = 'l&ouml;schen';
  12. $PALANG['exit'] = 'Verlassen';
  13. $PALANG['cancel'] = 'Abbrechen';
  14. $PALANG['save'] = 'Speichern';
  15. $PALANG['confirm'] = 'Sind Sie sicher dass Sie das l&ouml;schen wollen?\n';
  16. $PALANG['confirm_domain'] = 'Wollen Sie wirklich alle Eintr&auml;ge dieser Domain l&ouml;schen? Dies kann NICHT r&uuml;ckg&auml;ngig gemacht werden!\n';
  17. $PALANG['check_update'] = 'Auf Updates &uuml;berpr&uuml;fen';
  18. $PALANG['invalid_parameter'] = 'Ung&uuml;ltiger Parameter!';
  19. $PALANG['pFooter_logged_as'] = 'Angemeldet als %s';
  20. $PALANG['pLogin_welcome'] = 'Mail-Administratoren loggen sich bitte hier ein.';
  21. $PALANG['pLogin_username'] = 'Login (eMail)';
  22. $PALANG['pLogin_password'] = 'Passwort';
  23. $PALANG['pLogin_button'] = 'Login';
  24. $PALANG['pLogin_failed'] = 'Ihre Mailadresse oder das Passwort sind nicht korrekt.';
  25. $PALANG['pLogin_login_users'] = 'eMail-Benutzer bitte hier einloggen.';
  26. $PALANG['pMenu_main'] = 'Startseite';
  27. $PALANG['pMenu_overview'] = '&Uuml;berblick';
  28. $PALANG['pMenu_create_alias'] = 'Alias hinzuf&uuml;gen';
  29. $PALANG['pMenu_create_alias_domain'] = 'Alias-Domain hinzuf&uuml;gen';
  30. $PALANG['pMenu_create_mailbox'] = 'Mailbox hinzuf&uuml;gen';
  31. $PALANG['pMenu_fetchmail'] = 'E-Mail Abruf';
  32. $PALANG['pMenu_sendmail'] = 'Email versenden';
  33. $PALANG['pMenu_password'] = 'Passwort &auml;ndern';
  34. $PALANG['pMenu_viewlog'] = 'Log ansehen';
  35. $PALANG['pMenu_logout'] = 'Logout';
  36. $PALANG['pMain_welcome'] = 'Willkommen zu Postfix Admin!';
  37. $PALANG['pMain_overview'] = 'Listet Ihre Aliase und Mailboxen auf. Sie k&ouml;nnen sie hier editieren und l&ouml;schen.';
  38. $PALANG['pMain_create_alias'] = 'F&uuml;gt einen neuen Alias f&uuml;r Ihre Domain hinzu.';
  39. $PALANG['pMain_create_mailbox'] = 'Legt eine neue Mailbox f&uuml;r Ihre Domain an.';
  40. $PALANG['pMain_sendmail'] = 'Versenden Sie eine Email.';
  41. $PALANG['pMain_password'] = '&Auml;ndern Sie Ihr Admin-Passwort.';
  42. $PALANG['pMain_viewlog'] = 'Lassen Sie sich das Log anzeigen.';
  43. $PALANG['pMain_logout'] = 'Ausloggen aus dem System';
  44. $PALANG['pOverview_disabled'] = 'Deaktiviert';
  45. $PALANG['pOverview_unlimited'] = 'Unbegrenzt';
  46. $PALANG['pOverview_title'] = ':: Eingerichtete Domains';
  47. $PALANG['pOverview_up_arrow'] = 'nach oben';
  48. $PALANG['pOverview_right_arrow'] = 'N&auml;chste Seite';
  49. $PALANG['pOverview_left_arrow'] = 'Vorherige Seite';
  50. $PALANG['pOverview_alias_domain_title'] = ':: Alias-Domains';
  51. $PALANG['pOverview_alias_title'] = ':: Alias';
  52. $PALANG['pOverview_mailbox_title'] = ':: Mailboxen';
  53. $PALANG['pOverview_button'] = 'Los';
  54. $PALANG['pOverview_welcome'] = '&Uuml;berblick &uuml;ber ';
  55. $PALANG['pOverview_alias_domain_aliases'] = 'Alias-Domains';
  56. $PALANG['pOverview_alias_domain_target'] = '%s ist eine Alias-Domain f&uuml;r:';
  57. $PALANG['pOverview_alias_alias_count'] = 'Aliase';
  58. $PALANG['pOverview_alias_mailbox_count'] = 'Mailboxen';
  59. $PALANG['pOverview_alias_address'] = 'Von';
  60. $PALANG['pOverview_alias_goto'] = 'An';
  61. $PALANG['pOverview_alias_modified'] = 'Zuletzt ver&auml;ndert';
  62. $PALANG['pOverview_alias_domain_modified'] = 'Zuletzt ge&auml;ndert';
  63. $PALANG['pOverview_alias_active'] = 'Aktiv';
  64. $PALANG['pOverview_alias_domain_active'] = 'Aktiv';
  65. $PALANG['pOverview_alias_edit'] = 'Alias';
  66. $PALANG['and_x_more'] = '[und %s weitere...]';
  67. $PALANG['pOverview_mailbox_username'] = 'Email';
  68. $PALANG['pOverview_mailbox_name'] = 'Name';
  69. $PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
  70. $PALANG['pOverview_mailbox_modified'] = 'Zuletzt ver&auml;ndert';
  71. $PALANG['pOverview_mailbox_active'] = 'Aktiv';
  72. $PALANG['pOverview_vacation_edit'] = 'AUTOMATISCHE ANTWORT IST AKTIV';
  73. $PALANG['pOverview_vacation_option'] = 'Automatische Antwort einrichten';
  74. $PALANG['pOverview_get_domain'] = 'Domain';
  75. $PALANG['pOverview_get_aliases'] = 'Aliases';
  76. $PALANG['pOverview_get_alias_domains'] = 'Alias-Domains';
  77. $PALANG['pOverview_get_mailboxes'] = 'Mailboxen';
  78. $PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
  79. $PALANG['pOverview_get_modified'] = 'Zuletzt ver&auml;ndert';
  80. $PALANG['pDelete_delete_error'] = '<span class="error_msg">Eintrag konnte nicht gel&ouml;scht werden ';
  81. $PALANG['pDelete_delete_success'] = '%s gel&ouml;scht.';
  82. $PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Mailbox konnte nicht gel&ouml;scht werden ';
  83. $PALANG['pDelete_domain_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen ';
  84. $PALANG['pDelete_domain_alias_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen ';
  85. $PALANG['pDelete_alias_error'] = '<span class="error_msg">Alias konnte nicht gel&ouml;scht werden ';
  86. $PALANG['pCreate_alias_domain_welcome'] = 'Adressen einer Ihrer Domains auf eine andere Domain weiterleiten.';
  87. $PALANG['pCreate_alias_domain_alias'] = 'Alias-Domain';
  88. $PALANG['pCreate_alias_domain_alias_text'] = 'Die Domain, f&uuml;r die Mails hereinkommen.';
  89. $PALANG['pCreate_alias_domain_target'] = 'Zieldomain';
  90. $PALANG['pCreate_alias_domain_target_text'] = 'Die Domain, an die die Mails gehen sollen.';
  91. $PALANG['pCreate_alias_domain_active'] = 'Aktiv';
  92. $PALANG['pCreate_alias_domain_button'] = 'Alias-Domain hinzuf&uuml;gen';
  93. $PALANG['pCreate_alias_domain_error1'] = 'Sie d&uuml;rfen die gew&auml;hlte Konfiguration nicht erstellen.';
  94. $PALANG['pCreate_alias_domain_error2'] = 'Die gew&auml;hlte Konfiguration ist ung&uuml;ltig, bitte w&auml;hlen Sie eine andere';
  95. $PALANG['pCreate_alias_domain_error3'] = 'Datenbank-Eintrag fehlgeschlagen.';
  96. $PALANG['pCreate_alias_domain_error4'] = 'Alle Domains sind bereits Alias-Domains.';
  97. $PALANG['pCreate_alias_domain_success'] = 'Die Alias-Domain wurde in der Datenbank eingetragen!';
  98. $PALANG['pCreate_alias_welcome'] = 'Neuen Alias f&uuml;r Ihre Domain anlegen';
  99. $PALANG['pCreate_alias_address'] = 'Alias';
  100. $PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Dieses ALIAS ist nicht erlaubt!</span>';
  101. $PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Diese eMail-Adresse existiert bereits. Bitte w&auml;hlen Sie eine andere!</span>';
  102. $PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Sie haben Ihr Limit f&uuml;r Aliase auf dieser Domain erreicht!</span>';
  103. $PALANG['pCreate_alias_goto'] = 'An';
  104. $PALANG['pCreate_alias_active'] = 'Aktiv';
  105. $PALANG['pCreate_alias_button'] = 'Alias hinzuf&uuml;gen';
  106. $PALANG['pCreate_alias_goto_text'] = 'Wohin soll die eMail weitergeleitet werden?';
  107. $PALANG['pCreate_alias_goto_text_error'] = 'Wohin die eMail weitergeleitet werden soll<br /><span class="error_msg">Das An-Feld ist falsch!</span>';
  108. $PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Unm&ouml;glich dieses Alias in die Alias-Tabelle einzutragen!</span>';
  109. $PALANG['pCreate_alias_result_success'] = 'Das Alias wurde in die Alias-Tabelle hinzugef&uuml;gt!';
  110. $PALANG['pCreate_alias_catchall_text'] = 'Um alle Adressen abzudecken benutzen Sie einen "*" als Alias.<br />Um ganze Domains an andere Domains weiterzuleiten benutzen Sie "*@domain.tld" im "An"-Feld.';
  111. $PALANG['pEdit_alias_welcome'] = '&Auml;ndern Sie einen Alias f&uuml;r Ihre Domain<br />EIN Eintrag pro Zeile!';
  112. $PALANG['pEdit_alias_address'] = 'Alias';
  113. $PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Auffinden des Alias schlug fehl!</span>';
  114. $PALANG['pEdit_alias_goto'] = 'An';
  115. $PALANG['pEdit_alias_active'] = 'Aktiv';
  116. $PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Sie haben im "To"-Feld nichts angegeben!</span>';
  117. $PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Die angegebene eMail-Adresse ist nicht korrekt: ';
  118. $PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen: ';
  119. $PALANG['pEdit_alias_domain_result_error'] = '<span class="error_msg">Alias-Domain kann nicht ge&auml;ndert werden!</span>';
  120. $PALANG['pEdit_alias_forward_and_store'] = 'Mail in der lokalen Mailbox ablegen.';
  121. $PALANG['pEdit_alias_forward_only'] = 'Nur zur angegebenen Adresse weiterleiten.';
  122. $PALANG['pEdit_alias_button'] = 'Alias &auml;ndern';
  123. $PALANG['pEdit_alias_result_error'] = '<span class="error_msg">&Auml;ndern des Aliases nicht m&ouml;glich!</span>';
  124. $PALANG['pCreate_mailbox_welcome'] = 'Legen Sie eine neue Mailbox f&uuml;r Ihre Domain an.';
  125. $PALANG['pCreate_mailbox_username'] = 'Benutzername';
  126. $PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Die EMAIL ist nicht korrekt!</span>';
  127. $PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Diese Email-Adresse existiert bereits. Bitte w&auml;hlen Sie eine andere!</span>';
  128. $PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Sie d&uuml;rfen leider nicht mehr Mailboxen f&uuml;r diese Domain anlegen!</span>';
  129. $PALANG['pCreate_mailbox_password'] = 'Passwort';
  130. $PALANG['pCreate_mailbox_password2'] = 'Passwort (nochmal)';
  131. $PALANG['pCreate_mailbox_password_text'] = 'Passwort f&uuml;r POP3/IMAP';
  132. $PALANG['pCreate_mailbox_password_text_error'] = 'Passwort f&uuml;r POP3/IMAP<br /><span class="error_msg">Die beiden Passw&ouml;rter sind nicht identisch!<br />Oder ganz leer!</span>';
  133. $PALANG['pCreate_mailbox_name'] = 'Name';
  134. $PALANG['pCreate_mailbox_name_text'] = 'Voller Name';
  135. $PALANG['pCreate_mailbox_quota'] = 'Quota';
  136. $PALANG['pCreate_mailbox_quota_text'] = 'MB';
  137. $PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Das angegebene Quota ist zu hoch!</span>';
  138. $PALANG['pCreate_mailbox_active'] = 'Aktiv';
  139. $PALANG['pCreate_mailbox_mail'] = 'Mailbox anlegen';
  140. $PALANG['pCreate_mailbox_button'] = 'Mailbox hinzuf&uuml;gen';
  141. $PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Unm&ouml;glich die Mailbox in die Mailbox-Tabelle einzutragen!</span>';
  142. $PALANG['pCreate_mailbox_result_success'] = 'Die Mailbox wurde in die Mailbox-Tabelle eingetragen!';
  143. $PALANG['pCreate_mailbox_result_succes_nosubfolders'] = 'Die Mailbox wurde in der Mailbox-Tabelle eingetragen, aber keine (oder nur einige) der vorkonfigurierten Unterordner konnte erstellt werden';
  144. $PALANG['pEdit_mailbox_welcome'] = '&Auml;ndern Sie ihre Mailbox hier.';
  145. $PALANG['pEdit_mailbox_username'] = 'Benutzername';
  146. $PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Unm&ouml;glich die Mailbox aufzufinden!</span>';
  147. $PALANG['pEdit_mailbox_password'] = 'Neues Passwort';
  148. $PALANG['pEdit_mailbox_password2'] = 'Neues Passwort (nochmal)';
  149. $PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Die beiden Passw&ouml;rter sind nicht identisch!</span>';
  150. $PALANG['pEdit_mailbox_name'] = 'Name';
  151. $PALANG['pEdit_mailbox_name_text'] = 'Vollst&auml;ndiger Name';
  152. $PALANG['pEdit_mailbox_quota'] = 'Quota';
  153. $PALANG['pEdit_mailbox_quota_text'] = 'MB';
  154. $PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Das angegebene Quota ist zu hoch!</span>';
  155. $PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen: ';
  156. $PALANG['pEdit_mailbox_button'] = 'Mailbox editieren';
  157. $PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Mailbox kann nicht ge&auml;ndert werden!</span>';
  158. $PALANG['pPassword_welcome'] = '&Auml;ndern Sie Ihr Login-Passwort.';
  159. $PALANG['pPassword_admin'] = 'Login';
  160. $PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Das angegebene Login entspricht keiner Mailbox!</span>';
  161. $PALANG['pPassword_password_current'] = 'Jetziges Password';
  162. $PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Sie haben Ihr derzeitiges Passwort nicht angegeben!</span>';
  163. $PALANG['pPassword_password'] = 'Neues Passwort';
  164. $PALANG['pPassword_password2'] = 'Neues Password (nochmal)';
  165. $PALANG['pPassword_password_text_error'] = '<span class="error_msg">Die beiden angegebenen Passw&ouml;rter sind nicht identische!<br />Oder leer!</span>';
  166. $PALANG['pPassword_button'] = 'Passwort &auml;ndern';
  167. $PALANG['pPassword_result_error'] = '<span class="error_msg">Unm&ouml;glich das Passwort zu &auml;ndern!</span>';
  168. $PALANG['pPassword_result_success'] = 'Ihr Passwort wurde ge&auml;ndert!';
  169. $PALANG['pEdit_vacation_set'] = 'Automatische Antwort &auml;ndern / einrichten';
  170. $PALANG['pEdit_vacation_remove'] = 'Automatische Antwort abschalten';
  171. $PALANG['pVacation_result_error'] = '<span class="error_msg">&Auml;nderungen der automatischen Antwort konnten nicht gespeichert werden!</span>';
  172. $PALANG['pVacation_result_removed'] = 'Automatische Antwort wurde abgeschaltet!';
  173. $PALANG['pVacation_result_added'] = 'Automatische Antwort wurde aktiviert!';
  174. $PALANG['pViewlog_welcome'] = 'Zeigt die letzten 10 Aktionen f&uuml;r ';
  175. $PALANG['pViewlog_timestamp'] = 'Zeitpunkt';
  176. $PALANG['pViewlog_username'] = 'Admin';
  177. $PALANG['pViewlog_domain'] = 'Domain';
  178. $PALANG['pViewlog_action'] = 'Aktion';
  179. $PALANG['pViewlog_data'] = 'Daten';
  180. $PALANG['pViewlog_action_create_mailbox'] = 'Mailbox erstellen';
  181. $PALANG['pViewlog_action_delete_mailbox'] = 'Mailbox l&ouml;schen';
  182. $PALANG['pViewlog_action_edit_mailbox'] = 'Mailbox bearbeiten';
  183. $PALANG['pViewlog_action_edit_mailbox_state'] = 'Mailbox Aktiv bearbeiten';
  184. $PALANG['pViewlog_action_create_alias'] = 'Alias erstellen';
  185. $PALANG['pViewlog_action_create_alias_domain'] = 'Alias-Domain erstellen';
  186. $PALANG['pViewlog_action_delete_alias'] = 'Alias l&ouml;schen';
  187. $PALANG['pViewlog_action_delete_alias_domain'] = 'Alias-Domain l&ouml;schen';
  188. $PALANG['pViewlog_action_edit_alias'] = 'Alias bearbeiten';
  189. $PALANG['pViewlog_action_edit_alias_state'] = 'Alias Aktiv bearbeiten';
  190. $PALANG['pViewlog_action_edit_alias_domain_state'] = 'Alias-Domain Aktiv bearbeiten';
  191. $PALANG['pViewlog_action_edit_password'] = 'Passwort &auml;ndern';
  192. $PALANG['pViewlog_button'] = 'Los';
  193. $PALANG['pViewlog_result_error'] = '<span class="error_msg">Kann keine Eintr&auml;ge finden!</span>';
  194. $PALANG['pSendmail_welcome'] = 'eMail versenden.';
  195. $PALANG['pSendmail_admin'] = 'Von';
  196. $PALANG['pSendmail_to'] = 'An';
  197. $PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Das "An"-Feld ist leer bzw. ung&uuml;ltig!</span>';
  198. $PALANG['pSendmail_subject'] = 'Betreff';
  199. $PALANG['pSendmail_subject_text'] = 'Willkommen';
  200. $PALANG['pSendmail_body'] = 'Text';
  201. $PALANG['pSendmail_button'] = 'Versende Nachricht';
  202. $PALANG['pSendmail_result_error'] = '<span class="error_msg">Mail konnte nicht gesendet werden!</span>';
  203. $PALANG['pSendmail_result_success'] = 'Mail gesendet!';
  204. $PALANG['pAdminMenu_list_admin'] = 'Admin Liste';
  205. $PALANG['pAdminMenu_list_domain'] = 'Domain Liste';
  206. $PALANG['pAdminMenu_list_virtual'] = 'Virtual Liste';
  207. $PALANG['pAdminMenu_viewlog'] = 'Log ansehen';
  208. $PALANG['pAdminMenu_backup'] = 'Sicherung';
  209. $PALANG['pAdminMenu_create_domain_admins'] = 'Domain Admins';
  210. $PALANG['pAdminMenu_create_admin'] = 'Neuer Admin';
  211. $PALANG['pAdminMenu_create_domain'] = 'Neue Domain';
  212. $PALANG['pAdminMenu_create_alias'] = 'Alias hinzuf&uuml;gen';
  213. $PALANG['pAdminMenu_create_mailbox'] = 'Mailbox hinzuf&uuml;gen';
  214. $PALANG['pAdminList_admin_domain'] = 'Domain';
  215. $PALANG['pAdminList_admin_username'] = 'Admin';
  216. $PALANG['pAdminList_admin_count'] = 'Domains';
  217. $PALANG['pAdminList_admin_modified'] = 'zuletzt ge&auml;ndert';
  218. $PALANG['pAdminList_admin_active'] = 'Aktiv';
  219. $PALANG['pAdminList_domain_domain'] = 'Domain';
  220. $PALANG['pAdminList_domain_description'] = 'Beschreibung';
  221. $PALANG['pAdminList_domain_aliases'] = 'Aliase';
  222. $PALANG['pAdminList_domain_mailboxes'] = 'Mailboxen';
  223. $PALANG['pAdminList_domain_maxquota'] = 'Max Quota (MB)';
  224. $PALANG['pAdminList_domain_transport'] = 'Transport';
  225. $PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
  226. $PALANG['pAdminList_domain_modified'] = 'zuletzt ge&auml;ndert';
  227. $PALANG['pAdminList_domain_active'] = 'Aktiv';
  228. $PALANG['pAdminList_virtual_button'] = 'Los';
  229. $PALANG['pAdminList_virtual_welcome'] = '&Uuml;berblick f&uuml;r ';
  230. $PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliase';
  231. $PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Mailboxen';
  232. $PALANG['pAdminList_virtual_alias_address'] = 'Von';
  233. $PALANG['pAdminList_virtual_alias_goto'] = 'An';
  234. $PALANG['pAdminList_virtual_alias_modified'] = 'zuletzt ge&auml;ndert';
  235. $PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
  236. $PALANG['pAdminList_virtual_mailbox_name'] = 'Name';
  237. $PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
  238. $PALANG['pAdminList_virtual_mailbox_modified'] = 'zuletzt ge&auml;ndert';
  239. $PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiv';
  240. $PALANG['pAdminCreate_domain_welcome'] = 'Domain hinzuf&uuml;gen';
  241. $PALANG['pAdminCreate_domain_domain'] = 'Domain';
  242. $PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Diese Domain existiert bereits!</span>';
  243. $PALANG['pAdminCreate_domain_domain_text_error2'] = '<span class="error_msg">Diese Domain ist ung&uuml;ltig!</span>';
  244. $PALANG['pAdminCreate_domain_description'] = 'Beschreibung';
  245. $PALANG['pAdminCreate_domain_aliases'] = 'Aliase';
  246. $PALANG['pAdminCreate_domain_aliases_text'] = '-1 = ausschalten | 0 = kein Limit';
  247. $PALANG['pAdminCreate_domain_mailboxes'] = 'Mailboxen';
  248. $PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = ausschalten | 0 = kein Limit';
  249. $PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
  250. $PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = ausschalten | 0 = kein Limit';
  251. $PALANG['pAdminCreate_domain_transport'] = 'Transport';
  252. $PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
  253. $PALANG['pAdminCreate_domain_defaultaliases'] = 'Standard-Aliase hinzuf&uuml;gen';
  254. $PALANG['pAdminCreate_domain_defaultaliases_text'] = '';
  255. $PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
  256. $PALANG['pAdminCreate_domain_button'] = 'Domain hinzuf&uuml;gen';
  257. $PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Konnte Domain nicht anlegen!</span>';
  258. $PALANG['pAdminCreate_domain_result_success'] = 'Domain wurde angelegt!';
  259. $PALANG['pAdminDelete_domain_error'] = '<span class="error_msg">Domain konnte nicht gel&ouml;scht werden!</span>';
  260. $PALANG['pAdminDelete_alias_domain_error'] = '<span class="error_msg">Alias-Domain konnte nicht gel&ouml;scht werden!</span>';
  261. $PALANG['pAdminEdit_domain_welcome'] = 'Domain editieren';
  262. $PALANG['pAdminEdit_domain_domain'] = 'Domain';
  263. $PALANG['pAdminEdit_domain_description'] = 'Beschreibung';
  264. $PALANG['pAdminEdit_domain_aliases'] = 'Aliase';
  265. $PALANG['pAdminEdit_domain_aliases_text'] = '-1 = ausschalten | 0 = kein Limit';
  266. $PALANG['pAdminEdit_domain_mailboxes'] = 'Mailboxen';
  267. $PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = ausschalten | 0 = kein Limit';
  268. $PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
  269. $PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = ausschalten | 0 = kein Limit';
  270. $PALANG['pAdminEdit_domain_transport'] = 'Transport';
  271. $PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
  272. $PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
  273. $PALANG['pAdminEdit_domain_active'] = 'Aktiv';
  274. $PALANG['pAdminEdit_domain_button'] = 'Domain editieren';
  275. $PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Konnte Domain nicht editieren!</span>';
  276. $PALANG['pAdminCreate_admin_welcome'] = 'Neuen Domain-Admin hinzuf&uuml;gen';
  277. $PALANG['pAdminCreate_admin_username'] = 'Admin';
  278. $PALANG['pAdminCreate_admin_username_text'] = 'Email Adresse';
  279. $PALANG['pAdminCreate_admin_username_text_error1'] = 'Email Adresse<br /><span class="error_msg">Admin-Adresse ist keine echte Email-Adresse!</span>';
  280. $PALANG['pAdminCreate_admin_username_text_error2'] = 'Email Adresse<br /><span class="error_msg">Der Admin existiert bereits bzw. ist nicht korrekt</span>';
  281. $PALANG['pAdminCreate_admin_password'] = 'Passwort';
  282. $PALANG['pAdminCreate_admin_password2'] = 'Passwort (nochmal)';
  283. $PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Die angegebenen Passw&ouml;rter sind nicht identisch<br />Oder leer!</span>';
  284. $PALANG['pAdminCreate_admin_button'] = 'Admin hinzuf&uuml;gen';
  285. $PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Konnte den Admin nicht anlegen!</span>';
  286. $PALANG['pAdminCreate_admin_result_success'] = 'Admin angelegt!';
  287. $PALANG['pAdminCreate_admin_address'] = 'Domain';
  288. $PALANG['pAdminEdit_admin_welcome'] = 'Domain Admin editieren';
  289. $PALANG['pAdminEdit_admin_username'] = 'Admin';
  290. $PALANG['pAdminEdit_admin_password'] = 'Passwort';
  291. $PALANG['pAdminEdit_admin_password2'] = 'Passwort (nochmal)';
  292. $PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Die beiden Passw&ouml;rter sind nicht identisch<br />Oder leer!</span>';
  293. $PALANG['pAdminEdit_admin_active'] = 'Aktiv';
  294. $PALANG['pAdminEdit_admin_super_admin'] = 'Super-Admin';
  295. $PALANG['pAdminEdit_admin_button'] = 'Admin editieren';
  296. $PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Konnte Admin nicht &auml;ndern</span>';
  297. $PALANG['pAdminEdit_admin_result_success'] = 'Admin ge&auml;ndert!';
  298. $PALANG['pUsersLogin_welcome'] = 'Benutzer bitte hier einloggen, um Weiterleitungen bzw. das Passwort zu &auml;ndern.';
  299. $PALANG['pUsersLogin_username'] = 'Login (email)';
  300. $PALANG['pUsersLogin_password'] = 'Passwort';
  301. $PALANG['pUsersLogin_button'] = 'Login';
  302. $PALANG['pUsersLogin_username_incorrect'] = 'Falscher Login! Bitte benutzen Sie ihre Email-Adresse als Login';
  303. $PALANG['pUsersLogin_password_incorrect'] = 'Falsches Passwort!';
  304. $PALANG['pUsersMenu_vacation'] = 'Automatische Antwort';
  305. $PALANG['pUsersMenu_edit_alias'] = 'Weiterleitung &auml;ndern';
  306. $PALANG['pUsersMenu_password'] = 'Passwort &auml;ndern';
  307. $PALANG['pUsersMain_vacation'] = 'Geben Sie eine "Automatische Antwort" ein. Sinnvoll z.B. w&auml;hrend Sie im Urlaub sind';
  308. $PALANG['pUsersMain_vacationSet'] = $PALANG['pUsersMenu_vacation'] . ' ist aktiv, \'' . $PALANG['pUsersMenu_vacation'] . '\' anklicken zum Bearbeiten oder Abschalten';
  309. $PALANG['pUsersMain_edit_alias'] = '&Auml;ndern Sie Ihre Weiterleitung.';
  310. $PALANG['pUsersMain_password'] = '&Auml;ndern Sie Ihr Passwort.';
  311. $PALANG['pUsersVacation_welcome'] = 'Automatische Antwort.';
  312. $PALANG['pUsersVacation_welcome_text'] = 'Sie haben schon eine Automatische Antwort konfiguriert!';
  313. $PALANG['pUsersVacation_subject'] = 'Betreff';
  314. $PALANG['pUsersVacation_subject_text'] = 'Ich bin weg...';
  315. $PALANG['pUsersVacation_body'] = 'Nachricht';
  316. $PALANG['pUsersVacation_body_text'] = <<<EOM
  317. Ich bin vom <date> bis <date> nicht zu Hause / im B&uuml;ro.
  318. In dringenden F&auml;llen setzen Sie sich bitte mit <contact person> in Verbindung.
  319. Vielen Dank f&uuml;r Ihr Verst&auml;ndnis.
  320. EOM;
  321. $PALANG['pUsersVacation_button_away'] = 'Ich gehe weg';
  322. $PALANG['pUsersVacation_button_back'] = 'Ich bin zur&uuml;ck';
  323. $PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Konnte Ihre Automatische Antwort nicht einstellen!</span>';
  324. $PALANG['pUsersVacation_result_success'] = 'Ihre Automatische Antwort wurde gel&ouml;scht!';
  325. $PALANG['pUsersVacation_activefrom'] = 'Aktiv ab dem';
  326. $PALANG['pUsersVacation_activeuntil'] = 'Aktiv bis zum';
  327. $PALANG['pCreate_dbLog_createmailbox'] = 'Mailbox hinzuf&uuml;gen';
  328. $PALANG['pCreate_dbLog_createalias'] = 'Alias hinzu&uuml;�gen';
  329. $PALANG['pDelete_dbLog_deletealias'] = 'Alias l&uuml;schen';
  330. $PALANG['pDelete_dbLog_deletemailbox'] = 'Mailbox l&ouml;schen';
  331. $PALANG['pEdit_dbLog_editactive'] = 'Aktiv-Status &auml;ndern';
  332. $PALANG['pEdit_dbLog_editalias'] = 'Alias bearbeiten';
  333. $PALANG['pEdit_dbLog_editmailbox'] = 'Mailbox bearbeiten';
  334. $PALANG['pSearch'] = 'suche';
  335. $PALANG['pSearch_welcome'] = 'Suche nach: ';
  336. $PALANG['pReturn_to'] = 'Zur&uuml;ck zu';
  337. $PALANG['pBroadcast_title'] = 'Rundmail senden';
  338. $PALANG['pBroadcast_from'] = 'Von';
  339. $PALANG['pBroadcast_name'] = 'Ihr Name';
  340. $PALANG['pBroadcast_subject'] = 'Betreff';
  341. $PALANG['pBroadcast_message'] = 'Nachricht';
  342. $PALANG['pBroadcast_send'] = 'Nachricht senden';
  343. $PALANG['pBroadcast_success'] = 'Ihre Rundmail wurde gesendet.';
  344. $PALANG['pAdminMenu_broadcast_message'] = 'Rundmail';
  345. $PALANG['pBroadcast_error_empty'] = 'Die Felder Name, Betreff und Nachricht d&uuml;rfen nicht leer sein!';
  346. $PALANG['pStatus_undeliverable'] = 'm&ouml;glicherweise UNZUSTELLBAR ';
  347. $PALANG['pStatus_custom'] = 'Zustellung an ';
  348. $PALANG['pStatus_popimap'] = 'POP/IMAP ';
  349. $PALANG['pPasswordTooShort'] = "Das Passwort ist zu kurz - mindestens %s Zeichen ben&ouml;tigt";
  350. $PALANG['pInvalidDomainRegex'] = "Ung&uuml;ltiger Domainname %s - &Uuml;berpr&uuml;fung per RegEx fehlgeschlagen";
  351. $PALANG['pInvalidDomainDNS'] = "Ung&uuml;ltige Domain %s - nicht per DNS aufl&ouml;sbar";
  352. $PALANG['pInvalidMailRegex'] = "Ung&uuml;ltige Mailadresse - &Uuml;berpr&uuml;fung per RegEx fehlgeschlagen";
  353. $PALANG['pFetchmail_welcome'] = 'E-Mail Abruf f&uuml;r: ';
  354. $PALANG['pFetchmail_new_entry'] = 'Neuer Eintrag';
  355. $PALANG['pFetchmail_database_save_error'] = 'Eintrag konnte nicht in der Datenbank gespeichert werden!';
  356. $PALANG['pFetchmail_database_save_success'] = 'Eintrag wurde in der Datenbank gespeichert';
  357. $PALANG['pFetchmail_error_invalid_id'] = 'Kein Eintrag mit ID %s gefunden!';
  358. $PALANG['pFetchmail_invalid_mailbox'] = 'Ung&uuml;ltiges Postfach!';
  359. $PALANG['pFetchmail_server_missing'] = 'Bitte geben Sie den Namen des Servers ein!';
  360. $PALANG['pFetchmail_user_missing'] = 'Bitte geben Sie den Benutzernamen ein!';
  361. $PALANG['pFetchmail_password_missing'] = 'Bitte geben Sie das Passwort ein!';
  362. $PALANG['pFetchmail_field_id'] = 'ID';
  363. $PALANG['pFetchmail_field_mailbox'] = 'Mailbox';
  364. $PALANG['pFetchmail_field_src_server'] = 'Server';
  365. $PALANG['pFetchmail_field_src_auth'] = 'Anmeldemethode';
  366. $PALANG['pFetchmail_field_src_user'] = 'Benutzername';
  367. $PALANG['pFetchmail_field_src_password'] = 'Passwort';
  368. $PALANG['pFetchmail_field_src_folder'] = 'Ordner';
  369. $PALANG['pFetchmail_field_poll_time'] = 'Abruf';
  370. $PALANG['pFetchmail_field_fetchall'] = 'Alle abholen';
  371. $PALANG['pFetchmail_field_keep'] = 'Behalten';
  372. $PALANG['pFetchmail_field_protocol'] = 'Protokoll';
  373. $PALANG['pFetchmail_field_usessl'] = 'SSL aktiv';
  374. $PALANG['pFetchmail_field_extra_options'] = 'Zus&auml;tzliche Optionen';
  375. $PALANG['pFetchmail_field_mda'] = 'MDA';
  376. $PALANG['pFetchmail_field_date'] = 'Datum';
  377. $PALANG['pFetchmail_field_returned_text'] = 'Zur&uuml;ckgegebener Text';
  378. $PALANG['pFetchmail_desc_id'] = 'Eintrags-ID';
  379. $PALANG['pFetchmail_desc_mailbox'] = 'Lokales Postfach';
  380. $PALANG['pFetchmail_desc_src_server'] = 'Entfernter Server';
  381. $PALANG['pFetchmail_desc_src_auth'] = 'Normalerweise \'password\'';
  382. $PALANG['pFetchmail_desc_src_user'] = 'Entfernter Benutzername';
  383. $PALANG['pFetchmail_desc_src_password'] = 'Entferntes Passwort';
  384. $PALANG['pFetchmail_desc_src_folder'] = 'Entfernter Ordner';
  385. $PALANG['pFetchmail_desc_poll_time'] = 'Mailabruf alle ... Minuten';
  386. $PALANG['pFetchmail_desc_fetchall'] = 'Sowohl alte (gelesene) als auch neue Nachrichten abholen';
  387. $PALANG['pFetchmail_desc_keep'] = 'Abgeholte Nachrichten auf dem entfernten Server lassen';
  388. $PALANG['pFetchmail_desc_protocol'] = 'Zu verwendendes Protokoll';
  389. $PALANG['pFetchmail_desc_usessl'] = 'Verschl&uuml;sselung mit SSL';
  390. $PALANG['pFetchmail_desc_extra_options'] = 'Zus&auml;tzliche fetchmail-Optionen';
  391. $PALANG['pFetchmail_desc_mda'] = 'Programm zur Mailauslieferung';
  392. $PALANG['pFetchmail_desc_date'] = 'Datum des letzten Mailabrufs/Konfigurations&auml;nderung';
  393. $PALANG['pFetchmail_desc_returned_text'] = 'Textausgabe des letzten Mailabrufs';
  394. $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh
  395. /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */
  396. ?>