~vcs-imports/clansuite/trunk

« back to all changes in this revision

Viewing changes to installation/languages/german.install.php

  • Committer: vain
  • Date: 2007-08-10 14:55:22 UTC
  • Revision ID: vcs-imports@canonical.com-20070810145522-1apk7sosb17zbf7z
- added installation/languages: german & english
- added country-flags

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php 
 
2
/**
 
3
* @ Package: Clansuite
 
4
* @ Subpackage: Clansuite Installation
 
5
* @ License: http://www.gnu.org/copyleft/gpl.html GNU/GPL
 
6
* @ Description: German installation language
 
7
*/
 
8
 
 
9
class language implements ArrayAccess
 
10
{
 
11
    private $language = array();
 
12
    
 
13
    function __construct()
 
14
    {
 
15
    // STEP 1 - Language Selection
 
16
    $this->language['STEP1_LANGUAGE_SELECTION'] = 'Schritt [1] Sprachauswahl';
 
17
       
 
18
    // STEP 2 - System Check
 
19
    $this->language['STEP2_SYSTEMCHECK'] = 'Schritt [2] Systemcheck';
 
20
    
 
21
    // STEP 3 - Licence
 
22
    $this->language['STEP3_LICENCE'] = 'Schritt [3] GNU/GPL Lizenz';
 
23
    
 
24
    $this->language['STEP3_SENTENCE1'] = 'Nehmen Sie zur Kenntnis, dass Clansuite unter der GNU/GPL Lizenz ver&#246;ffentlicht wurde! Sie finden die Lizenz nachfolgend.';
 
25
    $this->language['STEP3_CHECKBOX'] = 'Ich habe zur Kenntnis genommen, dass Clansuite unter der GNU/GPL Lizenz steht!';
 
26
    
 
27
    $this->language['STEP4_DATABASE'] = 'Schritt [4] Datenbank';
 
28
    
 
29
    $this->language['STEP5_CONFIG'] = 'Schritt [5] Konfiguration';
 
30
    
 
31
    $this->language['STEP6_ADMINUSER'] = 'Schritt [6] Administrator anlegen';
 
32
    
 
33
    $this->language['STEP7_FINISH'] = 'Schritt [7] Abschluss';
 
34
    
 
35
    
 
36
    //GLOBAL
 
37
    $this->language['NEXTSTEP'] = 'Weiter >>';
 
38
    $this->language['BACKSTEP'] = '<< Zurueck';
 
39
    
 
40
    ####
 
41
    
 
42
    $this->language['HELP'] = 'Hilfe';
 
43
    $this->language['COMPLETED'] = 'Durchgeführt';
 
44
    $this->language['PRE_INSTALLATION_CHECK'] = 'Vorinstallation Überprüfung';
 
45
    $this->language['LICENSE'] = 'Lizenz';    
 
46
    }
 
47
    
 
48
    /**
 
49
     * Implementation of SPL ArrayAccess
 
50
     */
 
51
    public function offsetExists($offset)
 
52
    {
 
53
        return isset($this->language[$offset]);
 
54
    }
 
55
 
 
56
    public function offsetGet($offset)
 
57
    {
 
58
        return $this->language[$offset];
 
59
    }
 
60
 
 
61
    public function offsetSet($offset, $value)
 
62
    {
 
63
        $this->__set($offset, $value);
 
64
    }
 
65
 
 
66
    // hmm? why should configuration be unset?
 
67
    public function offsetUnset($offset)
 
68
    {
 
69
        unset($this->language[$offset]);
 
70
        return true;
 
71
    }
 
72
}
 
73
?>