Files @ r30:de0b00cc9fec
Branch filter:

Location: public/ws-vacation/lib/language.php

ws
index.php: show/hide export mode (jQuery).
<?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:
?>