Changeset 1084
- Timestamp:
- 08/29/06 12:34:21 (5 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 4 added
- 15 modified
-
CHANGELOG (modified) (1 diff)
-
wifidog/classes/Dependencies.php (modified) (1 diff)
-
wifidog/classes/Locale.php (modified) (3 diffs)
-
wifidog/classes/LocaleList.php (modified) (1 diff)
-
wifidog/classes/Mail.php (modified) (4 diffs)
-
wifidog/classes/ThemePack.php (modified) (6 diffs)
-
wifidog/config.php (modified) (1 diff)
-
wifidog/include/schema_validate.php (modified) (2 diffs)
-
wifidog/locale/de/LC_MESSAGES/messages.mo (modified) (previous)
-
wifidog/locale/de/LC_MESSAGES/messages.po (modified) (164 diffs)
-
wifidog/locale/es (added)
-
wifidog/locale/es/LC_MESSAGES (added)
-
wifidog/locale/es/LC_MESSAGES/messages.mo (added)
-
wifidog/locale/es/LC_MESSAGES/messages.po (added)
-
wifidog/locale/fr/LC_MESSAGES/messages.po (modified) (164 diffs)
-
wifidog/locale/ja/LC_MESSAGES/messages.po (modified) (112 diffs)
-
wifidog/locale/pt/LC_MESSAGES/messages.mo (modified) (previous)
-
wifidog/locale/pt/LC_MESSAGES/messages.po (modified) (183 diffs)
-
wifidog/locale/smarty.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/CHANGELOG
r1083 r1084 1 2006-08-29 Max Horváth <max.horvath@maxspot.de> 2 * Cleaned up PHPdoc tags 3 * Updated german translation 4 * Updated portuguese translation, thanks to Gabriel Hahmann 5 * Added spanish translation, thanks to Ricardo Jose Guevara Ochoa 6 1 7 2006-08-28 Benoit Grégoire <bock@step.polymtl.ca> 2 8 * Add SimplePicture content type 3 9 * Fix #225 (For both nodes and networks) 4 10 5 11 2006-08-28 Max Horváth <max.horvath@maxspot.de> 6 12 * Integrated KML node list export -
trunk/wifidog-auth/wifidog/classes/Dependencies.php
r1082 r1084 46 46 // Detect Gettext support 47 47 if (!function_exists('gettext')) { 48 /** 49 * Load Locale class if Gettext support is not available 50 */ 48 51 require_once ('classes/Locale.php'); 49 52 } -
trunk/wifidog-auth/wifidog/classes/Locale.php
r1031 r1084 219 219 global $AVAIL_LOCALE_ARRAY; 220 220 $retval = false; 221 221 222 222 // Get new locale ID, assume default if null 223 223 if ($locale != null) { … … 245 245 $candidate_locale_array[] = $lang_only_locale_id; 246 246 247 247 248 248 $current_locale = setlocale(LC_ALL, $candidate_locale_array); 249 249 //echo sprintf("Warning in /classes/Locale.php setCurentLocale: Unable to setlocale() to %s: %s. I tried %s, %s, %s, %s, and got return value: %s, current locale is: %s",$q, $locale_id, $candidate_locale_array[0], $candidate_locale_array[1], $candidate_locale_array[2], $candidate_locale_array[3], $current_locale, setlocale(LC_ALL, 0))."<br/>"; … … 381 381 switch ($preflang_result['languages_iso_639_1_id']) { 382 382 case ('fr') : 383 { 384 $str .= "$resultats[french_name], $resultats[country_french_name]"; 385 break; 386 } 383 $str .= "$resultats[french_name], $resultats[country_french_name]"; 384 break; 385 387 386 case ('en') : 388 { 389 $str .= "$resultats[english_name], $resultats[country_english_name]"; 390 break; 391 } 387 $str .= "$resultats[english_name], $resultats[country_english_name]"; 388 break; 389 390 case ('es') : 391 $str .= "$resultats[spanish_name], $resultats[country_spanish_name]"; 392 break; 393 392 394 case ('de') : 393 { 394 $str .= "$resultats[german_name], $resultats[country_german_name]"; 395 break; 396 } 395 $str .= "$resultats[german_name], $resultats[country_german_name]"; 396 break; 397 398 case ('ja') : 399 $str .= "$resultats[japanese_name], $resultats[country_japanese_name]"; 400 break; 401 397 402 case ('pt') : 398 { 399 $str .= "$resultats[portuguese_name], $resultats[country_portuguese_name]"; 400 break; 401 } 403 $str .= "$resultats[portuguese_name], $resultats[country_portuguese_name]"; 404 break; 405 402 406 default : 403 { 404 $str .= "$resultats[french_name], $resultats[country_french_name]"; 405 break; 406 } 407 $str .= "$resultats[french_name], $resultats[country_french_name]"; 408 break; 407 409 } 408 410 -
trunk/wifidog-auth/wifidog/classes/LocaleList.php
r1031 r1084 72 72 'en' => _("English"), 73 73 'de' => _("German"), 74 'pt' => _("Portuguese")); 74 'es' => _("Spanish"), 75 'pt' => _("Portuguese"), 76 'ja' => _("Japanese")); 75 77 76 78 if (array_key_exists($locale, $_humanLanguages)) { -
trunk/wifidog-auth/wifidog/classes/Mail.php
r1017 r1084 41 41 * @link http://www.wifidog.org/ 42 42 */ 43 44 /** 45 * Load required classes 46 */ 47 require_once('include/class.phpmailer.php'); 48 require_once('include/class.smtp.php'); 43 49 44 50 /** … … 50 56 * @copyright 2005-2006 Francois Proulx, Technologies Coeus inc. 51 57 */ 52 53 require_once('include/class.phpmailer.php');54 require_once('include/class.smtp.php');55 56 58 class Mail 57 59 { … … 314 316 $mail = new PHPMailer(); 315 317 $mail->CharSet = "utf-8"; 316 317 $mail->Mailer = EMAIL_MAILER; 318 319 $mail->Mailer = EMAIL_MAILER; 318 320 if (EMAIL_MAILER == 'smtp') { 319 321 $mail->Host = EMAIL_HOST; … … 325 327 } 326 328 } 327 329 328 330 $mail->AddAddress($this->getRecipientEmail(), $this->getRecipientName()); 329 331 $mail->From = $this->getSenderEmail(); -
trunk/wifidog-auth/wifidog/classes/ThemePack.php
r1031 r1084 1 1 <?php 2 3 2 4 3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ … … 44 43 45 44 /** 46 * Load required file47 */48 49 /**50 45 * Theme packs contain stylesheets and graphical elements to customize the 51 46 * general look of the system. 47 * 48 * @package WiFiDogAuthServer 49 * @author Benoit Grégoire <bock@step.polymtl.ca> 50 * @copyright 2006 Benoit Grégoire, Technologies Coeus inc. 52 51 */ 53 52 class ThemePack { 53 /** 54 * ID of ThemePack 55 * 56 * @var string 57 * @access private 58 */ 54 59 private $_id; 60 61 /** 62 * Name of ThemePack 63 * 64 * @var string 65 * @access private 66 */ 55 67 private $_name; 68 69 /** 70 * Description of ThemePack 71 * 72 * @var string 73 * @access private 74 */ 56 75 private $_description; 76 77 /** 78 * Constructor 79 * 80 * @param string $themePackId The id of the theme pack (actually, the 81 * folder name without the path) 82 * 83 * @return void 84 * 85 * @access private 86 */ 87 private function __construct($themePackId) { 88 $handle = @ opendir(WIFIDOG_ABS_FILE_PATH . NETWORK_THEME_PACKS_DIR . $themePackId.'/'); 89 90 if (!$handle) { 91 throw new exception(sprintf(_("Theme pack %s cannot be found in %s"), $themePackId, WIFIDOG_ABS_FILE_PATH . NETWORK_THEME_PACKS_DIR . $themePackId . '/')); 92 } 93 94 $this->_id = $themePackId; 95 $this->_name = file_get_contents(WIFIDOG_ABS_FILE_PATH . NETWORK_THEME_PACKS_DIR . $this->_id . '/name.txt'); 96 97 if ($this->_name == null) { 98 $this->_name = sprintf(_("%s (Theme did not include a name.txt file)"), $this->_id); 99 } 100 101 $this->_description = file_get_contents(WIFIDOG_ABS_FILE_PATH . NETWORK_THEME_PACKS_DIR . $this->_id . '/description.txt'); 102 103 if ($this->_description == null) { 104 $this->_description = sprintf(_("%s (Theme did not include a description.txt file)"), $this->_name); 105 } 106 } 107 57 108 /** 58 109 * Get an interface to pick a theme pack … … 60 111 * If there is only one network available, no interface is actually shown 61 112 * 62 * @param string $userPrefix Aidentifier provided by the113 * @param string $userPrefix An identifier provided by the 63 114 * programmer to recognise it's 64 115 * generated html form 65 116 * @param object $preSelectedThemePack Theme object: The theme to be pre- 66 * selected in the form object117 * selected in the form object 67 118 * 68 119 * @return string HTML markup … … 78 129 if ($preSelectedThemePack) { 79 130 $selected_id = $preSelectedThemePack->getId(); 80 } 81 else { 131 } else { 82 132 $selected_id = null; 83 133 } 134 84 135 if ($handle = @ opendir(WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR)) { 85 136 $tab = array (); 86 137 $i = 0; 138 87 139 while (false !== ($directory = readdir($handle))) { 88 140 if ($directory != '.' && $directory != '..' && $directory != '.svn' && is_dir(WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR.$directory.'/')) { … … 95 147 } 96 148 closedir($handle); 97 } 98 else { 149 } else { 99 150 throw new exception(_("Unable to open the network theme packs directory")); 100 151 } 152 101 153 //pretty_print_r($tab); 102 154 if (count($tab) > 0) { 103 155 $html .= FormSelectGenerator :: generateFromArray($tab, $selected_id, $name, null, true); 104 } 105 else { 156 } else { 106 157 $html .= sprintf(_("No network theme packs available in %s"), WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR); 107 158 $html .= "<input type='hidden' name='$name' value=''>"; … … 111 162 } 112 163 113 /** @param $themePackId The id of the theme pack (actually, the folder name without the path) */ 114 private function __construct($themePackId) { 115 $handle = @ opendir(WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR.$themePackId.'/'); 116 if (!$handle) { 117 throw new exception(sprintf(_("Theme pack %s cannot be found in %s"), $themePackId, WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR.$themePackId.'/')); 118 } 119 $this->_id = $themePackId; 120 $this->_name = file_get_contents(WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR.$this->_id.'/name.txt'); 121 if ($this->_name == null) { 122 $this->_name = sprintf(_("%s (Theme did not include a name.txt file)"), $this->_id); 123 } 124 $this->_description = file_get_contents(WIFIDOG_ABS_FILE_PATH.NETWORK_THEME_PACKS_DIR.$this->_id.'/description.txt'); 125 if ($this->_description == null) { 126 $this->_description = sprintf(_("%s (Theme did not include a description.txt file)"), $this->_name); 127 } 128 129 } 130 131 /** Get an instance of the object 164 /** 165 * Get an instance of the object 166 * 167 * @param object $id The object id 168 * 169 * @return object The Content object, or null if there was an error (an 170 * exception is also thrown) 171 * 132 172 * @see GenericObject 133 * @ param $id The object id134 * @ return the Content object, or null if there was an error (an exception is also thrown)173 * @static 174 * @access public 135 175 */ 136 176 static public function getObject($id) { 137 177 return new self($id); 138 178 } 139 /** Retreives the id of the object 140 * @return The id, a string */ 179 180 /** 181 * Retreives the id of the object 182 * 183 * @return string The id 184 * 185 * @access public 186 */ 141 187 public function getId() { 142 188 return $this->_id; 143 189 } 144 190 145 /** Retreives the name of the ThemePack 146 * @return a string */ 191 /** 192 * Retreives the name of the ThemePack 193 * 194 * @return string Name of ThemePack 195 * 196 * @access public 197 */ 147 198 public function getName() { 148 199 return $this->_name; 149 200 } 150 201 151 /** Retreives the description of the ThemePack 152 * @return a string */ 202 /** 203 * Retreives the description of the ThemePack 204 * 205 * @return string Description of ThemePack 206 * 207 * @access public 208 */ 153 209 public function getDescription() { 154 210 return $this->_description; 155 211 } 156 212 157 /** Retreives the url of this theme's stylesheet 158 * @return url */ 213 /** 214 * Retreives the url of this theme's stylesheet 215 * 216 * @return string URL of this theme's stylesheet 217 * 218 * @access public 219 */ 159 220 public function getStylesheetUrl() { 160 return BASE_URL_PATH .NETWORK_THEME_PACKS_DIR.$this->_id.'/stylesheet.css';161 } 162 163 } //End class221 return BASE_URL_PATH . NETWORK_THEME_PACKS_DIR . $this->_id . '/stylesheet.css'; 222 } 223 224 } 164 225 165 226 /* -
trunk/wifidog-auth/wifidog/config.php
r1079 r1084 186 186 * Note that even if your system uses locales like fr_CA.UTF8, you do not need 187 187 * to change this, ifidog will translate for you. 188 * @TODO: Setting an array of only one entry should disable the language select 189 * box. 188 * 189 * @todo Setting an array of only one entry should disable the language select 190 * box. 190 191 */ 191 192 $AVAIL_LOCALE_ARRAY = array('fr_CA' => 'Français', 192 193 'en_US' => 'English', 193 194 'de_DE' => 'Deutsch', 194 'ja_JP' => '日本語 (Japanese)', 195 'pt_PT' => 'Português'); 195 'es_ES' => 'Español', 196 'pt_BR' => 'Português', 197 'ja_JP' => '日本語'); 196 198 197 199 /** -
trunk/wifidog-auth/wifidog/include/schema_validate.php
r1080 r1084 47 47 * Define current database schema version 48 48 */ 49 define('REQUIRED_SCHEMA_VERSION', 4 3);49 define('REQUIRED_SCHEMA_VERSION', 44); 50 50 51 51 /** … … 900 900 $sql .= ");\n"; 901 901 } 902 902 903 904 $new_schema_version = 44; 905 if ($schema_version < $new_schema_version) { 906 printUpdateVersion($new_schema_version); 907 $sql .= "\n\nUPDATE schema_info SET value='$new_schema_version' WHERE tag='schema_version';\n"; 908 $sql .= "INSERT INTO locales (locales_id) VALUES('es');\n"; 909 } 910 903 911 /* 904 $new_schema_version = 4 3;912 $new_schema_version = 44; 905 913 if ($schema_version < $new_schema_version) { 906 914 printUpdateVersion($new_schema_version); -
trunk/wifidog-auth/wifidog/locale/de/LC_MESSAGES/messages.po
r1079 r1084 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2006-08-2 4 02:24-0400\n"11 "POT-Creation-Date: 2006-08-29 17:27+0100\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 89 89 #: ../hotspot_status.php:876 ../hotspot_status.php:880 90 90 #: ../classes/NodeLists/NodeListHTML.php:232 91 #: ../classes/NodeLists/NodeListHTML.php:239 91 92 msgid "Hotspot list" 92 93 msgstr "Hotspot-Liste" … … 97 98 msgstr "Hotspot-Status-Karte" 98 99 99 #: ../hotspots_map.php:44 smarty.txt:80 smarty.txt:83 smarty.txt:64 100 #: smarty.txt:41 100 #: ../hotspots_map.php:44 smarty.txt:80 smarty.txt:44 101 101 msgid "Show me the closest hotspot" 102 102 msgstr "Nächsten Hotspot anzeigen" 103 103 104 #: ../hotspots_map.php:46 smarty.txt:81 smarty.txt:84 smarty.txt:65 105 #: smarty.txt:42 104 #: ../hotspots_map.php:46 smarty.txt:81 smarty.txt:45 106 105 msgid "Enter your postal code" 107 106 msgstr "Geben Sie ihre Postleitzahl ein" 108 107 109 #: ../hotspots_map.php:48 smarty.txt:82 smarty.txt:85 smarty.txt:66 110 #: smarty.txt:43 108 #: ../hotspots_map.php:48 smarty.txt:82 smarty.txt:46 111 109 msgid "Show" 112 110 msgstr "Anzeigen" 113 111 114 112 #: ../hotspots_map.php:50 smarty.txt:78 smarty.txt:100 smarty.txt:103 115 #: smarty.txt:83 smarty.txt: 86 smarty.txt:67 smarty.txt:44113 #: smarty.txt:83 smarty.txt:47 116 114 msgid "Refresh map" 117 115 msgstr "Karte aktualisieren" … … 119 117 #: ../hotspots_map.php:55 ../hotspots_map.php:148 smarty.txt:83 smarty.txt:105 120 118 #: smarty.txt:108 ../hotspots_map.php:155 smarty.txt:85 121 #: ../hotspots_map.php:156 smarty.txt: 88 smarty.txt:69 smarty.txt:46119 #: ../hotspots_map.php:156 smarty.txt:49 122 120 msgid "Loading, please wait..." 123 121 msgstr "Die Karte wird geladen ..." 124 122 125 123 #: ../hotspots_map.php:57 smarty.txt:84 smarty.txt:106 smarty.txt:109 126 #: smarty.txt:86 smarty.txt: 89 smarty.txt:70 smarty.txt:47124 #: smarty.txt:86 smarty.txt:50 127 125 msgid "Legend" 128 126 msgstr "Legende" 129 127 130 128 #: ../hotspots_map.php:58 smarty.txt:85 smarty.txt:107 smarty.txt:110 131 #: smarty.txt:87 smarty.txt:90 smarty.txt:71129 #: smarty.txt:87 132 130 msgid "the hotspot is operational" 133 131 msgstr "Hotspot ist aktiv" 134 132 135 133 #: ../hotspots_map.php:59 smarty.txt:86 smarty.txt:108 smarty.txt:111 136 #: smarty.txt:88 smarty.txt:91 smarty.txt:72134 #: smarty.txt:88 137 135 msgid "the hotspot is down" 138 136 msgstr "Hotspot ist inaktiv" 139 137 140 #: ../hotspots_map.php:60 smarty.txt:89 smarty.txt:92 smarty.txt:73138 #: ../hotspots_map.php:60 smarty.txt:89 141 139 msgid "not monitored" 142 140 msgstr "Hotspot wird nicht überwacht" … … 149 147 #: ../index.php:35 ../user_profile.php:34 smarty.txt:84 smarty.txt:96 150 148 #: smarty.txt:102 smarty.txt:104 ../user_profile.php:58 smarty.txt:90 151 #: smarty.txt:93 smarty.txt:124152 149 msgid "Change password" 153 150 msgstr "Passwort ändern" 154 151 155 152 #: ../index.php:36 ../user_profile.php:35 ../user_profile.php:59 smarty.txt:91 156 #: smarty.txt:94 smarty.txt:125157 153 msgid "I have trouble connecting and I would like some help" 158 154 msgstr "Ich habe Probleme mit dem Zugang und wünsche Unterstützung" … … 161 157 #: smarty.txt:81 smarty.txt:109 smarty.txt:84 smarty.txt:103 smarty.txt:131 162 158 #: smarty.txt:87 smarty.txt:106 smarty.txt:134 smarty.txt:65 smarty.txt:79 163 #: smarty.txt:68 smarty.txt:82 smarty.txt:112 smarty.txt:63 smarty.txt:101164 #: smarty.txt:143165 159 msgid "Full node technical status (includes non-deployed nodes)" 166 160 msgstr "Technischer Status des Netzwerks" … … 168 162 #: ../index.php:45 smarty.txt:36 smarty.txt:48 smarty.txt:54 smarty.txt:110 169 163 #: smarty.txt:112 smarty.txt:132 smarty.txt:134 smarty.txt:135 smarty.txt:137 170 #: smarty.txt:113 smarty.txt:144164 #: smarty.txt:113 171 165 msgid "Administration" 172 166 msgstr "Administration" 173 167 174 168 #: ../index.php:50 ../classes/MainUI.php:53 ../classes/MainUI.php:141 175 #: ../classes/MainUI.php:1 48 ../classes/MainUI.php:151169 #: ../classes/MainUI.php:151 176 170 msgid "authentication server" 177 171 msgstr "Hotspotportal" … … 313 307 #: ../classes/StatisticReport/NodeStatus.php:152 smarty.txt:68 smarty.txt:186 314 308 #: smarty.txt:90 smarty.txt:208 smarty.txt:93 smarty.txt:211 smarty.txt:70 315 #: smarty.txt:194 ../classes/Content.php:744 ../classes/Node.php:828 316 #: smarty.txt:73 smarty.txt:192 ../classes/Content.php:753 smarty.txt:106 317 #: smarty.txt:205 ../classes/Content.php:746 smarty.txt:36 smarty.txt:100 309 #: smarty.txt:194 ../classes/Content.php:750 ../classes/Node.php:834 310 #: smarty.txt:39 smarty.txt:103 318 311 msgid "Description" 319 312 msgstr "Beschreibung" … … 382 375 #: ../classes/Content/RssAggregator/RssAggregator.php:501 smarty.txt:188 383 376 #: ../admin/generic_object_admin.php:381 ../admin/generic_object_admin.php:401 384 #: ../classes/Content/RssAggregator/RssAggregator.php:497385 #: ../classes/Content.php:774 ../classes/Content.php:1197386 #: ../classes/Content.php:1225 ../classes/Content.php:1243387 #: ../classes/Content.php:1261 ../classes/Content.php:1279 smarty.txt:186388 377 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:209 389 378 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:231 390 #: ../classes/Content/RssAggregator/RssAggregator.php:4 94391 #: ../classes/Content.php:78 3 smarty.txt:199 ../classes/Content.php:776379 #: ../classes/Content/RssAggregator/RssAggregator.php:489 380 #: ../classes/Content.php:780 392 381 msgid "Delete" 393 382 msgstr "Löschen" … … 404 393 #: smarty.txt:178 smarty.txt:73 smarty.txt:200 smarty.txt:76 smarty.txt:203 405 394 #: ../classes/Network.php:1494 smarty.txt:54 smarty.txt:186 406 #: ../classes/Content.php:551 smarty.txt:184 ../classes/Content.php:556 407 #: smarty.txt:47 smarty.txt:197 395 #: ../classes/Content.php:560 408 396 msgid "Edit" 409 397 msgstr "Bearbeiten" … … 529 517 #: smarty.txt:73 smarty.txt:137 smarty.txt:139 ../content/index.php:82 530 518 #: smarty.txt:34 smarty.txt:140 smarty.txt:200 smarty.txt:162 smarty.txt:222 531 #: smarty.txt:165 smarty.txt:225 smarty.txt:208 smarty.txt:35 smarty.txt:143 532 #: smarty.txt:206 smarty.txt:18 smarty.txt:74 smarty.txt:214 smarty.txt:69 533 #: smarty.txt:114 519 #: smarty.txt:165 smarty.txt:225 smarty.txt:208 smarty.txt:72 smarty.txt:117 534 520 msgid "Online users" 535 521 msgstr "Angemeldete Benutzer" … … 612 598 613 599 #: ../classes/Content.php:59 ../classes/Content.php:184 614 #: ../classes/Content.php:18 2600 #: ../classes/Content.php:186 615 601 msgid "Content type is optionnal, but cannot be empty!" 616 602 msgstr "Die Art des Inhalts ist optional, darf aber nicht leer sein!" … … 620 606 #: ../classes/Content/ContentGroup/ContentGroupElement.php:230 621 607 #: ../classes/Content/ContentGroup/ContentGroupElement.php:236 622 #: ../classes/Content.php:192 ../classes/Content.php:19 0608 #: ../classes/Content.php:192 ../classes/Content.php:194 623 609 msgid "Unable to insert new content into database!" 624 610 msgstr "Der neue Inhalt konnte nicht in der Datenbank gesichert werden!" 625 611 626 612 #: ../classes/Content.php:98 ../classes/Content.php:228 627 #: ../classes/Content.php:22 5613 #: ../classes/Content.php:229 628 614 msgid "It appears that you have not installed any Content plugin !" 629 615 msgstr "Es wurde kein Inhalts-Plugin gefunden!" … … 631 617 #: ../classes/Content.php:101 ../classes/Content.php:862 632 618 #: ../classes/Content.php:230 ../classes/Content.php:1185 633 #: ../classes/Content.php:227 ../classes/Content.php:1149 634 #: ../classes/Content.php:1166 ../classes/Content.php:1160 619 #: ../classes/Content.php:231 635 620 msgid "You must select a content type: " 636 621 msgstr "Sie müssen die Art des Inhalts auswählen: " … … 648 633 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:95 649 634 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:132 650 #: ../classes/Content/File/File.php:117 ../classes/Content.php:282 635 #: ../classes/Content/File/File.php:117 ../classes/Content.php:132 636 #: ../classes/Content.php:286 651 637 msgid "The content with the following id could not be found in the database: " 652 638 msgstr "" … … 656 642 #: ../classes/Content.php:343 ../classes/NodeList.php:160 657 643 #: ../classes/Statistics.php:127 ../classes/Network.php:576 658 #: ../classes/Content.php:3 37../classes/Network.php:560644 #: ../classes/Content.php:341 ../classes/Network.php:560 659 645 msgid "Unable to open directory " 660 646 msgstr "Folgendes verzeichnis konnte nicht geöffnet werden: " … … 666 652 #: ../classes/Content.php:226 ../classes/Content.php:565 667 653 #: ../classes/Content.php:451 ../classes/Content.php:884 668 #: ../classes/Content.php:432 ../classes/Content.php:883 669 #: ../classes/Content.php:436 ../classes/Content.php:898 670 #: ../classes/Content.php:892 654 #: ../classes/Content.php:440 ../classes/Content.php:896 671 655 msgid "The following content type isn't valid: " 672 656 msgstr "Die folgende Inhaltsart ist ungültig: " … … 687 671 #: ../classes/Content/RssAggregator/RssAggregator.php:535 688 672 #: ../classes/Network.php:1504 smarty.txt:207 689 #: ../classes/Content/RssAggregator/RssAggregator.php:531 690 #: ../classes/Content.php:443 ../classes/Content.php:575 smarty.txt:205 691 #: ../classes/Content/RssAggregator/RssAggregator.php:528 692 #: ../classes/Content.php:447 ../classes/Content.php:580 693 #: ../classes/Content.php:794 ../classes/Content.php:788 smarty.txt:113 673 #: ../classes/Content/RssAggregator/RssAggregator.php:523 674 #: ../classes/Content.php:451 ../classes/Content.php:792 smarty.txt:116 694 675 msgid "Add" 695 676 msgstr "Hinzufügen" … … 700 681 #: ../classes/Content.php:573 ../classes/Content.php:1360 701 682 #: ../classes/Network.php:1345 ../classes/Network.php:1496 702 #: ../classes/Content.php:553 ../classes/Content.php:1307703 683 #: ../classes/Content/ContentGroup/ContentGroupElement.php:306 704 #: ../classes/Content.php:5 58684 #: ../classes/Content.php:562 705 685 msgid "Remove" 706 686 msgstr "Entfernen" … … 712 692 #: ../classes/Content.php:416 ../classes/Content.php:590 713 693 #: ../classes/Content.php:762 ../classes/Content.php:768 714 #: ../classes/Content.php:572 ../classes/Content.php:785 715 #: ../classes/Content.php:791 ../classes/Content.php:577 716 #: ../classes/Content.php:799 ../classes/Content.php:806 717 #: ../classes/Content.php:793 ../classes/Content.php:800 694 #: ../classes/Content.php:797 ../classes/Content.php:804 718 695 msgid "Sorry, no content available in the database" 719 696 msgstr "In der Datenbank ist kein Inhalt verfügbar" 720 697 721 698 #: ../classes/Content.php:458 ../classes/Content.php:150 722 #: ../classes/Content.php:1 49699 #: ../classes/Content.php:153 723 700 msgid "Untitled content" 724 701 msgstr "Unbenannter Inhalt" 725 702 726 703 #: ../classes/Content.php:571 ../classes/Content.php:890 727 #: ../classes/Content.php:888 ../classes/Content.php:903 728 #: ../classes/Content.php:897 704 #: ../classes/Content.php:901 729 705 msgid "Update was unsuccessfull (database error)" 730 706 msgstr "Aktualisierung fehlgeschlagen (Datenbankfehler)" 731 707 732 708 #: ../classes/Content.php:590 ../classes/Content.php:909 733 #: ../classes/Content.php:905 ../classes/Content.php:920 734 #: ../classes/Content.php:914 709 #: ../classes/Content.php:918 735 710 msgid "Unable to insert the new Owner into database." 736 711 msgstr "Der neue Besitzer konnte nicht in der Datenbank gesichert werden." 737 712 738 713 #: ../classes/Content.php:609 ../classes/Content.php:928 739 #: ../classes/Content.php:922 ../classes/Content.php:937 740 #: ../classes/Content.php:931 714 #: ../classes/Content.php:935 741 715 msgid "Unable to remove the owner from the database." 742 716 msgstr "Der Besitzer konnte nicht aus der Datenbank entfernt werden." 743 717 744 718 #: ../classes/Content.php:751 ../classes/Content.php:1070 745 #: ../classes/Content.php:1046 ../classes/Content.php:1061 746 #: ../classes/Content.php:1055 719 #: ../classes/Content.php:1060 747 720 msgid "Author(s):" 748 721 msgstr "Autor(en):" 749 722 750 723 #: ../classes/Content.php:775 ../classes/Content.php:1094 751 #: ../classes/Content.php:1066 ../classes/Content.php:1081 752 #: ../classes/Content.php:1075 724 #: ../classes/Content.php:1081 753 725 msgid "Project information:" 754 726 msgstr "Information über das Projekt:" 755 727 756 728 #: ../classes/Content.php:787 ../classes/Content.php:1106 757 #: ../classes/Content.php:1077 ../classes/Content.php:1092 758 #: ../classes/Content.php:1086 729 #: ../classes/Content.php:1093 759 730 msgid "Project sponsor:" 760 731 msgstr "Sponsor des Projekts:" 761 732 762 733 #: ../classes/Content.php:877 ../classes/Content.php:1222 763 #: ../classes/Content.php:1186 ../classes/Content.php:1185 764 #: ../classes/Content.php:1189 ../classes/Content.php:1179 765 #: ../classes/Content.php:1183 734 #: ../classes/Content.php:1204 ../classes/Content.php:1208 766 735 msgid "Title:" 767 736 msgstr "Titel:" 768 737 769 738 #: ../classes/Content.php:908 ../classes/Content.php:1253 770 #: ../classes/Content.php:1214 ../classes/Content.php:1204 771 #: ../classes/Content.php:1208 ../classes/Content.php:1198 772 #: ../classes/Content.php:1202 739 #: ../classes/Content.php:1223 ../classes/Content.php:1227 773 740 msgid "Description:" 774 741 msgstr "Beschreibung:" 775 742 776 743 #: ../classes/Content.php:929 ../classes/Content.php:1274 777 #: ../classes/Content.php:1232 ../classes/Content.php:1221 778 #: ../classes/Content.php:1225 ../classes/Content.php:1215 779 #: ../classes/Content.php:1219 744 #: ../classes/Content.php:1240 ../classes/Content.php:1244 780 745 msgid "Long description:" 781 746 msgstr "Lange Beschreibung:" 782 747 783 748 #: ../classes/Content.php:950 ../classes/Content.php:1295 784 #: ../classes/Content.php:1250 ../classes/Content.php:1238 785 #: ../classes/Content.php:1242 ../classes/Content.php:1232 786 #: ../classes/Content.php:1236 749 #: ../classes/Content.php:1257 ../classes/Content.php:1261 787 750 msgid "Information on this project:" 788 751 msgstr "Information über das Project:" 789 752 790 753 #: ../classes/Content.php:971 ../classes/Content.php:1316 791 #: ../classes/Content.php:1268 ../classes/Content.php:1255 792 #: ../classes/Content.php:1259 ../classes/Content.php:1249 793 #: ../classes/Content.php:1253 754 #: ../classes/Content.php:1274 ../classes/Content.php:1278 794 755 msgid "Sponsor of this project:" 795 756 msgstr "Sponsor des Projektes:" 796 757 797 758 #: ../classes/Content.php:992 ../classes/Content.php:1337 798 #: ../classes/Content.php:1286 ../classes/Content.php:1284 799 #: ../classes/Content.php:1278 759 #: ../classes/Content.php:1303 800 760 msgid "Content owner list" 801 761 msgstr "Besitzer des Inhalts" … … 803 763 #: ../classes/Content.php:1027 ../classes/Node.php:949 ../classes/Node.php:967 804 764 #: ../classes/Content.php:1372 ../classes/Node.php:936 805 #: ../classes/Content.php:1319 ../classes/Node.php:962 806 #: ../classes/Content.php:1314 ../classes/Content.php:1308 765 #: ../classes/Content.php:1333 ../classes/Node.php:968 807 766 msgid "Add owner" 808 767 msgstr "Besitzer hinzufügen" 809 768 810 769 #: ../classes/Content.php:1208 ../classes/Content.php:1554 811 #: ../classes/Content.php:1454 ../classes/Content.php:1452 812 #: ../classes/Content.php:1446 770 #: ../classes/Content.php:1471 813 771 msgid "Unable to set as author in the database." 814 772 msgstr "Der Autor konnte nicht in der Datenbank gesichert werden." … … 819 777 #: ../classes/Content.php:1652 820 778 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:414 821 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:413822 #: ../classes/Content/HTMLeditor/HTMLeditor.php:536823 #: ../classes/Content/Langstring/Langstring.php:564824 #: ../classes/Content.php:1539825 779 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:411 826 #: ../classes/Content/Langstring/Langstring.php:55 2827 #: ../classes/Content.php:15 37 ../classes/Content.php:1531780 #: ../classes/Content/Langstring/Langstring.php:554 781 #: ../classes/Content.php:1556 828 782 msgid "" 829 783 "Content is persistent (you must make it non persistent before you can delete " 830 784 "it)" 831 785 msgstr "" 832 "Der Inhalt wurde als wieder verwendbar markiert. Wiederverwendbarer Inhalt "786 "Der Inhalt wurde als wieder verwendbar markiert. Wieder verwendbarer Inhalt " 833 787 "kann nicht gelöscht werden. Um ihn zu löschen, muss dieses Attribut entfernt " 834 788 "werden." … … 838 792 #: ../classes/Content/Langstring/Langstring.php:583 839 793 #: ../classes/Content.php:1665 840 #: ../classes/Content/HTMLeditor/HTMLeditor.php:554 841 #: ../classes/Content/Langstring/Langstring.php:582 842 #: ../classes/Content.php:1547 843 #: ../classes/Content/Langstring/Langstring.php:570 844 #: ../classes/Content.php:1545 ../classes/Content.php:1539 794 #: ../classes/Content/Langstring/Langstring.php:572 795 #: ../classes/Content.php:1564 845 796 msgid "Access denied (not owner of content)" 846 797 msgstr "Zugriff verweigert (Sie sind nicht der Besitzer des Inhalts)" … … 888 839 889 840 #: ../classes/MainUI.php:105 ../classes/MainUI.php:254 890 #: ../classes/MainUI.php:3 42 ../classes/MainUI.php:374841 #: ../classes/MainUI.php:374 891 842 msgid "You do not have permissions to access any administration functions." 892 843 msgstr "" … … 894 845 895 846 #: ../classes/MainUI.php:112 smarty.txt:47 smarty.txt:69 smarty.txt:72 896 #: smarty.txt:49 smarty.txt:42847 #: smarty.txt:49 897 848 msgid "User logs" 898 849 msgstr "Benutzerprotokolle" 899 850 900 851 #: ../classes/MainUI.php:113 smarty.txt:48 smarty.txt:70 smarty.txt:73 901 #: smarty.txt:50 smarty.txt:43852 #: smarty.txt:50 902 853 msgid "Online Users" 903 854 msgstr "Angemeldete Benutzer" … … 906 857 #: ../classes/Node.php:767 ../classes/StatisticReport/NodeStatus.php:204 907 858 #: smarty.txt:49 smarty.txt:71 smarty.txt:74 smarty.txt:51 908 #: ../classes/Node.php:793 smarty.txt:44859 #: ../classes/Node.php:793 909 860 msgid "Statistics" 910 861 msgstr "Statistiken" 911 862 912 #: ../classes/MainUI.php:115 smarty.txt:52 smarty.txt:45863 #: ../classes/MainUI.php:115 smarty.txt:52 913 864 msgid "Import NoCat user database" 914 865 msgstr "Importiere NoCat-Benutzerdatenbank" … … 927 878 928 879 #: ../classes/MainUI.php:184 ../classes/MainUI.php:302 929 #: ../classes/MainUI.php:449 ../classes/MainUI.php:386 930 #: ../classes/MainUI.php:422 880 #: ../classes/MainUI.php:449 ../classes/MainUI.php:422 931 881 msgid "Unknown section:" 932 882 msgstr "Unbekanntes Teilgebiet:" … … 941 891 942 892 #: ../classes/MainUI.php:224 ../classes/MainUI.php:226 smarty.txt:41 943 #: smarty.txt:42 smarty.txt:43 smarty.txt:57893 #: smarty.txt:42 944 894 msgid "Logout" 945 895 msgstr "Abmelden" 946 896 947 #: ../classes/MainUI.php:240 smarty.txt:43 smarty.txt:44 smarty.txt:58 948 #: smarty.txt:23 897 #: ../classes/MainUI.php:240 smarty.txt:43 smarty.txt:23 949 898 msgid "I am not logged in." 950 899 msgstr "Sie sind nicht angemeldet." … … 952 901 #: ../classes/MainUI.php:240 ../login/index.php:171 ../login/index.php:172 953 902 #: smarty.txt:43 smarty.txt:44 smarty.txt:117 smarty.txt:139 smarty.txt:142 954 #: smarty.txt:115 ../classes/MainUI.php:599 smarty.txt:45 smarty.txt:59 955 #: smarty.txt:148 ../classes/MainUI.php:688 903 #: smarty.txt:115 ../classes/MainUI.php:688 956 904 msgid "Login" 957 905 msgstr "Anmelden" 958 906 959 #: ../classes/MainUI.php:243 smarty.txt:45 smarty.txt:46 smarty.txt:60907 #: ../classes/MainUI.php:243 smarty.txt:45 960 908 msgid "Where am I?" 961 909 msgstr "Wo bin ich?" … … 977 925 #: ../classes/MainUI.php:476 smarty.txt:21 smarty.txt:47 smarty.txt:59 978 926 #: smarty.txt:27 smarty.txt:65 ../classes/MainUI.php:381 smarty.txt:81 979 #: smarty.txt:84 smarty.txt:63 smarty.txt: 62 smarty.txt:155 smarty.txt:29927 #: smarty.txt:84 smarty.txt:63 smarty.txt:29 980 928 msgid "Please get in touch with " 981 929 msgstr "Support-Meldungen bitte an folgende E-Mail-Adresse richten: " … … 1021 969 1022 970 #: ../classes/Network.php:655 ../classes/Network.php:1131 1023 #: ../classes/Network.php:1282 ../classes/Network.php:1236 1024 #: ../classes/Network.php:1237 971 #: ../classes/Network.php:1282 ../classes/Network.php:1237 1025 972 msgid "Network management" 1026 973 msgstr "Netzwerk-Verwaltung" 1027 974 1028 975 #: ../classes/Network.php:661 ../classes/Network.php:1137 1029 #: ../classes/Network.php:1288 ../classes/Network.php:1242 1030 #: ../classes/Network.php:1241 976 #: ../classes/Network.php:1288 ../classes/Network.php:1248 1031 977 msgid "Network ID" 1032 978 msgstr "Netzwerk-Kennung" 1033 979 1034 980 #: ../classes/Network.php:672 ../classes/Network.php:1157 1035 #: ../classes/Network.php:1308 ../classes/Network.php:1262 1036 #: ../classes/Network.php:1261 981 #: ../classes/Network.php:1308 ../classes/Network.php:1257 1037 982 msgid "Network name" 1038 983 msgstr "Netzwerkname" 1039 984 1040 985 #: ../classes/Network.php:682 ../classes/Network.php:1167 1041 #: ../classes/Network.php:1318 ../classes/Network.php:1272 1042 #: ../classes/Network.php:1271 986 #: ../classes/Network.php:1318 ../classes/Network.php:1278 1043 987 msgid "Network's web site" 1044 988 msgstr "Homepage des Netzwerks" 1045 989 1046 990 #: ../classes/Network.php:692 ../classes/Network.php:1177 1047 #: ../classes/Network.php:1328 ../classes/Network.php:1282 1048 #: ../classes/Network.php:1281 991 #: ../classes/Network.php:1328 ../classes/Network.php:1288 1049 992 msgid "Technical support email" 1050 993 msgstr "E-Mail-Adresse der technischen Betreuung" 1051 994 1052 995 #: ../classes/Network.php:702 ../classes/Network.php:1187 1053 #: ../classes/Network.php:1338 ../classes/Network.php:1292 1054 #: ../classes/Network.php:1291 996 #: ../classes/Network.php:1338 ../classes/Network.php:1298 1055 997 msgid "" 1056 998 "Network authenticator class. The subclass of Authenticator to be used for " … … 1061 1003 1062 1004 #: ../classes/Network.php:712 ../classes/Network.php:1197 1063 #: ../classes/Network.php:1348 ../classes/Network.php:1302 1064 #: ../classes/Network.php:1301 1005 #: ../classes/Network.php:1348 ../classes/Network.php:1308 1065 1006 msgid "" 1066 1007 "The explicit parameters to be passed to the authenticator (ex: " … … 1072 1013 1073 1014 #: ../classes/Network.php:722 ../classes/Network.php:1207 1074 #: ../classes/Network.php:1358 ../classes/Network.php:1312 1075 #: ../classes/Network.php:1311 1015 #: ../classes/Network.php:1358 ../classes/Network.php:1318 1076 1016 msgid "Is this network the default network?" 1077 1017 msgstr "Ist dieses Netzwerk das standardmäßige Netzwerk?" 1078 1018 1079 1019 #: ../classes/Network.php:732 ../classes/Network.php:1217 1080 #: ../classes/Network.php:1368 ../classes/Network.php:1322 1081 #: ../classes/Network.php:1321 1020 #: ../classes/Network.php:1368 ../classes/Network.php:1328 1082 1021 msgid "" 1083 1022 "The length of the validation grace period in seconds. A new user is granted " … … 1089 1028 1090 1029 #: ../classes/Network.php:742 ../classes/Network.php:1227 1091 #: ../classes/Network.php:1378 ../classes/Network.php:1332 1092 #: ../classes/Network.php:1331 1030 #: ../classes/Network.php:1378 ../classes/Network.php:1338 1093 1031 msgid "This will be the from adress of the validation email" 1094 1032 msgstr "Absender der Bestätigungs-E-Mail" 1095 1033 1096 1034 #: ../classes/Network.php:752 ../classes/Network.php:1237 1097 #: ../classes/Network.php:1388 ../classes/Network.php:1351 1098 #: ../classes/Network.php:1350 1035 #: ../classes/Network.php:1388 ../classes/Network.php:1357 1099 1036 msgid "Can an account be connected more than once at the same time?" 1100 1037 msgstr "Darf sich ein Benutzer mehrmals gleichzeitig anmelden?" 1101 1038 1102 1039 #: ../classes/Network.php:762 ../classes/Network.php:1247 1103 #: ../classes/Network.php:1398 ../classes/Network.php:1361 1104 #: ../classes/Network.php:1360 1040 #: ../classes/Network.php:1398 ../classes/Network.php:1367 1105 1041 msgid "Are nodes allowed to be set as splash-only (no login)?" 1106 1042 msgstr "" … … 1109 1045 1110 1046 #: ../classes/Network.php:772 ../classes/Network.php:1257 1111 #: ../classes/Network.php:1408 ../classes/Network.php:1371 1112 #: ../classes/Network.php:1370 1047 #: ../classes/Network.php:1408 ../classes/Network.php:1377 1113 1048 msgid "" 1114 1049 "Are nodes allowed to redirect users to an arbitrary web page instead of the " … … 1119 1054 1120 1055 #: ../classes/Network.php:782 ../classes/Network.php:1267 1121 #: ../classes/Network.php:1418 ../classes/Network.php:1381 1122 #: ../classes/Network.php:1380 1056 #: ../classes/Network.php:1418 ../classes/Network.php:1387 1123 1057 msgid "Network stakeholders" 1124 1058 msgstr "Beteiligte des Netzwerks" 1125 1059 1126 1060 #: ../classes/Network.php:793 ../classes/Network.php:1317 1127 #: ../classes/Network.php:1468 ../classes/Network.php:1431 1128 #: ../classes/Network.php:1430 1061 #: ../classes/Network.php:1468 ../classes/Network.php:1437 1129 1062 msgid "New node ID" 1130 1063 msgstr "Neue Hotspot-Kennung" 1131 1064 1132 1065 #: ../classes/Network.php:801 ../classes/Network.php:1325 1133 #: ../classes/Network.php:1476 ../classes/Network.php:1439 1134 #: ../classes/Network.php:1438 1066 #: ../classes/Network.php:1476 ../classes/Network.php:1445 1135 1067 msgid "Create a new node" 1136 1068 msgstr "Neuen Hotspot erstellen" … … 1149 1081 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:904 1150 1082 #: ../classes/Network.php:1521 1151 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:898 1152 #: ../classes/Content.php:722 ../classes/Network.php:1460 1153 #: ../classes/Node.php:759 ../classes/Node.php:1013 ../classes/Server.php:783 1154 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:896 1155 #: ../classes/Network.php:1458 ../classes/Content.php:727 1156 #: ../classes/Content.php:720 1083 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:897 1084 #: ../classes/Content.php:724 ../classes/Network.php:1460 1085 #: ../classes/Node.php:759 ../classes/Node.php:1006 ../classes/Server.php:783 1157 1086 msgid "Access denied!" 1158 1087 msgstr "Zugriff verweigert!" … … 1160 1089 #: ../classes/Network.php:948 ../classes/Network.php:1487 1161 1090 #: ../classes/Server.php:832 ../classes/Network.php:1638 1162 #: ../classes/Network.php:1567 ../classes/Server.php:838 1163 #: ../classes/Network.php:1565 1091 #: ../classes/Network.php:1568 ../classes/Server.php:838 1164 1092 msgid "Access denied (must have super admin access)" 1165 1093 msgstr "Zugriff verweigert (Sie müssen volle Administratorrechte besitzen)" 1166 1094 1167 1095 #: ../classes/Network.php:956 ../classes/Network.php:1499 1168 #: ../classes/Network.php:1650 ../classes/Network.php:1576 1169 #: ../classes/Network.php:1574 1096 #: ../classes/Network.php:1650 ../classes/Network.php:1577 1170 1097 msgid "Could not delete network!" 1171 1098 msgstr "Das Netzwerk konnte nicht gelöscht werden!" … … 1204 1131 1205 1132 #: ../classes/Node.php:667 ../classes/Node.php:675 ../classes/Node.php:762 1206 #: ../classes/Node.php:78 8 ../classes/Node.php:7871133 #: ../classes/Node.php:787 1207 1134 msgid "Edit a node" 1208 1135 msgstr "Hotspot bearbeiten" … … 1224 1151 #: ../classes/Node.php:697 smarty.txt:121 ../classes/Node.php:777 1225 1152 #: smarty.txt:182 smarty.txt:204 smarty.txt:207 smarty.txt:190 1226 #: ../classes/Node.php:803 smarty.txt: 188 smarty.txt:201 smarty.txt:961153 #: ../classes/Node.php:803 smarty.txt:99 1227 1154 msgid "ID" 1228 1155 msgstr "Kennung" … … 1238 1165 #: smarty.txt:183 smarty.txt:209 smarty.txt:197 smarty.txt:205 smarty.txt:231 1239 1166 #: smarty.txt:200 smarty.txt:208 smarty.txt:234 smarty.txt:191 smarty.txt:217 1240 #: ../classes/Node.php:823 smarty.txt:32 smarty.txt:181 smarty.txt:189 1241 #: smarty.txt:215 smarty.txt:15 smarty.txt:194 smarty.txt:202 smarty.txt:93 1242 #: smarty.txt:97 1167 #: ../classes/Node.php:819 smarty.txt:96 smarty.txt:100 smarty.txt:125 1243 1168 msgid "Name" 1244 1169 msgstr "Name" … … 1247 1172 #: ../classes/Node.php:726 smarty.txt:124 ../classes/Node.php:847 1248 1173 #: smarty.txt:185 smarty.txt:207 smarty.txt:210 smarty.txt:193 1249 #: ../classes/Node.php:873 smarty.txt:191 smarty.txt:204 smarty.txt:99 1174 #: ../classes/NodeLists/NodeListPDF.php:1105 smarty.txt:196 1175 #: ../classes/Node.php:879 ../classes/NodeLists/NodeListPDF.php:1130 1176 #: smarty.txt:102 1250 1177 msgid "Homepage URL" 1251 1178 msgstr "Homepage" … … 1254 1181 #: ../classes/Node.php:746 smarty.txt:126 ../classes/Node.php:888 1255 1182 #: smarty.txt:187 smarty.txt:209 smarty.txt:212 smarty.txt:195 1256 #: ../classes/Node.php:9 14 smarty.txt:193 smarty.txt:206 smarty.txt:1011183 #: ../classes/Node.php:920 smarty.txt:104 1257 1184 msgid "Map URL" 1258 1185 msgstr "URL der Karte" 1259 1186 1260 1187 #: ../classes/Node.php:738 ../classes/Node.php:756 ../classes/Node.php:807 1261 #: ../classes/Node.php:83 31188 #: ../classes/Node.php:839 1262 1189 msgid "Civic number" 1263 1190 msgstr "Hausnummer" 1264 1191 1265 1192 #: ../classes/Node.php:748 ../classes/Node.php:766 ../classes/Node.php:812 1266 #: ../classes/Node.php:8 381193 #: ../classes/Node.php:844 1267 1194 msgid "Street name" 1268 1195 msgstr "Straßenname" 1269 1196 1270 1197 #: ../classes/Node.php:758 ../classes/Node.php:776 ../classes/Node.php:817 1271 #: ../classes/Node.php:843 1198 #: ../classes/NodeLists/NodeListPDF.php:1105 ../classes/Node.php:849 1199 #: ../classes/NodeLists/NodeListPDF.php:1130 1272 1200 msgid "City" 1273 1201 msgstr "Ort" 1274 1202 1275 1203 #: ../classes/Node.php:768 ../classes/Node.php:786 ../classes/Node.php:822 1276 #: ../classes/Node.php:848 1204 #: ../classes/NodeLists/NodeListPDF.php:1105 ../classes/Node.php:854 1205 #: ../classes/NodeLists/NodeListPDF.php:1130 1277 1206 msgid "Province / State" 1278 1207 msgstr "Bundenland" 1279 1208 1280 1209 #: ../classes/Node.php:778 ../classes/Node.php:796 ../classes/Node.php:827 1281 #: ../classes/Node.php:853 1210 #: ../classes/NodeLists/NodeListPDF.php:1105 ../classes/Node.php:859 1211 #: ../classes/NodeLists/NodeListPDF.php:1130 1282 1212 msgid "Postal code" 1283 1213 msgstr "PLZ" 1284 1214 1285 1215 #: ../classes/Node.php:788 ../classes/Node.php:806 ../classes/Node.php:832 1286 #: ../classes/Node.php:8 581216 #: ../classes/Node.php:864 1287 1217 msgid "Country" 1288 1218 msgstr "Land" … … 1291 1221 #: ../classes/Node.php:816 smarty.txt:128 ../classes/Node.php:837 1292 1222 #: smarty.txt:189 smarty.txt:211 smarty.txt:214 smarty.txt:197 1293 #: ../classes/Node.php:86 3 smarty.txt:195 smarty.txt:208 smarty.txt:1031223 #: ../classes/Node.php:869 smarty.txt:106 1294 1224 msgid "Public phone number" 1295 1225 msgstr "Öffentliche Telefonnummer" … … 1298 1228 #: ../classes/Node.php:826 smarty.txt:129 ../classes/Node.php:842 1299 1229 #: smarty.txt:190 smarty.txt:212 smarty.txt:215 smarty.txt:198 1300 #: ../classes/Node.php:8 68 smarty.txt:196 smarty.txt:209 smarty.txt:1041230 #: ../classes/Node.php:874 smarty.txt:107 1301 1231 msgid "Public email" 1302 1232 msgstr "Öffentliche E-Mail-Adresse" … … 1305 1235 #: ../classes/Node.php:836 smarty.txt:130 ../classes/Node.php:852 1306 1236 #: smarty.txt:191 smarty.txt:213 smarty.txt:216 smarty.txt:199 1307 #: ../classes/Node.php:8 78 smarty.txt:197 smarty.txt:210 smarty.txt:1051237 #: ../classes/Node.php:884 smarty.txt:108 1308 1238 msgid "Mass transit info" 1309 1239 msgstr "Informationen zum öffentlichen Nahverkehr" 1310 1240 1311 1241 #: ../classes/Node.php:831 ../classes/Node.php:849 ../classes/Node.php:893 1312 #: ../classes/Node.php:9 191242 #: ../classes/Node.php:925 1313 1243 msgid "GIS data" 1314 1244 msgstr "Geographische Daten" 1315 1245 1316 1246 #: ../classes/Node.php:841 ../classes/Node.php:859 ../classes/Node.php:866 1317 #: ../classes/Node.php:89 21247 #: ../classes/Node.php:898 1318 1248 msgid "Latitude" 1319 1249 msgstr "Breitengrad" 1320 1250 1321 1251 #: ../classes/Node.php:848 ../classes/Node.php:866 ../classes/Node.php:871 1322 #: ../classes/Node.php: 8971252 #: ../classes/Node.php:903 1323 1253 msgid "Longitude" 1324 1254 msgstr "Längengrad" 1325 1255 1326 1256 #: ../classes/Node.php:867 ../classes/Node.php:885 ../classes/Node.php:877 1327 #: ../classes/Node.php:90 31257 #: ../classes/Node.php:909 1328 1258 msgid "Geocode only" 1329 1259 msgstr "Nur Geocode" 1330 1260 1331 1261 #: ../classes/Node.php:868 ../classes/Node.php:886 ../classes/Node.php:878 1332 #: ../classes/Node.php:9 041262 #: ../classes/Node.php:910 1333 1263 msgid "Check using Google Maps" 1334 1264 msgstr "Mittels Google Maps überprüfen" 1335 1265 1336 1266 #: ../classes/Node.php:869 ../classes/Node.php:887 ../classes/Node.php:879 1337 #: ../classes/Node.php:9 051267 #: ../classes/Node.php:911 1338 1268 msgid "" 1339 1269 "Use a geocoding service, then use Google Maps to pinpoint the exact location." … … 1343 1273 1344 1274 #: ../classes/Node.php:877 ../classes/Node.php:895 ../classes/Node.php:881 1345 #: ../classes/Node.php:9 071275 #: ../classes/Node.php:913 1346 1276 msgid "Geocode location" 1347 1277 msgstr "Geocode-Lage" 1348 1278 1349 1279 #: ../classes/Node.php:878 ../classes/Node.php:896 ../classes/Node.php:882 1350 #: ../classes/Node.php:9 081280 #: ../classes/Node.php:914 1351 1281 msgid "Use a geocoding service" 1352 1282 msgstr "Geocode-Service benutzten" … … 1359 1289 #: ../classes/Node.php:912 smarty.txt:131 ../classes/Node.php:901 1360 1290 #: smarty.txt:192 smarty.txt:214 smarty.txt:217 smarty.txt:200 1361 #: ../classes/Node.php:9 27 smarty.txt:198 smarty.txt:211 smarty.txt:1061291 #: ../classes/Node.php:933 smarty.txt:109 1362 1292 msgid "Node deployment status" 1363 1293 msgstr "Einsatzstatus des Hotspots" 1364 1294 1365 1295 #: ../classes/Node.php:905 ../classes/Node.php:923 ../classes/Node.php:907 1366 #: ../classes/Node.php:93 31296 #: ../classes/Node.php:939 1367 1297 msgid "Is this node splash-only (no login)?" 1368 1298 msgstr "" … … 1371 1301 1372 1302 #: ../classes/Node.php:918 ../classes/Node.php:936 ../classes/Node.php:914 1373 #: ../classes/Node.php:94 01303 #: ../classes/Node.php:946 1374 1304 msgid "" 1375 1305 "URL to show instead of the portal (if this is not empty, the portal will be " … … 1380 1310 1381 1311 #: ../classes/Node.php:931 ../classes/Node.php:949 ../classes/Node.php:938 1382 #: ../classes/Node.php:9 641312 #: ../classes/Node.php:970 1383 1313 msgid "Node owners" 1384 1314 msgstr "Besitzer des Hotspots" 1385 1315 1386 1316 #: ../classes/Node.php:941 ../classes/Node.php:959 ../classes/Node.php:932 1387 #: ../classes/Node.php:958 ../classes/Content.php:1305 1388 #: ../classes/Content.php:1299 1317 #: ../classes/Content.php:1324 ../classes/Node.php:964 1389 1318 msgid "Remove owner" 1390 1319 msgstr "Besitzer entfernen" 1391 1320 1392 1321 #: ../classes/Node.php:957 ../classes/Node.php:975 ../classes/Node.php:953 1393 #: ../classes/Node.php:9 791322 #: ../classes/Node.php:985 1394 1323 msgid "Technical officers" 1395 1324 msgstr "Technischer Ansprechpartner" 1396 1325 1397 1326 #: ../classes/Node.php:967 ../classes/Node.php:985 ../classes/Node.php:947 1398 #: ../classes/Node.php:97 31327 #: ../classes/Node.php:979 1399 1328 msgid "Remove technical officer" 1400 1329 msgstr "Technischen Ansprechpartner entfernen" 1401 1330 1402 1331 #: ../classes/Node.php:975 ../classes/Node.php:993 ../classes/Node.php:951 1403 #: ../classes/Node.php:9 771332 #: ../classes/Node.php:983 1404 1333 msgid "Add technical officer" 1405 1334 msgstr "Technischen Ansprechpartner hinzufügen" … … 1414 1343 1415 1344 #: ../classes/Node.php:1081 ../classes/Node.php:1103 ../classes/Node.php:1084 1416 #: ../classes/Node.php:110 51345 #: ../classes/Node.php:1101 1417 1346 msgid "" 1418 1347 "It appears that the Geocoder could not be reached or could not geocode the " … … 1423 1352 1424 1353 #: ../classes/Node.php:1084 ../classes/Node.php:1106 ../classes/Node.php:1087 1425 #: ../classes/Node.php:110 81354 #: ../classes/Node.php:1104 1426 1355 msgid "You must enter a valid address." 1427 1356 msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben." … … 1429 1358 #: ../classes/Node.php:1134 ../classes/Node.php:1162 ../classes/Node.php:1156 1430 1359 #: ../classes/Node.php:1184 ../classes/Node.php:1138 ../classes/Node.php:1167 1431 #: ../classes/Node.php:115 9 ../classes/Node.php:11881360 #: ../classes/Node.php:1155 1432 1361 msgid "Invalid user!" 1433 1362 msgstr "Ungültiger Benutzer!" 1434 1363 1435 1364 #: ../classes/Node.php:1146 ../classes/Node.php:1168 ../classes/Node.php:1150 1436 #: ../classes/Node.php:11 711365 #: ../classes/Node.php:1167 1437 1366 msgid "The user is already an owner of this node." 1438 1367 msgstr "Der Benutzer ist bereits Besitzer des Hotspots." 1439 1368 1440 1369 #: ../classes/Node.php:1174 ../classes/Node.php:1196 ../classes/Node.php:1179 1441 #: ../classes/Node.php:12001442 1370 msgid "The user is already a technical officer of this node." 1443 1371 msgstr "Der Benutzer ist bereits technischer Ansprechpartner des Hotspots." … … 1445 1373 #: ../classes/Node.php:1352 ../classes/Node.php:1356 ../classes/Node.php:1374 1446 1374 #: ../classes/Node.php:1378 ../classes/Node.php:1358 ../classes/Node.php:1362 1447 #: ../classes/Node.php:1377 ../classes/Node.php:1381 ../classes/Node.php:1380 1448 #: ../classes/Node.php:1384 1375 #: ../classes/Node.php:1372 ../classes/Node.php:1376 1449 1376 msgid "Could not add owner" 1450 1377 msgstr "Der Besitzer konnte nicht hinzugefügt werden" 1451 1378 1452 1379 #: ../classes/Node.php:1370 ../classes/Node.php:1392 ../classes/Node.php:1376 1453 #: ../classes/Node.php:139 5 ../classes/Node.php:13981380 #: ../classes/Node.php:1390 1454 1381 msgid "Could not add tech officer" 1455 1382 msgstr "Der technische Ansprechpartner konnte nicht hinzugefügt werden" 1456 1383 1457 1384 #: ../classes/Node.php:1374 ../classes/Node.php:1396 ../classes/Node.php:1380 1458 #: ../classes/Node.php:139 9 ../classes/Node.php:14021385 #: ../classes/Node.php:1394 1459 1386 msgid "Could not set existing user as tech officer" 1460 1387 msgstr "" … … 1462 1389 1463 1390 #: ../classes/Node.php:1384 ../classes/Node.php:1406 ../classes/Node.php:1390 1464 #: ../classes/Node.php:140 9 ../classes/Node.php:14121391 #: ../classes/Node.php:1404 1465 1392 msgid "Could not remove owner" 1466 1393 msgstr "Der Besitzer konnte nicht entfernt werden" 1467 1394 1468 1395 #: ../classes/Node.php:1394 ../classes/Node.php:1416 ../classes/Node.php:1400 1469 #: ../classes/Node.php:141 9 ../classes/Node.php:14221396 #: ../classes/Node.php:1414 1470 1397 msgid "Could not remove tech officer" 1471 1398 msgstr "Der technische Ansprechpartner konnte nicht entfernt werden" … … 1581 1508 1582 1509 #: ../classes/Statistics.php:519 ../classes/Statistics.php:616 1583 #: ../classes/Statistics.php:62 2 ../classes/Statistics.php:6291510 #: ../classes/Statistics.php:629 1584 1511 msgid "Report configuration" 1585 1512 msgstr "Report anpassen" 1586 1513 1587 1514 #: ../classes/Statistics.php:532 ../classes/Statistics.php:629 1588 #: ../classes/Statistics.php:6 34 ../classes/Statistics.php:6411515 #: ../classes/Statistics.php:641 1589 1516 msgid "Restrict the time range for which statistics will be computed" 1590 1517 msgstr "Zeitspanne der Statistik einschränken" 1591 1518 1592 1519 #: ../classes/Statistics.php:540 ../classes/Statistics.php:637 1593 #: ../classes/Statistics.php:64 2 ../classes/Statistics.php:6491520 #: ../classes/Statistics.php:649 1594 1521 msgid "Restrict stats to the following nodes" 1595 1522 msgstr "Auf folgende Hotspots beschränken" 1596 1523 1597 1524 #: ../classes/Statistics.php:548 ../classes/Statistics.php:645 1598 #: ../classes/Statistics.php:6 53 ../classes/Statistics.php:6601525 #: ../classes/Statistics.php:660 1599 1526 msgid "Distinguish users by" 1600 1527 msgstr "Benutzer unterscheiden durch" 1601 1528 1602 1529 #: ../classes/Statistics.php:556 ../classes/Statistics.php:653 1603 #: ../classes/Statistics.php:66 2 ../classes/Statistics.php:6691530 #: ../classes/Statistics.php:669 1604 1531 msgid "Restrict stats to the selected users" 1605 1532 msgstr "Auf folgende Benutzer beschränken" 1606 1533 1607 1534 #: ../classes/Statistics.php:564 ../classes/Statistics.php:661 1608 #: ../classes/Statistics.php:67 1 ../classes/Statistics.php:6781535 #: ../classes/Statistics.php:678 1609 1536 msgid "Selected reports" 1610 1537 msgstr "Reporte auswählen" … … 1759 1686 #: smarty.txt:215 smarty.txt:224 smarty.txt:237 smarty.txt:227 smarty.txt:240 1760 1687 #: smarty.txt:210 smarty.txt:223 ../classes/User.php:669 1761 #: ../classes/User.php:672 ../classes/User.php:716 smarty.txt:208 1762 #: smarty.txt:221 ../classes/User.php:715 smarty.txt:187 smarty.txt:216 1763 #: smarty.txt:116 1688 #: ../classes/User.php:672 ../classes/User.php:715 smarty.txt:119 1689 #: smarty.txt:131 1764 1690 msgid "Username" 1765 1691 msgstr "Benutzername" … … 1815 1741 1816 1742 #: ../login/index.php:124 ../login/index.php:125 ../login/index.php:197 1817 #: smarty.txt:10 smarty.txt:123 smarty.txt:1541818 msgid "You must specify your username and password"1743 #: ../login/index.php:189 1744 msgid "Your must specify your username and password" 1819 1745 msgstr "Sie müssen ihren Benutzernamen und ihr Passwort angeben" 1820 1746 … … 1829 1755 1830 1756 #: ../login/index.php:160 ../login/index.php:161 smarty.txt:115 smarty.txt:137 1831 #: smarty.txt:140 smarty.txt:113 smarty.txt: 146 smarty.txt:571757 #: smarty.txt:140 smarty.txt:113 smarty.txt:60 1832 1758 msgid "Username (or email)" 1833 1759 msgstr "Benutzername (oder E-Mail-Adresse)" … … 1836 1762 #: ../login/index.php:163 smarty.txt:86 smarty.txt:116 smarty.txt:165 1837 1763 #: smarty.txt:138 smarty.txt:187 smarty.txt:141 smarty.txt:190 smarty.txt:114 1838 #: smarty.txt:169 smarty.txt: 87 smarty.txt:147 smarty.txt:58 smarty.txt:811764 #: smarty.txt:169 smarty.txt:61 1839 1765 msgid "Password" 1840 1766 msgstr "Passwort" … … 1845 1771 #: smarty.txt:112 smarty.txt:143 smarty.txt:147 smarty.txt:156 smarty.txt:174 1846 1772 #: smarty.txt:182 smarty.txt:116 smarty.txt:121 smarty.txt:152 smarty.txt:161 1847 #: smarty.txt:124 smarty.txt:134 smarty.txt:148 smarty.txt:79 smarty.txt:114 1848 #: smarty.txt:160 smarty.txt:169 smarty.txt:59 smarty.txt:60 smarty.txt:65 1849 #: smarty.txt:73 smarty.txt:77 1773 #: smarty.txt:62 smarty.txt:63 smarty.txt:68 smarty.txt:76 smarty.txt:80 1850 1774 msgid "I'm having difficulties" 1851 1775 msgstr "Ich habe Probleme" … … 1857 1781 #: smarty.txt:113 smarty.txt:144 smarty.txt:148 smarty.txt:157 smarty.txt:175 1858 1782 #: smarty.txt:183 smarty.txt:117 smarty.txt:122 smarty.txt:153 smarty.txt:162 1859 #: smarty.txt:177 smarty.txt:125 smarty.txt:135 smarty.txt:149 smarty.txt:176 1860 #: smarty.txt:80 smarty.txt:98 smarty.txt:115 smarty.txt:161 smarty.txt:170 1783 #: smarty.txt:177 1861 1784 msgid "I Forgot my username" 1862 1785 msgstr "Ich habe meinen Benutzernamen vergessen" … … 1868 1791 #: smarty.txt:114 smarty.txt:145 smarty.txt:149 smarty.txt:158 smarty.txt:176 1869 1792 #: smarty.txt:184 smarty.txt:118 smarty.txt:123 smarty.txt:154 smarty.txt:163 1870 #: smarty.txt:178 smarty.txt:126 smarty.txt:136 smarty.txt:150 smarty.txt:177 1871 #: smarty.txt:81 smarty.txt:99 smarty.txt:116 smarty.txt:162 smarty.txt:171 1793 #: smarty.txt:178 1872 1794 msgid "I Forgot my password" 1873 1795 msgstr "Ich habe mein Passwort vergessen" … … 1878 1800 #: smarty.txt:115 smarty.txt:146 smarty.txt:150 smarty.txt:159 smarty.txt:177 1879 1801 #: smarty.txt:185 smarty.txt:119 smarty.txt:124 smarty.txt:155 smarty.txt:164 1880 #: smarty.txt:127 smarty.txt:137 smarty.txt:151 smarty.txt:82 smarty.txt:1171881 #: smarty.txt:163 smarty.txt:1721882 1802 msgid "Re-send the validation email" 1883 1803 msgstr "Bestätigungs-E-Mail nochmals senden" 1884 1804 1885 1805 #: ../login/index.php:189 ../login/index.php:190 smarty.txt:120 smarty.txt:125 1886 #: smarty.txt:135 smarty.txt:156 smarty.txt:165 smarty.txt:122 smarty.txt:128 1887 #: smarty.txt:138 smarty.txt:152 smarty.txt:161 smarty.txt:83 smarty.txt:118 1888 #: smarty.txt:153 smarty.txt:164 smarty.txt:173 1806 #: smarty.txt:135 smarty.txt:156 smarty.txt:165 1889 1807 msgid "Frequently asked questions" 1890 1808 msgstr "Häufig gestellte Fragen" … … 1949 1867 #: ../classes/Content/ContentGroup/ContentGroup.php:304 1950 1868 #: ../classes/Content/RssAggregator/RssAggregator.php:199 1951 #: ../classes/Content/RssAggregator/RssAggregator.php:1951952 1869 #: ../classes/Content/RssAggregator/RssAggregator.php:193 1953 1870 msgid "You must display at least one element" … … 1985 1902 #: ../classes/Content/ContentGroup.php:721 1986 1903 #: ../classes/Content/ContentGroup/ContentGroup.php:767 1987 #: ../classes/Content/ContentGroup/ContentGroup.php:7661988 1904 #: ../classes/Content/ContentGroup/ContentGroup.php:768 1989 1905 msgid "" … … 2042 1958 #: ../classes/Content/File/File.php:579 2043 1959 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:367 2044 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:3662045 #: ../classes/Content/File/File.php:474 ../classes/Content/File/File.php:5482046 #: ../classes/Content/File/File.php:472 ../classes/Content/File/File.php:5462047 1960 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:364 2048 1961 #: ../classes/Content/File/File.php:519 ../classes/Content/File/File.php:593 … … 2055 1968 #: ../classes/Content/File/File.php:574 2056 1969 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:367 2057 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:3662058 #: ../classes/Content/File/File.php:458 ../classes/Content/File/File.php:4742059 #: ../classes/Content/File/File.php:543 ../classes/Content/File/File.php:4562060 #: ../classes/Content/File/File.php:472 ../classes/Content/File/File.php:5412061 1970 #: ../classes/Content/EmbeddedContent/EmbeddedContent.php:364 2062 1971 #: ../classes/Content/File/File.php:503 ../classes/Content/File/File.php:519 … … 2087 1996 2088 1997 #: ../classes/Content/File.php:226 ../classes/Content/Avatar/Avatar.php:104 2089 #: ../classes/Content/File/File.php:435 ../classes/Content/File/File.php:409 2090 #: ../classes/Content/File/File.php:407 1998 #: ../classes/Content/File/File.php:435 2091 1999 #: ../classes/Content/Avatar/Avatar.php:100 2092 2000 #: ../classes/Content/File/File.php:454 … … 2095 2003 2096 2004 #: ../classes/Content/File.php:236 ../classes/Content/Avatar/Avatar.php:114 2097 #: ../classes/Content/File/File.php:445 ../classes/Content/File/File.php:419 2098 #: ../classes/Content/File/File.php:417 2005 #: ../classes/Content/File/File.php:445 2099 2006 #: ../classes/Content/Avatar/Avatar.php:110 2100 2007 #: ../classes/Content/File/File.php:464 … … 2103 2010 2104 2011 #: ../classes/Content/File.php:248 ../classes/Content/Avatar/Avatar.php:128 2105 #: ../classes/Content/File/File.php:459 ../classes/Content/File/File.php:433 2106 #: ../classes/Content/File/File.php:431 2012 #: ../classes/Content/File/File.php:459 2107 2013 #: ../classes/Content/Avatar/Avatar.php:124 2108 2014 #: ../classes/Content/File/File.php:478 … … 2111 2017 2112 2018 #: ../classes/Content/File.php:256 ../classes/Content/File/File.php:467 2113 #: ../classes/Content/File/File.php:441 ../classes/Content/File/File.php:4392114 2019 #: ../classes/Content/File/File.php:486 2115 2020 msgid "Filename to display" … … 2117 2022 2118 2023 #: ../classes/Content/File.php:265 ../classes/Content/File/File.php:475 2119 #: ../classes/Content/File/File.php:449 ../classes/Content/File/File.php:4472120 2024 #: ../classes/Content/File/File.php:494 2121 2025 msgid "MIME type" … … 2123 2027 2124 2028 #: ../classes/Content/File.php:272 ../classes/Content/File/File.php:482 2125 #: ../classes/Content/File/File.php:456 ../classes/Content/File/File.php:4542126 2029 #: ../classes/Content/File/File.php:501 2127 2030 msgid "Locally stored file size" … … 2129 2032 2130 2033 #: ../classes/Content/File.php:281 ../classes/Content/File/File.php:489 2131 #: ../classes/Content/File/File.php:463 ../classes/Content/File/File.php:4612132 2034 #: ../classes/Content/File/File.php:508 2133 2035 msgid "Remote file size (Automatically converted from KB to Bytes)" … … 2137 2039 2138 2040 #: ../classes/Content/File.php:377 ../classes/Content/File/File.php:626 2139 #: ../classes/Content/File/File.php:593 ../classes/Content/File/File.php:5912140 2041 #: ../classes/Content/File/File.php:638 2141 2042 msgid "Could not delete this file, since it is persistent" 2142 2043 msgstr "" 2143 "Die Datei kann nicht gelöscht werden, da sie als wieder verdbar markiert ist."2144 " Entfernen Sie dieses Attribut, um die Datei zu löschen."2044 "Die Datei kann nicht gelöscht werden, da sie als wieder verwendbar markiert " 2045 "ist. Entfernen Sie dieses Attribut, um die Datei zu löschen." 2145 2046 2146 2047 #: ../classes/Content/FlickrPhotostream.php:153 … … 2297 2198 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:596 2298 2199 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:861 2299 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:8552300 2200 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:595 2301 2201 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:853 … … 2307 2207 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:601 2308 2208 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:865 2309 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:8592310 2209 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:600 2311 2210 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:857 … … 2317 2216 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:605 2318 2217 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:870 2319 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:8642320 2218 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:604 2321 2219 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:862 … … 2327 2225 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:609 2328 2226 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:874 2329 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:8682330 2227 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:608 2331 2228 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:866 … … 2357 2254 #: ../classes/Content/FlickrPhotostream.php:752 2358 2255 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:856 2359 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:8502360 2256 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:848 2361 2257 msgid "No Flickr content matches the request !" … … 2365 2261 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:622 2366 2262 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:881 2367 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:8752368 2263 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:620 2369 2264 #: ../classes/Content/FlickrPhotostream/FlickrPhotostream.php:873 … … 2374 2269 #: ../classes/Content/IFrame/IFrame.php:240 2375 2270 msgid "Width (suggested width is 600 (pixels))" 2376 msgstr "Breite (empfohlen sind 6 00Pixel)"2271 msgstr "Breite (empfohlen sind 622 Pixel)" 2377 2272 2378 2273 #: ../classes/Content/IFrame.php:133 ../classes/Content/IFrame/IFrame.php:253 … … 2387 2282 2388 2283 #: ../classes/Content/IFrame.php:180 ../classes/Content/IFrame/IFrame.php:318 2389 #: ../classes/Content/IFrame/IFrame.php:3172390 2284 #: ../classes/Content/IFrame/IFrame.php:314 2391 2285 msgid "Your browser does not support IFrames." … … 2438 2332 #: ../classes/Content/Langstring.php:136 2439 2333 #: ../classes/Content/Langstring/Langstring.php:274 2440 #: ../classes/Content/Langstring/Langstring.php:26 72334 #: ../classes/Content/Langstring/Langstring.php:268 2441 2335 msgid "Only these HTML tags are allowed : " 2442 2336 msgstr "Folgende HTML-Tags sind erlaubt:" … … 2445 2339 #: ../classes/Content/HTMLeditor/HTMLeditor.php:332 2446 2340 #: ../classes/Content/Langstring/Langstring.php:343 2447 #: ../classes/Content/Langstring/Langstring.php:334 2341 #: ../classes/Content/HTMLeditor/HTMLeditor.php:161 2342 #: ../classes/Content/Langstring/Langstring.php:335 2448 2343 msgid "Delete string" 2449 2344 msgstr "Zeichenfolge löschen" … … 2452 2347 #: ../classes/Content/HTMLeditor/HTMLeditor.php:370 2453 2348 #: ../classes/Content/Langstring/Langstring.php:404 2454 #: ../classes/Content/Langstring/Langstring.php:394 2349 #: ../classes/Content/HTMLeditor/HTMLeditor.php:199 2350 #: ../classes/Content/Langstring/Langstring.php:395 2455 2351 msgid "Add new string" 2456 2352 msgstr "Neue Zeichenfolge hinzufügen" … … 2504 2400 #: ../classes/Content/RssAggregator.php:62 2505 2401 #: ../classes/Content/RssAggregator/RssAggregator.php:116 2506 #: ../classes/Content/RssAggregator/RssAggregator.php:11 22402 #: ../classes/Content/RssAggregator/RssAggregator.php:111 2507 2403 msgid "" 2508 2404 "The RssAggregator content with the following id could not be found in the " … … 2516 2412 #: ../classes/Content/RssAggregator/RssAggregator.php:154 2517 2413 #: ../classes/Content/RssAggregator/RssAggregator.php:804 2518 #: ../classes/Content/RssAggregator/RssAggregator.php:150 2519 #: ../classes/Content/RssAggregator/RssAggregator.php:799 2520 #: ../classes/Content/RssAggregator/RssAggregator.php:148 2521 #: ../classes/Content/RssAggregator/RssAggregator.php:795 2414 #: ../classes/Content/RssAggregator/RssAggregator.php:149 2415 #: ../classes/Content/RssAggregator/RssAggregator.php:797 2522 2416 msgid "RSS support is disabled" 2523 2417 msgstr "Die RSS-Unterstützung ist deaktiviert" … … 2525 2419 #: ../classes/Content/RssAggregator.php:219 2526 2420 #: ../classes/Content/RssAggregator/RssAggregator.php:331 2527 #: ../classes/Content/RssAggregator/RssAggregator.php:327 2528 #: ../classes/Content/RssAggregator/RssAggregator.php:325 2421 #: ../classes/Content/RssAggregator/RssAggregator.php:324 2529 2422 msgid "The maximum age must be a positive integer or null" 2530 2423 msgstr "Das maximale Alter muss eine positive ganze Zahl oder Null sein" … … 2532 2425 #: ../classes/Content/RssAggregator.php:272 2533 2426 #: ../classes/Content/RssAggregator/RssAggregator.php:429 2534 #: ../classes/Content/RssAggregator/RssAggregator.php:425 2535 #: ../classes/Content/RssAggregator/RssAggregator.php:422 2427 #: ../classes/Content/RssAggregator/RssAggregator.php:417 2536 2428 msgid "Total number of items to display (from all feeds)" 2537 2429 msgstr "Maximale Anzahl anzuzeigender Artikel (von allen RSS-Feeds)" … … 2584 2476 #: ../classes/Content/RssAggregator.php:311 2585 2477 #: ../classes/Content/RssAggregator/RssAggregator.php:477 2586 #: ../classes/Content/RssAggregator/RssAggregator.php:473 2587 #: ../classes/Content/RssAggregator/RssAggregator.php:470 2478 #: ../classes/Content/RssAggregator/RssAggregator.php:465 2588 2479 msgid "seconds" 2589 2480 msgstr "Sekunden" … … 2591 2482 #: ../classes/Content/RssAggregator.php:317 2592 2483 #: ../classes/Content/RssAggregator/RssAggregator.php:485 2593 #: ../classes/Content/RssAggregator/RssAggregator.php:481 2594 #: ../classes/Content/RssAggregator/RssAggregator.php:478 2484 #: ../classes/Content/RssAggregator/RssAggregator.php:473 2595 2485 msgid "Feeds:" 2596 2486 msgstr "RSS-Feeds:" … … 2598 2488 #: ../classes/Content/RssAggregator.php:337 2599 2489 #: ../classes/Content/RssAggregator/RssAggregator.php:510 2600 #: ../classes/Content/RssAggregator/RssAggregator.php:506 2601 #: ../classes/Content/RssAggregator/RssAggregator.php:503 2490 #: ../classes/Content/RssAggregator/RssAggregator.php:498 2602 2491 msgid "" 2603 2492 "Add a new feed or pick one from the other feeds in the system " … … 2609 2498 #: ../classes/Content/RssAggregator.php:355 2610 2499 #: ../classes/Content/RssAggregator/RssAggregator.php:526 2611 #: ../classes/Content/RssAggregator/RssAggregator.php:522 2612 #: ../classes/Content/RssAggregator/RssAggregator.php:519 2500 #: ../classes/Content/RssAggregator/RssAggregator.php:514 2613 2501 #, php-format 2614 2502 msgid "%s, used %d times" … … 2617 2505 #: ../classes/Content/RssAggregator.php:360 2618 2506 #: ../classes/Content/RssAggregator/RssAggregator.php:532 2619 #: ../classes/Content/RssAggregator/RssAggregator.php:528 2620 #: ../classes/Content/RssAggregator/RssAggregator.php:525 2507 #: ../classes/Content/RssAggregator/RssAggregator.php:520 2621 2508 msgid "Type URL manually" 2622 2509 msgstr "Adresse manuell eingeben" … … 2624 2511 #: ../classes/Content/RssAggregator.php:424 2625 2512 #: ../classes/Content/RssAggregator/RssAggregator.php:624 2626 #: ../classes/Content/RssAggregator/RssAggregator.php:6 202627 #: ../classes/ Content/RssAggregator/RssAggregator.php:6162513 #: ../classes/Content/RssAggregator/RssAggregator.php:609 2514 #: ../classes/NodeLists/NodeListKML.php:250 2628 2515 msgid "URL" 2629 2516 msgstr "Adresse" … … 2631 2518 #: ../classes/Content/RssAggregator.php:427 2632 2519 #: ../classes/Content/RssAggregator/RssAggregator.php:627 2633 #: ../classes/Content/RssAggregator/RssAggregator.php:623 2634 #: ../classes/Content/RssAggregator/RssAggregator.php:619 2520 #: ../classes/Content/RssAggregator/RssAggregator.php:612 2635 2521 msgid "" 2636 2522 "WARNING: Either the feed couldn't be retrieved, or it couldn't be parsed. " … … 2642 2528 #: ../classes/Content/RssAggregator.php:442 2643 2529 #: ../classes/Content/RssAggregator/RssAggregator.php:647 2644 #: ../classes/Content/RssAggregator/RssAggregator.php:643 2645 #: ../classes/Content/RssAggregator/RssAggregator.php:639 2530 #: ../classes/Content/RssAggregator/RssAggregator.php:632 2646 2531 #, php-format 2647 2532 msgid "The feed publishes an item every %.2f day(s)" … … 2683 2568 #: ../classes/Content/RssAggregator.php:501 2684 2569 #: ../classes/Content/RssAggregator/RssAggregator.php:724 2685 #: ../classes/Content/RssAggregator/RssAggregator.php:720 2686 #: ../classes/Content/RssAggregator/RssAggregator.php:716 2570 #: ../classes/Content/RssAggregator/RssAggregator.php:711 2687 2571 msgid "The bias must be a positive real number" 2688 2572 msgstr "Der Abweichungsfaktor muss eine positive Zahl sein" … … 2690 2574 #: ../classes/Content/RssAggregator.php:525 2691 2575 #: ../classes/Content/RssAggregator/RssAggregator.php:751 2692 #: ../classes/Content/RssAggregator/RssAggregator.php:747 2693 #: ../classes/Content/RssAggregator/RssAggregator.php:743 2576 #: ../classes/Content/RssAggregator/RssAggregator.php:740 2694 2577 msgid "The default publication must must be a positive integer or empty" 2695 2578 msgstr "" … … 2699 2582 #: ../classes/Content/RssAggregator.php:544 2700 2583 #: ../classes/Content/RssAggregator/RssAggregator.php:772 2701 #: ../classes/Content/RssAggregator/RssAggregator.php:768 2702 #: ../classes/Content/RssAggregator/RssAggregator.php:764 2584 #: ../classes/Content/RssAggregator/RssAggregator.php:763 2703 2585 msgid "The URL cannot be empty!" 2704 2586 msgstr "Die Adresse darf nicht leer sein!" … … 2706 2588 #: ../classes/Content/RssAggregator.php:569 2707 2589 #: ../classes/Content/RssAggregator/RssAggregator.php:801 2708 #: ../classes/Content/RssAggregator/RssAggregator.php:796 2709 #: ../classes/Content/RssAggregator/RssAggregator.php:792 2590 #: ../classes/Content/RssAggregator/RssAggregator.php:790 2710 2591 #, php-format 2711 2592 msgid "Could not get RSS feed: %s" … … 2719 2600 #: smarty.txt:41 smarty.txt:78 smarty.txt:80 smarty.txt:128 smarty.txt:155 2720 2601 #: smarty.txt:150 smarty.txt:177 smarty.txt:153 smarty.txt:180 smarty.txt:127 2721 #: smarty.txt:158 smarty.txt:130 smarty.txt:154 smarty.txt:120 smarty.txt:166 2722 #: smarty.txt:62 smarty.txt:75 2602 #: smarty.txt:158 smarty.txt:65 2723 2603 msgid "Your username" 2724 2604 msgstr "Ihr Benutzername" … … 2744 2624 "(mit Bestätigung des neuen Passworts) ein" 2745 2625 2746 #: smarty.txt:10 smarty.txt: 11 smarty.txt:24 smarty.txt:82626 #: smarty.txt:10 smarty.txt:8 2747 2627 msgid "Frequently Asked Questions" 2748 2628 msgstr "Häufig gestellte Fragen" 2749 2629 2750 #: smarty.txt:11 smarty.txt:12 smarty.txt:13 smarty.txt:262630 #: smarty.txt:11 smarty.txt:12 2751 2631 msgid "Do I have to pay to get access to the Internet" 2752 2632 msgstr "Ist dieser Internetzugang kostenpflichtig" 2753 2633 2754 #: smarty.txt:12 smarty.txt:14 smarty.txt:15 smarty.txt:282634 #: smarty.txt:12 smarty.txt:14 2755 2635 msgid "" 2756 2636 "No, Internet access is provided for free by the venue you are actually at" … … 2758 2638 "Nein, der Internetzugang wird vom Provider kostenlos zur Verfügung gestellt" 2759 2639 2760 #: smarty.txt:13 smarty.txt:16 smarty.txt:17 smarty.txt:302640 #: smarty.txt:13 smarty.txt:16 2761 2641 msgid "I have failed to validate my account in x minutes" 2762 2642 msgstr "" 2763 2643 "Ich habe meinen Zugang nicht innerhalb der Bestätigungszeit verifiziert" 2764 2644 2765 #: smarty.txt:14 smarty.txt:18 smarty.txt:19 smarty.txt:322645 #: smarty.txt:14 smarty.txt:18 2766 2646 msgid "" 2767 2647 "You have been given an amount of minutes of Internet access in order to " … … 2782 2662 "php'>klicken Sie bitte hier</a>" 2783 2663 2784 #: smarty.txt:15 smarty.txt:20 smarty.txt:21 smarty.txt:342664 #: smarty.txt:15 smarty.txt:20 2785 2665 msgid "What steps are required in order to create and validate a new account?" 2786 2666 msgstr "" 2787 2667 "Welche Schritte sind nötig, um einen voll funktionfähigen Zugang zu erhalten?" 2788 2668 2789 #: smarty.txt:16 smarty.txt:22 smarty.txt:23 smarty.txt:362669 #: smarty.txt:16 smarty.txt:22 2790 2670 msgid "Here is an overview of the steps" 2791 2671 msgstr "Eine Übersicht der Schritte" 2792 2672 2793 #: smarty.txt:17 smarty.txt:23 smarty.txt: 24 smarty.txt:37 smarty.txt:152673 #: smarty.txt:17 smarty.txt:23 smarty.txt:15 2794 2674 msgid "" 2795 2675 "Pick a username, enter your email address, and enter the password you would " … … 2801 2681 "Link steht, der geklickt werden muss, um die E-Mail-Adresse zu bestätigen" 2802 2682 2803 #: smarty.txt:18 smarty.txt:24 smarty.txt: 25 smarty.txt:38 smarty.txt:162683 #: smarty.txt:18 smarty.txt:24 smarty.txt:16 2804 2684 msgid "" 2805 2685 "Once the account is created, you need Internet access in order to check your " … … 2815 2695 "zum Login umgeleitet." 2816 2696 2817 #: smarty.txt:19 smarty.txt:25 smarty.txt: 26 smarty.txt:39 smarty.txt:172697 #: smarty.txt:19 smarty.txt:25 smarty.txt:17 2818 2698 msgid "" 2819 2699 "Enter your login information. You will be given 15 minutes of Internet " … … 2823 2703 "Zeit, um ihre E-Mail-Adresse zu bestätigen" 2824 2704 2825 #: smarty.txt:20 smarty.txt:26 smarty.txt: 27 smarty.txt:40 smarty.txt:182705 #: smarty.txt:20 smarty.txt:26 smarty.txt:18 2826 2706 msgid "Once that last step is done, you will have full free Internet access" 2827 2707 msgstr "" … … 2831 2711 #: smarty.txt:22 smarty.txt:83 smarty.txt:34 smarty.txt:95 smarty.txt:40 2832 2712 #: smarty.txt:101 smarty.txt:103 smarty.txt:126 smarty.txt:148 smarty.txt:151 2833 #: smarty.txt:129 smarty.txt: 119 smarty.txt:612713 #: smarty.txt:129 smarty.txt:64 2834 2714 msgid "Lost password" 2835 2715 msgstr "Vergessenes Passwort" … … 2839 2719 #: smarty.txt:129 smarty.txt:137 smarty.txt:164 smarty.txt:151 smarty.txt:159 2840 2720 #: smarty.txt:186 smarty.txt:154 smarty.txt:162 smarty.txt:189 smarty.txt:128 2841 #: smarty.txt:168 smarty.txt:131 smarty.txt:140 smarty.txt:86 smarty.txt:121 2842 #: smarty.txt:175 smarty.txt:63 smarty.txt:67 smarty.txt:80 2721 #: smarty.txt:168 smarty.txt:66 smarty.txt:70 2843 2722 msgid "Your email address" 2844 2723 msgstr "Ihre E-Mail-Adresse" 2845 2724 2846 2725 #: smarty.txt:25 smarty.txt:37 smarty.txt:43 smarty.txt:130 smarty.txt:152 2847 #: smarty.txt:155 smarty.txt:129 smarty.txt:132 smarty.txt:1222726 #: smarty.txt:155 smarty.txt:129 2848 2727 msgid "Reset my password" 2849 2728 msgstr "Passwort zurücksetzen" 2850 2729 2851 2730 #: smarty.txt:26 smarty.txt:38 smarty.txt:44 smarty.txt:127 smarty.txt:149 2852 #: smarty.txt:152 smarty.txt:130 smarty.txt: 133 smarty.txt:123 smarty.txt:642731 #: smarty.txt:152 smarty.txt:130 smarty.txt:67 2853 2732 msgid "Please enter your username or email address to reset your password" 2854 2733 msgstr "" … … 2858 2737 #: smarty.txt:27 smarty.txt:82 smarty.txt:39 smarty.txt:94 smarty.txt:45 2859 2738 #: smarty.txt:100 smarty.txt:102 smarty.txt:135 smarty.txt:157 smarty.txt:160 2860 #: smarty.txt:136 smarty.txt: 139 smarty.txt:174 smarty.txt:662739 #: smarty.txt:136 smarty.txt:69 2861 2740 msgid "Lost username" 2862 2741 msgstr "Vergessener Benutzername" 2863 2742 2864 2743 #: smarty.txt:29 smarty.txt:41 smarty.txt:47 smarty.txt:138 smarty.txt:160 2865 #: smarty.txt:163 smarty.txt:141 smarty.txt:1762744 #: smarty.txt:163 smarty.txt:141 2866 2745 msgid "Retrieve" 2867 2746 msgstr "Empfangen" 2868 2747 2869 2748 #: smarty.txt:30 smarty.txt:42 smarty.txt:48 smarty.txt:136 smarty.txt:158 2870 #: smarty.txt:161 smarty.txt:139 smarty.txt: 142 smarty.txt:177 smarty.txt:682749 #: smarty.txt:161 smarty.txt:139 smarty.txt:71 2871 2750 msgid "Please enter your email address to recover your username" 2872 2751 msgstr "" … … 2929 2808 2930 2809 #: smarty.txt:44 smarty.txt:56 smarty.txt:62 2810 #: ../classes/NodeLists/NodeListPDF.php:1105 2811 #: ../classes/NodeLists/NodeListPDF.php:1130 2931 2812 msgid "Hotspot" 2932 2813 msgstr "Hotspot" … … 2941 2822 msgstr "Es wurde kein Hotspot angegeben!" 2942 2823 2943 #: smarty.txt:48 smarty.txt:60 smarty.txt:66 smarty.txt:27 smarty.txt:28 2944 #: smarty.txt:11 smarty.txt:19 2824 #: smarty.txt:48 smarty.txt:60 smarty.txt:66 smarty.txt:27 smarty.txt:19 2945 2825 msgid "Status of all nodes of the" 2946 2826 msgstr "Status aller Hotspots des" … … 2950 2830 #: smarty.txt:112 smarty.txt:146 smarty.txt:28 smarty.txt:173 smarty.txt:207 2951 2831 #: smarty.txt:195 smarty.txt:229 smarty.txt:198 smarty.txt:232 smarty.txt:181 2952 #: smarty.txt:215 smarty.txt:29 smarty.txt:179 smarty.txt:213 smarty.txt:12 2953 #: smarty.txt:192 2832 #: smarty.txt:215 2954 2833 msgid "network" 2955 2834 msgstr "Netzwerks" … … 2957 2836 #: smarty.txt:50 smarty.txt:62 smarty.txt:68 2958 2837 #: ../classes/StatisticReport/NodeStatus.php:72 2959 #: ../classes/StatisticReport/NodeStatus.php:99 smarty.txt:29 smarty.txt:30 2960 #: smarty.txt:13 2838 #: ../classes/StatisticReport/NodeStatus.php:99 smarty.txt:29 2961 2839 msgid "Status" 2962 2840 msgstr "Status" … … 2966 2844 #: smarty.txt:113 smarty.txt:147 smarty.txt:30 smarty.txt:174 smarty.txt:208 2967 2845 #: smarty.txt:196 smarty.txt:230 smarty.txt:199 smarty.txt:233 smarty.txt:182 2968 #: smarty.txt:216 smarty.txt:31 smarty.txt:180 smarty.txt:214 smarty.txt:14 2969 #: smarty.txt:193 smarty.txt:92 2846 #: smarty.txt:216 smarty.txt:95 smarty.txt:124 2970 2847 msgid "Id" 2971 2848 msgstr "Kennung" 2972 2849 2973 #: smarty.txt:53 smarty.txt:65 smarty.txt:71 smarty.txt:32 smarty.txt:33 2974 #: smarty.txt:16 smarty.txt:20 2850 #: smarty.txt:53 smarty.txt:65 smarty.txt:71 smarty.txt:32 smarty.txt:20 2975 2851 msgid "Local content demo" 2976 2852 msgstr "Lokaler Inhalt" … … 2979 2855 #: smarty.txt:38 smarty.txt:72 smarty.txt:113 smarty.txt:115 smarty.txt:33 2980 2856 #: smarty.txt:74 smarty.txt:176 smarty.txt:96 smarty.txt:198 smarty.txt:99 2981 #: smarty.txt:201 smarty.txt:76 smarty.txt:184 smarty.txt:34 smarty.txt:79 2982 #: smarty.txt:182 smarty.txt:17 smarty.txt:112 smarty.txt:195 smarty.txt:40 2983 #: smarty.txt:94 2857 #: smarty.txt:201 smarty.txt:76 smarty.txt:184 smarty.txt:97 2984 2858 msgid "Opened on" 2985 2859 msgstr "Eröffnet am" 2986 2860 2987 2861 #: smarty.txt:56 smarty.txt:29 smarty.txt:68 smarty.txt:35 smarty.txt:74 2988 #: smarty.txt:71 smarty.txt:93 smarty.txt:96 smarty.txt:73 smarty.txt:36 2989 #: smarty.txt:76 smarty.txt:19 smarty.txt:109 smarty.txt:21 2862 #: smarty.txt:71 smarty.txt:93 smarty.txt:96 smarty.txt:73 smarty.txt:21 2990 2863 msgid "days" 2991 2864 msgstr "Tage, " 2992 2865 2993 2866 #: smarty.txt:57 smarty.txt:69 smarty.txt:75 smarty.txt:77 smarty.txt:38 2994 #: smarty.txt:39 smarty.txt:222995 2867 msgid "Login page" 2996 2868 msgstr "Login-Seite" 2997 2869 2998 2870 #: smarty.txt:58 smarty.txt:70 smarty.txt:76 smarty.txt:78 smarty.txt:39 2999 #: smarty.txt:40 smarty.txt:233000 2871 msgid "Portal page" 3001 2872 msgstr "Portal" … … 3003 2874 #: smarty.txt:59 smarty.txt:81 smarty.txt:71 smarty.txt:93 smarty.txt:77 3004 2875 #: smarty.txt:99 smarty.txt:79 smarty.txt:101 smarty.txt:153 smarty.txt:175 3005 #: smarty.txt:178 smarty.txt:157 smarty.txt:165 smarty.txt:742876 #: smarty.txt:178 smarty.txt:157 3006 2877 msgid "Re-send validation email" 3007 2878 msgstr "Bestätigungs-E-Mail nochmals anfordern" 3008 2879 3009 2880 #: smarty.txt:61 smarty.txt:73 smarty.txt:79 smarty.txt:81 smarty.txt:156 3010 #: smarty.txt:178 smarty.txt:181 smarty.txt:159 smarty.txt:155 smarty.txt:1672881 #: smarty.txt:178 smarty.txt:181 smarty.txt:159 3011 2882 msgid "Re-send" 3012 2883 msgstr "nachmals anfordern" 3013 2884 3014 2885 #: smarty.txt:62 smarty.txt:74 smarty.txt:80 smarty.txt:82 smarty.txt:154 3015 #: smarty.txt:176 smarty.txt:179 smarty.txt:160 smarty.txt:156 smarty.txt:168 3016 #: smarty.txt:76 2886 #: smarty.txt:176 smarty.txt:179 smarty.txt:160 smarty.txt:79 3017 2887 msgid "" 3018 2888 "Please enter your username and the validation email will be resent to your " … … 3023 2893 3024 2894 #: smarty.txt:63 smarty.txt:75 smarty.txt:81 smarty.txt:83 smarty.txt:161 3025 #: smarty.txt:183 smarty.txt:186 smarty.txt:166 smarty.txt:162 smarty.txt:84 3026 #: smarty.txt:78 2895 #: smarty.txt:183 smarty.txt:186 smarty.txt:166 3027 2896 msgid "Register a free account with" 3028 2897 msgstr "Einen neuen Zugang registrieren bei" 3029 2898 3030 2899 #: smarty.txt:64 smarty.txt:76 smarty.txt:82 smarty.txt:84 smarty.txt:163 3031 #: smarty.txt:185 smarty.txt:188 smarty.txt:167 smarty.txt:85 smarty.txt:792900 #: smarty.txt:185 smarty.txt:188 smarty.txt:167 3032 2901 msgid "Username desired" 3033 2902 msgstr "Gewünschter Benutzername" 3034 2903 3035 2904 #: smarty.txt:67 smarty.txt:79 smarty.txt:85 smarty.txt:87 smarty.txt:166 3036 #: smarty.txt:188 smarty.txt:191 smarty.txt:170 smarty.txt:88 smarty.txt:822905 #: smarty.txt:188 smarty.txt:191 smarty.txt:170 3037 2906 msgid "Password (again)" 3038 2907 msgstr "Passwort (wiederholen)" 3039 2908 3040 2909 #: smarty.txt:68 smarty.txt:80 smarty.txt:86 smarty.txt:88 smarty.txt:167 3041 #: smarty.txt:189 smarty.txt:192 smarty.txt:171 smarty.txt:892910 #: smarty.txt:189 smarty.txt:192 smarty.txt:171 3042 2911 msgid "Sign-up" 3043 2912 msgstr "Anmelden" 3044 2913 3045 2914 #: smarty.txt:69 smarty.txt:81 smarty.txt:87 smarty.txt:89 smarty.txt:168 3046 #: smarty.txt:190 smarty.txt:193 smarty.txt:172 smarty.txt: 90 smarty.txt:832915 #: smarty.txt:190 smarty.txt:193 smarty.txt:172 smarty.txt:86 3047 2916 msgid "Please note" 3048 2917 msgstr "Bitte beachten Sie" 3049 2918 3050 2919 #: smarty.txt:70 smarty.txt:82 smarty.txt:88 smarty.txt:90 smarty.txt:169 3051 #: smarty.txt:191 smarty.txt:194 smarty.txt:173 smarty.txt: 91 smarty.txt:842920 #: smarty.txt:191 smarty.txt:194 smarty.txt:173 smarty.txt:87 3052 2921 msgid "" 3053 2922 "While accounts are free, we <em>strongly</em> suggest that you use your " … … 3058 2927 3059 2928 #: smarty.txt:71 smarty.txt:83 smarty.txt:89 smarty.txt:91 smarty.txt:170 3060 #: smarty.txt:192 smarty.txt:195 smarty.txt:174 smarty.txt:173 smarty.txt:95 3061 #: smarty.txt:88 2929 #: smarty.txt:192 smarty.txt:195 smarty.txt:174 3062 2930 msgid "Note to free web-based email users" 3063 2931 msgstr "Hinweis an Nutzer von kostenlosen E-Mail-Anbietern" 3064 2932 3065 2933 #: smarty.txt:72 smarty.txt:84 smarty.txt:90 smarty.txt:92 smarty.txt:171 3066 #: smarty.txt:193 smarty.txt:196 smarty.txt:175 smarty.txt:174 smarty.txt:96 3067 #: smarty.txt:89 2934 #: smarty.txt:193 smarty.txt:196 smarty.txt:175 3068 2935 msgid "" 3069 2936 "Sometimes our validation email ends up in the 'spam' folder of some " … … 3077 2944 3078 2945 #: smarty.txt:73 smarty.txt:85 smarty.txt:91 smarty.txt:93 smarty.txt:176 3079 #: smarty.txt:175 smarty.txt:97 smarty.txt:903080 2946 msgid "You can also use the following links if you need help" 3081 2947 msgstr "Sie können auch die folgenden Links nutzen, falls Sie Hilfe benötigen" … … 3136 3002 #: smarty.txt:137 smarty.txt:143 smarty.txt:111 smarty.txt:145 smarty.txt:172 3137 3003 #: smarty.txt:206 smarty.txt:194 smarty.txt:228 smarty.txt:197 smarty.txt:231 3138 #: smarty.txt:180 smarty.txt:214 smarty.txt:178 smarty.txt:212 smarty.txt:191 3139 #: smarty.txt:120 3004 #: smarty.txt:180 smarty.txt:214 smarty.txt:94 smarty.txt:123 3140 3005 msgid "Configurations of all nodes of the" 3141 3006 msgstr "Konfigurationen der Hotspots des" … … 3145 3010 #: smarty.txt:116 smarty.txt:149 smarty.txt:177 smarty.txt:196 smarty.txt:210 3146 3011 #: smarty.txt:199 smarty.txt:218 smarty.txt:232 smarty.txt:202 smarty.txt:221 3147 #: smarty.txt:235 smarty.txt:185 smarty.txt:204 smarty.txt: 183 smarty.txt:2163148 #: smarty.txt:1 82 smarty.txt:95 smarty.txt:1103012 #: smarty.txt:235 smarty.txt:185 smarty.txt:204 smarty.txt:98 smarty.txt:113 3013 #: smarty.txt:126 3149 3014 msgid "Action" 3150 3015 msgstr "Aktion" 3151 3016 3152 3017 #: smarty.txt:98 smarty.txt:110 smarty.txt:116 smarty.txt:118 smarty.txt:179 3153 #: smarty.txt:201 smarty.txt:204 smarty.txt:187 smarty.txt:185 smarty.txt:1983018 #: smarty.txt:201 smarty.txt:204 smarty.txt:187 3154 3019 msgid "Owner" 3155 3020 msgstr "Besitzer" 3156 3021 3157 3022 #: smarty.txt:100 smarty.txt:112 smarty.txt:118 smarty.txt:120 smarty.txt:181 3158 #: smarty.txt:203 smarty.txt:206 smarty.txt:189 smarty.txt:187 smarty.txt:2003023 #: smarty.txt:203 smarty.txt:206 smarty.txt:189 3159 3024 msgid "Add a new node" 3160 3025 msgstr "Neuen Hotspot hinzufügen" 3161 3026 3162 3027 #: smarty.txt:103 smarty.txt:115 smarty.txt:121 smarty.txt:123 smarty.txt:184 3163 #: smarty.txt:206 smarty.txt:209 smarty.txt:192 smarty.txt:190 smarty.txt:203 3164 #: smarty.txt:98 3028 #: smarty.txt:206 smarty.txt:209 smarty.txt:192 smarty.txt:101 3165 3029 msgid "RSS URL" 3166 3030 msgstr "RSS-Adresse" 3167 3031 3168 3032 #: smarty.txt:107 smarty.txt:119 smarty.txt:125 smarty.txt:127 smarty.txt:188 3169 #: smarty.txt:210 smarty.txt:213 smarty.txt:196 smarty.txt:194 smarty.txt:207 3170 #: smarty.txt:102 3033 #: smarty.txt:210 smarty.txt:213 smarty.txt:196 smarty.txt:105 3171 3034 msgid "Street address" 3172 3035 msgstr "Straße" 3173 3036 3174 3037 #: smarty.txt:112 smarty.txt:124 smarty.txt:130 smarty.txt:132 smarty.txt:193 3175 #: smarty.txt:215 smarty.txt:218 smarty.txt:201 smarty.txt:199 smarty.txt:212 3176 #: smarty.txt:107 3038 #: smarty.txt:215 smarty.txt:218 smarty.txt:201 smarty.txt:110 3177 3039 msgid "Add new node" 3178 3040 msgstr "Neuen Hotspot hinzufügen" 3179 3041 3180 3042 #: smarty.txt:113 smarty.txt:125 smarty.txt:131 smarty.txt:133 smarty.txt:194 3181 #: smarty.txt:216 smarty.txt:219 smarty.txt:202 smarty.txt:200 smarty.txt:213 3182 #: smarty.txt:108 3043 #: smarty.txt:216 smarty.txt:219 smarty.txt:202 smarty.txt:111 3183 3044 msgid "Update node" 3184 3045 msgstr "Hotspot aktualisieren" 3185 3046 3186 3047 #: smarty.txt:114 smarty.txt:126 smarty.txt:132 smarty.txt:134 smarty.txt:195 3187 #: smarty.txt:217 smarty.txt:220 smarty.txt:203 smarty.txt: 201 smarty.txt:1093048 #: smarty.txt:217 smarty.txt:220 smarty.txt:203 smarty.txt:112 3188 3049 msgid "Administrators" 3189 3050 msgstr "Administratoren" 3190 3051 3191 3052 #: smarty.txt:116 smarty.txt:128 smarty.txt:134 smarty.txt:136 smarty.txt:197 3192 #: smarty.txt:219 smarty.txt:222 smarty.txt:205 smarty.txt: 203 smarty.txt:1113053 #: smarty.txt:219 smarty.txt:222 smarty.txt:205 smarty.txt:114 3193 3054 msgid "Give a user rights to administer this node" 3194 3055 msgstr "Geben Sie einem Benutzer die Rechte, diesen Hotspot zu administrieren" 3195 3056 3196 3057 #: smarty.txt:117 smarty.txt:129 smarty.txt:135 smarty.txt:137 smarty.txt:198 3197 #: smarty.txt:220 smarty.txt:223 smarty.txt:206 smarty.txt: 204 smarty.txt:1123058 #: smarty.txt:220 smarty.txt:223 smarty.txt:206 smarty.txt:115 3198 3059 msgid "User ID" 3199 3060 msgstr "Benutzer-Kennung" 3200 3061 3201 3062 #: smarty.txt:124 smarty.txt:136 smarty.txt:142 smarty.txt:148 smarty.txt:150 3202 #: smarty.txt:211 smarty.txt:233 smarty.txt:236 smarty.txt:219 smarty.txt:217 3203 #: smarty.txt:183 3063 #: smarty.txt:211 smarty.txt:233 smarty.txt:236 smarty.txt:219 smarty.txt:127 3204 3064 msgid "User list" 3205 3065 msgstr "Benutzerliste" 3206 3066 3207 3067 #: smarty.txt:125 smarty.txt:137 smarty.txt:143 smarty.txt:149 smarty.txt:151 3208 #: smarty.txt:212 smarty.txt:234 smarty.txt:237 smarty.txt:220 smarty.txt:218 3209 #: smarty.txt:184 3068 #: smarty.txt:212 smarty.txt:234 smarty.txt:237 smarty.txt:220 smarty.txt:128 3210 3069 msgid "Sort by:" 3211 3070 msgstr "Sortiert nach:" 3212 3071 3213 3072 #: smarty.txt:126 smarty.txt:138 smarty.txt:144 smarty.txt:150 smarty.txt:152 3214 #: smarty.txt:213 smarty.txt:235 smarty.txt:238 smarty.txt:221 smarty.txt:219 3215 #: smarty.txt:185 3073 #: smarty.txt:213 smarty.txt:235 smarty.txt:238 smarty.txt:221 smarty.txt:129 3216 3074 msgid "Direction:" 3217 3075 msgstr "Anordnung" 3218 3076 3219 3077 #: smarty.txt:127 smarty.txt:139 smarty.txt:145 smarty.txt:151 smarty.txt:153 3220 #: smarty.txt:214 smarty.txt:236 smarty.txt:239 smarty.txt:222 smarty.txt:220 3221 #: smarty.txt:186 3078 #: smarty.txt:214 smarty.txt:236 smarty.txt:239 smarty.txt:222 smarty.txt:130 3222 3079 msgid "Sort" 3223 3080 msgstr "Sortieren" … … 3228 3085 #: ../classes/StatisticReport/NodeStatus.php:156 3229 3086 #: ../classes/StatisticReport/UserReport.php:137 smarty.txt:216 smarty.txt:238 3230 #: smarty.txt:241 smarty.txt:224 smarty.txt: 222 smarty.txt:1883087 #: smarty.txt:241 smarty.txt:224 smarty.txt:132 3231 3088 msgid "Network" 3232 3089 msgstr "Netzwerk" 3233 3090 3234 3091 #: smarty.txt:130 smarty.txt:142 smarty.txt:148 smarty.txt:154 smarty.txt:156 3235 #: smarty.txt:217 smarty.txt:239 smarty.txt:242 smarty.txt:225 smarty.txt:223 3236 #: smarty.txt:189 3092 #: smarty.txt:217 smarty.txt:239 smarty.txt:242 smarty.txt:225 smarty.txt:133 3237 3093 msgid "Registered On" 3238 3094 msgstr "Registriert am" … … 3241 3097 #: ../classes/StatisticReport/UserReport.php:114 smarty.txt:155 smarty.txt:157 3242 3098 #: ../classes/StatisticReport/UserReport.php:152 smarty.txt:218 smarty.txt:240 3243 #: smarty.txt:243 smarty.txt:226 smarty.txt: 224 smarty.txt:1903099 #: smarty.txt:243 smarty.txt:226 smarty.txt:134 3244 3100 msgid "Account Status" 3245 3101 msgstr "Status des Zugangs" … … 3256 3112 3257 3113 #: smarty.txt:22 smarty.txt:28 smarty.txt:64 smarty.txt:86 smarty.txt:89 3258 #: smarty.txt:66 smarty.txt:69 smarty.txt:102 smarty.txt:343114 #: smarty.txt:66 3259 3115 msgid "Status of the" 3260 3116 msgstr "Status der" 3261 3117 3262 3118 #: smarty.txt:23 smarty.txt:29 smarty.txt:65 smarty.txt:87 smarty.txt:90 3263 #: smarty.txt:67 smarty.txt:70 smarty.txt:1033119 #: smarty.txt:67 3264 3120 msgid "open" 3265 3121 msgstr "aktiven" 3266 3122 3267 #: smarty.txt:24 smarty.txt:30 smarty.txt:68 smarty.txt:71 smarty.txt:1043123 #: smarty.txt:24 smarty.txt:30 smarty.txt:68 3268 3124 msgid "Hotspots (Get this list as a <a href='?format=RSS'>RSS feed</a>)" 3269 3125 msgstr "" … … 3271 3127 3272 3128 #: smarty.txt:25 smarty.txt:31 smarty.txt:67 smarty.txt:89 smarty.txt:92 3273 #: smarty.txt:69 smarty.txt: 72 smarty.txt:105 smarty.txt:353129 #: smarty.txt:69 smarty.txt:38 3274 3130 msgid "Hotspot / Status" 3275 3131 msgstr "Hotspot /Status" 3276 3132 3277 3133 #: smarty.txt:27 smarty.txt:33 smarty.txt:69 smarty.txt:91 smarty.txt:94 3278 #: smarty.txt:71 smarty.txt: 74 smarty.txt:107 smarty.txt:373134 #: smarty.txt:71 smarty.txt:40 3279 3135 msgid "Location" 3280 3136 msgstr "Adresse" 3281 3137 3282 3138 #: smarty.txt:28 smarty.txt:34 smarty.txt:70 smarty.txt:92 smarty.txt:95 3283 #: smarty.txt:72 smarty.txt: 75 smarty.txt:108 smarty.txt:383139 #: smarty.txt:72 smarty.txt:41 3284 3140 msgid "Hotspot in testing phase" 3285 3141 msgstr "Hotspot befindet sich in Testphase" 3286 3142 3287 3143 #: smarty.txt:30 smarty.txt:36 smarty.txt:75 smarty.txt:72 smarty.txt:94 3288 #: smarty.txt:97 smarty.txt:74 smarty.txt:37 smarty.txt:77 smarty.txt:20 3289 #: smarty.txt:110 3144 #: smarty.txt:97 smarty.txt:74 3290 3145 msgid "h" 3291 3146 msgstr " Stunden," 3292 3147 3293 3148 #: smarty.txt:31 smarty.txt:37 smarty.txt:76 smarty.txt:73 smarty.txt:95 3294 #: smarty.txt:98 smarty.txt:75 smarty.txt:38 smarty.txt:78 smarty.txt:21 3295 #: smarty.txt:111 3149 #: smarty.txt:98 smarty.txt:75 3296 3150 msgid "min" 3297 3151 msgstr " Minuten" … … 3300 3154 #: ../classes/Network.php:709 ../classes/StatisticReport/NodeStatus.php:165 3301 3155 #: smarty.txt:77 smarty.txt:99 smarty.txt:102 ../classes/Network.php:848 3302 #: ../classes/Network.php:813 smarty.txt:80 smarty.txt:1133156 #: ../classes/Network.php:813 3303 3157 msgid "Map" 3304 3158 msgstr "Karte" … … 3312 3166 msgstr "Liste aller Hotspots" 3313 3167 3314 #: smarty.txt:11 smarty.txt:15 smarty.txt:19 smarty.txt:12 smarty.txt:16 3315 #: smarty.txt:20 smarty.txt:25 smarty.txt:29 smarty.txt:33 smarty.txt:9 3316 #: smarty.txt:13 3168 #: smarty.txt:11 smarty.txt:15 smarty.txt:19 smarty.txt:9 smarty.txt:13 3317 3169 msgid "Q:" 3318 3170 msgstr "Frage:" 3319 3171 3320 #: smarty.txt:13 smarty.txt:17 smarty.txt:21 smarty.txt:14 smarty.txt:18 3321 #: smarty.txt:22 smarty.txt:27 smarty.txt:31 smarty.txt:35 smarty.txt:10 3322 #: smarty.txt:12 3172 #: smarty.txt:13 smarty.txt:17 smarty.txt:21 smarty.txt:10 smarty.txt:12 3173 #: smarty.txt:14 3323 3174 msgid "A:" 3324 3175 msgstr "Antwort:" … … 3527 3378 #: ../classes/StatisticReport/UserRegistrationReport.php:131 3528 3379 #: ../classes/StatisticReport/UserReport.php:192 smarty.txt:201 smarty.txt:223 3529 #: smarty.txt:226 smarty.txt:209 ../classes/Node.php:244 smarty.txt:207 3530 #: smarty.txt:215 smarty.txt:115 3380 #: smarty.txt:226 smarty.txt:209 ../classes/Node.php:244 smarty.txt:118 3531 3381 msgid "Node" 3532 3382 msgstr "Hotspot" … … 3550 3400 #: ../classes/StatisticReport/NetworkStatus.php:77 ../classes/Node.php:706 3551 3401 #: ../classes/Node.php:787 ../classes/Server.php:692 3552 #: ../classes/StatisticReport/NetworkStatus.php:104 ../classes/Node.php:8133553 #: ../classes/ Server.php:696 ../classes/Server.php:6953554 #: ../classes/ Content/File/File.php:4383402 #: ../classes/StatisticReport/NetworkStatus.php:104 3403 #: ../classes/Content/File/File.php:438 ../classes/Node.php:824 3404 #: ../classes/Server.php:695 3555 3405 msgid "Creation date" 3556 3406 msgstr "Erstellt am" … … 3686 3536 #: ../classes/NodeLists/NodeListRSS.php:334 3687 3537 #: ../classes/StatisticReport/NodeStatus.php:178 3538 #: ../classes/NodeLists/NodeListKML.php:248 3539 #: ../classes/NodeLists/NodeListPDF.php:1105 3540 #: ../classes/NodeLists/NodeListPDF.php:1130 3688 3541 msgid "Address" 3689 3542 msgstr "Adresse" … … 3691 3544 #: ../classes/StatisticReport/NodeStatus.php:159 3692 3545 #: ../classes/StatisticReport/NodeStatus.php:186 3546 #: ../classes/NodeLists/NodeListPDF.php:1105 3547 #: ../classes/NodeLists/NodeListPDF.php:1130 3693 3548 msgid "Telephone" 3694 3549 msgstr "Öffentliche Telefonnummer" … … 3698 3553 #: ../classes/StatisticReport/NodeStatus.php:190 3699 3554 #: ../classes/StatisticReport/UserReport.php:132 smarty.txt:76 smarty.txt:98 3700 #: smarty.txt:101 3555 #: smarty.txt:101 ../classes/NodeLists/NodeListKML.php:251 3556 #: ../classes/NodeLists/NodeListPDF.php:1105 3557 #: ../classes/NodeLists/NodeListPDF.php:1130 3701 3558 msgid "Email" 3702 3559 msgstr "Öffentliche E-Mail-Adresse" … … 3854 3711 3855 3712 #: smarty.txt:140 smarty.txt:142 smarty.txt:203 smarty.txt:225 smarty.txt:228 3856 #: smarty.txt:211 smarty.txt: 209 smarty.txt:217 smarty.txt:1173713 #: smarty.txt:211 smarty.txt:120 3857 3714 msgid "Origin" 3858 3715 msgstr "Herkunft" 3859 3716 3860 3717 #: smarty.txt:141 smarty.txt:143 smarty.txt:204 smarty.txt:226 smarty.txt:229 3861 #: smarty.txt:212 smarty.txt: 210 smarty.txt:218 smarty.txt:1183718 #: smarty.txt:212 smarty.txt:121 3862 3719 msgid "Logged in Since" 3863 3720 msgstr "Angemeldet seit" 3864 3721 3865 3722 #: smarty.txt:142 smarty.txt:144 smarty.txt:205 smarty.txt:227 smarty.txt:230 3866 #: smarty.txt:213 smarty.txt: 211 smarty.txt:219 smarty.txt:1193723 #: smarty.txt:213 smarty.txt:122 3867 3724 msgid "Traffic IN/OUT" 3868 3725 msgstr "Transfervolumen (Download / Upload)" … … 3936 3793 #, php-format 3937 3794 msgid "Show only persistant %s" 3938 msgstr "Zeige lediglich wieder verwendbare %s"3795 msgstr "Zeige lediglich wieder verwendbare %s" 3939 3796 3940 3797 #: ../admin/generic_object_admin.php:86 … … 3969 3826 3970 3827 #: ../lib/RssPressReview/RssPressReview.php:282 3828 #: ../lib/RssPressReview/RssPressReview.php:280 3971 3829 msgid "addSourceFeed(): url is empty!" 3972 3830 msgstr "addSourceFeed(): URL ist leer!" 3973 3831 3974 3832 #: ../lib/RssPressReview/RssPressReview.php:349 3833 #: ../lib/RssPressReview/RssPressReview.php:347 3975 3834 msgid "computePublicationInterval(): Missing feed!" 3976 3835 msgstr "computePublicationInterval(): RSS-Feed fehlt!" 3977 3836 3978 3837 #: ../lib/RssPressReview/RssPressReview.php:361 3838 #: ../lib/RssPressReview/RssPressReview.php:359 3979 3839 msgid "computePublicationInterval(): uasort() failed" 3980 3840 msgstr "computePublicationInterval(): uasort() fehlgeschlagen" 3981 3841 3982 3842 #: ../lib/RssPressReview/RssPressReview.php:547 3843 #: ../lib/RssPressReview/RssPressReview.php:545 3983 3844 msgid "get_rss_info(): Feed missing" 3984 3845 msgstr "get_rss_info(): RSS-Feed fehlt" 3985 3846 3986 3847 #: ../lib/RssPressReview/RssPressReview.php:559 3848 #: ../lib/RssPressReview/RssPressReview.php:557 3987 3849 msgid "get_rss_info(): uasort() failed!" 3988 3850 msgstr "get_rss_info(): uasort() fehlgeschlagen!" 3989 3851 3990 3852 #: ../lib/RssPressReview/RssPressReview.php:734 3991 #: ../lib/RssPressReview/RssPressReview.php:7 303853 #: ../lib/RssPressReview/RssPressReview.php:728 3992 3854 msgid "Source: " 3993 3855 msgstr "Quelle: " 3994 3856 3995 3857 #: ../lib/RssPressReview/RssPressReview.php:764 3996 #: ../lib/RssPressReview/RssPressReview.php:7 603858 #: ../lib/RssPressReview/RssPressReview.php:758 3997 3859 msgid "Today" 3998 3860 msgstr "Heute" … … 4077 3939 #: ../classes/Content/HTMLeditor/HTMLeditor.php:379 4078 3940 #: ../classes/Content/HTMLeditor/HTMLeditor.php:498 4079 #: ../classes/Content/HTMLeditor/HTMLeditor.php: 4973941 #: ../classes/Content/HTMLeditor/HTMLeditor.php:208 4080 3942 msgid "FCKeditor is not installed" 4081 3943 msgstr "FCKeditor ist nicht installiert" 4082 3944 4083 #: ../classes/Content.php:460 ../classes/Content.php:441 4084 #: ../classes/Content.php:445 3945 #: ../classes/Content.php:460 ../classes/Content.php:449 4085 3946 #, php-format 4086 3947 msgid "Add a %s" … … 4094 3955 #: ../classes/Dependencies.php:164 ../classes/Dependencies.php:181 4095 3956 #: ../classes/Dependencies.php:198 ../classes/Dependencies.php:214 3957 #: ../classes/Dependencies.php:173 ../classes/Dependencies.php:190 3958 #: ../classes/Dependencies.php:207 ../classes/Dependencies.php:223 4096 3959 #, php-format 4097 3960 msgid "Component %s is not installed (not found in %s)" … … 4115 3978 msgstr "Deutsch" 4116 3979 4117 #: ../classes/LocaleList.php:74 3980 #: ../classes/LocaleList.php:74 ../classes/LocaleList.php:75 4118 3981 msgid "Portuguese" 4119 3982 msgstr "Portugiesisch" … … 4139 4002 4140 4003 #: ../classes/Network.php:1149 ../classes/Network.php:1300 4141 #: ../classes/Network.php:12 54 ../classes/Network.php:12534004 #: ../classes/Network.php:1270 4142 4005 msgid "Network creation date" 4143 4006 msgstr "Eröffnungsdatum des Netzwerks" 4144 4007 4145 4008 #: ../classes/Network.php:1287 ../classes/Network.php:1438 4146 #: ../classes/Network.php:140 1 ../classes/Network.php:14004009 #: ../classes/Network.php:1407 4147 4010 msgid "Center latitude for your the area of your wireless network" 4148 4011 msgstr "Mittlerer Breitengrad Ihres WLAN-Netzwerkes" 4149 4012 4150 4013 #: ../classes/Network.php:1294 ../classes/Network.php:1445 4151 #: ../classes/Network.php:14 08 ../classes/Network.php:14074014 #: ../classes/Network.php:1414 4152 4015 msgid "Center longitude for your the area of your wireless network" 4153 4016 msgstr "Mittlerer Längengrad Ihres WLAN-Netzwerkes" 4154 4017 4155 4018 #: ../classes/Network.php:1301 ../classes/Network.php:1452 4156 #: ../classes/Network.php:14 15 ../classes/Network.php:14144019 #: ../classes/Network.php:1421 4157 4020 msgid "Zoomlevel of the Google Map for your the area of your wireless network" 4158 4021 msgstr "Zoomstufe der angezeigten Goggle Map" 4159 4022 4160 4023 #: ../classes/Network.php:1308 ../classes/Network.php:1459 4161 #: ../classes/Network.php:142 2 ../classes/Network.php:14214024 #: ../classes/Network.php:1428 4162 4025 msgid "Default Google Map type for your the area of your wireless network" 4163 4026 msgstr "Voreingestellter Kartentyp" 4164 4027 4165 4028 #: ../classes/Network.php:1492 ../classes/Network.php:1643 4166 #: ../classes/Network.php:157 1 ../classes/Network.php:15694029 #: ../classes/Network.php:1572 4167 4030 msgid "" 4168 4031 "Cannot delete default network, create another one and select it before " … … 4184 4047 msgstr "Es wurde kein Einsatzstatus in der Datenbank gefunden" 4185 4048 4186 #: ../classes/Node.php:857 ../classes/Node.php:88 34049 #: ../classes/Node.php:857 ../classes/Node.php:889 4187 4050 msgid "Information about the node" 4188 4051 msgstr "Informationen über den Hotspot" 4189 4052 4190 #: ../classes/Node.php:908 ../classes/Node.php:9 344053 #: ../classes/Node.php:908 ../classes/Node.php:940 4191 4054 msgid "Yes" 4192 4055 msgstr "Ja" 4193 4056 4194 #: ../classes/Node.php:920 ../classes/Node.php:9 464057 #: ../classes/Node.php:920 ../classes/Node.php:952 4195 4058 msgid "Node configuration" 4196 4059 msgstr "Hotspot-Konfiguration" 4197 4060 4198 #: ../classes/Node.php:958 ../classes/Node.php:9 844061 #: ../classes/Node.php:958 ../classes/Node.php:990 4199 4062 msgid "Access rights" 4200 4063 msgstr "Zugriffsrechte" … … 4208 4071 msgstr "Auf der Portalseite" 4209 4072 4210 #: ../classes/Node.php:976 ../classes/Node.php: 992 ../classes/Node.php:9974073 #: ../classes/Node.php:976 ../classes/Node.php:814 4211 4074 msgid "Node content" 4212 4075 msgstr "Inhalte des Hotspots" … … 4215 4078 #: ../classes/NodeLists/NodeListRSS.php:167 4216 4079 #: ../classes/NodeLists/NodeListRSS.php:256 4080 #: ../classes/NodeLists/NodeListHTML.php:240 4217 4081 msgid "Newest Hotspots" 4218 4082 msgstr "Neuste Hotspots" … … 4262 4126 msgstr "Neuen Server mit folgender ID hinzufügen" 4263 4127 4264 #: ../classes/Server.php:673 ../classes/Server.php:677 4265 #: ../classes/Server.php:678 4128 #: ../classes/Server.php:673 ../classes/Server.php:678 4266 4129 msgid "Server management" 4267 4130 msgstr "Serververwaltung" 4268 4131 4269 #: ../classes/Server.php:681 ../classes/Server.php:685 4270 #: ../classes/Server.php:684 4132 #: ../classes/Server.php:681 ../classes/Server.php:684 4271 4133 msgid "Server ID" 4272 4134 msgstr "Server ID" 4273 4135 4274 #: ../classes/Server.php:703 ../classes/Server.php:707 4275 #: ../classes/Server.php:706 4136 #: ../classes/Server.php:703 ../classes/Server.php:706 4276 4137 msgid "Server name" 4277 4138 msgstr "Servername" 4278 4139 4279 #: ../classes/Server.php:714 ../classes/Server.php:718 4280 #: ../classes/Server.php:717 4140 #: ../classes/Server.php:714 ../classes/Server.php:717 4281 4141 msgid "Hostname" 4282 4142 msgstr "Hostname" 4283 4143 4284 #: ../classes/Server.php:730 ../classes/Server.php:734 4285 #: ../classes/Server.php:733 4144 #: ../classes/Server.php:730 ../classes/Server.php:733 4286 4145 msgid "Is this server the default server?" 4287 4146 msgstr "Ist dies der standardmäßige Server?" 4288 4147 4289 #: ../classes/Server.php:746 ../classes/Server.php:750 4290 #: ../classes/Server.php:749 4148 #: ../classes/Server.php:746 ../classes/Server.php:749 4291 4149 msgid "Use SSL on this server?" 4292 4150 msgstr "SSL auf diesem Server verwenden?" 4293 4151 4294 #: ../classes/Server.php:758 ../classes/Server.php:762 4295 #: ../classes/Server.php:761 4152 #: ../classes/Server.php:758 ../classes/Server.php:761 4296 4153 msgid "Google public API key" 4297 4154 msgstr "Google API Schlüssel" … … 4329 4186 msgstr "" 4330 4187 4331 #: smarty.txt:40 smarty.txt: 41 smarty.txt:55 smarty.txt:224188 #: smarty.txt:40 smarty.txt:22 4332 4189 msgid "Logged in as" 4333 4190 msgstr "Angemeldet als" … … 4338 4195 #: ../classes/Content/Langstring/Langstring.php:330 4339 4196 #: ../classes/Content/Langstring/Langstring.php:390 smarty.txt:70 4340 #: smarty.txt:47 ../classes/Content/Langstring/Langstring.php:323 4341 #: ../classes/Content/Langstring/Langstring.php:381 smarty.txt:61 4342 #: smarty.txt:24 4197 #: smarty.txt:47 ../classes/Content/HTMLeditor/HTMLeditor.php:134 4198 #: ../classes/Content/HTMLeditor/HTMLeditor.php:174 4199 #: ../classes/Content/Langstring/Langstring.php:324 4200 #: ../classes/Content/Langstring/Langstring.php:382 smarty.txt:24 4343 4201 msgid "Language" 4344 4202 msgstr "Sprache" 4345 4203 4346 #: smarty.txt:46 smarty.txt:68 smarty.txt:71 smarty.txt:48 smarty.txt:41 4347 #: smarty.txt:25 4204 #: smarty.txt:46 smarty.txt:68 smarty.txt:71 smarty.txt:48 smarty.txt:25 4348 4205 msgid "User administration" 4349 4206 msgstr "Benutzerverwaltung" 4350 4207 4351 4208 #: smarty.txt:50 smarty.txt:72 smarty.txt:75 smarty.txt:53 smarty.txt:55 4352 #: smarty.txt: 46 smarty.txt:264209 #: smarty.txt:26 4353 4210 msgid "Node administration" 4354 4211 msgstr "Hotspotverwaltung" 4355 4212 4356 #: smarty.txt:52 smarty.txt:74 smarty.txt:77 smarty.txt:56 smarty.txt:55 4357 #: smarty.txt:48 4213 #: smarty.txt:52 smarty.txt:74 smarty.txt:77 smarty.txt:56 4358 4214 msgid "Nodes" 4359 4215 msgstr "Hotspots" 4360 4216 4361 #: smarty.txt:53 smarty.txt:75 smarty.txt:78 smarty.txt:57 smarty.txt:56 4362 #: smarty.txt:49 4217 #: smarty.txt:53 smarty.txt:75 smarty.txt:78 smarty.txt:57 4363 4218 msgid "Add new Node" 4364 4219 msgstr "Neuen Hotspot hinzufügen" 4365 4220 4366 #: smarty.txt:54 smarty.txt:76 smarty.txt:79 smarty.txt:58 smarty.txt:57 4367 #: smarty.txt:50 smarty.txt:27 4221 #: smarty.txt:54 smarty.txt:76 smarty.txt:79 smarty.txt:58 smarty.txt:27 4368 4222 msgid "Network administration" 4369 4223 msgstr "Netzwerkverwaltung" 4370 4224 4371 #: smarty.txt:55 smarty.txt:77 smarty.txt:80 smarty.txt:59 smarty.txt:58 4372 #: smarty.txt:51 4225 #: smarty.txt:55 smarty.txt:77 smarty.txt:80 smarty.txt:59 4373 4226 msgid "Networks" 4374 4227 msgstr "Netzwerke" 4375 4228 4376 #: smarty.txt:56 smarty.txt:78 smarty.txt:81 smarty.txt:60 smarty.txt:59 4377 #: smarty.txt:52 smarty.txt:28 4229 #: smarty.txt:56 smarty.txt:78 smarty.txt:81 smarty.txt:60 smarty.txt:28 4378 4230 msgid "Server administration" 4379 4231 msgstr "Serververwaltung" 4380 4232 4381 #: smarty.txt:57 smarty.txt:79 smarty.txt:82 smarty.txt:61 smarty.txt:60 4382 #: smarty.txt:53 4233 #: smarty.txt:57 smarty.txt:79 smarty.txt:82 smarty.txt:61 4383 4234 msgid "Servers" 4384 4235 msgstr "Server" 4385 4236 4386 4237 #: smarty.txt:58 smarty.txt:80 smarty.txt:83 smarty.txt:62 4387 #: ../classes/Content.php:534 smarty.txt:61 ../classes/Content.php:539 4388 #: smarty.txt:54 4238 #: ../classes/Content.php:543 4389 4239 msgid "Content" 4390 4240 msgstr "Inhalt" … … 4392 4242 #: smarty.txt:60 smarty.txt:66 smarty.txt:79 smarty.txt:82 smarty.txt:88 4393 4243 #: smarty.txt:101 smarty.txt:85 smarty.txt:91 smarty.txt:104 4244 #: ../classes/NodeLists/NodeListPDF.php:974 4245 #: ../classes/NodeLists/NodeListPDF.php:975 4246 #: ../classes/NodeLists/NodeListPDF.php:977 4247 #: ../classes/NodeLists/NodeListPDF.php:1065 smarty.txt:71 4248 #: ../classes/NodeLists/NodeListPDF.php:998 4249 #: ../classes/NodeLists/NodeListPDF.php:999 4250 #: ../classes/NodeLists/NodeListPDF.php:1001 4251 #: ../classes/NodeLists/NodeListPDF.php:1086 4394 4252 msgid "Hotspots" 4395 4253 msgstr "Hotspots" 4396 4254 4397 #: smarty.txt:63 smarty.txt:85 smarty.txt:88 4255 #: smarty.txt:63 smarty.txt:85 smarty.txt:88 smarty.txt:66 smarty.txt:35 4398 4256 msgid "Get this list as a RSS feed" 4399 4257 msgstr "Diese Liste als RSS-Feed empfangen" … … 4407 4265 msgstr "Willkommen bei" 4408 4266 4409 #: smarty.txt:93 smarty.txt:115 smarty.txt:118 smarty.txt:92 smarty.txt:95 4410 #: smarty.txt:126 4267 #: smarty.txt:93 smarty.txt:115 smarty.txt:118 smarty.txt:92 4411 4268 msgid "The" 4412 4269 msgstr "Das" 4413 4270 4414 #: smarty.txt:94 smarty.txt:116 smarty.txt:119 smarty.txt:93 smarty.txt:96 4415 #: smarty.txt:127 4271 #: smarty.txt:94 smarty.txt:116 smarty.txt:119 smarty.txt:93 4416 4272 msgid "network currently has" 4417 4273 msgstr "Netzwerk hat" 4418 4274
