Ticket #381: adminthemes.php
| File adminthemes.php, 4.7 kB (added by dmorton, 4 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | /* |
| 3 | * $Id: adminthemes.php 293 2004-09-07 17:34:55Z jleaver $ |
| 4 | * |
| 5 | * MAIA MAILGUARD LICENSE v.1.0 |
| 6 | * |
| 7 | * Copyright 2004 by Robert LeBlanc <rjl@renaissoft.com> |
| 8 | * All rights reserved. |
| 9 | * |
| 10 | * PREAMBLE |
| 11 | * |
| 12 | * This License is designed for users of Maia Mailguard |
| 13 | * ("the Software") who wish to support the Maia Mailguard project by |
| 14 | * leaving "Maia Mailguard" branding information in the HTML output |
| 15 | * of the pages generated by the Software, and providing links back |
| 16 | * to the Maia Mailguard home page. Users who wish to remove this |
| 17 | * branding information should contact the copyright owner to obtain |
| 18 | * a Rebranding License. |
| 19 | * |
| 20 | * DEFINITION OF TERMS |
| 21 | * |
| 22 | * The "Software" refers to Maia Mailguard, including all of the |
| 23 | * associated PHP, Perl, and SQL scripts, documentation files, graphic |
| 24 | * icons and logo images. |
| 25 | * |
| 26 | * GRANT OF LICENSE |
| 27 | * |
| 28 | * Redistribution and use in source and binary forms, with or without |
| 29 | * modification, are permitted provided that the following conditions |
| 30 | * are met: |
| 31 | * |
| 32 | * 1. Redistributions of source code must retain the above copyright |
| 33 | * notice, this list of conditions and the following disclaimer. |
| 34 | * |
| 35 | * 2. Redistributions in binary form must reproduce the above copyright |
| 36 | * notice, this list of conditions and the following disclaimer in the |
| 37 | * documentation and/or other materials provided with the distribution. |
| 38 | * |
| 39 | * 3. The end-user documentation included with the redistribution, if |
| 40 | * any, must include the following acknowledgment: |
| 41 | * |
| 42 | * "This product includes software developed by Robert LeBlanc |
| 43 | * <rjl@renaissoft.com>." |
| 44 | * |
| 45 | * Alternately, this acknowledgment may appear in the software itself, |
| 46 | * if and wherever such third-party acknowledgments normally appear. |
| 47 | * |
| 48 | * 4. At least one of the following branding conventions must be used: |
| 49 | * |
| 50 | * a. The Maia Mailguard logo appears in the page-top banner of |
| 51 | * all HTML output pages in an unmodified form, and links |
| 52 | * directly to the Maia Mailguard home page; or |
| 53 | * |
| 54 | * b. The "Powered by Maia Mailguard" graphic appears in the HTML |
| 55 | * output of all gateway pages that lead to this software, |
| 56 | * linking directly to the Maia Mailguard home page; or |
| 57 | * |
| 58 | * c. A separate Rebranding License is obtained from the copyright |
| 59 | * owner, exempting the Licensee from 4(a) and 4(b), subject to |
| 60 | * the additional conditions laid out in that license document. |
| 61 | * |
| 62 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS |
| 63 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 64 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 65 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 66 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 67 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 68 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 69 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 70 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 71 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
| 72 | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 73 | * |
| 74 | */ |
| 75 | |
| 76 | // Page subtitle |
| 77 | $lang['banner_subtitle'] = "Administration: Themes"; |
| 78 | |
| 79 | // Table headers |
| 80 | $lang['header_themes_menu'] = "Installierte Themes"; |
| 81 | $lang['header_uninstall'] = "Deinstallieren"; |
| 82 | $lang['header_name'] = "Name"; |
| 83 | $lang['header_path'] = "Pfad"; |
| 84 | $lang['header_install_theme'] = "Neues Theme installieren"; |
| 85 | |
| 86 | // Text messages |
| 87 | $lang['text_no_themes'] = "Es sind keine Themes installiert."; |
| 88 | $lang['text_no_uninstalled_themes'] = "Es sind keine zusätzlichen Themes verfügbar."; |
| 89 | $lang['text_required'] = "required"; |
| 90 | $lang['text_modification_warning'] = "Achtung: Ein von Benutzern verwendetes Theme wird auf den Systemstandard zurückgesetzt, wenn es gelöscht wird."; |
| 91 | |
| 92 | // Buttons |
| 93 | $lang['button_uninstall'] = "Markierte Themes deinstallieren"; |
| 94 | $lang['button_install'] = "Theme installieren"; |
| 95 | |
| 96 | // Links |
| 97 | $lang['link_admin_menu'] = "Zurück zum Verwaltungsmenü"; |
| 98 | |
| 99 | //actions messages |
| 100 | $lang['error_not_found'] = "Theme-Pfad konnte nicht gefunden werden."; |
| 101 | $lang['error_database'] = "Fehler: Ein Datenbankfehler ist aufgetreten."; |
| 102 | $lang['error_default'] = "Das Standard-Theme kann nicht deinstalliert werden."; |
| 103 | ?> |

