2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/11/2004 *
4 * =============== Last change: 10/11/2004 *
6 * -------------------------------------------------------------------- *
7 * File : cache_de.php *
8 * -------------------------------------------------------------------- *
9 * Short description : German langugage support *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Deutsche Sprachunterstuetzung *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Language definitions
41 define('CACHE_PROBLEMS_DETECTED', "Probleme mit dem Cache-Subsystem erkannt!");
42 define('CACHE_CANNOT_LOAD_1', "Kann nicht Cache-Datei <STRONG><U>");
43 define('CACHE_CANNOT_LOAD_2', "</U></STRONG> laden!");
44 define('CACHE_CANNOT_INITIALIZE', "Konnte das Caching-System nicht initialisieren. Bitte die Dokumentation <STRONG>DOCS/de/cache/README.txt</STRONG> lesen!");
45 define('ADMIN_CACHE_STATS_TITLE', "Statistiken des Caching-Systems");
46 define('ADMIN_CACHE_DB_HITS', "Zugriffe auf die Datenbank");
47 define('ADMIN_CACHE_HITS', "Zugriffe auf den Cache");
48 define('ADMIN_CACHE_PERCENTS', "Prozentual (*)");
49 define('ADMIN_CACHE_NOTES', "(*): Sollten bei Ihnen die Prozente unter 50% liegen und Sie nicht vor September 2008 das Script *neu* installiert haben, so ist dies kein Grund zur Besorgnis. Im Normalfall sollten die Prozente seit eigenen Revisionen im September 2008 (R300+) über 50% liegen.");
50 define('ADMIN_TOTAL_HITS', "Gesamtzugriffe");
51 define('CACHE_CANNOT_UNLINK_1', "Kann nicht die Cache-Datei <STRONG><U>");
52 define('CACHE_CANNOT_UNLINK_2', "</U></STRONG> vom Server entfernen!");
54 // Administrative settings
55 define('ADMIN_CONFIG_CACHE_SETTINGS', "Caching-Einstellung");
56 define('ADMIN_CACHE_ADMINS', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_admins</STRONG> beschleunigt werden?");
57 define('ADMIN_CACHE_ACLS', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_admins_acls</STRONG> beschleunigt werden?");
58 define('ADMIN_CACHE_EXTS', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_extensions</STRONG> beschleunigt werden?");
59 define('ADMIN_CACHE_CONFIG', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_config</STRONG> beschleunigt werden?");
60 define('ADMIN_CACHE_MODREG', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_mod_reg</STRONG> beschleunigt werden?");
61 define('ADMIN_CACHE_REFDEPTH', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_refdepths</STRONG> beschleunigt werden?");
62 define('ADMIN_CACHE_REFSYS', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_refsystem</STRONG> beschleunigt werden?");
63 define('ADMIN_CACHE_THEMES', "Soll der Zugriff auf die Tabelle <STRONG>{!_MYSQL_PREFIX!}_themes</STRONG> beschleunigt werden?");
64 define('ADMIN_CACHE_ADMIN_MENU', "Soll der Aufbau des Administratormenüs beschleunigt werden (EXPERIMENTELL!)?");
65 define('ADMIN_CACHE_PATH', "Relativer Pfad für alle Cache-Dateien zum Pfad <STRONG>inc</STRONG>");