class_Language.mcEg.inc.php
3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?
/**
* @filesource class_Language.inc.php
*
* @category freeSN
* @copyright Copyright by mensch.coop e.G. 2009
* @mailto dev [at] mensch.coop
* @version 0.4.200901
* @link http://mensch.coop
*/
class TreeLanguage{
public static $DefaultLanguage='deu';
public static $LanguageFilename = array (
'deu' => 'language_deu.xml',
'eng' => 'language_eng.xml',
);
/**
* Schlüsselwörter die hauptsächlich für ein BasisElement benötigt werden
*/
public static $Words = array(
'EMail' => 'EMail',
'NickName' => 'Spitzname',
'SurName' => 'Nachname',
'FirstName' => 'Vorname',
'OnlineState' => 'Online Status',
'OnlineSince' => 'online seid',
'Subject' => 'Überschrift',
'Text' => 'Text',
'Author_NickName'=>'von',
'CreateDate' => 'erstellt am',
'LinkerProfileID' => 'Linker',
'Start' => 'Beginn',
'End' => 'Ende',
'Url' => 'Url',
'State' => 'Status',
'Street' => 'Strasse',
'Streetnumber' => 'Hausnummer',
'ZipCode' => 'PLZ',
'Website' => 'Webseite',
'Company' => 'Unternehmen',
'PriceComm' => 'Kommerzielle Preis',
'CostPrice' => 'Selbstkosten Preis',
'Currency' => 'Währung',
'Category' => 'Kategorie',
'MyAccount' => 'Mein Account',
'logout' => 'abmelden',
'Link' => 'Datei',
'Monday' => 'Montag',
'Tuesday' => 'Dienstag',
'Wednesday' => 'Mittwoch',
'Thursday' => 'Donnerstag',
'Friday' => 'Freitag',
'Saturday' => 'Samstag',
'Sunday' => 'Sonntag',
'Category' => 'Kategorien',
'newCategory' => 'neue Kategorie',
'newTag' => 'neuer Tag',
'AuthorisationReadList' => 'Leserechte',
'AuthorisationReadList_selectedProfiles' => 'ausgewählte Profile',
'AuthorisationReadList_newProfile' => 'neues Profil',
'AuthorisationWriteList' => 'Schreibrechte',
'AuthorisationWriteList_selectedProfiles' => 'ausgewählte Profile',
'AuthorisationWriteList_newProfile' => 'neues Profil',
);
public static $GeneralLinks = array (
'NEXT' => array('label' => 'next', 'kind'=>'next', 'image' => ''),
'BACK' => array('label' => 'back', 'kind'=>'back', 'image' => ''),
'HangUpLink' => array('label' =>'Einzelansicht', 'image' => ''),
);
public static $GroupArray = array (
'Services' => array(
'xml' => array('label' => 'xml', 'image' => 'include/Forest/LocationPage/Design/default/Images/'),
'rss2' => array('label' => 'rss2', 'image' => 'include/Forest/LocationPage/Design/default/Images/rss.jpg'),
'ics' => array('label' => 'ics', 'image' => 'include/Forest/LocationPage/Design/default/Images/vcalendar.png'),
'atom' => array('label' => 'atom', 'image' => 'include/Forest/LocationPage/Design/default/Images/atom.jpg'),
'hCalendar' => array('label' => 'ical', 'image' => 'include/Forest/LocationPage/Design/default/Images/vcalendar.png'),
'hCard' => array('label' => 'hCard','image' => 'include/Forest/LocationPage/Design/default/Images/vcard.png'),
'owl' => array('label' => 'owl', 'image' => 'include/Forest/LocationPage/Design/default/Images/'),
)
);
public static $ClassLinks = array (
/**
* LocationPage Relevant:
*/
'TopicBE' => array(
'Blog::SubPages' => array('label' => 'Unterseiten', 'image' => '', ),
'ThreadMessageBC::Blog' => array('label' => 'Nachrichten', 'image' => '', ),
'DateBC' => array('label' => 'Termine', 'image' => ''),
'ProfileBC' => array('label' => 'Menschen Gruppen','image' => '', ),
),
);
}
?>