| 1 | <?php
 | 
  
    | 2 | /**
 | 
  
    | 3 |   Module developed for the Open Source Content Management System Website Baker (http://websitebaker.org)
 | 
  
    | 4 |   Copyright (C) 2008, ISTeam, Werner von der Decken
 | 
  
    | 5 |   Contact me: wkl(at)isteam.de, http://isteam.de
 | 
  
    | 6 | 
 | 
  
    | 7 |   This module is free software. You can redistribute it and/or modify it
 | 
  
    | 8 |   under the terms of the GNU General Public License  - version 2 or later,
 | 
  
    | 9 |   as published by the Free Software Foundation: http://www.gnu.org/licenses/gpl.html.
 | 
  
    | 10 | 
 | 
  
    | 11 |   This module is distributed in the hope that it will be useful,
 | 
  
    | 12 |   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
  
    | 13 |   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
  
    | 14 |   GNU General Public License for more details.
 | 
  
    | 15 | 
 | 
  
    | 16 |  -----------------------------------------------------------------------------------------
 | 
  
    | 17 |   DEUTSCHE SPRACHDATEI F?R DAS PREFERENCES MODUL
 | 
  
    | 18 |  -----------------------------------------------------------------------------------------
 | 
  
    | 19 | 	UPDATE HISTORY:
 | 
  
    | 20 | 	Werner von der Decken; 17.05.2008
 | 
  
    | 21 | 	 + erstes release der Deutschen Sprachdatei
 | 
  
    | 22 |  -----------------------------------------------------------------------------------------
 | 
  
    | 23 | **/
 | 
  
    | 24 | 
 | 
  
    | 25 | // Array f?r alle sprachabh?ngigen Textausgaben im Front- und Backend
 | 
  
    | 26 | // Hinweis: Verwende nachfolgende Namenskonvention f?r die Sprachausgabe des Moduls: $MOD_MODULE_DIRECTORY
 | 
  
    | 27 | $MOD_PREFERENCE = array(
 | 
  
    | 28 | 	'PLEASE_SELECT' => 'bitte wählen',
 | 
  
    | 29 | 	'DETAILS_SAVED'	=> 'allgemeine Einstellungen geändert',
 | 
  
    | 30 | 	'SAVE_SETTINGS' => 'Einstellungen speichern',
 | 
  
    | 31 | 	'SAVE_EMAIL' => 'Email speichern',
 | 
  
    | 32 | 	'SAVE_PASSWORD' => 'Passwort speichern',
 | 
  
    | 33 | );
 | 
  
    | 34 | ?>
 |