| 
      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
     | 
    
        ENGLISH LANGUAGE FILE FOR THE PREFERENCES MODULE
 
     | 
  
  
    | 
      18
     | 
    
       -----------------------------------------------------------------------------------------
 
     | 
  
  
    | 
      19
     | 
    
          UPDATE HISTORY:
 
     | 
  
  
    | 
      20
     | 
    
          Werner von der Decken; 17.05.2008
 
     | 
  
  
    | 
      21
     | 
    
           + initial release of the English language file
 
     | 
  
  
    | 
      22
     | 
    
       -----------------------------------------------------------------------------------------
 
     | 
  
  
    | 
      23
     | 
    
      **/
 
     | 
  
  
    | 
      24
     | 
    
      // array for all language dependen text outputs in the front- and backend
 
     | 
  
  
    | 
      25
     | 
    
      // Note: stick to the naming convention: $MOD_MODULE_DIRECTORY
 
     | 
  
  
    | 
      26
     | 
    
      $MOD_PREFERENCE = array(
 
     | 
  
  
    | 
      27
     | 
    
          'PLEASE_SELECT' => 'please select',
 
     | 
  
  
    | 
      28
     | 
    
          'DETAILS_SAVED'    => 'details successfully saved',
 
     | 
  
  
    | 
      29
     | 
    
          'SAVE_SETTINGS' => 'save details',
 
     | 
  
  
    | 
      30
     | 
    
          'SAVE_EMAIL'    => 'save email',
 
     | 
  
  
    | 
      31
     | 
    
          'SAVE_PASSWORD' => 'save password',
 
     | 
  
  
    | 
      32
     | 
    
      );
 
     | 
  
  
    | 
      33
     | 
    
      $MESSAGE['USERS_DISPLAYNAME_TAKEN'] = 'The displayname you entered is already taken';
 
     | 
  
  
    | 
      34
     | 
    
      $TEXT['FULL_NAME'] = 'Publicly visible name';
 
     |