Files
@ r31:4f7757d5b0f1
Branch filter:
Location: public/ws-vacation/lib/language.php
r31:4f7757d5b0f1
4.9 KiB
text/x-php
Added tag v0.8 for changeset de0b00cc9fec
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | <?php // -*- php -*-
// Copyright (C) 2012, Wolfgang Scherer, <Wolfgang.Scherer at gmx.de>
// Sponsored by WIEDENMANN SEILE GMBH, http://www.wiedenmannseile.de
//
// This file is part of Wiedenmann Vacation.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>,
// or write to Wolfgang Scherer, <Wolfgang.Scherer at gmx.de>
// $_REQUEST['_DEBUG_'] = 1;
$LC_LANGUAGES = Array(
'en' => Array(
'vacation' => 'Subject: Re: $SUBJECT
I am currently not able to read mail.
Your message has been forwarded to a co-worker for processing.
',
'error_no_subject' => 'error: subject is empty!',
'error_no_user' => 'error: no user specified!',
'error_unknown_user' => 'error: unkown user',
'error_unknown_forward' => 'error: unknown forward user',
'title' => 'Email Vacation Settings',
'user' => 'User',
'forward_to' => 'Forward To',
'active' => 'Active',
'none' => 'none',
'automatic_mode' => 'Automatic Conversion',
'subject' => 'Subject',
'body' => 'Body',
'message' => 'Message',
'explain_subject' =>
' The expression'
.' <em>$SUBJECT</em> is replaced with the subject of the incoming message.',
'refresh' => 'Refresh',
'clear' => 'Clear',
'save' => 'Save',
'enable_encoding' => '(encoded as UTF-8/quoted-printable)',
'expert_mode' => 'Expert Mode',
'raw' => 'Save as is',
'disable_encoding' => '(unencoded)',
'explain_expert' =>
'If your message has <em>Content-Transfer-Encoding: 8bit</em>, make sure, that
the charset is specified as UTF-8!<br />E.g.: <em>Content-Type: text/plain;
charset=UTF-8</em>.',
'reply_history_empty' => 'Autoreply History Is Empty',
'reply_history' => 'Autoreply History',
'delete' => 'Delete',
'manual_headline' => 'Administrator Manual',
'manual' => 'Manual',
'manual_link' => 'doc/README.html',
// |:here:|
),
'de' => Array(
'vacation' => 'Subject: Re: $SUBJECT
Ich bin leider vorübergehend nicht per Email erreichbar.
Ihre Mail wird zur Bearbeitung an meine Vertretung weitergeleitet.
',
'error_no_subject' => 'Fehler: Betreff ist leer!',
'error_no_user' => 'Fehler: Benutzer kann nicht ermittelt werden!',
'error_unknown_user' => 'Fehler: unbekannter Benutzer',
'error_unknown_forward' => 'Fehler: unbekannte Vertretung',
'title' => 'Email Urlaubseinstellungen',
'user' => 'Benutzer',
'forward_to' => 'Vertretung',
'active' => 'Aktiv',
'none' => 'niemand',
'automatic_mode' => 'Automatische Konvertierung',
'subject' => 'Betreff',
'body' => 'Inhalt',
'message' => 'Nachricht',
'explain_subject' =>
' Der Ausdruck'
.' <em>$SUBJECT</em> wird durch den Betreff der eingehenden Email'
.' ersetzt.',
'refresh' => 'Verwerfen',
'clear' => 'Voreinst.',
'save' => 'Speichern',
'enable_encoding' => '(Konvertierung: UTF-8/quoted-printable)',
'expert_mode' => 'Expertenmodus',
'raw' => 'Nicht formatieren',
'disable_encoding' => '(ohne Konvertierung)',
'explain_expert' =>
'Wenn die Nachricht <em>Content-Transfer-Encoding: 8bit</em> enhält, bitte
sicherstellen, daß als Zeichensatz (charset) UTF-8 angegeben ist!<br />
Z.B.: <em>Content-Type: text/plain; charset=UTF-8</em>.',
'reply_history_empty' => 'Keine automatisch beantworteten Emails',
'reply_history' => 'Automatisch Beantwortete Emails',
'delete' => 'Löschen',
'manual_headline' => 'Administratorhandbuch',
'manual' => 'Anleitung',
'manual_link' => 'doc/README-de.html',
// |:here:|
),
);
//
// :ide-menu: Emacs IDE Menu - Buffer @BUFFER@
// . M-x `eIDE-menu' ()(eIDE-menu "z")
// :ide: COMPILE: PHP _DEBUG_=2 _DEBUG_TEST_=2
// . (compile (concat "php " (file-name-nondirectory (buffer-file-name)) " _DEBUG_=2 _DEBUG_TEST_=2"))
// :ide: QUO: $this->
// . (insert "$this->" )
// :ide: COMPILE: PHP w/o args
// . (compile (concat "php " (file-name-nondirectory (buffer-file-name)) ""))
// :ide: COMPILE: PHP _DEBUG_=1 _DEBUG_TEST_=1
// . (compile (concat "php " (file-name-nondirectory (buffer-file-name)) " _DEBUG_=1 _DEBUG_TEST_=1"))
//
// Local Variables:
// mode: php
// End:
?>
|