class_Language.mcEg.inc.php 3.37 KB
<?
/**
 *	@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' => '',	),
	),

	);
}
?>