| 1 | <?php |
|---|
| 2 | ############################################################################### |
|---|
| 3 | # Gregarius - A PHP based RSS aggregator. |
|---|
| 4 | # Copyright (C) 2003 - 2006 Marco Bonetti |
|---|
| 5 | # |
|---|
| 6 | ############################################################################### |
|---|
| 7 | # This program is free software and open source software; you can redistribute |
|---|
| 8 | # it and/or modify it under the terms of the GNU General Public License as |
|---|
| 9 | # published by the Free Software Foundation; either version 2 of the License, |
|---|
| 10 | # or (at your option) any later version. |
|---|
| 11 | # |
|---|
| 12 | # This program is distributed in the hope that it will be useful, but WITHOUT |
|---|
| 13 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|---|
| 14 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
|---|
| 15 | # more details. |
|---|
| 16 | # |
|---|
| 17 | # You should have received a copy of the GNU General Public License along |
|---|
| 18 | # with this program; if not, write to the Free Software Foundation, Inc., |
|---|
| 19 | # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or visit |
|---|
| 20 | # http://www.gnu.org/licenses/gpl.html |
|---|
| 21 | # |
|---|
| 22 | ############################################################################### |
|---|
| 23 | # E-mail: mbonetti at gmail dot com |
|---|
| 24 | # Web page: http://gregarius.net/ |
|---|
| 25 | # |
|---|
| 26 | ############################################################################### |
|---|
| 27 | |
|---|
| 28 | /// Language: German |
|---|
| 29 | define ('LOCALE_WINDOWS','deu'); |
|---|
| 30 | define ('LOCALE_LINUX','de_DE'); |
|---|
| 31 | |
|---|
| 32 | define ('LBL_ITEM','Artikel'); |
|---|
| 33 | define ('LBL_ITEMS','Artikel'); |
|---|
| 34 | define ('LBL_H2_SEARCH_RESULTS_FOR', "%d Artikel gefunden für %s"); |
|---|
| 35 | define ('LBL_H2_SEARCH_RESULT_FOR',"%d passt für %s"); |
|---|
| 36 | define ('LBL_H2_SEARCH', 'Suche %d Artikel'); |
|---|
| 37 | define ('LBL_SEARCH_SEARCH_QUERY','Suchbegriffe:'); |
|---|
| 38 | define ('LBL_SEARCH_MATCH_OR', 'Einige Begriffe (ODER)'); |
|---|
| 39 | define ('LBL_SEARCH_MATCH_AND', 'Alle Begriffe (UND)'); |
|---|
| 40 | define ('LBL_SEARCH_MATCH_EXACT', 'Exakte Übereinstimmung'); |
|---|
| 41 | define ('LBL_SEARCH_CHANNELS', 'Feed:'); |
|---|
| 42 | define ('LBL_SEARCH_ORDER_DATE_CHANNEL','Sortiert nach Datum und Feed'); |
|---|
| 43 | define ('LBL_SEARCH_ORDER_CHANNEL_DATE','Sortiert nach Feed und Datum'); |
|---|
| 44 | define ('LBL_SEARCH_RESULTS_PER_PAGE','Resultate pro Seite:'); |
|---|
| 45 | define ('LBL_SEARCH_RESULTS','Resultate: '); |
|---|
| 46 | define ('LBL_H2_UNREAD_ITEMS','Ungelesene Artikel (<span id="ucnt">%d</span>)'); |
|---|
| 47 | define ('LBL_H2_RECENT_ITEMS', "Kürzliche Artikel"); |
|---|
| 48 | define ('LBL_H2_CHANNELS','Feeds'); |
|---|
| 49 | define ('LBL_H5_READ_UNREAD_STATS','%d Artikel, %d ungelesen'); |
|---|
| 50 | define ('LBL_ITEMCOUNT_PF', '<strong>%d</strong> Artikel (<strong>%d</strong> ungelesen) in <strong>%d</strong> Feeds'); |
|---|
| 51 | define ('LBL_TAGCOUNT_PF', '<strong>%d</strong> markierte Artikel, in <strong>%d</strong> Tags'); |
|---|
| 52 | define ('LBL_UNREAD_PF', '<strong id="%s" style="%s">(%d ungelesen)</strong>'); |
|---|
| 53 | define ('LBL_UNREAD','ungelesen'); |
|---|
| 54 | |
|---|
| 55 | define ('LBL_FTR_POWERED_BY', " powered by "); |
|---|
| 56 | define ('LBL_ALL','Alle'); |
|---|
| 57 | define ('LBL_NAV_HOME','<span>H</span>ome'); |
|---|
| 58 | define ('LBL_NAV_UPDATE', '<span>E</span>rneuern'); |
|---|
| 59 | define ('LBL_NAV_CHANNEL_ADMIN', 'A<span>d</span>min'); |
|---|
| 60 | define ('LBL_NAV_SEARCH', "<span>S</span>uchen"); |
|---|
| 61 | define ('LBL_SEARCH_GO', 'Suchen'); |
|---|
| 62 | |
|---|
| 63 | define ('LBL_POSTED', 'Veröffentlicht: '); |
|---|
| 64 | define ('LBL_FETCHED','geholt: '); |
|---|
| 65 | define ('LBL_BY', ' by '); |
|---|
| 66 | |
|---|
| 67 | define ('LBL_AND','und'); |
|---|
| 68 | |
|---|
| 69 | define ('LBL_TITLE_UPDATING','Aktualisiere'); |
|---|
| 70 | define ('LBL_TITLE_SEARCH','Suchen'); |
|---|
| 71 | |
|---|
| 72 | |
|---|
| 73 | define ('LBL_HOME_FOLDER','Root'); |
|---|
| 74 | define ('LBL_VISIT', '(besuchen)'); |
|---|
| 75 | define ('LBL_COLLAPSE','[-] verringern'); |
|---|
| 76 | define ('LBL_EXPAND','[+] erweitern'); |
|---|
| 77 | define ('LBL_PL_FOR','Permalink für '); |
|---|
| 78 | |
|---|
| 79 | define ('LBL_UPDATE_CHANNEL','Feed'); |
|---|
| 80 | define ('LBL_UPDATE_STATUS','Status'); |
|---|
| 81 | define ('LBL_UPDATE_UNREAD','Neue Begriffe'); |
|---|
| 82 | |
|---|
| 83 | define ('LBL_UPDATE_STATUS_OK','OK (HTTP 200)'); |
|---|
| 84 | define ('LBL_UPDATE_STATUS_CACHED', 'OK (Local cache)'); |
|---|
| 85 | define ('LBL_UPDATE_STATUS_ERROR','ERROR'); |
|---|
| 86 | define ('LBL_UPDATE_H2','Aktualisiere %d Feeds...'); |
|---|
| 87 | define ('LBL_UPDATE_CACHE_TIMEOUT','HTTP Zeitüberschreitung (Local cache)'); |
|---|
| 88 | define ('LBL_UPDATE_NOT_MODIFIED','OK (304 Not modified)'); |
|---|
| 89 | define ('LBL_UPDATE_NOT_FOUND','404 Not Found (Local cache)'); |
|---|
| 90 | // admin |
|---|
| 91 | define ('LBL_ADMIN_EDIT', 'bearbeiten'); |
|---|
| 92 | define ('LBL_ADMIN_DELETE', 'löschen'); |
|---|
| 93 | define ('LBL_ADMIN_DELETE2', 'Löschen'); |
|---|
| 94 | define ('LBL_ADMIN_RENAME', 'Umbenennen zu...'); |
|---|
| 95 | define ('LBL_ADMIN_CREATE', 'Erstellen'); |
|---|
| 96 | define ('LBL_ADMIN_IMPORT','Import'); |
|---|
| 97 | define ('LBL_ADMIN_EXPORT','Export'); |
|---|
| 98 | define ('LBL_ADMIN_DEFAULT','Standard'); |
|---|
| 99 | define ('LBL_ADMIN_ADD','Hinzufügen'); |
|---|
| 100 | define ('LBL_ADMIN_YES', 'Ja'); |
|---|
| 101 | define ('LBL_ADMIN_NO', 'Nein'); |
|---|
| 102 | define ('LBL_ADMIN_FOLDERS','Ordner:'); |
|---|
| 103 | define ('LBL_ADMIN_CHANNELS','Feeds:'); |
|---|
| 104 | define ('LBL_ADMIN_OPML','OPML:'); |
|---|
| 105 | define ('LBL_ADMIN_ITEM','Artikel:'); |
|---|
| 106 | define ('LBL_ADMIN_CONFIG','Konfiguration:'); |
|---|
| 107 | define ('LBL_ADMIN_OK','OK'); |
|---|
| 108 | define ('LBL_ADMIN_CANCEL','Abbrechen'); |
|---|
| 109 | define ('LBL_ADMIN_LOGOUT','Abmelden'); |
|---|
| 110 | |
|---|
| 111 | define ('LBL_ADMIN_OPML_IMPORT','Import'); |
|---|
| 112 | define ('LBL_ADMIN_OPML_EXPORT','Export'); |
|---|
| 113 | define ('LBL_ADMIN_OPML_IMPORT_OPML','Import OPML:'); |
|---|
| 114 | define ('LBL_ADMIN_OPML_EXPORT_OPML','Export OPML:'); |
|---|
| 115 | define ('LBL_ADMIN_OPML_IMPORT_FROM_URL','... aus URL:'); |
|---|
| 116 | define ('LBL_ADMIN_OPML_IMPORT_FROM_FILE','... vom File:'); |
|---|
| 117 | define ('LBL_ADMIN_FILE_IMPORT','Import file'); |
|---|
| 118 | |
|---|
| 119 | define ('LBL_ADMIN_IN_FOLDER','zu Ordner:'); |
|---|
| 120 | //define ('LBL_ADMIN_SUBMIT_CHANGES', 'Aenderungen aktivieren'); |
|---|
| 121 | define ('LBL_ADMIN_SUBMIT_CHANGES', 'Änderungen aktivieren'); |
|---|
| 122 | define ('LBL_ADMIN_PREVIEW_CHANGES','Vorschau'); |
|---|
| 123 | define ('LBL_ADMIN_CHANNELS_HEADING_TITLE','Titel'); |
|---|
| 124 | define ('LBL_ADMIN_CHANNELS_HEADING_FOLDER','Ordner'); |
|---|
| 125 | define ('LBL_ADMIN_CHANNELS_HEADING_DESCR','Beschreibung'); |
|---|
| 126 | define ('LBL_ADMIN_CHANNELS_HEADING_MOVE','Bewegen'); |
|---|
| 127 | define ('LBL_ADMIN_CHANNELS_HEADING_ACTION','Aktion'); |
|---|
| 128 | define ('LBL_ADMIN_CHANNELS_HEADING_FLAGS','Flags'); |
|---|
| 129 | define ('LBL_ADMIN_CHANNELS_HEADING_KEY','Schlüssel'); |
|---|
| 130 | define ('LBL_ADMIN_CHANNELS_HEADING_VALUE','Wert'); |
|---|
| 131 | define ('LBL_ADMIN_CHANNELS_ADD','Feed:'); |
|---|
| 132 | define ('LBL_ADMIN_FOLDERS_ADD','Ordner hinzufügen:'); |
|---|
| 133 | define ('LBL_ADMIN_CHANNEL_ICON','Gezeigte Favoriten-Zeichen:'); |
|---|
| 134 | define ('LBL_CLEAR_FOR_NONE','(Leer lassen für kein Icon)'); |
|---|
| 135 | |
|---|
| 136 | define ('LBL_ADMIN_CONFIG_VALUE','Wert für'); |
|---|
| 137 | |
|---|
| 138 | define ('LBL_ADMIN_PLUGINS_HEADING_NAME','Name'); |
|---|
| 139 | define ('LBL_ADMIN_PLUGINS_HEADING_AUTHOR','Autor'); |
|---|
| 140 | define ('LBL_ADMIN_PLUGINS_HEADING_VERSION','Version'); |
|---|
| 141 | define ('LBL_ADMIN_PLUGINS_HEADING_DESCRIPTION','Beschreibung'); |
|---|
| 142 | define ('LBL_ADMIN_PLUGINS_HEADING_ACTION','Aktive'); |
|---|
| 143 | |
|---|
| 144 | |
|---|
| 145 | define ('LBL_ADMIN_CHANNEL_EDIT_CHANNEL','Den Feed bearbeiten '); |
|---|
| 146 | define ('LBL_ADMIN_CHANNEL_NAME','Titel:'); |
|---|
| 147 | define ('LBL_ADMIN_CHANNEL_RSS_URL','RSS URL:'); |
|---|
| 148 | define ('LBL_ADMIN_CHANNEL_SITE_URL','Seiten URL:'); |
|---|
| 149 | define ('LBL_ADMIN_CHANNEL_FOLDER','In Ordner:'); |
|---|
| 150 | define ('LBL_ADMIN_CHANNEL_DESCR','Beschreibung:'); |
|---|
| 151 | define ('LBL_ADMIN_FOLDER_NAME','Ordnername:'); |
|---|
| 152 | define ('LBL_ADMIN_CHANNEL_PRIVATE','Dieser Feed ist <strong>privat</strong>, nur Admins sehen ihn.'); |
|---|
| 153 | define ('LBL_ADMIN_CHANNEL_DELETED','Dieser Feed ist <strong>veraltet</strong>, er wird nicht mehr aktualisiert und wird nicht mehr in der Feedspalte sichtbar sein.'); |
|---|
| 154 | |
|---|
| 155 | define ('LBL_ADMIN_ARE_YOU_SURE', "Wollen sie den Ordner '%s' wirklich löschen?"); |
|---|
| 156 | define ('LBL_ADMIN_ARE_YOU_SURE_DEFAULT','Bist du sicher, dass du den Wert für %s auf den Standard zurücksetzen willst \'%s\'?'); |
|---|
| 157 | define ('LBL_ADMIN_TRUE','Wahr'); |
|---|
| 158 | define ('LBL_ADMIN_FALSE','Falsch'); |
|---|
| 159 | define ('LBL_ADMIN_MOVE_UP','↑'); |
|---|
| 160 | define ('LBL_ADMIN_MOVE_DOWN','↓'); |
|---|
| 161 | define ('LBL_ADMIN_ADD_CHANNEL_EXPL','(Die URL von einem RSS Feed eintragen oder die Webseite, welche den gewünschten Feed enthält )'); |
|---|
| 162 | define ('LBL_ADMIN_FEEDS','Die folgenden Feeds wurden in <a href="%s">%s</a> gefunden, welchen wollen sie abonnieren?'); |
|---|
| 163 | |
|---|
| 164 | define ('LBL_ADMIN_PRUNE_OLDER','Lösche Artikel älter als '); |
|---|
| 165 | define ('LBL_ADMIN_PRUNE_DAYS','Tage'); |
|---|
| 166 | define ('LBL_ADMIN_PRUNE_MONTHS','Monate'); |
|---|
| 167 | define ('LBL_ADMIN_PRUNE_YEARS','Jahre'); |
|---|
| 168 | define ('LBL_ADMIN_PRUNE_KEEP','Behalte die neuesten Artikel: '); |
|---|
| 169 | define ('LBL_ADMIN_PRUNE_INCLUDE_STICKY','Lösche auch Sticky Artikel: '); |
|---|
| 170 | define ('LBL_ADMIN_PRUNE_EXCLUDE_TAGS','Markierte Artikel nicht löschen... '); |
|---|
| 171 | define ('LBL_ADMIN_ALLTAGS_EXPL','(Trage <strong>*</strong> ein, um alle markierten Artikel zu behalten)'); |
|---|
| 172 | |
|---|
| 173 | define ('LBL_ADMIN_ABOUT_TO_DELETE','Achtung: es werden %s Artikel (von %s) gelöscht'); |
|---|
| 174 | define ('LBL_ADMIN_PRUNING','Bereinigen'); |
|---|
| 175 | define ('LBL_ADMIN_DOMAIN_FOLDER_LBL','Ordner'); |
|---|
| 176 | define ('LBL_ADMIN_DOMAIN_CHANNEL_LBL','Feeds'); |
|---|
| 177 | define ('LBL_ADMIN_DOMAIN_ITEM_LBL','Artikel'); |
|---|
| 178 | define ('LBL_ADMIN_DOMAIN_CONFIG_LBL','Konfiguration'); |
|---|
| 179 | define ('LBL_ADMIN_DOMAIN_LBL_OPML_LBL','opml'); |
|---|
| 180 | define ('LBL_ADMIN_BOOKMARKET_LABEL','Bookmarklet indizieren [<a href="http://www.squarefree.com/bookmarklets/">?</a>]:'); |
|---|
| 181 | define ('LBL_ADMIN_BOOKMARKLET_TITLE','Gregarius abonnieren!'); |
|---|
| 182 | |
|---|
| 183 | |
|---|
| 184 | define ('LBL_ADMIN_ERROR_NOT_AUTHORIZED', |
|---|
| 185 | "<h1>Nicht berechtigt!</h1>\nDu bist nicht berechtigt, auf die Admin Umgebung zuzugreifen.\n" |
|---|
| 186 | ."Bitte folge <a href=\"%s\">diesem Link</a> zurück zur Hauptseite.\n" |
|---|
| 187 | ."Schönen Tag noch!"); |
|---|
| 188 | |
|---|
| 189 | define ('LBL_ADMIN_ERROR_PRUNING_PERIOD','Ungültige Bereinigungsperiode'); |
|---|
| 190 | define ('LBL_ADMIN_ERROR_NO_PERIOD','Oops, kein Zeitraum angegeben'); |
|---|
| 191 | define ('LBL_ADMIN_BAD_RSS_URL',"Entschuldige, ich kann diese URL nicht verarbeiten: '%s'"); |
|---|
| 192 | define ('LBL_ADMIN_ERROR_CANT_DELETE_HOME_FOLDER',"Du kannst den " . LBL_HOME_FOLDER . " Ordner nicht löschen"); |
|---|
| 193 | define ('LBL_ADMIN_CANT_RENAME',"Du kannst den Ordner '%s' nicht umbenennen, da ein solcher schon existiert."); |
|---|
| 194 | define('LBL_ADMIN_ERROR_CANT_CREATE',"Der Ordner '%s' existiert schon!"); |
|---|
| 195 | |
|---|
| 196 | define ('LBL_TAG_TAGS','Markierungen'); |
|---|
| 197 | define ('LBL_TAG_EDIT','Bearbeiten'); |
|---|
| 198 | define ('LBL_TAG_SUBMIT','Auslösen'); |
|---|
| 199 | define ('LBL_TAG_CANCEL','Abbrechen'); |
|---|
| 200 | define ('LBL_TAG_SUBMITTING','...'); |
|---|
| 201 | define ('LBL_TAG_ERROR_NO_TAG',"Oops! Markierte Artikel wurden nicht gefunden «%s»."); |
|---|
| 202 | define ('LBL_TAG_ALL_TAGS','Alle Markierungen'); |
|---|
| 203 | define ('LBL_TAG_TAGGED','markiert'); |
|---|
| 204 | define ('LBL_TAG_TAGGEDP','markiert'); |
|---|
| 205 | define ('LBL_TAG_SUGGESTIONS','Vorschläge'); |
|---|
| 206 | define ('LBL_TAG_SUGGESTIONS_NONE','keine Vorschläge'); |
|---|
| 207 | define ('LBL_TAG_RELATED','Ähnliche Markierungen: '); |
|---|
| 208 | |
|---|
| 209 | define ('LBL_SHOW_UNREAD_ALL_SHOW','Artikel anzeigen: '); |
|---|
| 210 | define ('LBL_SHOW_UNREAD_ALL_UNREAD_ONLY','Nur Ungelesene'); |
|---|
| 211 | define ('LBL_SHOW_UNREAD_ALL_READ_AND_UNREAD','Gelesene und Ungelesene'); |
|---|
| 212 | |
|---|
| 213 | define ('LBL_STATE_UNREAD','Ungelesen (Setzt den Status des Artikels auf gelesen/ungelesen)'); |
|---|
| 214 | define ('LBL_STATE_STICKY','Sticky (Wird nicht gelöscht beim Bereinigen von Artikeln)'); |
|---|
| 215 | define ('LBL_STATE_PRIVATE','Privat (Nur Administratoren können private Einträge sehen)'); |
|---|
| 216 | define ('LBL_STICKY','Sticky'); |
|---|
| 217 | define ('LBL_DEPRECATED','Veraltet'); |
|---|
| 218 | define ('LBL_PRIVATE','Privat'); |
|---|
| 219 | define ('LBL_ADMIN_STATE','Status:'); |
|---|
| 220 | define ('LBL_ADMIN_STATE_SET','Ändern'); |
|---|
| 221 | define ('LBL_ADMIN_IM_SURE','Ich bin sicher!'); |
|---|
| 222 | // new in 0.5.1: |
|---|
| 223 | define ('LBL_LOGGED_IN_AS','Angemeldet als <strong>%s</strong>'); |
|---|
| 224 | define ('LBL_NOT_LOGGED_IN','Nicht angemeldet'); |
|---|
| 225 | define ('LBL_LOG_OUT','Abmelden'); |
|---|
| 226 | define ('LBL_LOG_IN','Anmelden'); |
|---|
| 227 | |
|---|
| 228 | define ('LBL_ADMIN_OPML_IMPORT_AND','Import neuer Feeds und:'); |
|---|
| 229 | define ('LBL_ADMIN_OPML_IMPORT_WIPE','... ersetzen aller existierender Feeds und Artikel.'); |
|---|
| 230 | define ('LBL_ADMIN_OPML_IMPORT_FOLDER','... zum Ordner hinzufügen:'); |
|---|
| 231 | define ('LBL_ADMIN_OPML_IMPORT_MERGE','... verbinde diese mit den existierenden Ordnern.'); |
|---|
| 232 | |
|---|
| 233 | define ('LBL_ADMIN_OPML_IMPORT_FEED_INFO','Füge %s zu %s... '); |
|---|
| 234 | |
|---|
| 235 | define ('LBL_TAG_FOLDERS','Kategorien'); |
|---|
| 236 | define ('LBL_SIDE_ITEMS','(%d Artikel)'); |
|---|
| 237 | define ('LBL_SIDE_UNREAD_FEEDS','(%d ungelesene in %d Feeds)'); |
|---|
| 238 | define ('LBL_CATCNT_PF', '<strong>%d</strong> Feeds in <strong>%d</strong> Kategorien'); |
|---|
| 239 | |
|---|
| 240 | define ('LBL_RATING','Bewertung:'); |
|---|
| 241 | |
|---|
| 242 | define('LBL_ENCLOSURE', 'Enclosure (Einschlüsse):'); |
|---|
| 243 | define('LBL_DOWNLOAD', 'download'); |
|---|
| 244 | define('LBL_PLAY', 'abspielen'); |
|---|
| 245 | |
|---|
| 246 | define('LBL_FOOTER_LAST_MODIF_NEVER', 'noch nicht'); |
|---|
| 247 | define ('LBL_ADMIN_DASHBOARD','Dashboard'); |
|---|
| 248 | |
|---|
| 249 | |
|---|
| 250 | define ('LBL_ADMIN_MUST_SET_PASS','<p>Es wurde noch kein Administrator bestimmt!</p>' |
|---|
| 251 | .'<p>Bitte bestimme einen Administrator-Benutzernamen und -Passwort!</p>'); |
|---|
| 252 | define ('LBL_USERNAME','Benutzername'); |
|---|
| 253 | define ('LBL_PASSWORD','Passwort'); |
|---|
| 254 | define ('LBL_PASSWORD2','Passwort (nochmals)'); |
|---|
| 255 | define ('LBL_ADMIN_LOGIN','Bitte anmelden'); |
|---|
| 256 | define ('LBL_ADMIN_PASS_NO_MATCH','Die Passworte sind falsch!'); |
|---|
| 257 | |
|---|
| 258 | define ('LBL_ADMIN_PLUGINS','Plugins'); |
|---|
| 259 | define ('LBL_ADMIN_PLUGINS_HEADING_OPTIONS','Optionen'); |
|---|
| 260 | define ('LBL_ADMIN_PLUGINS_OPTIONS','Plugin Optionen'); |
|---|
| 261 | define ('LBL_ADMIN_DOMAIN_PLUGINS_LBL','Plugins'); |
|---|
| 262 | define ('LBL_ADMIN_CHECK_FOR_UPDATES','Prüfe auf Updates'); |
|---|
| 263 | define ('LBL_ADMIN_LOGIN_BAD_LOGIN','<strong>Oops!</strong> Falsche(s) Anmeldung/Passwort'); |
|---|
| 264 | define ('LBL_ADMIN_LOGIN_NO_ADMIN','<strong>Oops!</strong> Erfolgreich ' |
|---|
| 265 | .'angemeldet als %s, aber du hast keine Administratorenrechte. Bitte nochmals ' |
|---|
| 266 | .'mit Administratorenrechten anmelden oder dann zurück <a href="..">home</a>'); |
|---|
| 267 | |
|---|
| 268 | |
|---|
| 269 | define ('LBL_ADMIN_PLUGINS_GET_MORE', '<p style="font-size:small">' |
|---|
| 270 | .'Plugins sind kleine Programme, welche von Dritten geschrieben worden für Erweiterungen von Gregarius. ' |
|---|
| 271 | .'Mehr Plugins können unter folgendem Link heruntergeladen werden <a style="text-decoration:underline" ' |
|---|
| 272 | .' href="http://plugins.gregarius.net/"></a>.</p>'); |
|---|
| 273 | |
|---|
| 274 | define ('LBL_LAST_UPDATE','Letzte Aktualisierung'); |
|---|
| 275 | define ('LBL_ADMIN_DOMAIN_THEMES_LBL','Themen'); |
|---|
| 276 | define ('LBL_ADMIN_THEMES','Themen'); |
|---|
| 277 | define('LBL_ADMIN_ACTIVE_THEME','Aktuelles Thema'); |
|---|
| 278 | define('LBL_ADMIN_USE_THIS_THEME','Dieses Thema verwenden'); |
|---|
| 279 | define('LBL_ADMIN_THEME_OPTIONS','Themenoptionen'); |
|---|
| 280 | define('LBL_ADMIN_CONFIGURE','Konfigurieren'); |
|---|
| 281 | |
|---|
| 282 | define ('LBL_ADMIN_THEMES_GET_MORE', '<p style="font-size:small">' |
|---|
| 283 | .'Themen sind mit mehreren Vorlagen erstellt, welche das Aussehen von Gregarius bestimmen.<br />' |
|---|
| 284 | .'Mehr Themen können unter folgendem Link heruntergeladen werden <a style="text-decoration:underline" ' |
|---|
| 285 | .' href="http://themes.gregarius.net/"></a>.</p>'); |
|---|
| 286 | |
|---|
| 287 | define ('LBL_STATE_FLAG','Markiere (markiert einen Artikel zum späteren Lesen)'); |
|---|
| 288 | define ('LBL_FLAG','Markiert'); |
|---|
| 289 | |
|---|
| 290 | define ('LBL_MARK_READ', "Alle Artikel als gelesen markieren"); |
|---|
| 291 | define ('LBL_MARK_CHANNEL_READ', "Den Feed als gelesen markieren"); |
|---|
| 292 | define ('LBL_MARK_FOLDER_READ',"Den Ordner als gelesen markieren"); |
|---|
| 293 | |
|---|
| 294 | define ('LBL_MARK_CHANNEL_READ_ALL', "Markiere diesen Feed als gelesen"); |
|---|
| 295 | define ('LBL_MARK_FOLDER_READ_ALL',"Markiere diesen Ordner als gelesen"); |
|---|
| 296 | define ('LBL_MARK_CATEGORY_READ_ALL',"Markiere diese Kategorie als gelesen"); |
|---|
| 297 | ?> |
|---|